diff --git a/.github/claude-review-prompt.md b/.github/claude-review-prompt.md new file mode 100644 index 0000000000..496820a8f0 --- /dev/null +++ b/.github/claude-review-prompt.md @@ -0,0 +1,63 @@ +You are an experienced senior React Native engineer reviewing a pull +request in the Bluesky Social app — a cross-platform (iOS, Android, Web) +React Native + Expo application. Read the repo's CLAUDE.md before forming +an opinion; it describes the architecture, the ALF design system, and the +codebase conventions. + +Your audience is other senior engineers. Write peer-to-peer, not +teacher-to-junior. Most PRs in this repo are fine; a review that says so +is a valid and common outcome. + +Report a finding only if you can name a concrete scenario — specific +input, platform, navigation path, or operating condition — in which the +change causes incorrect behavior, a crash, a visual regression, a test +failure, a security issue, or a real regression visible to users. Style, +naming, and micro-optimizations are out of scope unless they introduce a +defect. Do not speculate that a change "might" break unrelated code +without pointing to the specific caller or code path. Do not repeat what +the diff does. + +Where this codebase differs from a typical web app: + +- Three platforms from one codebase. Web-only APIs (DOM, window), + native-only modules, and platform-specific files (.web.tsx, .ios.tsx, + .android.tsx) are common sources of single-platform breakage. When a + change touches shared code, consider all three targets. +- User-facing strings must go through Lingui (the `Trans` macro / + `useLingui`). Hardcoded English strings in UI are a finding. Do not + flag missing translations in catalog files — extraction and + compilation run in CI. +- New UI should use ALF (`#/alf`, `#/components`) rather than legacy + patterns (`#/view/com`, StyleSheet.create); flag newly written code + that adopts deprecated patterns, but don't flag pre-existing code the + PR merely touches. +- Server state lives in TanStack Query under src/state/queries. Watch + for cache-shape changes without corresponding invalidation updates, + and optimistic updates that can leave stale cache on failure. +- List rendering is performance-critical (the main feed). Changes to + feed items, FlatList usage, or anything in a hot render path deserve + scrutiny for re-render storms — unstable callback/object identities + passed to memoized children, missing memoization on expensive + computation. +- Moderation and content-filtering logic (labels, mutes, blocks, + hidden posts) is trust-and-safety-critical: a regression that shows + content that should be filtered is a blocking finding. +- Deep links, push-notification routing, and the navigation state + machine have platform-specific edge cases; changes there should name + the platforms they were verified on. +- The embed (bskyembed) and web deployment surfaces (bskyweb, link, + ogcard services in Go) ship separately from the app; changes there + have their own blast radius. + +For each finding, state the scenario in one or two sentences, cite +file:line, and mark severity (blocking / non-blocking). If you are +uncertain but the potential impact is high (crash on startup, moderation +bypass, broken auth), include it and say what you are uncertain about. +Otherwise, prefer silence over guessing. + +If there are no findings that meet this bar, say briefly that the PR +looks fine and note what you checked. + +Post your review as a single top-level PR comment. Per-finding inline +comments are also welcome where they'd anchor a reader to the specific +lines involved. diff --git a/.github/workflows/claude-mention.yml b/.github/workflows/claude-mention.yml new file mode 100644 index 0000000000..355a05adfb --- /dev/null +++ b/.github/workflows/claude-mention.yml @@ -0,0 +1,76 @@ +name: claude-mention + +# @claude mention handler on PR conversation comments, inline review +# comments, and review bodies. See the header comment in +# claude-review.yml for why this is self-contained rather than calling +# the org reusable workflows. +# +# Authorization note: this repo is public, and the load-bearing gate +# against drive-by commenters is INSIDE claude-code-action — the action +# verifies via the API that the triggering actor has write permission +# before doing anything (`allowed_non_write_users` and `allowed_bots` +# both default to deny). The `if:` below is a cheap pre-filter to avoid +# spinning up runners for the 99% of comments that don't mention +# @claude; it is not the security boundary. + +on: + issue_comment: + types: [created] + pull_request_review_comment: + types: [created] + pull_request_review: + types: [submitted] + +permissions: + contents: read + pull-requests: write + issues: write + actions: read + id-token: write + +jobs: + mention: + # Skip comments/reviews that don't mention @claude, non-PR issue + # comments, and events from claude[bot] itself (its review prose + # often quotes "@claude" and must not retrigger the workflow). + if: > + ( + (github.event_name == 'issue_comment' && + github.event.issue.pull_request != null && + contains(github.event.comment.body, '@claude')) || + (github.event_name == 'pull_request_review_comment' && + contains(github.event.comment.body, '@claude')) || + (github.event_name == 'pull_request_review' && + contains(github.event.review.body, '@claude')) + ) && + github.actor != 'claude[bot]' + + runs-on: ubuntu-latest + timeout-minutes: 20 + + concurrency: + group: claude-mention-${{ github.repository }}-${{ github.event.issue.number || github.event.pull_request.number }} + cancel-in-progress: false + + steps: + - name: Checkout repository + uses: actions/checkout@v6 + with: + fetch-depth: 1 + + - name: Configure AWS credentials (OIDC) + uses: aws-actions/configure-aws-credentials@v6 + with: + role-to-assume: ${{ secrets.AWS_BEDROCK_REVIEW_ROLE_ARN }} + aws-region: us-east-2 + + - name: Claude + uses: anthropics/claude-code-action@v1 + with: + use_bedrock: 'true' + additional_permissions: | + actions: read + track_progress: true + claude_args: | + --model global.anthropic.claude-opus-4-8 + --allowedTools "mcp__github_inline_comment__create_inline_comment,mcp__github_ci__get_ci_status,mcp__github_ci__download_job_log,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)" diff --git a/.github/workflows/claude-review.yml b/.github/workflows/claude-review.yml new file mode 100644 index 0000000000..9b7cdaa57d --- /dev/null +++ b/.github/workflows/claude-review.yml @@ -0,0 +1,68 @@ +name: claude-review + +# Automatic Claude review on PR creation/update, via Bedrock (OIDC, no +# long-lived tokens). Self-contained: this intentionally uses upstream +# claude-code-action defaults rather than the org reusable workflows in +# bluesky-social/.github (which a public repo cannot call, and whose +# customizations added no value over upstream). +# +# Review guidance lives in .github/claude-review-prompt.md. + +on: + pull_request: + types: [opened, synchronize, reopened, ready_for_review] + +permissions: + contents: read + pull-requests: write + actions: read + id-token: write + +jobs: + review: + # Internal PRs only. This repo is public: fork PRs are the bulk of + # community traffic and MUST NOT trigger reviews (no Bedrock spend on + # unvetted code, and fork PRs can't mint the OIDC token anyway — + # belt-and-braces with this explicit guard). Branch PRs can only be + # created by people with write access, i.e. org members. + # Bot-authored PRs (dependabot, changesets) are also skipped. + if: > + github.event.pull_request.draft == false && + github.event.pull_request.head.repo.full_name == github.repository && + github.event.pull_request.user.type != 'Bot' + + runs-on: ubuntu-latest + timeout-minutes: 20 + + concurrency: + group: claude-review-${{ github.repository }}-${{ github.event.pull_request.number }} + cancel-in-progress: true + + steps: + - name: Checkout repository + uses: actions/checkout@v6 + with: + fetch-depth: 1 + + - name: Configure AWS credentials (OIDC) + uses: aws-actions/configure-aws-credentials@v6 + with: + role-to-assume: ${{ secrets.AWS_BEDROCK_REVIEW_ROLE_ARN }} + aws-region: us-east-2 + + - name: Claude review + uses: anthropics/claude-code-action@v1 + with: + use_bedrock: 'true' + additional_permissions: | + actions: read + track_progress: true + claude_args: | + --model global.anthropic.claude-opus-4-8 + --allowedTools "mcp__github_inline_comment__create_inline_comment,mcp__github_ci__get_ci_status,mcp__github_ci__download_job_log,Bash(gh pr comment:*),Bash(gh pr diff:*),Bash(gh pr view:*)" + prompt: | + REPO: ${{ github.repository }} + PR NUMBER: ${{ github.event.pull_request.number }} + + Read .github/claude-review-prompt.md in the checked-out repo + and review this pull request following its guidance. diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml deleted file mode 100644 index df0d269666..0000000000 --- a/.github/workflows/claude.yml +++ /dev/null @@ -1,54 +0,0 @@ -name: Claude Code - -on: - issue_comment: - types: [created] - pull_request_review_comment: - types: [created] - issues: - types: [opened, assigned] - pull_request_review: - types: [submitted] - -jobs: - claude: - if: | - (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || - (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || - (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) || - (github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude'))) - runs-on: ubuntu-latest - permissions: - contents: read - pull-requests: read - issues: read - id-token: write - actions: read # Required for Claude to read CI results on PRs - steps: - - name: Checkout repository - uses: actions/checkout@v5 - with: - fetch-depth: 1 - - - name: Run Claude Code - id: claude - uses: anthropics/claude-code-action@v1 - with: - claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} - - # This is an optional setting that allows Claude to read CI results on PRs - additional_permissions: | - actions: read - - # Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it. - # prompt: 'Update the pull request description to include a summary of changes.' - - # Optional: Add claude_args to customize behavior and configuration - # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md - # or https://code.claude.com/docs/en/cli-reference for available options - # claude_args: '--allowed-tools Bash(gh pr:*)' - - # NOTE(sfn): we can add a custom system prompt here - - claude_args: | - --model claude-opus-4-7 diff --git a/.github/workflows/golang-test-lint.yml b/.github/workflows/golang-test-lint.yml index 6531694d5c..2e7388bbd5 100644 --- a/.github/workflows/golang-test-lint.yml +++ b/.github/workflows/golang-test-lint.yml @@ -20,6 +20,7 @@ jobs: uses: actions/setup-go@v6 with: go-version-file: bskyweb/go.mod + cache-dependency-path: bskyweb/go.sum - 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 @@ -37,6 +38,7 @@ jobs: uses: actions/setup-go@v6 with: go-version-file: bskyweb/go.mod + cache-dependency-path: bskyweb/go.sum - 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 diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index aa6c92765d..2fb464a92a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -57,11 +57,7 @@ jobs: node-version-file: package.json cache: pnpm - name: pnpm install - uses: Wandalen/wretry.action@master - with: - command: pnpm install --frozen-lockfile - attempt_limit: 3 - attempt_delay: 2000 + run: pnpm install --frozen-lockfile - name: Check & compile i18n run: pnpm intl:build - name: Lint checks @@ -99,11 +95,7 @@ jobs: node-version-file: package.json cache: pnpm - name: pnpm install - uses: Wandalen/wretry.action@master - with: - command: pnpm install --frozen-lockfile - attempt_limit: 3 - attempt_delay: 2000 + run: pnpm install --frozen-lockfile - name: Check & compile i18n run: pnpm intl:build - name: Run tests diff --git a/.github/workflows/nightly-update-source-languages.yaml b/.github/workflows/nightly-update-source-languages.yaml index 4b14c65c69..2a6ec26ac4 100644 --- a/.github/workflows/nightly-update-source-languages.yaml +++ b/.github/workflows/nightly-update-source-languages.yaml @@ -26,11 +26,7 @@ jobs: node-version-file: package.json cache: pnpm - name: pnpm install - uses: Wandalen/wretry.action@master - with: - command: pnpm install --frozen-lockfile - attempt_limit: 3 - attempt_delay: 2000 + run: pnpm install --frozen-lockfile - name: Extract language strings run: pnpm intl:extract - name: Create commit diff --git a/.github/workflows/verify-pnpm-lock.yml b/.github/workflows/verify-pnpm-lock.yml index 2d10b11a23..f1b61e95e7 100644 --- a/.github/workflows/verify-pnpm-lock.yml +++ b/.github/workflows/verify-pnpm-lock.yml @@ -34,12 +34,8 @@ jobs: run: git show "origin/$BASE_REF:pnpm-lock.yaml" > pnpm-lock.yaml - name: pnpm install - uses: Wandalen/wretry.action@master - with: - # Fine to skip scripts since we don't run any code - command: pnpm clean && pnpm install --ignore-scripts --no-frozen-lockfile - attempt_limit: 3 - attempt_delay: 2000 + # 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 run: | diff --git a/.gitignore b/.gitignore index 6dc2fe592b..015e13d3de 100644 --- a/.gitignore +++ b/.gitignore @@ -133,3 +133,4 @@ bskyweb/static/media/*.svg # superpowers plugin plans/specs — local-only workspace docs/superpowers/ +.claude/worktrees diff --git a/.jscodeshift/repo/bsky-agent.js b/.jscodeshift/repo/bsky-agent.js new file mode 100644 index 0000000000..57e501959d --- /dev/null +++ b/.jscodeshift/repo/bsky-agent.js @@ -0,0 +1,62 @@ +/** + * Codemod to replace BskyAgent with AtpAgent + * + * Before: + * import {BskyAgent} from '@atproto/api` + * BskyAgent.appLabelers.includes(labeler) + * + * After: + * import {AtpAgent} from '@atproto/api` + * AtpAgent.appLabelers.includes(labeler) + * + * Handles import specifiers, type annotations, static member access + * (BskyAgent.configure), `extends BskyAgent`, and `new BskyAgent()`. Whole + * identifiers only, so names like `OpaqueBskyAgent` are left untouched. + * + * Usage: jscodeshift -t .jscodeshift/repo/bsky-agent.js + * Example: jscodeshift -t .jscodeshift/repo/bsky-agent.js src/lib/moderation.ts + */ + +/* eslint-disable */ + +export const parser = 'tsx' + +export default function transformer(file, api) { + const j = api.jscodeshift + const root = j(file.source) + + // Replace every standalone `BskyAgent` identifier with `AtpAgent`. This + // covers imports, type references, member expressions, `extends`, and `new`. + root + .find(j.Identifier, {name: 'BskyAgent'}) + .replaceWith(() => j.identifier('AtpAgent')) + + // Renaming can leave a duplicate `AtpAgent` specifier on the @atproto/api + // import if the file already imported it. Dedupe by imported name, keeping + // the type-only modifier only if every duplicate was type-only. + root + .find(j.ImportDeclaration, {source: {value: '@atproto/api'}}) + .forEach(path => { + const seen = new Map() + for (const spec of path.value.specifiers) { + if (spec.type !== 'ImportSpecifier') { + seen.set(Symbol(), spec) + continue + } + const name = spec.imported.name + const existing = seen.get(name) + if (!existing) { + seen.set(name, spec) + } else if ( + existing.importKind === 'type' && + spec.importKind !== 'type' + ) { + // Prefer the value (non-type) import if either usage needs it. + seen.set(name, spec) + } + } + path.value.specifiers = Array.from(seen.values()) + }) + + return root.toSource() +} diff --git a/Dockerfile.bskyogcard b/Dockerfile.bskyogcard index 30839617ff..dc9747f949 100644 --- a/Dockerfile.bskyogcard +++ b/Dockerfile.bskyogcard @@ -9,7 +9,7 @@ WORKDIR /app COPY ./bskyogcard/package.json ./ COPY ./bskyogcard/pnpm-lock.yaml ./ COPY ./bskyogcard/pnpm-workspace.yaml ./ -RUN npm install --global pnpm@11.1.3 +RUN npm install --global pnpm@11.5.2 RUN pnpm install --frozen-lockfile COPY ./bskyogcard ./ diff --git a/Dockerfile.embedr b/Dockerfile.embedr index a55ddf11ac..bf559ec583 100644 --- a/Dockerfile.embedr +++ b/Dockerfile.embedr @@ -33,7 +33,7 @@ RUN mkdir --parents $NVM_DIR && \ RUN \. "$NVM_DIR/nvm.sh" && \ nvm install $NODE_VERSION && \ nvm use $NODE_VERSION && \ - npm install --global pnpm@11.5.0 && \ + npm install --global pnpm@11.7.0 && \ pnpm install --frozen-lockfile && \ cd bskyembed && pnpm install --frozen-lockfile && cd .. && \ pnpm intl:build && \ diff --git a/__tests__/lib/images.test.ts b/__tests__/lib/images.test.ts index afe47c2793..f0f948365c 100644 --- a/__tests__/lib/images.test.ts +++ b/__tests__/lib/images.test.ts @@ -1,11 +1,12 @@ import {createDownloadResumable, deleteAsync} from 'expo-file-system/legacy' import {manipulateAsync, SaveFormat} from 'expo-image-manipulator' +import {IMAGE_SIZE_CONFIG_2K_1MB} from '../../src/lib/constants' import { downloadAndResize, type DownloadAndResizeOpts, - getResizedDimensions, } from '../../src/lib/media/manip' +import {getResizedDimensions} from '../../src/lib/media/util' const mockResizedImage = { path: 'file://resized-image.jpg', @@ -41,10 +42,8 @@ describe('downloadAndResize', () => { const opts: DownloadAndResizeOpts = { uri: 'https://example.com/image.jpg', - width: 100, - height: 100, + maxDimension: 2000, maxSize: 500000, - mode: 'cover', timeout: 10000, } @@ -60,9 +59,11 @@ describe('downloadAndResize', () => { // First time it gets called is to get dimensions expect(manipulateAsync).toHaveBeenCalledWith(expect.any(String), [], {}) + // The mocked source image is 100x100, below maxDimension, so it is not + // downsized. expect(manipulateAsync).toHaveBeenCalledWith( expect.any(String), - [{resize: {height: opts.height, width: opts.width}}], + [{resize: {height: 100, width: 100}}], {format: SaveFormat.JPEG, compress: 1.0}, ) expect(deleteAsync).toHaveBeenCalledWith(expect.any(String), { @@ -73,10 +74,8 @@ describe('downloadAndResize', () => { it('should return undefined for invalid URI', async () => { const opts: DownloadAndResizeOpts = { uri: 'invalid-uri', - width: 100, - height: 100, + maxDimension: 2000, maxSize: 500000, - mode: 'cover', timeout: 10000, } @@ -90,13 +89,19 @@ describe('downloadAndResize', () => { width: 1200, height: 1000, } - const resizedDimensionsOne = getResizedDimensions(initialDimensionsOne) + const resizedDimensionsOne = getResizedDimensions( + initialDimensionsOne, + IMAGE_SIZE_CONFIG_2K_1MB.maxDimension, + ) const initialDimensionsTwo = { width: 1000, height: 1200, } - const resizedDimensionsTwo = getResizedDimensions(initialDimensionsTwo) + const resizedDimensionsTwo = getResizedDimensions( + initialDimensionsTwo, + IMAGE_SIZE_CONFIG_2K_1MB.maxDimension, + ) expect(resizedDimensionsOne).toEqual(initialDimensionsOne) expect(resizedDimensionsTwo).toEqual(initialDimensionsTwo) @@ -107,13 +112,19 @@ describe('downloadAndResize', () => { width: 3000, height: 1500, } - const resizedDimensionsOne = getResizedDimensions(initialDimensionsOne) + const resizedDimensionsOne = getResizedDimensions( + initialDimensionsOne, + IMAGE_SIZE_CONFIG_2K_1MB.maxDimension, + ) const initialDimensionsTwo = { width: 2000, height: 4000, } - const resizedDimensionsTwo = getResizedDimensions(initialDimensionsTwo) + const resizedDimensionsTwo = getResizedDimensions( + initialDimensionsTwo, + IMAGE_SIZE_CONFIG_2K_1MB.maxDimension, + ) expect(resizedDimensionsOne).toEqual({ width: 2000, diff --git a/__tests__/lib/strings/url-helpers.test.ts b/__tests__/lib/strings/url-helpers.test.ts index 0b1b750281..dd1a096ef5 100644 --- a/__tests__/lib/strings/url-helpers.test.ts +++ b/__tests__/lib/strings/url-helpers.test.ts @@ -1,6 +1,7 @@ import {describe, expect, it} from '@jest/globals' import { + getChatInviteCodeFromUrl, isPossiblyAUrl, isTrustedUrl, linkRequiresWarning, @@ -178,3 +179,47 @@ describe('isTrustedUrl', () => { expect(output).toEqual(expected) }) }) + +describe('getChatInviteCodeFromUrl', () => { + type Case = [string, string | undefined] + + const cases: Case[] = [ + ['https://bsky.app/chat/abcdefg', 'abcdefg'], + ['https://bsky.app/chat/abcdefghij', 'abcdefghij'], + // http is not recognized as a bsky.app url + ['http://bsky.app/chat/abcdefg', undefined], + ['https://bsky.app/chat/abcdefg?utm=foo', 'abcdefg'], + ['https://bsky.app/chat/abcdefg#section', 'abcdefg'], + ['/chat/abcdefg', 'abcdefg'], + ['/chat/abcdefg?utm=foo', 'abcdefg'], + ['/chat/abcdefg#section', 'abcdefg'], + + // too short + ['https://bsky.app/chat/abcdef', undefined], + ['/chat/abcdef', undefined], + // too long + ['https://bsky.app/chat/abcdefghijk', undefined], + ['/chat/abcdefghijk', undefined], + // invalid characters + ['https://bsky.app/chat/abc-def', undefined], + ['/chat/abc def', undefined], + // trailing path + ['https://bsky.app/chat/abcdefg/extra', undefined], + ['/chat/abcdefg/extra', undefined], + // wrong path + ['https://bsky.app/profile/abcdefg', undefined], + ['https://bsky.app/chat', undefined], + // wrong host + ['https://example.com/chat/abcdefg', undefined], + // not a url, not a path + ['chat/abcdefg', undefined], + ['abcdefg', undefined], + ['', undefined], + // malformed url + ['https://[invalid/chat/abcdefg', undefined], + ] + + it.each(cases)('given input %p, returns %p', (input, expected) => { + expect(getChatInviteCodeFromUrl(input)).toEqual(expected) + }) +}) diff --git a/app.config.js b/app.config.js index e9bd6dac45..790ae490eb 100644 --- a/app.config.js +++ b/app.config.js @@ -349,7 +349,7 @@ module.exports = function (_config) { }, ], [ - '@mozzius/expo-dynamic-app-icon', + '@bsky.app/expo-dynamic-app-icon', { /** * Default set diff --git a/assets/images/chat-desktop-bg-dark.webp b/assets/images/chat-desktop-bg-dark.webp index 9a3929f2f2..3a2b0f16c5 100644 Binary files a/assets/images/chat-desktop-bg-dark.webp and b/assets/images/chat-desktop-bg-dark.webp differ diff --git a/assets/images/chat-desktop-bg-dim.webp b/assets/images/chat-desktop-bg-dim.webp new file mode 100644 index 0000000000..9d82f5c05e Binary files /dev/null and b/assets/images/chat-desktop-bg-dim.webp differ diff --git a/assets/images/chat-invite-friends.webp b/assets/images/chat-invite-friends.webp new file mode 100644 index 0000000000..536e3d6429 Binary files /dev/null and b/assets/images/chat-invite-friends.webp differ diff --git a/assets/images/chat-mobile-bg-dark.webp b/assets/images/chat-mobile-bg-dark.webp index 1ed3c11051..7abab7c433 100644 Binary files a/assets/images/chat-mobile-bg-dark.webp and b/assets/images/chat-mobile-bg-dark.webp differ diff --git a/assets/images/chat-mobile-bg-dim.webp b/assets/images/chat-mobile-bg-dim.webp new file mode 100644 index 0000000000..1ed3c11051 Binary files /dev/null and b/assets/images/chat-mobile-bg-dim.webp differ diff --git a/assets/images/groupchats_announcement_dark.webp b/assets/images/groupchats_announcement_dark.webp new file mode 100644 index 0000000000..5bbc64ebfc Binary files /dev/null and b/assets/images/groupchats_announcement_dark.webp differ diff --git a/assets/images/groupchats_announcement_dim.webp b/assets/images/groupchats_announcement_dim.webp new file mode 100644 index 0000000000..d418be4de0 Binary files /dev/null and b/assets/images/groupchats_announcement_dim.webp differ diff --git a/assets/images/groupchats_announcement_light.webp b/assets/images/groupchats_announcement_light.webp new file mode 100644 index 0000000000..32014850ad Binary files /dev/null and b/assets/images/groupchats_announcement_light.webp differ diff --git a/assets/images/invite_friends_announcement_nux.webp b/assets/images/invite_friends_announcement_nux.webp new file mode 100644 index 0000000000..53e79e1d54 Binary files /dev/null and b/assets/images/invite_friends_announcement_nux.webp differ diff --git a/assets/images/invite_friends_promo_banner.webp b/assets/images/invite_friends_promo_banner.webp new file mode 100644 index 0000000000..cb6d45e681 Binary files /dev/null and b/assets/images/invite_friends_promo_banner.webp differ diff --git a/bskyembed/package.json b/bskyembed/package.json index 7d6b62cf6c..8baf4280d6 100644 --- a/bskyembed/package.json +++ b/bskyembed/package.json @@ -13,7 +13,7 @@ "format": "prettier -w src" }, "dependencies": { - "@atproto/api": "^0.15.25", + "@atproto/api": "0.20.11", "preact": "^10.4.8" }, "devDependencies": { @@ -32,7 +32,7 @@ "terser": "^5.43.1", "typescript": "^6.0.3", "typescript-eslint": "^8.20.0", - "vite": "^8.0.12", + "vite": "^8.0.16", "vite-bundle-analyzer": "^1.3.8" }, "resolutions": { diff --git a/bskyembed/pnpm-lock.yaml b/bskyembed/pnpm-lock.yaml index fe0c80db65..2de86345d5 100644 --- a/bskyembed/pnpm-lock.yaml +++ b/bskyembed/pnpm-lock.yaml @@ -9,8 +9,8 @@ importers: .: dependencies: '@atproto/api': - specifier: ^0.15.25 - version: 0.15.27 + specifier: 0.20.11 + version: 0.20.11 preact: specifier: ^10.4.8 version: 10.29.1 @@ -20,10 +20,10 @@ importers: version: 9.39.4 '@preact/preset-vite': specifier: ^2.10.2 - version: 2.10.5(@babel/core@7.29.0)(preact@10.29.1)(vite@8.0.12(jiti@1.21.7)(terser@5.47.1)) + version: 2.10.5(@babel/core@7.29.0)(preact@10.29.1)(vite@8.0.16(jiti@1.21.7)(terser@5.47.1)) '@vitejs/plugin-legacy': specifier: ^8.0.1 - version: 8.0.1(terser@5.47.1)(vite@8.0.12(jiti@1.21.7)(terser@5.47.1)) + version: 8.0.1(terser@5.47.1)(vite@8.0.16(jiti@1.21.7)(terser@5.47.1)) autoprefixer: specifier: ^10.4.19 version: 10.5.0(postcss@8.5.14) @@ -61,8 +61,8 @@ importers: specifier: ^8.20.0 version: 8.59.3(eslint@9.39.4(jiti@1.21.7))(typescript@6.0.3) vite: - specifier: ^8.0.12 - version: 8.0.12(jiti@1.21.7)(terser@5.47.1) + specifier: ^8.0.16 + version: 8.0.16(jiti@1.21.7)(terser@5.47.1) vite-bundle-analyzer: specifier: ^1.3.8 version: 1.3.8 @@ -73,41 +73,50 @@ packages: resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==} engines: {node: '>=10'} - '@atproto/api@0.15.27': - resolution: {integrity: sha512-ok/WGafh1nz4t8pEQGtAF/32x2E2VDWU4af6BajkO5Gky2jp2q6cv6aB2A5yuvNNcc3XkYMYipsqVHVwLPMF9g==} + '@atproto/api@0.20.11': + resolution: {integrity: sha512-1NoVJpBDAdotxo1iMZdMd75JstpdKWgBYOnxfVD4m+52bRjgU4cFg3EOGNUognZntFgL/bIHyEgyN7SJWVf6Ig==} + engines: {node: '>=22'} - '@atproto/common-web@0.4.21': - resolution: {integrity: sha512-Odq+wdk3YNasGCjjlpl3bCIPvqYHige5DLfMkIffNv/2PI/iIj5ZvAvMvJlJ59OhReKSxtpI0invx5UQPc3+fw==} + '@atproto/common-web@0.5.0': + resolution: {integrity: sha512-ReWnkuZdDU/74/I47gaI26uxQjHmpq4edp41NnZZQ5vIIKGb7Ei6pZHzDTUD9JURo109SKrPx9RMP2IQm0fOKA==} + engines: {node: '>=22'} - '@atproto/lex-data@0.0.15': - resolution: {integrity: sha512-ZsbGiaM5S3CnGrcTMbDGON3bLZzCi/Mx9UvcMREKSRujnF68eHgMiXxJqvykP7+QpOX6tYCK93axZkuJVhtSEw==} + '@atproto/lex-data@0.1.1': + resolution: {integrity: sha512-/xza8nU/YhtzhETnHL3QKKofaJ28/0NCzhT7LaYoUkm8EgypWp5ykEtmW52yLhQM2JF6fVa25g1soQmNTGqtSg==} + engines: {node: '>=22'} - '@atproto/lex-json@0.0.16': - resolution: {integrity: sha512-IgLgQ0krshVlrIYZ+heTBDbCnM3LmAgWvsaYn5MxvKA3LcBot3PG3ptdO8VOweVZ+WgCLuo39cz9EbUmIbqdtg==} + '@atproto/lex-json@0.1.0': + resolution: {integrity: sha512-oWUrRMwFyWpmi/5k1Se3xBTbP06XdxBS5iFuUz9LmqItaPXwrWRD87a9ldPvINQ/A2/mn7J6/qug8sDVlhD+vQ==} + engines: {node: '>=22'} - '@atproto/lexicon@0.4.14': - resolution: {integrity: sha512-jiKpmH1QER3Gvc7JVY5brwrfo+etFoe57tKPQX/SmPwjvUsFnJAow5xLIryuBaJgFAhnTZViXKs41t//pahGHQ==} + '@atproto/lexicon@0.7.1': + resolution: {integrity: sha512-voNfNED5KUxn3vpo7N5DMRblBDfWf7kSfdKhJFC1RrLCxg38YbBzzURNVQJ32bp13Oot8kYfyXBWxTgtKLvw8w==} + engines: {node: '>=22'} - '@atproto/lexicon@0.6.2': - resolution: {integrity: sha512-p3Ly6hinVZW0ETuAXZMeUGwuMm3g8HvQMQ41yyEE6AL0hAkfeKFaZKos6BdBrr6CjkpbrDZqE8M+5+QOceysMw==} + '@atproto/syntax@0.6.1': + resolution: {integrity: sha512-kA4dQDoMPpWCH8N0Q4KoSq024u5MkVfDVa8DdhyLjGA72z/khbOf1jXKPv7NIL2oEc9aj7geKELdvqyf4ogopA==} + engines: {node: '>=22'} - '@atproto/syntax@0.4.3': - resolution: {integrity: sha512-YoZUz40YAJr5nPwvCDWgodEOlt5IftZqPJvA0JDWjuZKD8yXddTwSzXSaKQAzGOpuM+/A3uXRtPzJJqlScc+iA==} - - '@atproto/syntax@0.5.4': - resolution: {integrity: sha512-9XJOpMAgsGFxMEIp8nJ8AIWv+krrY1xQMj+wULbbXhQztQV+9aZ0TbG9Jtn3Op2or8Kr6OqyWR4ga9Z189kKDw==} - - '@atproto/xrpc@0.7.7': - resolution: {integrity: sha512-K1ZyO/BU8JNtXX5dmPp7b5UrkLMMqpsIa/Lrj5D3Su+j1Xwq1m6QJ2XJ1AgjEjkI1v4Muzm7klianLE6XGxtmA==} + '@atproto/xrpc@0.8.0': + resolution: {integrity: sha512-NJy02bIKrWlE2NQkRV1kT0Cj0ixbuxlF/MejBdo4cPWAa9v3oZexvAcjjb0zaOYeABkaU14iyIhvn2G4e/oLpw==} + engines: {node: '>=22'} '@babel/code-frame@7.29.0': resolution: {integrity: sha512-9NhCeYjq9+3uxgdtp20LSiJXJvN0FeCtNGpJxuMFZ1Kv3cWUNb6DOhJwUvcVCzKGR66cw4njwM6hrJLqgOwbcw==} engines: {node: '>=6.9.0'} + '@babel/code-frame@7.29.7': + resolution: {integrity: sha512-Aup7aUOfpbAUg2ROOJN6Iw5f9DMBlzu0mIkm/malLQFN/YQgO48wCj0Kxa3sEHJvPVFg7siR+qRInwXd2qhQKw==} + engines: {node: '>=6.9.0'} + '@babel/compat-data@7.29.3': resolution: {integrity: sha512-LIVqM46zQWZhj17qA8wb4nW/ixr2y1Nw+r1etiAWgRM6U1IqP+LNhL1yg440jYZR72jCWcWbLWzIosH+uP1fqg==} engines: {node: '>=6.9.0'} + '@babel/compat-data@7.29.7': + resolution: {integrity: sha512-locTkQyKvwIEgBzVrn8693ebc97F2U8ZHjbXwDXJ5Fn2TCpNwTlKcaKLkdHop5c/icOFE7qt7Q9JC5hnKNa6Gg==} + engines: {node: '>=6.9.0'} + '@babel/core@7.29.0': resolution: {integrity: sha512-CGOfOJqWjg2qW/Mb6zNsDm+u5vFQ8DxXfbM09z69p5Z6+mE1ikP2jUXw+j42Pf1XTYED2Rni5f95npYeuwMDQA==} engines: {node: '>=6.9.0'} @@ -116,6 +125,10 @@ packages: resolution: {integrity: sha512-qsaF+9Qcm2Qv8SRIMMscAvG4O3lJ0F1GuMo5HR/Bp02LopNgnZBC/EkbevHFeGs4ls/oPz9v+Bsmzbkbe+0dUw==} engines: {node: '>=6.9.0'} + '@babel/generator@7.29.7': + resolution: {integrity: sha512-DkXD5OJQaAQIdZ1bt3UZdEnHAn9Imd3IVBdX03UFe+ony9Ojw5pzr9YVKGDY1jt+Gcn/FnGkNf8r+Vj5NOJWtQ==} + engines: {node: '>=6.9.0'} + '@babel/helper-annotate-as-pure@7.27.3': resolution: {integrity: sha512-fXSwMQqitTGeHLBC08Eq5yXz2m37E4pJX1qAU1+2cNedz/ifv/bVXft90VeSav5nFO61EcNgwr0aJxbyPaWBPg==} engines: {node: '>=6.9.0'} @@ -124,6 +137,10 @@ packages: resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==} engines: {node: '>=6.9.0'} + '@babel/helper-compilation-targets@7.29.7': + resolution: {integrity: sha512-wem6WaBj4NaVYVdNhLPPVacES6ZJ+KBBfSkTMD3YZxbP3rm3Di85tJU5ljaUNhaOynt+Aj0xruhYuzQBt8n71g==} + engines: {node: '>=6.9.0'} + '@babel/helper-create-class-features-plugin@7.29.3': resolution: {integrity: sha512-RpLYy2sb51oNLjuu1iD3bwBqCBWUzjO0ocp+iaCP/lJtb2CPLcnC2Fftw+4sAzaMELGeWTgExSKADbdo0GFVzA==} engines: {node: '>=6.9.0'} @@ -145,6 +162,10 @@ packages: resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} engines: {node: '>=6.9.0'} + '@babel/helper-globals@7.29.7': + resolution: {integrity: sha512-3nQVUAtvkKH9zahfWgw96Jc/uFOmjACE1kQz82E2lqWmHBgjzbNlsC22nuQTfahmWeQtTq5nQ/4Nnd2A1wj4zA==} + engines: {node: '>=6.9.0'} + '@babel/helper-member-expression-to-functions@7.28.5': resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==} engines: {node: '>=6.9.0'} @@ -153,12 +174,22 @@ packages: resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==} engines: {node: '>=6.9.0'} + '@babel/helper-module-imports@7.29.7': + resolution: {integrity: sha512-ejHwrQQYcm9xnTivShn2IDOlIzInN34AXskvq9QicvCtEzq1Vzclu/tKF8Jq1Cg8JG2GL6/EmjgsCT7lXepE3g==} + engines: {node: '>=6.9.0'} + '@babel/helper-module-transforms@7.28.6': resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==} engines: {node: '>=6.9.0'} peerDependencies: '@babel/core': ^7.0.0 + '@babel/helper-module-transforms@7.29.7': + resolution: {integrity: sha512-UPUVSyXbOh627KiCIGQSgwWzGeBKLkaJ9PJEdrngIwMSzxLR4jS4+f1f1jb7VzBbg8nFLaYotvVPFCTqdrmTAg==} + engines: {node: '>=6.9.0'} + peerDependencies: + '@babel/core': ^7.0.0 + '@babel/helper-optimise-call-expression@7.27.1': resolution: {integrity: sha512-URMGH08NzYFhubNSGJrpUEphGKQwMQYBySzat5cAByY1/YgIRkULnIy3tAMeszlL/so2HbeilYloUmSpd7GdVw==} engines: {node: '>=6.9.0'} @@ -187,20 +218,32 @@ packages: resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} engines: {node: '>=6.9.0'} + '@babel/helper-string-parser@7.29.7': + resolution: {integrity: sha512-Pb5ijPrZ89GDH8223L4UP8i6QApWxs04RbPQJTeWDV0/keR2E36MeKnyr6LYmUUvqRRI+Iv87SuF1W6ErINzYw==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.28.5': resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-identifier@7.29.7': + resolution: {integrity: sha512-qehxGkRj55h/ff8EMaJ+cYhyaKlHIxqYDn682wQD7RNp9UujOQsHog2uS0r2vzr4pW+sXf90NeeayjcNaX3fFg==} + engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.27.1': resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} engines: {node: '>=6.9.0'} + '@babel/helper-validator-option@7.29.7': + resolution: {integrity: sha512-N9ZErrD+yW5geCDtBqnOoxmR8+tNKiGuxKlDpuJxfsqpa2dFcexaziGAE/qoHLiDDreVNMupxGmSoNlyvsA3gw==} + engines: {node: '>=6.9.0'} + '@babel/helper-wrap-function@7.28.6': resolution: {integrity: sha512-z+PwLziMNBeSQJonizz2AGnndLsP2DeGHIxDAn+wdHOGuo4Fo1x1HBPPXeE9TAOPHNNWQKCSlA2VZyYyyibDnQ==} engines: {node: '>=6.9.0'} - '@babel/helpers@7.29.2': - resolution: {integrity: sha512-HoGuUs4sCZNezVEKdVcwqmZN8GoHirLUcLaYVNBK2J0DadGtdcqgr3BCbvH8+XUo4NGjNl3VOtSjEKNzqfFgKw==} + '@babel/helpers@7.29.7': + resolution: {integrity: sha512-1k2lAGRMfHTcwuNYcCNUmaUffmQv8KWMfh2iJUUeRlwlwH4FdNG7mfPI10NPfLHJFThE4Tyr4mv7kTNZOiPuBg==} engines: {node: '>=6.9.0'} '@babel/parser@7.29.3': @@ -208,6 +251,11 @@ packages: engines: {node: '>=6.0.0'} hasBin: true + '@babel/parser@7.29.7': + resolution: {integrity: sha512-hnORnjP/1P/zFEndoeX+n+t1RwWRJiJpM/jO7FW32Kn9r5+sJB2JWOdYo4L6k78j15eCwY3Gm/7364B1EMwtNg==} + engines: {node: '>=6.0.0'} + hasBin: true + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5': resolution: {integrity: sha512-87GDMS3tsmMSi/3bWOte1UblL+YUTFMV8SZPZ2eSEL17s74Cw/l63rR6NmGVKMYW2GYi85nE+/d6Hw5N0bEk2Q==} engines: {node: '>=6.9.0'} @@ -607,23 +655,44 @@ packages: resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==} engines: {node: '>=6.9.0'} + '@babel/template@7.29.7': + resolution: {integrity: sha512-puq+Gf35oI24FeN11LkoUQFqv9uwNeWpxXZi/Ji3rRIoKAzKnxRaZ+Gkj0vKS9ZCiTESfng1N9LyOyXvo+m+Gg==} + engines: {node: '>=6.9.0'} + '@babel/traverse@7.29.0': resolution: {integrity: sha512-4HPiQr0X7+waHfyXPZpWPfWL/J7dcN1mx9gL6WdQVMbPnF3+ZhSMs8tCxN7oHddJE9fhNE7+lxdnlyemKfJRuA==} engines: {node: '>=6.9.0'} + '@babel/traverse@7.29.7': + resolution: {integrity: sha512-EhlfNQtZ+NK22w5BM61ciuiq1m58ed33Wr1Xan//ZRTy6hgjnwyCffRYwzsGXdASJSUJ1guZILsErh1eQcl+zw==} + engines: {node: '>=6.9.0'} + '@babel/types@7.29.0': resolution: {integrity: sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==} engines: {node: '>=6.9.0'} + '@babel/types@7.29.7': + resolution: {integrity: sha512-4zBIxpPzowiZpusoFkyGVwakdRJUyuH5PxQ/PrqghfdFWWasvnCdPfQXHrenDai+gyLARulZjZowCOj6fjT4pA==} + engines: {node: '>=6.9.0'} + '@emnapi/core@1.10.0': resolution: {integrity: sha512-yq6OkJ4p82CAfPl0u9mQebQHKPJkY7WrIuk205cTYnYe+k2Z8YBh11FrbRG/H6ihirqcacOgl2BIO8oyMQLeXw==} + '@emnapi/core@1.11.1': + resolution: {integrity: sha512-RSvbQmHzdKzNsLYa/wHrbc3KN4sYLKAdPZxqiM2HATqv/SBk2/ENSHpvXGaLOMcsAyz0poEGqkmmKYG3OWiJEQ==} + '@emnapi/runtime@1.10.0': resolution: {integrity: sha512-ewvYlk86xUoGI0zQRNq/mC+16R1QeDlKQy21Ki3oSYXNgLb45GV1P6A0M+/s6nyCuNDqe5VpaY84BzXGwVbwFA==} + '@emnapi/runtime@1.11.1': + resolution: {integrity: sha512-vgj7R3y3Wgx24IQaGPA/R6YFXLHVMOZ0uVEyIQPaWs+rd1AzfEMXlAC22FYwO1XkKR6NPsq7mUandH8oIRdZFw==} + '@emnapi/wasi-threads@1.2.1': resolution: {integrity: sha512-uTII7OYF+/Mes/MrcIOYp5yOtSMLBWSIoLPpcgwipoiKbli6k322tcoFsxoIIxPDqW01SQGAgko4EzZi2BNv2w==} + '@emnapi/wasi-threads@1.2.2': + resolution: {integrity: sha512-c95qOXkHdydNKhscBTebqEC1CVAZpyqOfVfBzQ1qgzyl3gfeldUjIggDbIZgDKsHLgnsM+igH7TJ/eAasaVuMA==} + '@eslint-community/eslint-utils@4.9.1': resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -704,8 +773,8 @@ packages: '@napi-rs/wasm-runtime@0.2.12': resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} - '@napi-rs/wasm-runtime@1.1.4': - resolution: {integrity: sha512-3NQNNgA1YSlJb/kMH1ildASP9HW7/7kYnRI2szWJaofaS1hWmbGI4H+d3+22aGzXXN9IJ+n+GiFVcGipJP18ow==} + '@napi-rs/wasm-runtime@1.1.5': + resolution: {integrity: sha512-AWPoBRJ9tsnVhor4sjO7rkni+7p+2IAEFj6cx06UgP10jkQHqay/36uRV/bFkgrh18D9vb4cr8Q0Pthskgzy+Q==} peerDependencies: '@emnapi/core': ^1.7.1 '@emnapi/runtime': ^1.7.1 @@ -722,8 +791,8 @@ packages: resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} engines: {node: '>= 8'} - '@oxc-project/types@0.129.0': - resolution: {integrity: sha512-3oz8m3FGdr2nDXVqmFUw7jolKliC4MoyXYIG2c7gpjBnzUWQpUGIYcXYKxTdTi+N2jusvt610ckTMkxdwHkYEg==} + '@oxc-project/types@0.133.0': + resolution: {integrity: sha512-KzkdCd6Uxqnf6l3HOw1xfatAlUURA0g14cvBYFyJ5SaNOQbOUvBr9PKArcPcrNIeRsBdgcUzOGrhKveVpvOIGA==} '@package-json/types@0.0.12': resolution: {integrity: sha512-uu43FGU34B5VM9mCNjXCwLaGHYjXdNincqKLaraaCW+7S2+SmiBg1Nv8bPnmschrIfZmfKNY9f3fC376MRrObw==} @@ -751,103 +820,103 @@ packages: preact: ^10.4.0 || ^11.0.0-0 vite: '>=2.0.0' - '@rolldown/binding-android-arm64@1.0.0': - resolution: {integrity: sha512-TWMZnRLMe63C2Lhyicviu7ZHaU4kxa6PS3rofvc9GmcvptzNN11BcfQ4Sl7MwTOsisQoa2keB/EBdNCAnUo8vA==} + '@rolldown/binding-android-arm64@1.0.3': + resolution: {integrity: sha512-454rs7jHngixp/NMxd5srYD57OnzSlZ/eFTETjORQHLwJG1lRtmNOJcBerZlfu4GjKqeq8aCCIQrMdHyhI51Hw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [android] - '@rolldown/binding-darwin-arm64@1.0.0': - resolution: {integrity: sha512-6XcD+8k0gPVItNagEw78/qqcBDwKcwDYS8V2hRmVsfUSIrd8cWe/CBvRDI5toqFyPfj+FJr6t8U6Xj2P2prEew==} + '@rolldown/binding-darwin-arm64@1.0.3': + resolution: {integrity: sha512-PcAhP+ynjURNyy8SKGl5DQP94aGuB/7JrXJb/t7P+hanXvQVMWzUvRRhBAcg/lNRadBhoUPqSoP4xw5tR/KBEA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [darwin] - '@rolldown/binding-darwin-x64@1.0.0': - resolution: {integrity: sha512-iN/tWVXRQDWvmZlKdceP1Dwug9GDpEymhb9p4xnEe6zvCg5lFmzVljl+1qR1NVx3yfGpr2Na+CuLmv5IU8uzfQ==} + '@rolldown/binding-darwin-x64@1.0.3': + resolution: {integrity: sha512-9YpfeUvSE2RS7wysJ81uOZkXJz7f7Q55H2Gvp3VEw/EsahqDtrphrZ0EwDLK5vvKOzaCrBsjF8JmnMLcUt78Gg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [darwin] - '@rolldown/binding-freebsd-x64@1.0.0': - resolution: {integrity: sha512-jjQMDvvwSOuhOwMszD/klSOjyWMM3zI64hWTj9KT5x4MxRbZAf+7vLQ6qouRhtsLVFHr3f0ILaJAfgENPiQdAQ==} + '@rolldown/binding-freebsd-x64@1.0.3': + resolution: {integrity: sha512-yB1IlAsSNHncV6SCTL27/MVGR5htvQsoGxIv5KMGXALp+Ll1wYsn+x98M9MW7qa+NdSbvrrY7ANI4wLJ0n1e6g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [freebsd] - '@rolldown/binding-linux-arm-gnueabihf@1.0.0': - resolution: {integrity: sha512-d//Dtg2x6/m3mbV64yUGNnDGNZaDGRpDLLNGerHQUVObuNaIQaaDp25yUiqGXtHEXX+NP2d0wAlmKgpYgIAJ2A==} + '@rolldown/binding-linux-arm-gnueabihf@1.0.3': + resolution: {integrity: sha512-Yi30IVAAfLUCy2MseFjbB1jAMDl1VMCAas5StnYp8da9+CKvMd2H2cbEjWcw5NPaPqzvYkVIaF1nNUG+b7u/sw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm] os: [linux] - '@rolldown/binding-linux-arm64-gnu@1.0.0': - resolution: {integrity: sha512-n7Ofp0mx+aB2cC+Sdy5YtMnXtY9lchnHbY+3Yt0uq9JsWQExf4f5Whu0tK0R8Jdc9S6RchTHjIFY7uc92puOVQ==} + '@rolldown/binding-linux-arm64-gnu@1.0.3': + resolution: {integrity: sha512-jsO7R8To+AdlYgUmN5sHSCZbfhtMBkO0WUx8iORQnPcMMdgr7qM2DQmMwgabs3GhNztdmoKkMKQFHD6DTMCIQw==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-arm64-musl@1.0.0': - resolution: {integrity: sha512-EIVjy2cgd7uuMMo94FVkBp7F6DhcZAUwNURkSG3RwUmvAXR6s0ISxM81U+IydcZByPG0pZIHsf1b6kTxoFDgJA==} + '@rolldown/binding-linux-arm64-musl@1.0.3': + resolution: {integrity: sha512-VWkUHwWriDciit80wleYwKILoR/KMvxh/IdwS/paX+ZgpuRpCrKLUdadJbc0NpBEiyhpYawsJ73j9aCvOH+f7Q==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [linux] libc: [musl] - '@rolldown/binding-linux-ppc64-gnu@1.0.0': - resolution: {integrity: sha512-JEwwOPcwTLAcpDQlqSmjEmfs63xJnSiUNIGvLcDLUHCWK4XowpS/7c7tUsUH6uT/ct6bMUTdXKfI8967FYj6mg==} + '@rolldown/binding-linux-ppc64-gnu@1.0.3': + resolution: {integrity: sha512-5f1laC0SlIR0yDbFCd8acUhvJIag6N3zC5P7oUPN6wX0aOma+uKJ0wBDH5aq7I1PVI2ttTlhJwzwRIBnLiSGEg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [ppc64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-s390x-gnu@1.0.0': - resolution: {integrity: sha512-0wjCFhLrihtAubnT9iA0N++0pSV0z5Hg7tNGdNJ4RFaINceHadoF+kiFGyY1qSSNVIAZtLotG8Ju1bgDPkjnFA==} + '@rolldown/binding-linux-s390x-gnu@1.0.3': + resolution: {integrity: sha512-Iq4ko0r4XsgbrF/LunNgHtAGLRRVE2kXonAXQ/MV0mC6jQpMOhW1SvtZja2EhC/kd05++bP78dsqBeIQyYJ6Yg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [s390x] os: [linux] libc: [glibc] - '@rolldown/binding-linux-x64-gnu@1.0.0': - resolution: {integrity: sha512-Dfn7iak9BcMMePxcoJfpSbWqnEyrp/dRF63/8qW/eHBdOZov6x5aShLLEYGYdIeSJ6vMLK/XCVB+lGIxm41bQA==} + '@rolldown/binding-linux-x64-gnu@1.0.3': + resolution: {integrity: sha512-B8m6tD5+/N5FeNQFbKlLA/2yVq9ycQP1SeedyEYYKWBNR3ZQbkvIUcNnDNM03lO1l5F2roiiFJGgvoLLyZXtSg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [glibc] - '@rolldown/binding-linux-x64-musl@1.0.0': - resolution: {integrity: sha512-5/utzzDmD/pD/bmuaUcbTf/sZYy0aztwIVlfpoW1fTjCZ0BaPOMVWGZL1zvgxyi7ZIVYWlxKONHmSbHuiOh8Jw==} + '@rolldown/binding-linux-x64-musl@1.0.3': + resolution: {integrity: sha512-pSdpdUJHkuCxun9LE7jvgUB9qsRgaiyNNCX7m/AvHTcq67AiT/Yhoxvw5zPfhrM8k/BfP8ce/hMOpthKDpEUow==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [linux] libc: [musl] - '@rolldown/binding-openharmony-arm64@1.0.0': - resolution: {integrity: sha512-ouJs8VcUomfLfpbUECqFMRqdV4x6aeAK3MA4m6vTrJJjKyWTV5KnxZx7Jd9G+GlDaQQxubcba00x16OyJ1meig==} + '@rolldown/binding-openharmony-arm64@1.0.3': + resolution: {integrity: sha512-OXXS3RKJgX2uLwM+gYyuH5omcH8fL1LJs96pZGgtetVCahON57+d4SJHzTgZiOjxgGkSnpXpOsWuPDGAKAigEg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [openharmony] - '@rolldown/binding-wasm32-wasi@1.0.0': - resolution: {integrity: sha512-E+oHKGiDA+lsKMmFtffDDw91EryDT7uJocrIuCHqhm6bCTM6xFK+3gaCkYOHfPwQr0cCNarSM2xaELoQDz9jJg==} + '@rolldown/binding-wasm32-wasi@1.0.3': + resolution: {integrity: sha512-JTtb8BWFynicNSoPrehsCzBtOKjZ6jhMiPFEmOiuXg1Fl8dn2KHQob+GuPSGR0dryQa1PQJbzjF3dqO/whhjLg==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [wasm32] - '@rolldown/binding-win32-arm64-msvc@1.0.0': - resolution: {integrity: sha512-yYK02n8Rngo+gbm1y6G0+7jk1sJ/2Wt7K0me0Y7k/ErBpyf+LJ2gFpqWVTcRV1rUepBlQRmpgWkTQCiiwrK0Ow==} + '@rolldown/binding-win32-arm64-msvc@1.0.3': + resolution: {integrity: sha512-gEdFFEN70A/jxb2svrWsN3aDL7OUtmvlOy+6fa2jxG8K0wQ1ZbdeLGnidov6Yu5/733dI5ySfzFlQ/cb0bSz1g==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [arm64] os: [win32] - '@rolldown/binding-win32-x64-msvc@1.0.0': - resolution: {integrity: sha512-14bpChMahXRRXiTwahSl+zzHPW6qQTXtkMuJBFlbo+pqSAews2d4BdCSHfrJ/MBsCZtpmTafsY+1QhBzitcmdg==} + '@rolldown/binding-win32-x64-msvc@1.0.3': + resolution: {integrity: sha512-eXB7CHuaQdqmJcc3koCNtNPmT/bj2gc999kUFgBxG8Ac0NdgXc4rkCHhqrgrhN3zddvvvrgzj1e90SuSfmyIXA==} engines: {node: ^20.19.0 || >=22.12.0} cpu: [x64] os: [win32] - '@rolldown/pluginutils@1.0.0': - resolution: {integrity: sha512-aKs/3GSWyV0mrhNmt/96/Z3yczC3yvrzYATCiCXQebBsGyYzjNdUphRVLeJQ67ySKVXRfMxt2lm12pmXvbPFQQ==} + '@rolldown/pluginutils@1.0.1': + resolution: {integrity: sha512-2j9bGt5Jh8hj+vPtgzPtl72j0yRxHAyumoo6TNfAjsLB04UtpSvPbPcDcBMxz7n+9CYB0c1GxQFxYRg2jimqGw==} '@rollup/pluginutils@4.2.1': resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==} @@ -1101,8 +1170,8 @@ packages: peerDependencies: postcss: ^8.1.0 - await-lock@2.2.2: - resolution: {integrity: sha512-aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw==} + await-lock@3.0.0: + resolution: {integrity: sha512-eO6fLiSnrJrMdjWMNK8zbVRXPs2TKJg78iKZd9wDpN3na5tcoV6EoeiOlMgk2QaAQ1gIrK1YuMsJHXWqz89tSA==} babel-plugin-polyfill-corejs2@0.4.17: resolution: {integrity: sha512-aTyf30K/rqAsNwN76zYrdtx8obu0E4KoUME29B1xj+B3WxgvWkp943vYQ+z8Mv3lw9xHXMHpvSPOBxzAkIa94w==} @@ -1131,8 +1200,8 @@ packages: resolution: {integrity: sha512-BLrgEcRTwX2o6gGxGOCNyMvGSp35YofuYzw9h1IMTRmKqttAZZVU67bdb9Pr2vUHA8+j3i2tJfjO6C6+4myGTA==} engines: {node: 18 || 20 || >=22} - baseline-browser-mapping@2.10.29: - resolution: {integrity: sha512-Asa2krT+XTPZINCS+2QcyS8WTkObE77RwkydwF7h6DmnKqbvlalz93m/dnphUyCa6SWSP51VgtEUf2FN+gelFQ==} + baseline-browser-mapping@2.10.37: + resolution: {integrity: sha512-girxaJ7WZssDOFhzCGZTDKoTa1gk6A1TbflaYTpykLJ4UU9Fz9kx1aREM8JCuoVHbL8X8T/mJg7w2oYSq72Oig==} engines: {node: '>=6.0.0'} hasBin: true @@ -1196,6 +1265,9 @@ packages: caniuse-lite@1.0.30001792: resolution: {integrity: sha512-hVLMUZFgR4JJ6ACt1uEESvQN1/dBVqPAKY0hgrV70eN3391K6juAfTjKZLKvOMsx8PxA7gsY1/tLMMTcfFLLpw==} + caniuse-lite@1.0.30001799: + resolution: {integrity: sha512-hG1bReV+OUU+MOqK4t/ZWI0tZOyz3rqS9XuhOUz1cIcbwBKjOyJEJuw9ER5JuNyqxNk8u/JUVbGibBOL1yrjFw==} + chalk-template@0.4.0: resolution: {integrity: sha512-/ghrgmhfY8RaSdeo43hNXxpoHAtxdbskUHjPpfqUWGttFgycUhYPGx3YZBCnUCvOa7Doivn1IZec3DEGFoMgLg==} engines: {node: '>=12'} @@ -1328,8 +1400,8 @@ packages: eastasianwidth@0.2.0: resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} - electron-to-chromium@1.5.353: - resolution: {integrity: sha512-kOrWphBi8TOZyiJZqsgqIle0lw+tzmnQK83pV9dZUd01Nm2POECSyFQMAuarzZdYqQW7FH9RaYOuaRo3h+bQ3w==} + electron-to-chromium@1.5.372: + resolution: {integrity: sha512-M3yhbAlilnwqC8D21t28UCDGHyitShTmmLRU/H+b74P6Ski16Nb9HONYEaVpMj/pwC7BEo5B95FpjODLCWbtfA==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -1787,8 +1859,8 @@ packages: ms@2.1.3: resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} - multiformats@9.9.0: - resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} + multiformats@13.4.2: + resolution: {integrity: sha512-eh6eHCrRi1+POZ3dA+Dq1C6jhP1GNtr9CRINMb67OKzqW9I5DUuZM/3jLPlzhgpGeiNUlEGEbkCYChXMCc/8DQ==} mz@2.7.0: resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==} @@ -1813,8 +1885,9 @@ packages: node-html-parser@6.1.13: resolution: {integrity: sha512-qIsTMOY4C/dAa5Q5vsobRpOOvPfC4pB61UVW2uSwZNUp0QU/jCekTal1vMmbO0DgdHeLUJpv/ARmDqErVxA3Sg==} - node-releases@2.0.44: - resolution: {integrity: sha512-5WUyunoPMsvvEhS8AxHtRzP+oA8UCkJ7YRxatWKjngndhDGLiqEVAQKWjFAiAiuL8zMRGzGSJxFnLetoa43qGQ==} + node-releases@2.0.47: + resolution: {integrity: sha512-Uzmd6LXpouKo8EUK68IjH4+E01w/hXyV3R3g/geCJo+rXLNfh1xucB+LOzYEOQPSiUK3h/xZf0cQGcSsmyL2Og==} + engines: {node: '>=18'} normalize-path@3.0.0: resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} @@ -1942,6 +2015,10 @@ packages: resolution: {integrity: sha512-SoSL4+OSEtR99LHFZQiJLkT59C5B1amGO1NzTwj7TT1qCUgUO6hxOvzkOYxD+vMrXBM3XJIKzokoERdqQq/Zmg==} engines: {node: ^10 || ^12 || >=14} + postcss@8.5.15: + resolution: {integrity: sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A==} + engines: {node: ^10 || ^12 || >=14} + preact@10.29.1: resolution: {integrity: sha512-gQCLc/vWroE8lIpleXtdJhTFDogTdZG9AjMUpVkDf2iTCNwYNWA+u16dL41TqUDJO4gm2IgrcMv3uTpjd4Pwmg==} @@ -2024,8 +2101,8 @@ packages: resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} engines: {iojs: '>=1.0.0', node: '>=0.10.0'} - rolldown@1.0.0: - resolution: {integrity: sha512-yD986aXDESFGS95spT1LAv0jssywP4npMEjmMHyN2/5+eE8qQJUype2AaKkRiLgBgyD0LFlubwAht7VmY8rGoA==} + rolldown@1.0.3: + resolution: {integrity: sha512-i00lAJ2ks1BYr7rjNjKC7BcqAS7nVfiT3QX1SI5aY+AFHblCmaUf9OE9dbdzDvW6dJxbi2ZCZiy9v3CcwOiX3g==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true @@ -2044,6 +2121,11 @@ packages: engines: {node: '>=10'} hasBin: true + semver@7.8.4: + resolution: {integrity: sha512-rUCObTnP32Q08R2uuIrt7r9PlEonuTmtuXYcW6s5kjdlj3xbnwe+21yXptAUYcMAABLkYYTtnmzb3w3EDZfueA==} + engines: {node: '>=10'} + hasBin: true + serve-handler@6.1.7: resolution: {integrity: sha512-CinAq1xWb0vR3twAv9evEU8cNWkXCb9kd5ePAHUKJBkOsUpR1wt/CvGdeca7vqumL1U5cSaeVQ6zZMxiJ3yWsg==} @@ -2150,8 +2232,8 @@ packages: thenify@3.3.1: resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==} - tinyglobby@0.2.16: - resolution: {integrity: sha512-pn99VhoACYR8nFHhxqix+uvsbXineAasWm5ojXoN8xEwK5Kd3/TrhNn1wByuD52UxWRLy8pu+kRMniEi6Eq9Zg==} + tinyglobby@0.2.17: + resolution: {integrity: sha512-wXR/dYpcqKmfWpEdZjiKJOwCNFndD0DMnrW/cYjVGttEkBfVgcLFHoNrlj47mjOVic9yyNu65alsgF4NQyTa2g==} engines: {node: '>=12.0.0'} tlds@1.261.0: @@ -2194,8 +2276,8 @@ packages: engines: {node: '>=14.17'} hasBin: true - uint8arrays@3.0.0: - resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==} + uint8arrays@5.1.1: + resolution: {integrity: sha512-9muQwa4wZG4dKi9gMAIBtnk2Pw87SRpvWTH6lOGm19V2Uqxr4uomUf2PGqPnWc+qs06sN8owUU4jfcoWOcfwVQ==} unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} @@ -2247,8 +2329,8 @@ packages: peerDependencies: vite: 5.x || 6.x || 7.x || 8.x - vite@8.0.12: - resolution: {integrity: sha512-w2dDofOWv2QB09ZITZBsvKTVAlYvPR4IAmrY/v0ir9KvLs0xybR7i48wxhM1/oyBWO34wPns+bPGw5ZrZqDpZg==} + vite@8.0.16: + resolution: {integrity: sha512-h9bXPmJichP5fLmVQo3PyaGSDE2n3aPuomeAlVRm0JLmt4rY6zmPKd59HYI4LNW8oTK7tlTsuC7l/m7awx9Jcw==} engines: {node: ^20.19.0 || >=22.12.0} hasBin: true peerDependencies: @@ -2324,63 +2406,51 @@ snapshots: '@alloc/quick-lru@5.2.0': {} - '@atproto/api@0.15.27': + '@atproto/api@0.20.11': dependencies: - '@atproto/common-web': 0.4.21 - '@atproto/lexicon': 0.4.14 - '@atproto/syntax': 0.4.3 - '@atproto/xrpc': 0.7.7 - await-lock: 2.2.2 - multiformats: 9.9.0 + '@atproto/common-web': 0.5.0 + '@atproto/lexicon': 0.7.1 + '@atproto/syntax': 0.6.1 + '@atproto/xrpc': 0.8.0 + await-lock: 3.0.0 + multiformats: 13.4.2 tlds: 1.261.0 zod: 3.25.76 - '@atproto/common-web@0.4.21': + '@atproto/common-web@0.5.0': dependencies: - '@atproto/lex-data': 0.0.15 - '@atproto/lex-json': 0.0.16 - '@atproto/syntax': 0.5.4 + '@atproto/lex-data': 0.1.1 + '@atproto/lex-json': 0.1.0 + '@atproto/syntax': 0.6.1 zod: 3.25.76 - '@atproto/lex-data@0.0.15': + '@atproto/lex-data@0.1.1': dependencies: - multiformats: 9.9.0 + multiformats: 13.4.2 tslib: 2.8.1 - uint8arrays: 3.0.0 + uint8arrays: 5.1.1 unicode-segmenter: 0.14.5 - '@atproto/lex-json@0.0.16': + '@atproto/lex-json@0.1.0': dependencies: - '@atproto/lex-data': 0.0.15 + '@atproto/lex-data': 0.1.1 tslib: 2.8.1 - '@atproto/lexicon@0.4.14': + '@atproto/lexicon@0.7.1': dependencies: - '@atproto/common-web': 0.4.21 - '@atproto/syntax': 0.4.3 - iso-datestring-validator: 2.2.2 - multiformats: 9.9.0 + '@atproto/common-web': 0.5.0 + '@atproto/syntax': 0.6.1 + multiformats: 13.4.2 zod: 3.25.76 - '@atproto/lexicon@0.6.2': + '@atproto/syntax@0.6.1': dependencies: - '@atproto/common-web': 0.4.21 - '@atproto/syntax': 0.5.4 iso-datestring-validator: 2.2.2 - multiformats: 9.9.0 - zod: 3.25.76 - - '@atproto/syntax@0.4.3': - dependencies: tslib: 2.8.1 - '@atproto/syntax@0.5.4': + '@atproto/xrpc@0.8.0': dependencies: - tslib: 2.8.1 - - '@atproto/xrpc@0.7.7': - dependencies: - '@atproto/lexicon': 0.6.2 + '@atproto/lexicon': 0.7.1 zod: 3.25.76 '@babel/code-frame@7.29.0': @@ -2389,19 +2459,27 @@ snapshots: js-tokens: 4.0.0 picocolors: 1.1.1 + '@babel/code-frame@7.29.7': + dependencies: + '@babel/helper-validator-identifier': 7.29.7 + js-tokens: 4.0.0 + picocolors: 1.1.1 + '@babel/compat-data@7.29.3': {} + '@babel/compat-data@7.29.7': {} + '@babel/core@7.29.0': dependencies: - '@babel/code-frame': 7.29.0 - '@babel/generator': 7.29.1 - '@babel/helper-compilation-targets': 7.28.6 - '@babel/helper-module-transforms': 7.28.6(@babel/core@7.29.0) - '@babel/helpers': 7.29.2 - '@babel/parser': 7.29.3 - '@babel/template': 7.28.6 - '@babel/traverse': 7.29.0 - '@babel/types': 7.29.0 + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-compilation-targets': 7.29.7 + '@babel/helper-module-transforms': 7.29.7(@babel/core@7.29.0) + '@babel/helpers': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 '@jridgewell/remapping': 2.3.5 convert-source-map: 2.0.0 debug: 4.4.3 @@ -2419,6 +2497,14 @@ snapshots: '@jridgewell/trace-mapping': 0.3.31 jsesc: 3.1.0 + '@babel/generator@7.29.7': + dependencies: + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + '@jridgewell/gen-mapping': 0.3.13 + '@jridgewell/trace-mapping': 0.3.31 + jsesc: 3.1.0 + '@babel/helper-annotate-as-pure@7.27.3': dependencies: '@babel/types': 7.29.0 @@ -2431,6 +2517,14 @@ snapshots: lru-cache: 5.1.1 semver: 6.3.1 + '@babel/helper-compilation-targets@7.29.7': + dependencies: + '@babel/compat-data': 7.29.7 + '@babel/helper-validator-option': 7.29.7 + browserslist: 4.28.2 + lru-cache: 5.1.1 + semver: 6.3.1 + '@babel/helper-create-class-features-plugin@7.29.3(@babel/core@7.29.0)': dependencies: '@babel/core': 7.29.0 @@ -2464,6 +2558,8 @@ snapshots: '@babel/helper-globals@7.28.0': {} + '@babel/helper-globals@7.29.7': {} + '@babel/helper-member-expression-to-functions@7.28.5': dependencies: '@babel/traverse': 7.29.0 @@ -2478,6 +2574,13 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-imports@7.29.7': + dependencies: + '@babel/traverse': 7.29.7 + '@babel/types': 7.29.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-module-transforms@7.28.6(@babel/core@7.29.0)': dependencies: '@babel/core': 7.29.0 @@ -2487,6 +2590,15 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/helper-module-transforms@7.29.7(@babel/core@7.29.0)': + dependencies: + '@babel/core': 7.29.0 + '@babel/helper-module-imports': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@babel/traverse': 7.29.7 + transitivePeerDependencies: + - supports-color + '@babel/helper-optimise-call-expression@7.27.1': dependencies: '@babel/types': 7.29.0 @@ -2520,10 +2632,16 @@ snapshots: '@babel/helper-string-parser@7.27.1': {} + '@babel/helper-string-parser@7.29.7': {} + '@babel/helper-validator-identifier@7.28.5': {} + '@babel/helper-validator-identifier@7.29.7': {} + '@babel/helper-validator-option@7.27.1': {} + '@babel/helper-validator-option@7.29.7': {} + '@babel/helper-wrap-function@7.28.6': dependencies: '@babel/template': 7.28.6 @@ -2532,15 +2650,19 @@ snapshots: transitivePeerDependencies: - supports-color - '@babel/helpers@7.29.2': + '@babel/helpers@7.29.7': dependencies: - '@babel/template': 7.28.6 - '@babel/types': 7.29.0 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 '@babel/parser@7.29.3': dependencies: '@babel/types': 7.29.0 + '@babel/parser@7.29.7': + dependencies: + '@babel/types': 7.29.7 + '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.28.5(@babel/core@7.29.0)': dependencies: '@babel/core': 7.29.0 @@ -3050,6 +3172,12 @@ snapshots: '@babel/parser': 7.29.3 '@babel/types': 7.29.0 + '@babel/template@7.29.7': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/types': 7.29.7 + '@babel/traverse@7.29.0': dependencies: '@babel/code-frame': 7.29.0 @@ -3062,27 +3190,60 @@ snapshots: transitivePeerDependencies: - supports-color + '@babel/traverse@7.29.7': + dependencies: + '@babel/code-frame': 7.29.7 + '@babel/generator': 7.29.7 + '@babel/helper-globals': 7.29.7 + '@babel/parser': 7.29.7 + '@babel/template': 7.29.7 + '@babel/types': 7.29.7 + debug: 4.4.3 + transitivePeerDependencies: + - supports-color + '@babel/types@7.29.0': dependencies: '@babel/helper-string-parser': 7.27.1 '@babel/helper-validator-identifier': 7.28.5 + '@babel/types@7.29.7': + dependencies: + '@babel/helper-string-parser': 7.29.7 + '@babel/helper-validator-identifier': 7.29.7 + '@emnapi/core@1.10.0': dependencies: '@emnapi/wasi-threads': 1.2.1 tslib: 2.8.1 optional: true + '@emnapi/core@1.11.1': + dependencies: + '@emnapi/wasi-threads': 1.2.2 + tslib: 2.8.1 + optional: true + '@emnapi/runtime@1.10.0': dependencies: tslib: 2.8.1 optional: true + '@emnapi/runtime@1.11.1': + dependencies: + tslib: 2.8.1 + optional: true + '@emnapi/wasi-threads@1.2.1': dependencies: tslib: 2.8.1 optional: true + '@emnapi/wasi-threads@1.2.2': + dependencies: + tslib: 2.8.1 + optional: true + '@eslint-community/eslint-utils@4.9.1(eslint@9.39.4(jiti@1.21.7))': dependencies: eslint: 9.39.4(jiti@1.21.7) @@ -3171,12 +3332,12 @@ snapshots: '@napi-rs/wasm-runtime@0.2.12': dependencies: - '@emnapi/core': 1.10.0 - '@emnapi/runtime': 1.10.0 + '@emnapi/core': 1.11.1 + '@emnapi/runtime': 1.11.1 '@tybys/wasm-util': 0.10.2 optional: true - '@napi-rs/wasm-runtime@1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': + '@napi-rs/wasm-runtime@1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0)': dependencies: '@emnapi/core': 1.10.0 '@emnapi/runtime': 1.10.0 @@ -3195,23 +3356,23 @@ snapshots: '@nodelib/fs.scandir': 2.1.5 fastq: 1.20.1 - '@oxc-project/types@0.129.0': {} + '@oxc-project/types@0.133.0': {} '@package-json/types@0.0.12': {} - '@preact/preset-vite@2.10.5(@babel/core@7.29.0)(preact@10.29.1)(vite@8.0.12(jiti@1.21.7)(terser@5.47.1))': + '@preact/preset-vite@2.10.5(@babel/core@7.29.0)(preact@10.29.1)(vite@8.0.16(jiti@1.21.7)(terser@5.47.1))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-react-jsx': 7.28.6(@babel/core@7.29.0) '@babel/plugin-transform-react-jsx-development': 7.27.1(@babel/core@7.29.0) - '@prefresh/vite': 2.4.12(preact@10.29.1)(vite@8.0.12(jiti@1.21.7)(terser@5.47.1)) + '@prefresh/vite': 2.4.12(preact@10.29.1)(vite@8.0.16(jiti@1.21.7)(terser@5.47.1)) '@rollup/pluginutils': 5.3.0 babel-plugin-transform-hook-names: 1.0.2(@babel/core@7.29.0) debug: 4.4.3 magic-string: 0.30.21 picocolors: 1.1.1 - vite: 8.0.12(jiti@1.21.7)(terser@5.47.1) - vite-prerender-plugin: 0.5.13(vite@8.0.12(jiti@1.21.7)(terser@5.47.1)) + vite: 8.0.16(jiti@1.21.7)(terser@5.47.1) + vite-prerender-plugin: 0.5.13(vite@8.0.16(jiti@1.21.7)(terser@5.47.1)) zimmerframe: 1.1.4 transitivePeerDependencies: - preact @@ -3226,7 +3387,7 @@ snapshots: '@prefresh/utils@1.2.1': {} - '@prefresh/vite@2.4.12(preact@10.29.1)(vite@8.0.12(jiti@1.21.7)(terser@5.47.1))': + '@prefresh/vite@2.4.12(preact@10.29.1)(vite@8.0.16(jiti@1.21.7)(terser@5.47.1))': dependencies: '@babel/core': 7.29.0 '@prefresh/babel-plugin': 0.5.3 @@ -3234,60 +3395,60 @@ snapshots: '@prefresh/utils': 1.2.1 '@rollup/pluginutils': 4.2.1 preact: 10.29.1 - vite: 8.0.12(jiti@1.21.7)(terser@5.47.1) + vite: 8.0.16(jiti@1.21.7)(terser@5.47.1) transitivePeerDependencies: - supports-color - '@rolldown/binding-android-arm64@1.0.0': + '@rolldown/binding-android-arm64@1.0.3': optional: true - '@rolldown/binding-darwin-arm64@1.0.0': + '@rolldown/binding-darwin-arm64@1.0.3': optional: true - '@rolldown/binding-darwin-x64@1.0.0': + '@rolldown/binding-darwin-x64@1.0.3': optional: true - '@rolldown/binding-freebsd-x64@1.0.0': + '@rolldown/binding-freebsd-x64@1.0.3': optional: true - '@rolldown/binding-linux-arm-gnueabihf@1.0.0': + '@rolldown/binding-linux-arm-gnueabihf@1.0.3': optional: true - '@rolldown/binding-linux-arm64-gnu@1.0.0': + '@rolldown/binding-linux-arm64-gnu@1.0.3': optional: true - '@rolldown/binding-linux-arm64-musl@1.0.0': + '@rolldown/binding-linux-arm64-musl@1.0.3': optional: true - '@rolldown/binding-linux-ppc64-gnu@1.0.0': + '@rolldown/binding-linux-ppc64-gnu@1.0.3': optional: true - '@rolldown/binding-linux-s390x-gnu@1.0.0': + '@rolldown/binding-linux-s390x-gnu@1.0.3': optional: true - '@rolldown/binding-linux-x64-gnu@1.0.0': + '@rolldown/binding-linux-x64-gnu@1.0.3': optional: true - '@rolldown/binding-linux-x64-musl@1.0.0': + '@rolldown/binding-linux-x64-musl@1.0.3': optional: true - '@rolldown/binding-openharmony-arm64@1.0.0': + '@rolldown/binding-openharmony-arm64@1.0.3': optional: true - '@rolldown/binding-wasm32-wasi@1.0.0': + '@rolldown/binding-wasm32-wasi@1.0.3': dependencies: '@emnapi/core': 1.10.0 '@emnapi/runtime': 1.10.0 - '@napi-rs/wasm-runtime': 1.1.4(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) + '@napi-rs/wasm-runtime': 1.1.5(@emnapi/core@1.10.0)(@emnapi/runtime@1.10.0) optional: true - '@rolldown/binding-win32-arm64-msvc@1.0.0': + '@rolldown/binding-win32-arm64-msvc@1.0.3': optional: true - '@rolldown/binding-win32-x64-msvc@1.0.0': + '@rolldown/binding-win32-x64-msvc@1.0.3': optional: true - '@rolldown/pluginutils@1.0.0': {} + '@rolldown/pluginutils@1.0.1': {} '@rollup/pluginutils@4.2.1': dependencies: @@ -3377,8 +3538,8 @@ snapshots: '@typescript-eslint/visitor-keys': 8.59.3 debug: 4.4.3 minimatch: 10.2.5 - semver: 7.8.0 - tinyglobby: 0.2.16 + semver: 7.8.4 + tinyglobby: 0.2.17 ts-api-utils: 2.5.0(typescript@6.0.3) typescript: 6.0.3 transitivePeerDependencies: @@ -3459,7 +3620,7 @@ snapshots: '@unrs/resolver-binding-win32-x64-msvc@1.11.1': optional: true - '@vitejs/plugin-legacy@8.0.1(terser@5.47.1)(vite@8.0.12(jiti@1.21.7)(terser@5.47.1))': + '@vitejs/plugin-legacy@8.0.1(terser@5.47.1)(vite@8.0.16(jiti@1.21.7)(terser@5.47.1))': dependencies: '@babel/core': 7.29.0 '@babel/plugin-transform-dynamic-import': 7.27.1(@babel/core@7.29.0) @@ -3474,7 +3635,7 @@ snapshots: regenerator-runtime: 0.14.1 systemjs: 6.15.1 terser: 5.47.1 - vite: 8.0.12(jiti@1.21.7)(terser@5.47.1) + vite: 8.0.16(jiti@1.21.7)(terser@5.47.1) transitivePeerDependencies: - supports-color @@ -3536,7 +3697,7 @@ snapshots: postcss: 8.5.14 postcss-value-parser: 4.2.0 - await-lock@2.2.2: {} + await-lock@3.0.0: {} babel-plugin-polyfill-corejs2@0.4.17(@babel/core@7.29.0): dependencies: @@ -3570,7 +3731,7 @@ snapshots: balanced-match@4.0.4: {} - baseline-browser-mapping@2.10.29: {} + baseline-browser-mapping@2.10.37: {} binary-extensions@2.3.0: {} @@ -3607,10 +3768,10 @@ snapshots: browserslist@4.28.2: dependencies: - baseline-browser-mapping: 2.10.29 - caniuse-lite: 1.0.30001792 - electron-to-chromium: 1.5.353 - node-releases: 2.0.44 + baseline-browser-mapping: 2.10.37 + caniuse-lite: 1.0.30001799 + electron-to-chromium: 1.5.372 + node-releases: 2.0.47 update-browserslist-db: 1.2.3(browserslist@4.28.2) buffer-from@1.1.2: {} @@ -3627,6 +3788,8 @@ snapshots: caniuse-lite@1.0.30001792: {} + caniuse-lite@1.0.30001799: {} + chalk-template@0.4.0: dependencies: chalk: 4.1.2 @@ -3754,7 +3917,7 @@ snapshots: eastasianwidth@0.2.0: {} - electron-to-chromium@1.5.353: {} + electron-to-chromium@1.5.372: {} emoji-regex@8.0.0: {} @@ -4142,7 +4305,7 @@ snapshots: ms@2.1.3: {} - multiformats@9.9.0: {} + multiformats@13.4.2: {} mz@2.7.0: dependencies: @@ -4163,7 +4326,7 @@ snapshots: css-select: 5.2.2 he: 1.2.0 - node-releases@2.0.44: {} + node-releases@2.0.47: {} normalize-path@3.0.0: {} @@ -4263,6 +4426,12 @@ snapshots: picocolors: 1.1.1 source-map-js: 1.2.1 + postcss@8.5.15: + dependencies: + nanoid: 3.3.12 + picocolors: 1.1.1 + source-map-js: 1.2.1 + preact@10.29.1: {} prelude-ls@1.2.1: {} @@ -4337,26 +4506,26 @@ snapshots: reusify@1.1.0: {} - rolldown@1.0.0: + rolldown@1.0.3: dependencies: - '@oxc-project/types': 0.129.0 - '@rolldown/pluginutils': 1.0.0 + '@oxc-project/types': 0.133.0 + '@rolldown/pluginutils': 1.0.1 optionalDependencies: - '@rolldown/binding-android-arm64': 1.0.0 - '@rolldown/binding-darwin-arm64': 1.0.0 - '@rolldown/binding-darwin-x64': 1.0.0 - '@rolldown/binding-freebsd-x64': 1.0.0 - '@rolldown/binding-linux-arm-gnueabihf': 1.0.0 - '@rolldown/binding-linux-arm64-gnu': 1.0.0 - '@rolldown/binding-linux-arm64-musl': 1.0.0 - '@rolldown/binding-linux-ppc64-gnu': 1.0.0 - '@rolldown/binding-linux-s390x-gnu': 1.0.0 - '@rolldown/binding-linux-x64-gnu': 1.0.0 - '@rolldown/binding-linux-x64-musl': 1.0.0 - '@rolldown/binding-openharmony-arm64': 1.0.0 - '@rolldown/binding-wasm32-wasi': 1.0.0 - '@rolldown/binding-win32-arm64-msvc': 1.0.0 - '@rolldown/binding-win32-x64-msvc': 1.0.0 + '@rolldown/binding-android-arm64': 1.0.3 + '@rolldown/binding-darwin-arm64': 1.0.3 + '@rolldown/binding-darwin-x64': 1.0.3 + '@rolldown/binding-freebsd-x64': 1.0.3 + '@rolldown/binding-linux-arm-gnueabihf': 1.0.3 + '@rolldown/binding-linux-arm64-gnu': 1.0.3 + '@rolldown/binding-linux-arm64-musl': 1.0.3 + '@rolldown/binding-linux-ppc64-gnu': 1.0.3 + '@rolldown/binding-linux-s390x-gnu': 1.0.3 + '@rolldown/binding-linux-x64-gnu': 1.0.3 + '@rolldown/binding-linux-x64-musl': 1.0.3 + '@rolldown/binding-openharmony-arm64': 1.0.3 + '@rolldown/binding-wasm32-wasi': 1.0.3 + '@rolldown/binding-win32-arm64-msvc': 1.0.3 + '@rolldown/binding-win32-x64-msvc': 1.0.3 run-parallel@1.2.0: dependencies: @@ -4368,6 +4537,8 @@ snapshots: semver@7.8.0: {} + semver@7.8.4: {} + serve-handler@6.1.7: dependencies: bytes: 3.0.0 @@ -4454,7 +4625,7 @@ snapshots: lines-and-columns: 1.2.4 mz: 2.7.0 pirates: 4.0.7 - tinyglobby: 0.2.16 + tinyglobby: 0.2.17 ts-interface-checker: 0.1.13 supports-color@7.2.0: @@ -4508,7 +4679,7 @@ snapshots: dependencies: any-promise: 1.3.0 - tinyglobby@0.2.16: + tinyglobby@0.2.17: dependencies: fdir: 6.5.0(picomatch@4.0.4) picomatch: 4.0.4 @@ -4546,9 +4717,9 @@ snapshots: typescript@6.0.3: {} - uint8arrays@3.0.0: + uint8arrays@5.1.1: dependencies: - multiformats: 9.9.0 + multiformats: 13.4.2 unicode-canonical-property-names-ecmascript@2.0.1: {} @@ -4608,7 +4779,7 @@ snapshots: vite-bundle-analyzer@1.3.8: {} - vite-prerender-plugin@0.5.13(vite@8.0.12(jiti@1.21.7)(terser@5.47.1)): + vite-prerender-plugin@0.5.13(vite@8.0.16(jiti@1.21.7)(terser@5.47.1)): dependencies: kolorist: 1.8.0 magic-string: 0.30.21 @@ -4616,15 +4787,15 @@ snapshots: simple-code-frame: 1.3.0 source-map: 0.7.6 stack-trace: 1.0.0 - vite: 8.0.12(jiti@1.21.7)(terser@5.47.1) + vite: 8.0.16(jiti@1.21.7)(terser@5.47.1) - vite@8.0.12(jiti@1.21.7)(terser@5.47.1): + vite@8.0.16(jiti@1.21.7)(terser@5.47.1): dependencies: lightningcss: 1.32.0 picomatch: 4.0.4 - postcss: 8.5.14 - rolldown: 1.0.0 - tinyglobby: 0.2.16 + postcss: 8.5.15 + rolldown: 1.0.3 + tinyglobby: 0.2.17 optionalDependencies: fsevents: 2.3.3 jiti: 1.21.7 diff --git a/bskyembed/src/components/embed.tsx b/bskyembed/src/components/embed.tsx index 3afa7a611f..af7a97b8fe 100644 --- a/bskyembed/src/components/embed.tsx +++ b/bskyembed/src/components/embed.tsx @@ -1,5 +1,6 @@ import { AppBskyEmbedExternal, + AppBskyEmbedGallery, AppBskyEmbedImages, AppBskyEmbedRecord, AppBskyEmbedRecordWithMedia, @@ -43,6 +44,11 @@ export function Embed({ return } + // Case 1b: Gallery (Photos v2) + if (AppBskyEmbedGallery.isView(content)) { + return + } + // Case 2: External link if (AppBskyEmbedExternal.isView(content)) { return @@ -230,6 +236,8 @@ function Info({children}: {children: ComponentChildren}) { ) } +type GridImage = {thumb: string; alt: string} + function ImageEmbed({ content, labelInfo, @@ -240,20 +248,45 @@ function ImageEmbed({ if (labelInfo) { return {labelInfo} } + return ( + ({thumb: i.thumb, alt: i.alt}))} + /> + ) +} - switch (content.images.length) { +function GalleryEmbed({ + content, + labelInfo, +}: { + content: AppBskyEmbedGallery.View + labelInfo?: string +}) { + if (labelInfo) { + return {labelInfo} + } + const images = content.items + .filter(AppBskyEmbedGallery.isViewImage) + .map(i => ({thumb: i.thumbnail, alt: i.alt})) + return +} + +function ImageGrid({images}: {images: GridImage[]}) { + switch (images.length) { + case 0: + return null case 1: return ( {content.images[0].alt} ) case 2: return (
- {content.images.map((image, i) => ( + {images.map((image, i) => (
{content.images[0].alt}
- {content.images.slice(1).map((image, i) => ( + {images.slice(1).map((image, i) => (
) - case 4: + default: { + const remaining = images.length - 4 return (
- {content.images.map((image, i) => ( - {image.alt} - ))} + {images.slice(0, 4).map((image, i) => { + const isOverflowCell = i === 3 && remaining > 0 + return ( +
+ {image.alt} + {isOverflowCell && ( +
+ + +{remaining} + +
+ )} +
+ ) + })}
) - default: - return null + } } } diff --git a/bskyembed/src/components/post.tsx b/bskyembed/src/components/post.tsx index 4167dc0869..46faebc4a7 100644 --- a/bskyembed/src/components/post.tsx +++ b/bskyembed/src/components/post.tsx @@ -154,7 +154,9 @@ export function Post({thread}: Props) { } function PostContent({record}: {record: AppBskyFeedPost.Record | null}) { - if (!record) return null + // text-only check - posts with no text (e.g. gallery posts) would otherwise + // render an empty

that adds an extra flex gap above the embed + if (!record?.text) return null const rt = new RichText({ text: record.text, diff --git a/bskyogcard/package.json b/bskyogcard/package.json index 0fb28334cb..b6c6342a5d 100644 --- a/bskyogcard/package.json +++ b/bskyogcard/package.json @@ -6,7 +6,7 @@ "devEngines": { "packageManager": { "name": "pnpm", - "version": "11.1.3", + "version": "11.5.2", "onFail": "warn" } }, @@ -18,7 +18,7 @@ "typecheck": "tsc --noEmit" }, "dependencies": { - "@atproto/api": "0.20.6", + "@atproto/api": "0.20.13", "@atproto/common": "^0.6.1", "@resvg/resvg-js": "^2.6.2", "express": "^4.19.2", diff --git a/bskyogcard/pnpm-lock.yaml b/bskyogcard/pnpm-lock.yaml index 39685ea8ce..4c1b4452ee 100644 --- a/bskyogcard/pnpm-lock.yaml +++ b/bskyogcard/pnpm-lock.yaml @@ -7,52 +7,52 @@ importers: configDependencies: {} packageManagerDependencies: '@pnpm/exe': - specifier: 11.1.3 - version: 11.1.3 + specifier: 11.5.2 + version: 11.5.2 pnpm: - specifier: 11.1.3 - version: 11.1.3 + specifier: 11.5.2 + version: 11.5.2 packages: - '@pnpm/exe@11.1.3': - resolution: {integrity: sha512-J6bSMpZlHVUKuMKtPT/+lrFPpvBiOIgk6HnNC3vmoM/fsMgFhao6ITFwdsUMzdCl2qHf9cnVYA4ZBdsGmVUnpg==} + '@pnpm/exe@11.5.2': + resolution: {integrity: sha512-4UFnP2rhNu1xjAQ+I1GdIUUEtCJuTYJlbpiWSFA4POAID3Lpt+2vrjImWO7eOJ7iCY3vpc4TFe2IW3sAolW4Kg==} hasBin: true - '@pnpm/linux-arm64@11.1.3': - resolution: {integrity: sha512-sz3fc0hSqguk2eGe/InelpBD3LP82MzF+8pLzDpYNGuhasGY+VWkuxEo02HczQYRVXTsbpZVepk+Qs2CONc04Q==} + '@pnpm/linux-arm64@11.5.2': + resolution: {integrity: sha512-MbJySnu2y9cCBqlODLjUlZ87JnRC3Inq40rvGHWJSrSQ0PnuHeSw2NDMnLI8Hf9hCY+ooussRc5iiR4IAkjUvg==} cpu: [arm64] os: [linux] - '@pnpm/linux-x64@11.1.3': - resolution: {integrity: sha512-UadJh5fJZWa47OtdZTWLKWDj4z5WpZFB5pS2wOh/kfKypUmQyjmbOMClP7/yJGS2ZtrSjRgYjIEWAjndkWsMaA==} + '@pnpm/linux-x64@11.5.2': + resolution: {integrity: sha512-g6g2BGpQA47wUACy6B1MdeSHPtnl6x4AeCg0IOWQ7xXorEtC+VRiSHhLpA5kByFGeSwyYh/nLc7mLul5DAaELw==} cpu: [x64] os: [linux] - '@pnpm/linuxstatic-arm64@11.1.3': - resolution: {integrity: sha512-lWmGr96w+VrIRVsEfTXROB3GeQNxrX2Hy32j3USHr6WlqmpH1i7YjavJGpoXeVZbb77fCFjNFAtsJzGXSgy/Og==} + '@pnpm/linuxstatic-arm64@11.5.2': + resolution: {integrity: sha512-xTxs9BLxYW39BPNGnmvYCUBnMPWm4mzmzujmdYbpRxDnBXrx55qPR5K/3LSohX7VrmsdDrYxuH6AmG1AaOlIfA==} cpu: [arm64] os: [linux] libc: [musl] - '@pnpm/linuxstatic-x64@11.1.3': - resolution: {integrity: sha512-I74GDBOPbr5TXgob3ct4hv6BQtLGdsjGJrII2qNl/e2xYHXekjIWE4Eh7RGN4C7xu+BZYKtvnOOr149yR7KxUw==} + '@pnpm/linuxstatic-x64@11.5.2': + resolution: {integrity: sha512-RGmmc/SoGLD90gmOHcU85UEKNoNRstLvizli4wzDASmETz/VeqJOqU5nD1YBgjzcP72sUMS352dh4bmzTfKyvQ==} cpu: [x64] os: [linux] libc: [musl] - '@pnpm/macos-arm64@11.1.3': - resolution: {integrity: sha512-nWn155BVa54iNyg4iolVhjMtqumXHPh8ul5CFjQFJXdwgr9MRUgc5EUBML1+7mS8C/7Wcex5HUgn/w3fliHCsQ==} + '@pnpm/macos-arm64@11.5.2': + resolution: {integrity: sha512-gW3A2jRlC3SJRw8qX2SAzjMIu9o98daTSqCKzeeYcjF/uEbtbz3dn4HqYrYffBnenKbc4hsgZQmNOHAvUKIlSg==} cpu: [arm64] os: [darwin] - '@pnpm/win-arm64@11.1.3': - resolution: {integrity: sha512-4u6PQL7/WgwdweC2ZJcdCzhM1koRFG5ofcUSrIVsdyo9ePfGq2D9p1rkZbiLEfIGvl3GKOsfMB5DRTgs8es4AQ==} + '@pnpm/win-arm64@11.5.2': + resolution: {integrity: sha512-+VJCDoH/pRzLXBikwjvxgAnGfQufT8EALBX8cfSmrwD40JABUZvgPtjBjde7OwEoK/XwtlH8w+ZceFV0K3/YHQ==} cpu: [arm64] os: [win32] - '@pnpm/win-x64@11.1.3': - resolution: {integrity: sha512-JmhH7ljJ3MWjvWFz/YHbu/27ISCNLZsQb1JG+ib3uHlfUwIJuF6BudXYsbS5Uu0o7xUvC9sPPm+Uho4Or6R3vA==} + '@pnpm/win-x64@11.5.2': + resolution: {integrity: sha512-zgglREh75RbFgV/E0tNRS03ElX+hJOV43KRSSeaboxtj3ei1rrguxOgOCXUs/GsizoHVsuD+qXGABE4Kc4GMCg==} cpu: [x64] os: [win32] @@ -116,45 +116,45 @@ packages: resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} engines: {node: '>=8'} - pnpm@11.1.3: - resolution: {integrity: sha512-yFNX/hfKEt0j3XBxgiZm39fjy3b+IU4zcLXqL7NPKiMRhVCbY+cX880KyzjdP42CvNXoFyQArmeLcOpPvtCJbQ==} + pnpm@11.5.2: + resolution: {integrity: sha512-ccYx44IGbvwlYl1c8CkHXeB7YbN/bic1D72Esb2lhkyMGWetwoB3a0XDCnFcA1mjvgj+9C1bsJ4rmQKZeWkpFg==} engines: {node: '>=22.13'} hasBin: true snapshots: - '@pnpm/exe@11.1.3': + '@pnpm/exe@11.5.2': dependencies: '@reflink/reflink': 0.1.19 detect-libc: 2.1.2 optionalDependencies: - '@pnpm/linux-arm64': 11.1.3 - '@pnpm/linux-x64': 11.1.3 - '@pnpm/linuxstatic-arm64': 11.1.3 - '@pnpm/linuxstatic-x64': 11.1.3 - '@pnpm/macos-arm64': 11.1.3 - '@pnpm/win-arm64': 11.1.3 - '@pnpm/win-x64': 11.1.3 + '@pnpm/linux-arm64': 11.5.2 + '@pnpm/linux-x64': 11.5.2 + '@pnpm/linuxstatic-arm64': 11.5.2 + '@pnpm/linuxstatic-x64': 11.5.2 + '@pnpm/macos-arm64': 11.5.2 + '@pnpm/win-arm64': 11.5.2 + '@pnpm/win-x64': 11.5.2 - '@pnpm/linux-arm64@11.1.3': + '@pnpm/linux-arm64@11.5.2': optional: true - '@pnpm/linux-x64@11.1.3': + '@pnpm/linux-x64@11.5.2': optional: true - '@pnpm/linuxstatic-arm64@11.1.3': + '@pnpm/linuxstatic-arm64@11.5.2': optional: true - '@pnpm/linuxstatic-x64@11.1.3': + '@pnpm/linuxstatic-x64@11.5.2': optional: true - '@pnpm/macos-arm64@11.1.3': + '@pnpm/macos-arm64@11.5.2': optional: true - '@pnpm/win-arm64@11.1.3': + '@pnpm/win-arm64@11.5.2': optional: true - '@pnpm/win-x64@11.1.3': + '@pnpm/win-x64@11.5.2': optional: true '@reflink/reflink-darwin-arm64@0.1.19': @@ -194,7 +194,7 @@ snapshots: detect-libc@2.1.2: {} - pnpm@11.1.3: {} + pnpm@11.5.2: {} --- lockfileVersion: '9.0' @@ -208,8 +208,8 @@ importers: .: dependencies: '@atproto/api': - specifier: 0.20.6 - version: 0.20.6 + specifier: 0.20.13 + version: 0.20.13 '@atproto/common': specifier: ^0.6.1 version: 0.6.1 @@ -259,8 +259,8 @@ importers: packages: - '@atproto/api@0.20.6': - resolution: {integrity: sha512-WnFPcUl+qZdXmt27+Tg93BDIvBt/WpXfLIiBzBTp3ms9aszM5hAsfc7G8KEsnsmnRvcm0xRfiKEjIt5FxTKdYg==} + '@atproto/api@0.20.13': + resolution: {integrity: sha512-AN7NTUsygHXnXs5Cnc6v7/BAjQydwAhE0P8hL21RpIAB4fmTksRKTU3TV//wPg4fk9ESsfNwGIAlwoybbyoZKg==} engines: {node: '>=22'} '@atproto/common-web@0.5.0': @@ -1154,7 +1154,7 @@ packages: snapshots: - '@atproto/api@0.20.6': + '@atproto/api@0.20.13': dependencies: '@atproto/common-web': 0.5.0 '@atproto/lexicon': 0.7.1 diff --git a/bskyogcard/src/routes/chat-invite.tsx b/bskyogcard/src/routes/chat-invite.tsx index e3267cc0d0..36482743b8 100644 --- a/bskyogcard/src/routes/chat-invite.tsx +++ b/bskyogcard/src/routes/chat-invite.tsx @@ -1,6 +1,6 @@ import assert from 'node:assert' -import {type ChatBskyGroupDefs} from '@atproto/api' +import {ChatBskyGroupDefs} from '@atproto/api' import resvg from '@resvg/resvg-js' import {type Express} from 'express' import satori from 'satori' @@ -32,7 +32,7 @@ export default function (ctx: AppContext, app: Express) { codes: [code], }) const found = result.data.joinLinkPreviews[0] - if (!found) { + if (!ChatBskyGroupDefs.isJoinLinkPreviewView(found)) { return res.status(404).end('not found') } preview = found diff --git a/bskyweb/cmd/bskyweb/embedmeta.go b/bskyweb/cmd/bskyweb/embedmeta.go index 84b8f8a4da..03da46273e 100644 --- a/bskyweb/cmd/bskyweb/embedmeta.go +++ b/bskyweb/cmd/bskyweb/embedmeta.go @@ -4,10 +4,9 @@ import ( appbsky "github.com/bluesky-social/indigo/api/bsky" ) -// Helpers for extracting Open Graph metadata from post embeds. These feed -// og:* / twitter:* meta tags only; the schema.org JSON-LD output lives in -// jsonld.go. og:video has its own path because JSON-LD does not yet emit -// VideoObject (deferred — needs `duration` from the appview). +// Helpers for extracting Open Graph metadata from post embeds. og:video +// shares findVideoEmbed with the JSON-LD VideoObject path in jsonld.go so +// the two outputs cannot drift. // videoMeta holds og:video meta tag data. type videoMeta struct { @@ -21,17 +20,7 @@ type videoMeta struct { // extractVideoMeta returns og:video metadata, or the zero value if there's // no video embed. Respects embedHidden so og:video and og:image stay in sync. func extractVideoMeta(pv *appbsky.FeedDefs_PostView, embedHidden bool) videoMeta { - if pv == nil || pv.Embed == nil || embedHidden { - return videoMeta{} - } - var v *appbsky.EmbedVideo_View - if pv.Embed.EmbedVideo_View != nil { - v = pv.Embed.EmbedVideo_View - } else if pv.Embed.EmbedRecordWithMedia_View != nil && - pv.Embed.EmbedRecordWithMedia_View.Media != nil && - pv.Embed.EmbedRecordWithMedia_View.Media.EmbedVideo_View != nil { - v = pv.Embed.EmbedRecordWithMedia_View.Media.EmbedVideo_View - } + v := findVideoEmbed(pv, embedHidden) if v == nil || v.Playlist == "" { return videoMeta{} } diff --git a/bskyweb/cmd/bskyweb/jsonld.go b/bskyweb/cmd/bskyweb/jsonld.go index 7bc44a02f3..4178250493 100644 --- a/bskyweb/cmd/bskyweb/jsonld.go +++ b/bskyweb/cmd/bskyweb/jsonld.go @@ -59,6 +59,7 @@ type discussionForumPosting struct { Text string `json:"text,omitempty"` Image []string `json:"image,omitempty"` ThumbnailURL string `json:"thumbnailUrl,omitempty"` + Video *videoObject `json:"video,omitempty"` DatePublished string `json:"datePublished,omitempty"` InteractionStat []interactionStat `json:"interactionStatistic,omitempty"` CommentCount *int64 `json:"commentCount,omitempty"` @@ -67,6 +68,20 @@ type discussionForumPosting struct { SharedContent *sharedContent `json:"sharedContent,omitempty"` } +// videoObject is the schema.org VideoObject shape for video embeds. +// duration is omitted because the appview does not expose it. +type videoObject struct { + Type string `json:"@type"` + Name string `json:"name,omitempty"` + Description string `json:"description,omitempty"` + ThumbnailURL string `json:"thumbnailUrl,omitempty"` + UploadDate string `json:"uploadDate,omitempty"` + ContentURL string `json:"contentUrl,omitempty"` + EmbedURL string `json:"embedUrl,omitempty"` + Width int64 `json:"width,omitempty"` + Height int64 `json:"height,omitempty"` +} + // comment is the schema.org Comment shape used in // DiscussionForumPosting.comment[]. The comment property does not accept // DiscussionForumPosting, so replies map to Comment. @@ -78,6 +93,7 @@ type comment struct { Text string `json:"text,omitempty"` Image []string `json:"image,omitempty"` ThumbnailURL string `json:"thumbnailUrl,omitempty"` + Video *videoObject `json:"video,omitempty"` DatePublished string `json:"datePublished,omitempty"` } @@ -127,6 +143,31 @@ func bskyPostURLFromATURI(handle, atURI string) string { return bskyPostURL(handle, parsed.RecordKey().String()) } +// bskyPostURLFromATURIWithDIDFallback returns the handle-form post URL +// when the handle is usable, otherwise falls back to the DID-form URL +// derived from the AT-URI's authority. Returns "" only when the AT-URI is +// unparseable or has no record key. Used for nested fields (e.g. +// VideoObject.embedUrl) where omitting on handle.invalid would weaken the +// emitted structured data. +func bskyPostURLFromATURIWithDIDFallback(handle, atURI string) string { + parsed, err := syntax.ParseATURI(atURI) + if err != nil { + return "" + } + rkey := parsed.RecordKey().String() + if rkey == "" { + return "" + } + if url := bskyPostURL(handle, rkey); url != "" { + return url + } + did := parsed.Authority().String() + if did == "" { + return "" + } + return fmt.Sprintf("https://bsky.app/profile/%s/post/%s", did, rkey) +} + // bskyProfileURL returns the canonical handle-form profile URL, or "" if // the handle is unusable. func bskyProfileURL(handle string) string { @@ -136,9 +177,9 @@ func bskyProfileURL(handle string) string { return fmt.Sprintf("https://bsky.app/profile/%s", handle) } -// extractPostMedia returns thumbnail URLs for the post's image or video -// embed, byte-identical to what we put in og:image. Callers derive -// thumbnailUrl from urls[0]. +// extractPostMedia returns thumbnail URLs for the post's image, gallery, +// or video embed, byte-identical to what we put in og:image. Callers +// derive thumbnailUrl from urls[0]. func extractPostMedia(pv *appbsky.FeedDefs_PostView, embedHidden bool) []string { if pv == nil || pv.Embed == nil || embedHidden { return nil @@ -147,6 +188,9 @@ func extractPostMedia(pv *appbsky.FeedDefs_PostView, embedHidden bool) []string if pv.Embed.EmbedImages_View != nil { return imageThumbs(pv.Embed.EmbedImages_View.Images) } + if pv.Embed.EmbedGallery_View != nil { + return galleryThumbs(pv.Embed.EmbedGallery_View.Items) + } if pv.Embed.EmbedVideo_View != nil && pv.Embed.EmbedVideo_View.Thumbnail != nil { return []string{*pv.Embed.EmbedVideo_View.Thumbnail} } @@ -155,6 +199,9 @@ func extractPostMedia(pv *appbsky.FeedDefs_PostView, embedHidden bool) []string if media.EmbedImages_View != nil { return imageThumbs(media.EmbedImages_View.Images) } + if media.EmbedGallery_View != nil { + return galleryThumbs(media.EmbedGallery_View.Items) + } if media.EmbedVideo_View != nil && media.EmbedVideo_View.Thumbnail != nil { return []string{*media.EmbedVideo_View.Thumbnail} } @@ -174,6 +221,89 @@ func imageThumbs(images []*appbsky.EmbedImages_ViewImage) []string { return urls } +// galleryThumbs returns the thumbnail URLs of image items in a gallery +// embed, or nil if empty. Items_Elem is a union; non-image variants and +// nil entries are skipped so future gallery item types don't break SEO +// extraction. Empty Thumbnail strings are also skipped to avoid emitting +// if the appview ever returns one. +func galleryThumbs(items []*appbsky.EmbedGallery_View_Items_Elem) []string { + if len(items) == 0 { + return nil + } + urls := make([]string, 0, len(items)) + for _, item := range items { + if item == nil || item.EmbedGallery_ViewImage == nil { + continue + } + if item.EmbedGallery_ViewImage.Thumbnail == "" { + continue + } + urls = append(urls, item.EmbedGallery_ViewImage.Thumbnail) + } + if len(urls) == 0 { + return nil + } + return urls +} + +// findVideoEmbed returns the post's video embed view, or nil if there is +// none or embeds are hidden. Shared with extractVideoMeta so og:video and +// JSON-LD VideoObject stay in sync. +func findVideoEmbed(pv *appbsky.FeedDefs_PostView, embedHidden bool) *appbsky.EmbedVideo_View { + if pv == nil || pv.Embed == nil || embedHidden { + return nil + } + if pv.Embed.EmbedVideo_View != nil { + return pv.Embed.EmbedVideo_View + } + if pv.Embed.EmbedRecordWithMedia_View != nil && + pv.Embed.EmbedRecordWithMedia_View.Media != nil && + pv.Embed.EmbedRecordWithMedia_View.Media.EmbedVideo_View != nil { + return pv.Embed.EmbedRecordWithMedia_View.Media.EmbedVideo_View + } + return nil +} + +// buildVideoObject returns a VideoObject for the post's video embed, or +// nil if there's no usable video. Falls back to "Video by @" when +// alt text is empty so name is always populated (Google requires it). +// description falls back to name for the same reason. +func buildVideoObject(pv *appbsky.FeedDefs_PostView, embedURL, postText string, embedHidden bool) *videoObject { + v := findVideoEmbed(pv, embedHidden) + if v == nil || v.Playlist == "" { + return nil + } + vo := &videoObject{ + Type: "VideoObject", + ContentURL: v.Playlist, + EmbedURL: embedURL, + // uploadDate uses IndexedAt (not record CreatedAt) for consistency + // with DiscussionForumPosting.datePublished on the parent post. + UploadDate: pv.IndexedAt, + } + if v.Thumbnail != nil { + vo.ThumbnailURL = *v.Thumbnail + } + switch { + case v.Alt != nil && *v.Alt != "": + vo.Name = *v.Alt + case pv.Author != nil && pv.Author.Handle != "" && pv.Author.Handle != "handle.invalid": + vo.Name = "Video by @" + pv.Author.Handle + default: + vo.Name = "Video on Bluesky" + } + if postText != "" { + vo.Description = postText + } else { + vo.Description = vo.Name + } + if v.AspectRatio != nil { + vo.Width = v.AspectRatio.Width + vo.Height = v.AspectRatio.Height + } + return vo +} + // extractQuotedPostURL returns the canonical URL of a quoted post, or "" // if the embed is blocked / not-found / detached / a non-post record. func extractQuotedPostURL(pv *appbsky.FeedDefs_PostView) string { @@ -363,14 +493,18 @@ func buildPostNode(pv *appbsky.FeedDefs_PostView, replies []*appbsky.FeedDefs_Th thumb = images[0] } + postURL := bskyPostURLFromATURIWithDIDFallback(pv.Author.Handle, pv.Uri) + postText := postRecordText(pv) + node := discussionForumPosting{ Type: "DiscussionForumPosting", - URL: bskyPostURLFromATURI(pv.Author.Handle, pv.Uri), + URL: postURL, Identifier: pv.Uri, Author: buildAuthor(pv.Author), - Text: postRecordText(pv), + Text: postText, Image: images, ThumbnailURL: thumb, + Video: buildVideoObject(pv, postURL, postText, embedHidden), DatePublished: pv.IndexedAt, InteractionStat: buildPostStats(pv), } @@ -433,14 +567,17 @@ func buildReplyNode(pv *appbsky.FeedDefs_PostView, hideLabels map[string]bool) c if len(images) > 0 { thumb = images[0] } + postURL := bskyPostURLFromATURIWithDIDFallback(pv.Author.Handle, pv.Uri) + postText := postRecordText(pv) return comment{ Type: "Comment", - URL: bskyPostURLFromATURI(pv.Author.Handle, pv.Uri), + URL: postURL, Identifier: pv.Uri, Author: buildAuthor(pv.Author), - Text: postRecordText(pv), + Text: postText, Image: images, ThumbnailURL: thumb, + Video: buildVideoObject(pv, postURL, postText, embedHidden), DatePublished: pv.IndexedAt, } } diff --git a/bskyweb/cmd/bskyweb/jsonld_test.go b/bskyweb/cmd/bskyweb/jsonld_test.go index f14cdb6f78..ee44008030 100644 --- a/bskyweb/cmd/bskyweb/jsonld_test.go +++ b/bskyweb/cmd/bskyweb/jsonld_test.go @@ -72,6 +72,60 @@ func withImages(thumbs ...string) func(*appbsky.FeedDefs_PostView) { } } +// withGallery adds an app.bsky.embed.gallery view with image items. +func withGallery(thumbs ...string) func(*appbsky.FeedDefs_PostView) { + return func(pv *appbsky.FeedDefs_PostView) { + var items []*appbsky.EmbedGallery_View_Items_Elem + for _, t := range thumbs { + items = append(items, &appbsky.EmbedGallery_View_Items_Elem{ + EmbedGallery_ViewImage: &appbsky.EmbedGallery_ViewImage{ + Thumbnail: t, + Fullsize: t + "_full", + }, + }) + } + pv.Embed = &appbsky.FeedDefs_PostView_Embed{ + EmbedGallery_View: &appbsky.EmbedGallery_View{Items: items}, + } + } +} + +// withRecordWithMediaGallery adds a record-with-media embed whose media slot +// is an app.bsky.embed.gallery view. +func withRecordWithMediaGallery(qHandle, qDid, qRkey string, thumbs ...string) func(*appbsky.FeedDefs_PostView) { + return func(pv *appbsky.FeedDefs_PostView) { + var items []*appbsky.EmbedGallery_View_Items_Elem + for _, t := range thumbs { + items = append(items, &appbsky.EmbedGallery_View_Items_Elem{ + EmbedGallery_ViewImage: &appbsky.EmbedGallery_ViewImage{ + Thumbnail: t, + Fullsize: t + "_full", + }, + }) + } + pv.Embed = &appbsky.FeedDefs_PostView_Embed{ + EmbedRecordWithMedia_View: &appbsky.EmbedRecordWithMedia_View{ + Record: &appbsky.EmbedRecord_View{ + Record: &appbsky.EmbedRecord_View_Record{ + EmbedRecord_ViewRecord: &appbsky.EmbedRecord_ViewRecord{ + Uri: "at://" + qDid + "/app.bsky.feed.post/" + qRkey, + Cid: "bafy-quoted", + Author: &appbsky.ActorDefs_ProfileViewBasic{ + Did: qDid, + Handle: qHandle, + }, + IndexedAt: "2024-01-01T00:00:00Z", + }, + }, + }, + Media: &appbsky.EmbedRecordWithMedia_View_Media{ + EmbedGallery_View: &appbsky.EmbedGallery_View{Items: items}, + }, + }, + } + } +} + // withVideo adds a video embed with a thumbnail. func withVideo(thumb string) func(*appbsky.FeedDefs_PostView) { return func(pv *appbsky.FeedDefs_PostView) { @@ -299,6 +353,88 @@ func TestBuildPostJSONLD_WithImages(t *testing.T) { } } +func TestBuildPostJSONLD_WithGallery(t *testing.T) { + thumb1 := "https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:alice/g1@jpeg" + thumb2 := "https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:alice/g2@jpeg" + thumb3 := "https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:alice/g3@jpeg" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "gallery", withGallery(thumb1, thumb2, thumb3)) + out, err := buildPostJSONLD(pv, nil, "https://bsky.app/profile/alice.bsky.social/post/abc123", hideEmbedLabels, hideReplyLabels) + if err != nil { + t.Fatal(err) + } + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + imgs, ok := main["image"].([]any) + if !ok { + t.Fatalf("image should be array, got %T", main["image"]) + } + if len(imgs) != 3 { + t.Errorf("expected 3 gallery images, got %d", len(imgs)) + } + if imgs[0] != thumb1 || imgs[1] != thumb2 || imgs[2] != thumb3 { + t.Errorf("gallery image[] order wrong: %v", imgs) + } + if main["thumbnailUrl"] != thumb1 { + t.Errorf("thumbnailUrl should equal image[0] (Google byte-equality requirement), got %v", main["thumbnailUrl"]) + } +} + +// Gallery in the media slot of a record-with-media embed should still +// produce og:image / JSON-LD image[]. Quote-post URL still emits +// alongside via isBasedOn. +func TestBuildPostJSONLD_GalleryInRecordWithMedia(t *testing.T) { + thumb := "https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:alice/g@jpeg" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "quote+gallery", + withRecordWithMediaGallery("bob.example.com", "did:plc:bob", "xyz", thumb)) + out, err := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + if err != nil { + t.Fatal(err) + } + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + imgs, ok := main["image"].([]any) + if !ok || len(imgs) != 1 || imgs[0] != thumb { + t.Errorf("expected single gallery thumb in image[], got %v", main["image"]) + } + if main["thumbnailUrl"] != thumb { + t.Errorf("thumbnailUrl wrong: %v", main["thumbnailUrl"]) + } + if main["isBasedOn"] != "https://bsky.app/profile/bob.example.com/post/xyz" { + t.Errorf("isBasedOn should still emit for record-with-media gallery, got %v", main["isBasedOn"]) + } +} + +// Forward-compat: nil items, unknown-variant union elements, and empty +// Thumbnail strings must be skipped, not panic or leak as . Unknown variants are dropped silently +// so older deploys keep working when new gallery item types ship. +func TestExtractPostMedia_GallerySkipsUnknownItems(t *testing.T) { + thumb := "https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:alice/g@jpeg" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "gallery") + pv.Embed = &appbsky.FeedDefs_PostView_Embed{ + EmbedGallery_View: &appbsky.EmbedGallery_View{ + Items: []*appbsky.EmbedGallery_View_Items_Elem{ + nil, + {}, // empty union, no variant set + {EmbedGallery_ViewImage: &appbsky.EmbedGallery_ViewImage{Thumbnail: ""}}, // empty Thumbnail + {EmbedGallery_ViewImage: &appbsky.EmbedGallery_ViewImage{Thumbnail: thumb}}, + }, + }, + } + got := extractPostMedia(pv, false) + if len(got) != 1 || got[0] != thumb { + t.Errorf("expected single thumb, got %v", got) + } + + // All-nil / all-unknown gallery should produce no thumbs (not [""]). + pv.Embed = &appbsky.FeedDefs_PostView_Embed{ + EmbedGallery_View: &appbsky.EmbedGallery_View{ + Items: []*appbsky.EmbedGallery_View_Items_Elem{nil, {}}, + }, + } + if got := extractPostMedia(pv, false); got != nil { + t.Errorf("expected nil for empty/unknown-only gallery, got %v", got) + } +} + func TestBuildPostJSONLD_WithVideo(t *testing.T) { thumb := "https://cdn.bsky.app/img/video_thumbnail/plain/did:plc:alice/v@jpeg" pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "watch", withVideo(thumb)) @@ -361,6 +497,25 @@ func TestBuildPostJSONLD_HiddenEmbed(t *testing.T) { } } +// Symmetric guard for the gallery extraction path. Functionally redundant +// with the early-return at the top of extractPostMedia, but exists so the +// hide-embed contract is asserted directly against the gallery branch - +// catches anyone who later moves the embedHidden check inside an +// embed-shape branch. +func TestBuildPostJSONLD_HiddenEmbed_Gallery(t *testing.T) { + thumb := "https://cdn.bsky.app/img/g@jpeg" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "nsfw", + withGallery(thumb), withSelfLabel("porn")) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + if _, present := main["image"]; present { + t.Errorf("hidden-embed gallery post should not emit image") + } + if _, present := main["thumbnailUrl"]; present { + t.Errorf("hidden-embed gallery post should not emit thumbnailUrl") + } +} + func TestBuildPostJSONLD_TextEscaping(t *testing.T) { // Includes ", \, newline, , and a unicode char. tricky := "hello \"world\" \\ <\\>\n 🎉" @@ -1049,3 +1204,339 @@ func TestBuildProfileJSONLD_HasPartAuthorReviewedBy(t *testing.T) { t.Errorf("verifier identifier wrong: %v", rb[0]) } } + +// videoEmbedOpts configures withVideoFull. Zero values mean "not set". +type videoEmbedOpts struct { + thumbnail string + playlist string + alt string + width int64 + height int64 + hasAspect bool + recordMedia bool // nest under EmbedRecordWithMedia_View.Media +} + +// withVideoFull installs a fully-specified video embed for VideoObject tests. +func withVideoFull(o videoEmbedOpts) func(*appbsky.FeedDefs_PostView) { + return func(pv *appbsky.FeedDefs_PostView) { + v := &appbsky.EmbedVideo_View{Playlist: o.playlist} + if o.thumbnail != "" { + v.Thumbnail = strPtr(o.thumbnail) + } + if o.alt != "" { + v.Alt = strPtr(o.alt) + } + if o.hasAspect { + v.AspectRatio = &appbsky.EmbedDefs_AspectRatio{Width: o.width, Height: o.height} + } + if o.recordMedia { + pv.Embed = &appbsky.FeedDefs_PostView_Embed{ + EmbedRecordWithMedia_View: &appbsky.EmbedRecordWithMedia_View{ + Record: &appbsky.EmbedRecord_View{ + Record: &appbsky.EmbedRecord_View_Record{ + EmbedRecord_ViewRecord: &appbsky.EmbedRecord_ViewRecord{ + Uri: "at://did:plc:quoted/app.bsky.feed.post/q", + Cid: "bafy-quoted", + Author: &appbsky.ActorDefs_ProfileViewBasic{ + Did: "did:plc:quoted", + Handle: "quoted.bsky.social", + }, + IndexedAt: "2024-01-01T00:00:00Z", + }, + }, + }, + Media: &appbsky.EmbedRecordWithMedia_View_Media{ + EmbedVideo_View: v, + }, + }, + } + } else { + pv.Embed = &appbsky.FeedDefs_PostView_Embed{ + EmbedVideo_View: v, + } + } + } +} + +func TestBuildPostJSONLD_WithVideoObject(t *testing.T) { + thumb := "https://cdn.bsky.app/img/video_thumbnail/plain/did:plc:alice/v@jpeg" + playlist := "https://video.bsky.app/v/did:plc:alice/v/playlist.m3u8" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "watch this", + withVideoFull(videoEmbedOpts{ + thumbnail: thumb, playlist: playlist, alt: "A trip to the park", + hasAspect: true, width: 16, height: 9, + })) + canonical := "https://bsky.app/profile/alice.bsky.social/post/abc123" + out, err := buildPostJSONLD(pv, nil, canonical, hideEmbedLabels, hideReplyLabels) + if err != nil { + t.Fatal(err) + } + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + video, ok := main["video"].(map[string]any) + if !ok { + t.Fatalf("video missing from mainEntity") + } + if video["@type"] != "VideoObject" { + t.Errorf("@type = %v, want VideoObject", video["@type"]) + } + if video["name"] != "A trip to the park" { + t.Errorf("name = %v, want alt text", video["name"]) + } + if video["description"] != "watch this" { + t.Errorf("description = %v, want post text", video["description"]) + } + if video["thumbnailUrl"] != thumb { + t.Errorf("thumbnailUrl = %v, want %v", video["thumbnailUrl"], thumb) + } + if video["uploadDate"] != pv.IndexedAt { + t.Errorf("uploadDate = %v, want %v", video["uploadDate"], pv.IndexedAt) + } + if video["contentUrl"] != playlist { + t.Errorf("contentUrl = %v, want %v", video["contentUrl"], playlist) + } + if video["embedUrl"] != canonical { + t.Errorf("embedUrl = %v, want %v", video["embedUrl"], canonical) + } + if w, _ := video["width"].(float64); int64(w) != 16 { + t.Errorf("width = %v, want 16", video["width"]) + } + if h, _ := video["height"].(float64); int64(h) != 9 { + t.Errorf("height = %v, want 9", video["height"]) + } + // post thumbnailUrl should equal the video thumb (byte-equal og:image). + if main["thumbnailUrl"] != thumb { + t.Errorf("post thumbnailUrl = %v, want %v", main["thumbnailUrl"], thumb) + } +} + +func TestBuildPostJSONLD_VideoNameFallback(t *testing.T) { + // No alt text -> "Video by @". + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "no alt here", + withVideoFull(videoEmbedOpts{ + playlist: "https://video.bsky.app/p.m3u8", + })) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + video, ok := main["video"].(map[string]any) + if !ok { + t.Fatalf("video missing") + } + if video["name"] != "Video by @alice.bsky.social" { + t.Errorf("name fallback = %v", video["name"]) + } +} + +func TestBuildPostJSONLD_VideoNameFallbackHandleInvalid(t *testing.T) { + // handle.invalid + no alt -> generic fallback. + pv := makePostView("handle.invalid", "did:plc:alice", "abc123", "x", + withVideoFull(videoEmbedOpts{ + playlist: "https://video.bsky.app/p.m3u8", + })) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + video := main["video"].(map[string]any) + if video["name"] != "Video on Bluesky" { + t.Errorf("name fallback = %v, want generic", video["name"]) + } +} + +func TestBuildPostJSONLD_VideoDescriptionFallback(t *testing.T) { + // Empty post text -> description falls back to name so Google's video + // rich-result requirement (description present) is satisfied. + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "", + withVideoFull(videoEmbedOpts{ + playlist: "https://video.bsky.app/p.m3u8", alt: "scenic clip", + })) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + video := main["video"].(map[string]any) + if video["description"] != "scenic clip" { + t.Errorf("description fallback = %v, want name", video["description"]) + } +} + +func TestBuildPostJSONLD_VideoNoAspectRatio(t *testing.T) { + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "x", + withVideoFull(videoEmbedOpts{ + playlist: "https://video.bsky.app/p.m3u8", alt: "alt", + })) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + video := main["video"].(map[string]any) + if _, present := video["width"]; present { + t.Errorf("width should be omitted when AspectRatio missing") + } + if _, present := video["height"]; present { + t.Errorf("height should be omitted when AspectRatio missing") + } +} + +func TestBuildPostJSONLD_VideoMissingPlaylist(t *testing.T) { + // No playlist -> VideoObject suppressed; image[]/thumbnailUrl still set + // from the video thumb (existing behavior). + thumb := "https://cdn.bsky.app/img/video_thumbnail/plain/did:plc:alice/v@jpeg" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "x", + withVideo(thumb)) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + if _, present := main["video"]; present { + t.Errorf("video without playlist should not produce VideoObject") + } + if main["thumbnailUrl"] != thumb { + t.Errorf("thumbnailUrl should still be set from video thumb, got %v", main["thumbnailUrl"]) + } +} + +func TestBuildPostJSONLD_VideoHiddenEmbed(t *testing.T) { + // Self-labeled hide drops the video, parallel to the image-hide test. + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "nsfw", + withVideoFull(videoEmbedOpts{ + thumbnail: "https://cdn.bsky.app/img/x@jpeg", + playlist: "https://video.bsky.app/p.m3u8", + alt: "should be dropped", + }), + withSelfLabel("porn")) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + if _, present := main["video"]; present { + t.Errorf("hidden-embed post should not emit video") + } +} + +func TestBuildPostJSONLD_VideoInRecordWithMedia(t *testing.T) { + thumb := "https://cdn.bsky.app/img/video_thumbnail/plain/did:plc:alice/v@jpeg" + playlist := "https://video.bsky.app/p.m3u8" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "quote+video", + withVideoFull(videoEmbedOpts{ + thumbnail: thumb, playlist: playlist, alt: "alt", recordMedia: true, + hasAspect: true, width: 4, height: 3, + })) + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + video, ok := main["video"].(map[string]any) + if !ok { + t.Fatalf("video missing on record-with-media post") + } + if video["contentUrl"] != playlist { + t.Errorf("contentUrl = %v, want %v", video["contentUrl"], playlist) + } + if video["thumbnailUrl"] != thumb { + t.Errorf("thumbnailUrl = %v, want %v", video["thumbnailUrl"], thumb) + } + // quote-post still surfaces via isBasedOn alongside the video. + if main["isBasedOn"] != "https://bsky.app/profile/quoted.bsky.social/post/q" { + t.Errorf("isBasedOn = %v", main["isBasedOn"]) + } +} + +func TestBuildPostJSONLD_VideoOnReply(t *testing.T) { + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "main") + *pv.ReplyCount = 1 + thumb := "https://cdn.bsky.app/img/video_thumbnail/plain/did:plc:bob/v@jpeg" + playlist := "https://video.bsky.app/bob.m3u8" + reply := makePostView("bob.bsky.social", "did:plc:bob", "rep1", "watch", + withVideoFull(videoEmbedOpts{ + thumbnail: thumb, playlist: playlist, alt: "bob's clip", + })) + out, _ := buildPostJSONLD(pv, buildReplies(reply), "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + c := main["comment"].([]any)[0].(map[string]any) + video, ok := c["video"].(map[string]any) + if !ok { + t.Fatalf("reply video missing") + } + if video["@type"] != "VideoObject" { + t.Errorf("reply video @type = %v", video["@type"]) + } + if video["name"] != "bob's clip" { + t.Errorf("reply video name = %v", video["name"]) + } + if video["contentUrl"] != playlist { + t.Errorf("reply video contentUrl = %v", video["contentUrl"]) + } + if video["embedUrl"] != "https://bsky.app/profile/bob.bsky.social/post/rep1" { + t.Errorf("reply video embedUrl = %v", video["embedUrl"]) + } +} + +func TestBuildPostJSONLD_NoVideoNoField(t *testing.T) { + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "no embed") + out, _ := buildPostJSONLD(pv, nil, "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + if _, present := main["video"]; present { + t.Errorf("post without video should not include video field") + } +} + +func TestBuildProfileJSONLD_HasPartVideo(t *testing.T) { + pv := newProfileViewDetailed() + playlist := "https://video.bsky.app/p.m3u8" + post := makePostView("alice.bsky.social", "did:plc:alice", "rp1", "see", + withVideoFull(videoEmbedOpts{ + playlist: playlist, alt: "alt", + })) + out, _ := buildProfileJSONLD(pv, []*appbsky.FeedDefs_PostView{post}, hideEmbedLabels, hideReplyLabels) + page := unmarshalLD(t, out) + hp := page["hasPart"].([]any) + if len(hp) != 1 { + t.Fatalf("expected 1 hasPart entry, got %d", len(hp)) + } + video, ok := hp[0].(map[string]any)["video"].(map[string]any) + if !ok { + t.Fatalf("hasPart entry should carry video, got %v", hp[0]) + } + if video["contentUrl"] != playlist { + t.Errorf("hasPart video contentUrl = %v", video["contentUrl"]) + } + if video["embedUrl"] != "https://bsky.app/profile/alice.bsky.social/post/rp1" { + t.Errorf("hasPart video embedUrl = %v", video["embedUrl"]) + } +} + +// handle.invalid authors must still produce a non-empty embedUrl on the +// VideoObject. The handle-form URL is unusable, so we fall back to the +// DID-form URL derived from the AT-URI authority. Without this fallback, +// omitempty drops embedUrl and Google's video indexer loses the canonical +// page reference. +func TestBuildPostJSONLD_VideoHandleInvalidEmbedURL(t *testing.T) { + playlist := "https://video.bsky.app/p.m3u8" + pv := makePostView("handle.invalid", "did:plc:alice", "abc123", "watch", + withVideoFull(videoEmbedOpts{ + playlist: playlist, alt: "scenic clip", + })) + canonical := "https://bsky.app/profile/did:plc:alice/post/abc123" + out, _ := buildPostJSONLD(pv, nil, canonical, hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + video, ok := main["video"].(map[string]any) + if !ok { + t.Fatalf("video missing on handle.invalid post") + } + if video["embedUrl"] != canonical { + t.Errorf("embedUrl = %v, want %v", video["embedUrl"], canonical) + } + if video["contentUrl"] != playlist { + t.Errorf("contentUrl = %v, want %v", video["contentUrl"], playlist) + } +} + +// Same fallback applies to videos on replies whose author is handle.invalid. +func TestBuildPostJSONLD_VideoHandleInvalidEmbedURL_Reply(t *testing.T) { + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "main") + *pv.ReplyCount = 1 + playlist := "https://video.bsky.app/bob.m3u8" + reply := makePostView("handle.invalid", "did:plc:bob", "rep1", "watch", + withVideoFull(videoEmbedOpts{ + playlist: playlist, alt: "bob's clip", + })) + out, _ := buildPostJSONLD(pv, buildReplies(reply), "u", hideEmbedLabels, hideReplyLabels) + main := unmarshalLD(t, out)["mainEntity"].(map[string]any) + c := main["comment"].([]any)[0].(map[string]any) + video, ok := c["video"].(map[string]any) + if !ok { + t.Fatalf("reply video missing") + } + want := "https://bsky.app/profile/did:plc:bob/post/rep1" + if video["embedUrl"] != want { + t.Errorf("reply video embedUrl = %v, want %v", video["embedUrl"], want) + } +} diff --git a/bskyweb/cmd/bskyweb/main.go b/bskyweb/cmd/bskyweb/main.go index c3ded18e7a..dba852f79b 100644 --- a/bskyweb/cmd/bskyweb/main.go +++ b/bskyweb/cmd/bskyweb/main.go @@ -59,6 +59,13 @@ func run(args []string) { Value: ":8100", EnvVars: []string{"HTTP_ADDRESS"}, }, + &cli.StringFlag{ + Name: "metrics-address", + Usage: "Specify the local IP/port to bind the metrics server to", + Required: false, + Value: ":9090", + EnvVars: []string{"METRICS_HTTP_ADDRESS"}, + }, &cli.StringFlag{ Name: "link-host", Usage: "scheme, hostname, and port of link service", diff --git a/bskyweb/cmd/bskyweb/render_test.go b/bskyweb/cmd/bskyweb/render_test.go index f7c9edd677..902476709f 100644 --- a/bskyweb/cmd/bskyweb/render_test.go +++ b/bskyweb/cmd/bskyweb/render_test.go @@ -43,6 +43,13 @@ func extractJSONLD(t *testing.T, html string) string { return strings.TrimSpace(m[1]) } +func TestRenderBase_NoindexMeta(t *testing.T) { + html := renderTemplate(t, "base.html", pongo2.Context{"noindex": true, "nofollow": true}) + if !strings.Contains(html, ``) { + t.Errorf("expected combined noindex,nofollow meta; got:\n%s", html) + } +} + func TestRenderPost_EmitsJSONLD(t *testing.T) { pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "hello") ld, err := buildPostJSONLD(pv, nil, "https://bsky.app/profile/alice.bsky.social/post/abc123", hideEmbedLabels, hideReplyLabels) @@ -98,6 +105,40 @@ func TestRenderPost_OGImageMatchesJSONLD(t *testing.T) { } } +// Gallery posts must hit the same og:image / JSON-LD image[] byte-equality +// contract that legacy images posts do. Regression guard for the +// app.bsky.embed.gallery extraction path. +func TestRenderPost_OGImageMatchesJSONLD_Gallery(t *testing.T) { + thumb1 := "https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:alice/g1@jpeg" + thumb2 := "https://cdn.bsky.app/img/feed_thumbnail/plain/did:plc:alice/g2@jpeg" + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "gallery", withGallery(thumb1, thumb2)) + thumbs := extractPostMedia(pv, false) + ld, _ := buildPostJSONLD(pv, nil, "https://bsky.app/profile/alice.bsky.social/post/abc123", hideEmbedLabels, hideReplyLabels) + html := renderTemplate(t, "post.html", pongo2.Context{ + "postView": pv, + "requestURI": "https://bsky.app/profile/alice.bsky.social/post/abc123", + "canonicalURL": "https://bsky.app/profile/alice.bsky.social/post/abc123", + "postJSONLD": ld, + "imgThumbUrls": thumbs, + }) + + if !strings.Contains(html, ``) { + t.Errorf("og:image[0] not found in rendered HTML for gallery post") + } + if !strings.Contains(html, ``) { + t.Errorf("og:image[1] not found in rendered HTML for gallery post") + } + body := extractJSONLD(t, html) + var parsed map[string]any + _ = json.Unmarshal([]byte(body), &parsed) + main := parsed["mainEntity"].(map[string]any) + imgs := main["image"].([]any) + if len(imgs) != 2 || imgs[0] != thumb1 || main["thumbnailUrl"] != thumb1 { + t.Errorf("JSON-LD image strings drifted from og:image for gallery; image=%v thumbnailUrl=%v", + imgs, main["thumbnailUrl"]) + } +} + func TestRenderPost_FallsBackToCanonicalizeFilter(t *testing.T) { // Without canonicalURL, the template falls back to requestURI|canonicalize_url. pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "hi") @@ -209,3 +250,50 @@ func TestRenderPost_VideoWithoutThumbnailEmitsOGVideo(t *testing.T) { t.Errorf("og:video:type should emit even without imgThumbUrls; got:\n%s", html) } } + +// Auth-required posts must emit noindex,nofollow so the stub page (no body +// text, no comments) is not indexed. +func TestRenderPost_AuthRequiredNoindex(t *testing.T) { + html := renderTemplate(t, "post.html", pongo2.Context{ + "requiresAuth": true, + "profileHandle": "alice.bsky.social", + "requestURI": "https://bsky.app/profile/alice.bsky.social/post/abc123", + "canonicalURL": "https://bsky.app/profile/alice.bsky.social/post/abc123", + "noindex": true, + "nofollow": true, + }) + if !strings.Contains(html, ``) { + t.Errorf("auth-required post should emit noindex,nofollow; got:\n%s", html) + } +} + +// Auth-required profiles must emit noindex,nofollow. +func TestRenderProfile_AuthRequiredNoindex(t *testing.T) { + pv := newProfileViewDetailed() + html := renderTemplate(t, "profile.html", pongo2.Context{ + "profileView": pv, + "requestURI": "https://bsky.app/profile/alice.bsky.social", + "requiresAuth": true, + "noindex": true, + "nofollow": true, + }) + if !strings.Contains(html, ``) { + t.Errorf("auth-required profile should emit noindex,nofollow; got:\n%s", html) + } +} + +// Public posts must NOT emit a robots meta tag. Guards against an accidental +// flip of the noindex flag for indexable pages. +func TestRenderPost_PublicNoNoindex(t *testing.T) { + pv := makePostView("alice.bsky.social", "did:plc:alice", "abc123", "hello") + ld, _ := buildPostJSONLD(pv, nil, "https://bsky.app/profile/alice.bsky.social/post/abc123", hideEmbedLabels, hideReplyLabels) + html := renderTemplate(t, "post.html", pongo2.Context{ + "postView": pv, + "requestURI": "https://bsky.app/profile/alice.bsky.social/post/abc123", + "canonicalURL": "https://bsky.app/profile/alice.bsky.social/post/abc123", + "postJSONLD": ld, + }) + if strings.Contains(html, ` for OG previews. + // optional client for the chat appview, used by /chat/ for OG previews. var chatXrpcc *xrpc.Client if chatHost != "" { chatXrpcc = &xrpc.Client{ @@ -296,50 +300,50 @@ func serve(cctx *cli.Context) error { // generic routes e.GET("/hashtag/:tag", server.WebGeneric) e.GET("/topic/:topic", server.WebGeneric) - e.GET("/search", server.WebGeneric) - e.GET("/feeds", server.WebGeneric) - e.GET("/notifications", server.WebGeneric) - e.GET("/notifications/settings", server.WebGeneric) - e.GET("/notifications/activity", server.WebGeneric) - e.GET("/lists", server.WebGeneric) - e.GET("/moderation", server.WebGeneric) - e.GET("/moderation/modlists", server.WebGeneric) - e.GET("/moderation/muted-accounts", server.WebGeneric) - e.GET("/moderation/blocked-accounts", server.WebGeneric) - e.GET("/moderation/verification-settings", server.WebGeneric) - e.GET("/settings", server.WebGeneric) - e.GET("/settings/language", server.WebGeneric) - e.GET("/settings/app-passwords", server.WebGeneric) - e.GET("/settings/following-feed", server.WebGeneric) - e.GET("/settings/saved-feeds", server.WebGeneric) - e.GET("/settings/threads", server.WebGeneric) - e.GET("/settings/external-embeds", server.WebGeneric) - e.GET("/settings/accessibility", server.WebGeneric) - e.GET("/settings/appearance", server.WebGeneric) - e.GET("/settings/account", server.WebGeneric) - e.GET("/settings/automation-label", server.WebGeneric) - e.GET("/settings/privacy-and-security", server.WebGeneric) - e.GET("/settings/privacy-and-security/activity", server.WebGeneric) - e.GET("/settings/content-and-media", server.WebGeneric) - e.GET("/settings/interests", server.WebGeneric) - e.GET("/settings/about", server.WebGeneric) - e.GET("/settings/notifications", server.WebGeneric) - e.GET("/sys/debug", server.WebGeneric) - e.GET("/sys/debug-mod", server.WebGeneric) - e.GET("/sys/log", server.WebGeneric) + e.GET("/search", server.WebGenericNoindex) + e.GET("/feeds", server.WebGenericNoindex) + e.GET("/notifications", server.WebGenericNoindex) + e.GET("/notifications/settings", server.WebGenericNoindex) + e.GET("/notifications/activity", server.WebGenericNoindex) + e.GET("/lists", server.WebGenericNoindex) + e.GET("/moderation", server.WebGenericNoindex) + e.GET("/moderation/modlists", server.WebGenericNoindex) + e.GET("/moderation/muted-accounts", server.WebGenericNoindex) + e.GET("/moderation/blocked-accounts", server.WebGenericNoindex) + e.GET("/moderation/verification-settings", server.WebGenericNoindex) + e.GET("/settings", server.WebGenericNoindex) + e.GET("/settings/language", server.WebGenericNoindex) + e.GET("/settings/app-passwords", server.WebGenericNoindex) + e.GET("/settings/following-feed", server.WebGenericNoindex) + e.GET("/settings/saved-feeds", server.WebGenericNoindex) + e.GET("/settings/threads", server.WebGenericNoindex) + e.GET("/settings/external-embeds", server.WebGenericNoindex) + e.GET("/settings/accessibility", server.WebGenericNoindex) + e.GET("/settings/appearance", server.WebGenericNoindex) + e.GET("/settings/account", server.WebGenericNoindex) + e.GET("/settings/automation-label", server.WebGenericNoindex) + e.GET("/settings/privacy-and-security", server.WebGenericNoindex) + e.GET("/settings/privacy-and-security/activity", server.WebGenericNoindex) + e.GET("/settings/content-and-media", server.WebGenericNoindex) + e.GET("/settings/interests", server.WebGenericNoindex) + e.GET("/settings/about", server.WebGenericNoindex) + e.GET("/settings/notifications", server.WebGenericNoindex) + e.GET("/sys/debug", server.WebGenericNoindex) + e.GET("/sys/debug-mod", server.WebGenericNoindex) + e.GET("/sys/log", server.WebGenericNoindex) e.GET("/support", server.WebGeneric) e.GET("/support/privacy", server.WebGeneric) e.GET("/support/tos", server.WebGeneric) e.GET("/support/community-guidelines", server.WebGeneric) e.GET("/support/copyright", server.WebGeneric) - e.GET("/intent/compose", server.WebGeneric) - e.GET("/intent/verify-email", server.WebGeneric) - e.GET("/intent/age-assurance", server.WebGeneric) - e.GET("/messages", server.WebGeneric) - e.GET("/messages/inbox", server.WebGeneric) - e.GET("/messages/:conversation", server.WebGeneric) - e.GET("/messages/:conversation/settings", server.WebGeneric) - e.GET("/messages/:conversation/requests", server.WebGeneric) + e.GET("/intent/compose", server.WebGenericNoindexNofollow) + e.GET("/intent/verify-email", server.WebGenericNoindexNofollow) + e.GET("/intent/age-assurance", server.WebGenericNoindexNofollow) + e.GET("/messages", server.WebGenericNoindex) + e.GET("/messages/inbox", server.WebGenericNoindex) + e.GET("/messages/:conversation", server.WebGenericNoindex) + e.GET("/messages/:conversation/settings", server.WebGenericNoindex) + e.GET("/messages/:conversation/requests", server.WebGenericNoindex) // profile endpoints; only first populates info e.GET("/profile/:handleOrDID", server.WebProfile) @@ -363,14 +367,14 @@ func serve(cctx *cli.Context) error { // starter packs e.GET("/starter-pack/:handleOrDID/:rkey", server.WebStarterPack) - e.GET("/starter-pack-short/:code", server.WebGeneric) + e.GET("/starter-pack-short/:code", server.WebGenericNoindex) e.GET("/start/:handleOrDID/:rkey", server.WebStarterPack) // chat invites - e.GET("/c/:code", server.WebChatInvite) + e.GET("/chat/:code", server.WebChatInvite) // bookmarks - e.GET("/saved", server.WebGeneric) + e.GET("/saved", server.WebGenericNoindex) // ipcc e.GET("/ipcc", server.WebIpCC) @@ -387,6 +391,19 @@ func serve(cctx *cli.Context) error { e.Group("/:linkId", server.LinkProxyMiddleware(linkUrl)) } + metricsHttpd, metricsListener, err := newMetricsHTTPServer(metricsAddress) + if err != nil { + return err + } + server.metricsHttpd = metricsHttpd + + log.Infof("starting metrics server address=%s", metricsAddress) + go func() { + if err := metricsHttpd.Serve(metricsListener); err != nil && !errors.Is(err, http.ErrServerClosed) { + log.Errorf("metrics HTTP server shutting down unexpectedly: %s", err) + } + }() + // Start the server. log.Infof("starting server address=%s", httpAddress) go func() { @@ -419,6 +436,24 @@ func serve(cctx *cli.Context) error { return nil } +func newMetricsHTTPServer(address string) (*http.Server, net.Listener, error) { + metricsMux := http.NewServeMux() + metricsMux.Handle("/metrics", promhttp.Handler()) + + metricsHttpd := &http.Server{ + Addr: address, + Handler: metricsMux, + ReadHeaderTimeout: 5 * time.Second, + } + + metricsListener, err := net.Listen("tcp", address) + if err != nil { + return nil, nil, fmt.Errorf("listen metrics address %s: %w", address, err) + } + + return metricsHttpd, metricsListener, nil +} + func (srv *Server) ServeHTTP(rw http.ResponseWriter, req *http.Request) { srv.echo.ServeHTTP(rw, req) } @@ -429,7 +464,18 @@ func (srv *Server) Shutdown() error { ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) defer cancel() - return srv.httpd.Shutdown(ctx) + var shutdownErr error + if srv.metricsHttpd != nil { + if err := srv.metricsHttpd.Shutdown(ctx); err != nil { + shutdownErr = fmt.Errorf("metrics HTTP server shutdown error: %w", err) + } + } + + if err := srv.httpd.Shutdown(ctx); err != nil { + return errors.Join(shutdownErr, err) + } + + return shutdownErr } // NewTemplateContext returns a new pongo2 context with some default values. @@ -437,6 +483,8 @@ func (srv *Server) NewTemplateContext() pongo2.Context { return pongo2.Context{ "staticCDNHost": srv.cfg.staticCDNHost, "favicon": fmt.Sprintf("%s/static/favicon.png", srv.cfg.staticCDNHost), + "noindex": false, + "nofollow": false, } } @@ -489,10 +537,38 @@ func (srv *Server) LinkProxyMiddleware(url *url.URL) echo.MiddlewareFunc { ) } +// renderOptions controls per-request rendering flags for the generic web handler. +type renderOptions struct { + noindex bool + nofollow bool +} + +// webGeneric returns a handler that renders the base SPA shell with the given +// render options applied to the template context. +func (srv *Server) webGeneric(c echo.Context, o renderOptions) error { + data := srv.NewTemplateContext() + data["noindex"] = o.noindex + data["nofollow"] = o.nofollow + return c.Render(http.StatusOK, "base.html", data) +} + // handler for endpoint that have no specific server-side handling func (srv *Server) WebGeneric(c echo.Context) error { - data := srv.NewTemplateContext() - return c.Render(http.StatusOK, "base.html", data) + return srv.webGeneric(c, renderOptions{}) +} + +// handler for routes that should not be indexed by search engines +// (e.g. auth-only user-state surfaces, internal/debug pages, action/intent dispatch URLs, search results) +func (srv *Server) WebGenericNoindex(c echo.Context) error { + return srv.webGeneric(c, renderOptions{noindex: true}) +} + +// handler for action/intent dispatch URLs (e.g. /intent/compose). These accept +// arbitrary query parameters from arbitrary third-party referrers, so we treat +// them as link-graph dead-ends in addition to noindex. Anything legitimately +// reachable from a hydrated intent page is also reachable via its canonical URL. +func (srv *Server) WebGenericNoindexNofollow(c echo.Context) error { + return srv.webGeneric(c, renderOptions{noindex: true, nofollow: true}) } func (srv *Server) WebHome(c echo.Context) error { @@ -567,6 +643,8 @@ func (srv *Server) WebPost(c echo.Context) error { data["canonicalURL"] = canonicalURL } data["requiresAuth"] = true + data["noindex"] = true + data["nofollow"] = true data["profileHandle"] = pv.Handle if pv.DisplayName != nil { data["profileDisplayName"] = *pv.DisplayName @@ -673,6 +751,7 @@ func (srv *Server) WebChatInvite(c echo.Context) error { req := c.Request() ctx := req.Context() data := srv.NewTemplateContext() + data["noindex"] = true data["requestURI"] = fmt.Sprintf("https://%s%s", req.Host, req.URL.Path) code := c.Param("code") @@ -695,7 +774,7 @@ func (srv *Server) WebChatInvite(c echo.Context) error { data["title"] = preview.Name if srv.cfg.ogcardHost != "" { - // bskyogcard registers this route as /chat-invite/:code, not /c/:code. + // bskyogcard registers this route as /chat-invite/:code, not /chat/:code. data["imgThumbUrl"] = fmt.Sprintf("%s/chat-invite/%s", srv.cfg.ogcardHost, code) } return c.Render(http.StatusOK, "chatinvite.html", data) @@ -760,6 +839,8 @@ func (srv *Server) WebProfile(c echo.Context) error { } } else { data["requiresAuth"] = true + data["noindex"] = true + data["nofollow"] = true } if jsonld, err := buildProfileJSONLD(pv, recentPosts, hideEmbedLabels, hideReplyLabels); err == nil { diff --git a/bskyweb/go.mod b/bskyweb/go.mod index 50ab9a162a..e25349e947 100644 --- a/bskyweb/go.mod +++ b/bskyweb/go.mod @@ -3,7 +3,7 @@ module github.com/bluesky-social/social-app/bskyweb go 1.26 require ( - github.com/bluesky-social/indigo v0.0.0-20260529183052-5368f55344e0 + github.com/bluesky-social/indigo v0.0.0-20260605210604-af2fec94f34c github.com/flosch/pongo2/v6 v6.0.0 github.com/ipfs/go-log v1.0.5 github.com/joho/godotenv v1.5.1 diff --git a/bskyweb/go.sum b/bskyweb/go.sum index 235e37f521..d9b4b0141a 100644 --- a/bskyweb/go.sum +++ b/bskyweb/go.sum @@ -2,8 +2,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bluesky-social/indigo v0.0.0-20260529183052-5368f55344e0 h1:eijBaF59A5c+kPqufH7YO1GOqDMkyUhtM9P9aAWtfJY= -github.com/bluesky-social/indigo v0.0.0-20260529183052-5368f55344e0/go.mod h1:JqQkz8lrOI6YZivP38GHmtVOTtzsNToITKj1gMpU5Jo= +github.com/bluesky-social/indigo v0.0.0-20260605210604-af2fec94f34c h1:Jr82+1HUmwwZzDpt/eeU4sieya27iXjuPMdXZkOXoBc= +github.com/bluesky-social/indigo v0.0.0-20260605210604-af2fec94f34c/go.mod h1:JqQkz8lrOI6YZivP38GHmtVOTtzsNToITKj1gMpU5Jo= github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UFvs= github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs= github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= diff --git a/bskyweb/templates/base.html b/bskyweb/templates/base.html index e33479e697..7f723ce36c 100644 --- a/bskyweb/templates/base.html +++ b/bskyweb/templates/base.html @@ -139,6 +139,7 @@ + {% if noindex %}{% endif %} diff --git a/docs/deploy-ota.md b/docs/deploy-ota.md index e75ac1b3a3..fce864c761 100644 --- a/docs/deploy-ota.md +++ b/docs/deploy-ota.md @@ -57,6 +57,9 @@ release or OTA. Log in to the EAS CLI with `eas login` and manually set the build numbers to the values you found in **Step 1**. +> [!NOTE] +> If you don’t already have the EAS CLI, you can install it with `pnpm add -g eas-cli`. + ```sh > npx eas build:version:set -p ios > @@ -114,7 +117,7 @@ To confirm this, as mentioned above, you must completely clear the TestFlight build from your device and re-install from the App Store. Then, you'll need to: - Launch the app (or quit and reopen) and wait ~15s for the download to complete - Quit and reopen the app -- Check the `Settings > About` page and confirm the has matches the most recent has on your OTA branch +- Check the `Settings > About` page and confirm the hash matches the most recent hash on your OTA branch ### 9. Reset build numbers diff --git a/eslint-suppressions.json b/eslint-suppressions.json index 4667d53009..1e8edd043e 100644 --- a/eslint-suppressions.json +++ b/eslint-suppressions.json @@ -1,4 +1,113 @@ { + "modules/bottom-sheet/src/BottomSheetNativeComponent.tsx": { + "@typescript-eslint/no-explicit-any": { + "count": 2 + }, + "@typescript-eslint/no-unsafe-call": { + "count": 2 + }, + "@typescript-eslint/no-unsafe-member-access": { + "count": 2 + } + }, + "modules/bottom-sheet/src/BottomSheetPortal.tsx": { + "no-restricted-imports": { + "count": 1 + } + }, + "modules/bottom-sheet/src/lib/Portal.tsx": { + "no-restricted-imports": { + "count": 1 + } + }, + "modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider.tsx": { + "@typescript-eslint/no-floating-promises": { + "count": 1 + }, + "no-restricted-imports": { + "count": 1 + } + }, + "modules/expo-background-notification-handler/src/ExpoBackgroundNotificationHandlerModule.web.ts": { + "@typescript-eslint/require-await": { + "count": 4 + } + }, + "modules/expo-bluesky-gif-view/src/GifView.tsx": { + "@typescript-eslint/no-explicit-any": { + "count": 2 + }, + "@typescript-eslint/no-unsafe-call": { + "count": 4 + }, + "@typescript-eslint/no-unsafe-member-access": { + "count": 4 + }, + "no-restricted-imports": { + "count": 1 + } + }, + "modules/expo-bluesky-gif-view/src/GifView.web.tsx": { + "@typescript-eslint/no-floating-promises": { + "count": 2 + }, + "@typescript-eslint/require-await": { + "count": 2 + } + }, + "modules/expo-bluesky-swiss-army/src/PlatformInfo/index.native.ts": { + "@typescript-eslint/no-unsafe-call": { + "count": 3 + }, + "@typescript-eslint/no-unsafe-member-access": { + "count": 3 + } + }, + "modules/expo-bluesky-swiss-army/src/Referrer/index.android.ts": { + "@typescript-eslint/no-unsafe-call": { + "count": 2 + }, + "@typescript-eslint/no-unsafe-member-access": { + "count": 2 + } + }, + "modules/expo-bluesky-swiss-army/src/SharedPrefs/index.native.ts": { + "@typescript-eslint/no-explicit-any": { + "count": 1 + }, + "@typescript-eslint/no-unsafe-call": { + "count": 9 + }, + "@typescript-eslint/no-unsafe-member-access": { + "count": 9 + } + }, + "modules/expo-bluesky-swiss-army/src/VisibilityView/index.native.tsx": { + "@typescript-eslint/no-unsafe-call": { + "count": 1 + }, + "@typescript-eslint/no-unsafe-member-access": { + "count": 1 + }, + "no-restricted-imports": { + "count": 1 + } + }, + "modules/expo-bluesky-swiss-army/src/VisibilityView/index.tsx": { + "@typescript-eslint/require-await": { + "count": 1 + } + }, + "modules/expo-bluesky-swiss-army/src/VisibilityView/types.ts": { + "no-restricted-imports": { + "count": 1 + } + }, + "modules/expo-emoji-picker/src/EmojiPickerView.tsx": { + "no-restricted-imports": { + "count": 1 + } + }, "src/Navigation.tsx": { "@typescript-eslint/no-floating-promises": { "count": 1 @@ -19,11 +128,6 @@ "count": 1 } }, - "src/ageAssurance/util.ts": { - "@typescript-eslint/no-floating-promises": { - "count": 1 - } - }, "src/alf/util/flatten.ts": { "@typescript-eslint/no-explicit-any": { "count": 1 @@ -43,9 +147,6 @@ } }, "src/analytics/PassiveAnalytics.tsx": { - "@typescript-eslint/no-explicit-any": { - "count": 1 - }, "react-hooks/purity": { "count": 1 } @@ -124,11 +225,6 @@ "count": 1 } }, - "src/components/Button.tsx": { - "react-hooks/immutability": { - "count": 1 - } - }, "src/components/Composer/index.tsx": { "@typescript-eslint/no-explicit-any": { "count": 2 @@ -261,11 +357,6 @@ "count": 3 } }, - "src/components/Post/Embed/ExternalEmbed/index.tsx": { - "@typescript-eslint/no-floating-promises": { - "count": 1 - } - }, "src/components/Post/Embed/ImageEmbed.tsx": { "@typescript-eslint/no-explicit-any": { "count": 2 @@ -274,11 +365,6 @@ "count": 1 } }, - "src/components/Post/Embed/StandardSiteEmbed/index.tsx": { - "@typescript-eslint/no-floating-promises": { - "count": 3 - } - }, "src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerWeb.tsx": { "@typescript-eslint/no-floating-promises": { "count": 2 @@ -531,11 +617,6 @@ "count": 3 } }, - "src/components/dialogs/InAppBrowserConsent.tsx": { - "@typescript-eslint/no-floating-promises": { - "count": 2 - } - }, "src/components/dialogs/LanguageSelectDialog.tsx": { "@typescript-eslint/no-explicit-any": { "count": 1 @@ -543,7 +624,7 @@ }, "src/components/dialogs/LinkWarning.tsx": { "@typescript-eslint/no-floating-promises": { - "count": 2 + "count": 1 } }, "src/components/dialogs/MutedWords.tsx": { @@ -621,11 +702,6 @@ "count": 1 } }, - "src/components/dms/MessageItem.tsx": { - "@typescript-eslint/no-misused-promises": { - "count": 1 - } - }, "src/components/forms/DateField/index.web.tsx": { "@typescript-eslint/no-explicit-any": { "count": 1 @@ -668,14 +744,6 @@ "count": 2 } }, - "src/components/hooks/useFullscreen.ts": { - "@typescript-eslint/no-floating-promises": { - "count": 2 - }, - "react-hooks/set-state-in-effect": { - "count": 1 - } - }, "src/components/hooks/useLandingEntry.native.ts": { "react-hooks/set-state-in-effect": { "count": 1 @@ -775,11 +843,6 @@ "count": 1 } }, - "src/features/liveNow/components/LiveStatusDialog.tsx": { - "@typescript-eslint/no-floating-promises": { - "count": 1 - } - }, "src/features/liveNow/index.tsx": { "@typescript-eslint/no-explicit-any": { "count": 3 @@ -811,14 +874,6 @@ "count": 1 } }, - "src/lib/api/index.ts": { - "@typescript-eslint/no-explicit-any": { - "count": 5 - }, - "@typescript-eslint/no-unsafe-member-access": { - "count": 3 - } - }, "src/lib/async/retry.ts": { "@typescript-eslint/no-explicit-any": { "count": 2 @@ -910,14 +965,6 @@ "count": 4 } }, - "src/lib/hooks/useOpenLink.ts": { - "@typescript-eslint/no-floating-promises": { - "count": 2 - }, - "@typescript-eslint/require-await": { - "count": 1 - } - }, "src/lib/hooks/usePermissions.ts": { "@typescript-eslint/no-misused-promises": { "count": 1 @@ -1372,9 +1419,6 @@ } }, "src/screens/Profile/components/ProfileFeedHeader.tsx": { - "@typescript-eslint/no-floating-promises": { - "count": 1 - }, "@typescript-eslint/no-misused-promises": { "count": 5 } @@ -1797,16 +1841,6 @@ "count": 7 } }, - "src/state/queries/messages/accept-conversation.ts": { - "@typescript-eslint/no-floating-promises": { - "count": 2 - } - }, - "src/state/queries/messages/update-all-read.ts": { - "@typescript-eslint/no-floating-promises": { - "count": 3 - } - }, "src/state/queries/my-lists.ts": { "@typescript-eslint/no-floating-promises": { "count": 2 @@ -1937,12 +1971,6 @@ "src/state/session/agent.ts": { "@typescript-eslint/no-explicit-any": { "count": 1 - }, - "@typescript-eslint/no-floating-promises": { - "count": 1 - }, - "@typescript-eslint/require-await": { - "count": 1 } }, "src/state/shell/color-mode.tsx": { @@ -2288,23 +2316,6 @@ "count": 2 } }, - "src/view/com/profile/ProfileMenu.tsx": { - "@typescript-eslint/no-explicit-any": { - "count": 6 - }, - "@typescript-eslint/no-floating-promises": { - "count": 4 - }, - "@typescript-eslint/no-misused-promises": { - "count": 3 - }, - "@typescript-eslint/no-unsafe-call": { - "count": 6 - }, - "@typescript-eslint/no-unsafe-member-access": { - "count": 12 - } - }, "src/view/com/testing/TestCtrls.e2e.tsx": { "@typescript-eslint/no-explicit-any": { "count": 1 @@ -2343,9 +2354,6 @@ "src/view/com/util/Link.tsx": { "@typescript-eslint/no-explicit-any": { "count": 2 - }, - "@typescript-eslint/no-misused-promises": { - "count": 2 } }, "src/view/com/util/LoadingPlaceholder.tsx": { diff --git a/modules/expo-bluesky-gif-view/src/GifView.web.tsx b/modules/expo-bluesky-gif-view/src/GifView.web.tsx index c9f439bffe..e51b9bf9fc 100644 --- a/modules/expo-bluesky-gif-view/src/GifView.web.tsx +++ b/modules/expo-bluesky-gif-view/src/GifView.web.tsx @@ -67,7 +67,18 @@ export class GifView extends PureComponent { } async playAsync(): Promise { - this.videoPlayerRef.current?.play() + try { + await this.videoPlayerRef.current?.play() + } catch (err) { + // `play()` rejects with a NotAllowedError when the browser blocks + // playback (e.g. Safari low-power mode or autoplay policy). This is + // expected and benign - the GIF simply stays paused - so swallow it + // rather than letting it surface as an unhandled rejection. + if (err instanceof DOMException && err.name === 'NotAllowedError') { + return + } + throw err + } } async pauseAsync(): Promise { diff --git a/modules/expo-bluesky-swiss-army/src/VisibilityView/index.native.tsx b/modules/expo-bluesky-swiss-army/src/VisibilityView/index.native.tsx index 9d0e8cf220..aba96c6d4b 100644 --- a/modules/expo-bluesky-swiss-army/src/VisibilityView/index.native.tsx +++ b/modules/expo-bluesky-swiss-army/src/VisibilityView/index.native.tsx @@ -1,12 +1,12 @@ import React from 'react' -import {StyleProp, ViewStyle} from 'react-native' +import {type StyleProp, type ViewStyle} from 'react-native' import {requireNativeModule, requireNativeViewManager} from 'expo-modules-core' -import {VisibilityViewProps} from './types' +import {type VisibilityViewProps} from './types' const NativeView: React.ComponentType<{ onChangeStatus: (e: {nativeEvent: {isActive: boolean}}) => void children: React.ReactNode - enabled: Boolean + enabled: boolean style: StyleProp }> = requireNativeViewManager('ExpoBlueskyVisibilityView') diff --git a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt index d7b9e0e468..af7344216b 100644 --- a/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt +++ b/modules/expo-receive-android-intents/android/src/main/java/xyz/blueskyweb/app/exporeceiveandroidintents/ExpoReceiveAndroidIntentsModule.kt @@ -6,6 +6,7 @@ import android.media.MediaMetadataRetriever import android.net.Uri import android.os.Build import android.provider.MediaStore +import android.util.Log import androidx.core.net.toUri import expo.modules.kotlin.modules.Module import expo.modules.kotlin.modules.ModuleDefinition @@ -13,6 +14,8 @@ import java.io.File import java.io.FileOutputStream import java.net.URLEncoder +private const val TAG = "ExpoReceiveAndroidIntents" + enum class AttachmentType { IMAGE, VIDEO, @@ -119,17 +122,15 @@ class ExpoReceiveAndroidIntentsModule : Module() { uris: List, text: String?, ) { - var allParams = "" + // Some URIs we receive may be unreadable (revoked permission, deleted file, + // a provider that rejects the read). Skip those rather than crashing the + // whole app, since this runs synchronously on the module init path. + val allParams = + uris + .mapNotNull { uri -> getImageInfo(uri) } + .joinToString(",") { info -> buildUriData(info) } - uris.forEachIndexed { index, uri -> - val info = getImageInfo(uri) - val params = buildUriData(info) - allParams = "${allParams}$params" - - if (index < uris.count() - 1) { - allParams = "$allParams," - } - } + if (allParams.isEmpty()) return val encodedUris = URLEncoder.encode(allParams, "UTF-8") val encodedText = text?.let { URLEncoder.encode(it, "UTF-8") } @@ -158,12 +159,30 @@ class ExpoReceiveAndroidIntentsModule : Module() { } val file = createFile(extension) - val out = FileOutputStream(file) - appContext.currentActivity?.contentResolver?.openInputStream(uri)?.use { - it.copyTo(out) + // The URI may be unreadable (revoked permission, deleted file, or a + // provider that rejects the read). Bail rather than crashing the whole + // app, since this runs synchronously on the module init path. + try { + FileOutputStream(file).use { out -> + val input = + appContext.currentActivity?.contentResolver?.openInputStream(uri) + ?: run { + file.delete() + return + } + input.use { it.copyTo(out) } + } + } catch (e: Exception) { + Log.w(TAG, "Failed to copy shared video to cache", e) + file.delete() + return } - val info = getVideoInfo(uri) ?: return + val info = + getVideoInfo(uri) ?: run { + file.delete() + return + } val encodedText = text?.let { URLEncoder.encode(it, "UTF-8") } @@ -176,15 +195,29 @@ class ExpoReceiveAndroidIntentsModule : Module() { } } - private fun getImageInfo(uri: Uri): Map { - val bitmap = MediaStore.Images.Media.getBitmap(appContext.currentActivity?.contentResolver, uri) + private fun getImageInfo(uri: Uri): Map? { + val bitmap = + try { + MediaStore.Images.Media.getBitmap(appContext.currentActivity?.contentResolver, uri) + } catch (e: Exception) { + // The URI may be unreadable (revoked permission, deleted file, or a + // provider that rejects the read). Skip this image rather than crash. + Log.w(TAG, "Failed to read shared image", e) + return null + } ?: return null // We have to save this so that we can access it later when uploading the image. // createTempFile will automatically place a unique string between "img" and "temp.jpeg" val file = createFile("jpeg") - val out = FileOutputStream(file) - bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out) - out.flush() - out.close() + try { + FileOutputStream(file).use { out -> + bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out) + out.flush() + } + } catch (e: Exception) { + Log.w(TAG, "Failed to write shared image to cache", e) + file.delete() + return null + } return mapOf( "width" to bitmap.width, @@ -195,10 +228,19 @@ class ExpoReceiveAndroidIntentsModule : Module() { private fun getVideoInfo(uri: Uri): Map? { val retriever = MediaMetadataRetriever() - retriever.setDataSource(appContext.currentActivity, uri) - - val width = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH)?.toIntOrNull() - val height = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT)?.toIntOrNull() + val width: Int? + val height: Int? + try { + retriever.setDataSource(appContext.currentActivity, uri) + width = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_WIDTH)?.toIntOrNull() + height = retriever.extractMetadata(MediaMetadataRetriever.METADATA_KEY_VIDEO_HEIGHT)?.toIntOrNull() + } catch (e: Exception) { + // The URI may be unreadable or not a valid media source. Skip rather than crash. + Log.w(TAG, "Failed to read shared video metadata", e) + return null + } finally { + retriever.release() + } if (width == null || height == null) { return null diff --git a/package.json b/package.json index b8bd26e241..7499cf8114 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.123.0", + "version": "1.125.0", "private": true, "engines": { "node": ">=24.15.0" @@ -8,7 +8,7 @@ "devEngines": { "packageManager": { "name": "pnpm", - "version": "11.5.0", + "version": "11.7.0", "onFail": "warn" }, "runtime": { @@ -59,7 +59,7 @@ "test-watch": "NODE_ENV=test jest --watchAll", "test-ci": "NODE_ENV=test jest --ci --forceExit --reporters=default --reporters=jest-junit", "test-coverage": "NODE_ENV=test jest --coverage", - "lint": "eslint --cache --quiet src", + "lint": "eslint --cache --quiet src modules", "lint-native": "swiftlint ./modules && ktlint ./modules", "lint-native:fix": "swiftlint --fix ./modules && ktlint --format ./modules", "typecheck": "tsgo --project ./tsconfig.check.json", @@ -93,19 +93,20 @@ "prettier": "prettier --check ." }, "dependencies": { - "@atproto/api": "0.20.8", + "@atproto/api": "0.20.12", "@atproto/syntax": "0.6.1", "@bitdrift/react-native": "^0.6.8", "@braintree/sanitize-url": "^6.0.2", "@bsky.app/alf": "^0.1.14", + "@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-translate-text": "^0.2.9", - "@bsky.app/peek-menu": "^0.2.4", + "@bsky.app/peek-menu": "^0.3.1", "@bsky.app/react-native-mmkv": "2.12.5", - "@bsky.app/sift": "^0.3.8", - "@bsky.app/tapper": "^0.5.7", + "@bsky.app/sift": "^0.3.9", + "@bsky.app/tapper": "^0.6.1", "@bsky.app/video": "0.3.6", "@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet", "@emoji-mart/data": "^1.2.1", @@ -123,7 +124,6 @@ "@ipld/dag-cbor": "^9.2.7", "@lingui/core": "^5.9.2", "@lingui/react": "^5.9.2", - "@mozzius/expo-dynamic-app-icon": "^1.8.0", "@react-native-async-storage/async-storage": "2.2.0", "@react-navigation/bottom-tabs": "^7.15.5", "@react-navigation/native": "^7.1.33", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b3d0003107..1efbc5defc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -7,52 +7,52 @@ importers: configDependencies: {} packageManagerDependencies: '@pnpm/exe': - specifier: 11.5.0 - version: 11.5.0 + specifier: 11.7.0 + version: 11.7.0 pnpm: - specifier: 11.5.0 - version: 11.5.0 + specifier: 11.7.0 + version: 11.7.0 packages: - '@pnpm/exe@11.5.0': - resolution: {integrity: sha512-4hzOXq1HHrNPjwI8k1rt7Ot/Yrdx1JX3pn/L/M95ii1gid1Q6ZK6dVg4+gbSgUdPsYmYDZ4/Yfc0A7vd5C0ndg==} + '@pnpm/exe@11.7.0': + resolution: {integrity: sha512-3CujpSSp2PIDE0pwu7mWSdjhdDqaZa7OppVooECWWaNEoA/z66s9FZts1MhDO+2yq1XER4gBHh84DVbFN/r1rA==} hasBin: true - '@pnpm/linux-arm64@11.5.0': - resolution: {integrity: sha512-NV9HdzzCB0epuI9LqZZeTaqjH3OweNQSQCS76GzEkFxJHS9e5Gvu7tgex91gxVL7bCZ+R4yr/3d3yexBFtr2ug==} + '@pnpm/linux-arm64@11.7.0': + resolution: {integrity: sha512-ANTX2SlMO+d2y/4bYQhHCwHPX7gSSADJ5+pMUIiDFzIsybnFFaJdZboaFfq9NOxCbETcnDxqZ95Rz3+NHx1JIw==} cpu: [arm64] os: [linux] - '@pnpm/linux-x64@11.5.0': - resolution: {integrity: sha512-vH83rRx4iPk/bwm9pBVCn+5hXbcQI66I/4zk6Vc09SusJgTqOdbN4U6VhMcGIqSEdr901ksYGCyIbMv7f6Guew==} + '@pnpm/linux-x64@11.7.0': + resolution: {integrity: sha512-fr75tqixXoS8cnA81HQIomjOGEPnsOsd3xCDL5pMNY5raOXbKurtgRV+RjATvjxlJxSLIVFKegABlxAiB7q72A==} cpu: [x64] os: [linux] - '@pnpm/linuxstatic-arm64@11.5.0': - resolution: {integrity: sha512-2nOnMW1rSwGv22q2yZz1HlGT3ly/Ij8wUlX0NB4n+Krx7nETRHA3MgWsbkVejxHknDcTulRVudAghuX9rgrXcw==} + '@pnpm/linuxstatic-arm64@11.7.0': + resolution: {integrity: sha512-Q++pgzvXkGeqnVRl26/uqmpMGdttQus0rGyL3XIfYGLCi8ZfajYUaCKdZID2MH7+CNOuugWDdFDup3r7BR7Rfg==} cpu: [arm64] os: [linux] libc: [musl] - '@pnpm/linuxstatic-x64@11.5.0': - resolution: {integrity: sha512-ONOC1Mg0JusHtjzkRlre9di1QO+GAjy4HP7jMjDx21yGhrSheNdUweTXbekMH1EflRd19kTU6d8M3zewJFPtVg==} + '@pnpm/linuxstatic-x64@11.7.0': + resolution: {integrity: sha512-z1+exW6ocU/rmOvJnmU3FUBJYaryCUqFoaXN6KZW5BqTj7BPJb7HJcAyXRlirNZMJlEiUY5rXbfStGPQJhGsVA==} cpu: [x64] os: [linux] libc: [musl] - '@pnpm/macos-arm64@11.5.0': - resolution: {integrity: sha512-od0ALdTxs4A7s5vAH5q2l2phzCJb98+PVOW1rq7BGpWGeYxQ+EwvL+vq0KaO6iLsn/eVVoncCkgZ/k6QNYuTgw==} + '@pnpm/macos-arm64@11.7.0': + resolution: {integrity: sha512-gD34/k3JT5oab4BYaqrUor3e4VdwXvkfLNlEI+lvDtX1MHT+2Nauc9p9NsQnpn1zE8blQEflzbF8wAUQ6Dmvkw==} cpu: [arm64] os: [darwin] - '@pnpm/win-arm64@11.5.0': - resolution: {integrity: sha512-9HqbI80FjVVqFx4+EPxYYNfeP9Sx69W6kYqUDvOJn9G7RJ/2NNNQ898cVHTMpXlW1/PrMEcijmdpa/NjZIrWiQ==} + '@pnpm/win-arm64@11.7.0': + resolution: {integrity: sha512-hRTcDmm2j7KoRwbqNo0rUAu9A1kVJN98Eob7H09U0uPJbEMax85JGOmERkT3Lf6HjVJuFNBvfaJ3OTI3HmlVGg==} cpu: [arm64] os: [win32] - '@pnpm/win-x64@11.5.0': - resolution: {integrity: sha512-Q89CQqFGAsWmfvHZs5Kbbar45q3GBYtfAdPUCiVMVNJoLi3dsBS2LCvUq8ak3AufkFDaJBpvhaFcDP2M1NXr3A==} + '@pnpm/win-x64@11.7.0': + resolution: {integrity: sha512-r/1NuKY7Z+6ZXVIzVrUEMj6TTEBdR63geV4Rlm8HKEhgQTdxyIsJoqV3FJGqoyzbRaScObqAwRfMaK9dskPddQ==} cpu: [x64] os: [win32] @@ -116,45 +116,45 @@ packages: resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==} engines: {node: '>=8'} - pnpm@11.5.0: - resolution: {integrity: sha512-2/zE+Bz0hZev1Lw5H/3xLBHxqfuDo5W/prCi2cwv2P/rr9scy9UpYyFT95OQTCYVt/Cf4aNFRz/Rw1hFFyqOsQ==} + pnpm@11.7.0: + resolution: {integrity: sha512-GcyFLBIMcSV2DyRD7mvgyltA+fUFmN4aCaHxd1A+AQ5Xwjx3ZG4B52HeWb+HT7IqM5jDOrlpH8E+uUa28PTWIA==} engines: {node: '>=22.13'} hasBin: true snapshots: - '@pnpm/exe@11.5.0': + '@pnpm/exe@11.7.0': dependencies: '@reflink/reflink': 0.1.19 detect-libc: 2.1.2 optionalDependencies: - '@pnpm/linux-arm64': 11.5.0 - '@pnpm/linux-x64': 11.5.0 - '@pnpm/linuxstatic-arm64': 11.5.0 - '@pnpm/linuxstatic-x64': 11.5.0 - '@pnpm/macos-arm64': 11.5.0 - '@pnpm/win-arm64': 11.5.0 - '@pnpm/win-x64': 11.5.0 + '@pnpm/linux-arm64': 11.7.0 + '@pnpm/linux-x64': 11.7.0 + '@pnpm/linuxstatic-arm64': 11.7.0 + '@pnpm/linuxstatic-x64': 11.7.0 + '@pnpm/macos-arm64': 11.7.0 + '@pnpm/win-arm64': 11.7.0 + '@pnpm/win-x64': 11.7.0 - '@pnpm/linux-arm64@11.5.0': + '@pnpm/linux-arm64@11.7.0': optional: true - '@pnpm/linux-x64@11.5.0': + '@pnpm/linux-x64@11.7.0': optional: true - '@pnpm/linuxstatic-arm64@11.5.0': + '@pnpm/linuxstatic-arm64@11.7.0': optional: true - '@pnpm/linuxstatic-x64@11.5.0': + '@pnpm/linuxstatic-x64@11.7.0': optional: true - '@pnpm/macos-arm64@11.5.0': + '@pnpm/macos-arm64@11.7.0': optional: true - '@pnpm/win-arm64@11.5.0': + '@pnpm/win-arm64@11.7.0': optional: true - '@pnpm/win-x64@11.5.0': + '@pnpm/win-x64@11.7.0': optional: true '@reflink/reflink-darwin-arm64@0.1.19': @@ -194,7 +194,7 @@ snapshots: detect-libc@2.1.2: {} - pnpm@11.5.0: {} + pnpm@11.7.0: {} --- lockfileVersion: '9.0' @@ -242,8 +242,8 @@ importers: .: dependencies: '@atproto/api': - specifier: 0.20.8 - version: 0.20.8 + specifier: 0.20.12 + version: 0.20.12 '@atproto/syntax': specifier: 0.6.1 version: 0.6.1 @@ -256,6 +256,9 @@ importers: '@bsky.app/alf': specifier: ^0.1.14 version: 0.1.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) + '@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) '@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) @@ -269,17 +272,17 @@ importers: 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) '@bsky.app/peek-menu': - specifier: ^0.2.4 - version: 0.2.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.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) '@bsky.app/sift': - specifier: ^0.3.8 - version: 0.3.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-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) + 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) '@bsky.app/tapper': - specifier: ^0.5.7 - version: 0.5.7(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@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.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) '@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) @@ -331,9 +334,6 @@ importers: '@lingui/react': specifier: ^5.9.2 version: 5.9.5(@lingui/babel-plugin-lingui-macro@5.9.5(typescript@6.0.3))(react@19.1.0) - '@mozzius/expo-dynamic-app-icon': - specifier: ^1.8.0 - version: 1.8.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) '@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)) @@ -877,8 +877,8 @@ packages: graphql: optional: true - '@atproto/api@0.20.8': - resolution: {integrity: sha512-rTkA6kOmA2axSrg6VgpdXpsCFWpofnHBOn6pKg69Ju5MpIHqk4haQMgjBcVh1G3kUxzwgSAr7SYrPS3dFe5Etg==} + '@atproto/api@0.20.12': + resolution: {integrity: sha512-pNCrl/BSmkjlrVu0W5A9zkOVRIWdWAdajuHX/EyhDZFxu8HExsiQi6j46H5kv85GrNRXS/QtULE+ocSuMtEJfw==} engines: {node: '>=22'} '@atproto/common-web@0.5.0': @@ -1624,6 +1624,13 @@ packages: react: '*' react-native: '*' + '@bsky.app/expo-dynamic-app-icon@1.8.5': + resolution: {integrity: sha512-yLpd7XEEiXWpVrh81mhpZx2WrX2WwrJFEV81lNxnX61Cp6yG+ZKX3Oz1v58vpyL5p0I38njVUJ9s+n5NR4EjNw==} + peerDependencies: + expo: ^52 || ^53 || ^54 + react: '*' + react-native: '*' + '@bsky.app/expo-guess-language@0.2.8': resolution: {integrity: sha512-krcQfMSJn39kaFRpaOWxLUW9rT04reoBqjQviu2fTGQWXWEImG25SJondSObVNyGXlmRMrltt72Sc+aRPpQeog==} peerDependencies: @@ -1652,8 +1659,8 @@ packages: react: '*' react-native: '*' - '@bsky.app/peek-menu@0.2.4': - resolution: {integrity: sha512-3E5FwgCXMU6baye3NWoBKih3SCh6s8AgAtxN523YBHZGC5TxpjGaBsjFi765y31nKmTll3QH7x4wtDgYqVvCQg==} + '@bsky.app/peek-menu@0.3.1': + resolution: {integrity: sha512-ttFE7dIv1EJEmQn52WLvievzLNmPNNvPtoiz8ovl38jXLDMszL2wVPUYMnEjnZZqoq+K6HiBau9iHeCOKWwbTA==} peerDependencies: expo: '*' react: '*' @@ -1665,20 +1672,21 @@ packages: react: '*' react-native: '>=0.71.0' - '@bsky.app/sift@0.3.8': - resolution: {integrity: sha512-41Ug2QfjWJUApHsxcm6JDTb4r8jS6Qn6uBca8ofL10ZDKzXbSxDr1vK2yhFLyIeo/yIq3GU+XgEqrd1p6YgFiA==} + '@bsky.app/sift@0.3.9': + resolution: {integrity: sha512-EmwK6EGtxl6Mz4Z96J2EFi5aeiKeGiqueVCQHVms9C6ms6wMS0/HcqC/48RgFN+nSsM7Wr8sFCg1EcNnWyOQMQ==} peerDependencies: expo: '*' react: '*' react-native: '*' react-native-safe-area-context: ~5.6.0 - '@bsky.app/tapper@0.5.7': - resolution: {integrity: sha512-DWU4v+llcEdgwueittiCSMeahrwvQAz4g1S7M1gSSw3Zor987fF7WO/NTDWq7X/zFab2nOQ/lnCvQUuOgFCTRg==} + '@bsky.app/tapper@0.6.1': + resolution: {integrity: sha512-+suwTIQcZmMbFb/adzWAlAs7gzRsMmHAerzrpzZfMtt2cVrwPgOqI5IOeEEO8SmvEEImpE8IcHindG8hkCZrKA==} peerDependencies: expo: '*' react: '*' react-native: '*' + tlds: '*' '@bsky.app/video@0.3.6': resolution: {integrity: sha512-Ny7vz9v1lQOw5Llw4xejtJo/Dp/lmdRw1XdUJucOXlq6puXO93tv3mNXUIIyOEVWEwDPg8j/kSQxG/mGy+/hdQ==} @@ -2327,13 +2335,6 @@ packages: '@messageformat/parser@5.1.1': resolution: {integrity: sha512-3p0YRGCcTUCYvBKLIxtDDyrJ0YijGIwrTRu1DT8gIviIDZru8H23+FkY6MJBzM1n9n20CiM4VeDYuBsrrwnLjg==} - '@mozzius/expo-dynamic-app-icon@1.8.1': - resolution: {integrity: sha512-JWNY9gw06s+q54b2SqWf6BEo7IYuJCtjJDtca+wTo6kP5dH/wYK85JdLrMbdy+cwOMScEY85uU6Mjn0wkWTLnw==} - peerDependencies: - expo: ^52 || ^53 || ^54 - react: '*' - react-native: '*' - '@napi-rs/wasm-runtime@0.2.12': resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==} @@ -9493,7 +9494,7 @@ snapshots: '@0no-co/graphql.web@1.2.0': {} - '@atproto/api@0.20.8': + '@atproto/api@0.20.12': dependencies: '@atproto/common-web': 0.5.0 '@atproto/lexicon': 0.7.1 @@ -10446,6 +10447,14 @@ snapshots: react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@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)': + 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) + react: 19.1.0 + react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@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)': 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) @@ -10471,7 +10480,7 @@ snapshots: react: 19.1.0 react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/peek-menu@0.2.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/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)': dependencies: expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 @@ -10482,18 +10491,19 @@ snapshots: react: 19.1.0 react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - '@bsky.app/sift@0.3.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-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.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.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)': dependencies: expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) react-native-safe-area-context: 5.6.2(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) - '@bsky.app/tapper@0.5.7(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': + '@bsky.app/tapper@0.6.1(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)(tlds@1.261.0)': dependencies: expo: 54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0) react: 19.1.0 react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) + tlds: 1.261.0 '@bsky.app/video@0.3.6(expo@54.0.34(@babel/core@7.29.0)(react-native-webview@13.15.0(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0))(react@19.1.0)': dependencies: @@ -11449,14 +11459,6 @@ snapshots: dependencies: moo: 0.5.3 - '@mozzius/expo-dynamic-app-icon@1.8.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)': - 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) - react: 19.1.0 - react-native: 0.81.5(patch_hash=2656ac6deb71b92a4df4af4593d13ace6a5740936432e5e7e8ef32bc3cd05194)(@babel/core@7.29.0)(@types/react@19.1.17)(react@19.1.0) - xcode: 3.0.1 - '@napi-rs/wasm-runtime@0.2.12': dependencies: '@emnapi/core': 1.10.0 diff --git a/src/Navigation.tsx b/src/Navigation.tsx index efd1125295..1fbd5b1948 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -134,6 +134,7 @@ import { import {useAnalytics} from '#/analytics' import {setNavigationMetadata} from '#/analytics/metadata' import {IS_LIQUID_GLASS, IS_NATIVE, IS_WEB} from '#/env' +import {InviteScannerScreen} from '#/features/inviteFriends' import {router} from '#/routes' import {Referrer} from '../modules/expo-bluesky-swiss-army' import {renderMessagesSplitViewLayout} from './screens/Messages/components/splitView/MessagesSplitViewLayout' @@ -309,6 +310,11 @@ function commonScreens(Stack: typeof Flat, unreadCountLabel?: string) { getComponent={() => DebugModScreen} options={{title: title(msg`Moderation states`), requireAuth: true}} /> + InviteScannerScreen} + options={{title: title(msg`Scan QR code`), requireAuth: true}} + /> SharedPreferencesTesterScreen} @@ -804,7 +810,7 @@ const LINKING = { return buildStateObject('Flat', 'Home', params) } - // Chat invite URLs (`/c/:code`) are handled by `useIntentHandler`, which + // Chat invite URLs (`/chat/:code`) are handled by `useIntentHandler`, which // opens the GroupChatJoinDialog (or the logged-out join flow). Route the // path to Home so the dialog overlays Home instead of NotFound. On native, // react-navigation strips the `bluesky://` prefix and passes the path @@ -844,6 +850,8 @@ const LINKING = { }, } satisfies LinkingOptions +let didHandlePushNotificationEntry = false + function RoutesContainer({children}: React.PropsWithChildren<{}>) { const ax = useAnalytics() // eslint-disable-next-line react-compiler/react-compiler @@ -904,6 +912,14 @@ function RoutesContainer({children}: React.PropsWithChildren<{}>) { function handlePushNotificationEntry() { if (!IS_NATIVE) return + // Only consume a launching notification once per JS runtime. Account + // switches remount the entire tree (see `key={currentAccount?.did}` in + // `App.native.tsx`), which re-fires `onNavigationReady` and would + // otherwise re-process whatever `getLastNotificationResponse` still has + // cached natively (APP-2338). + if (didHandlePushNotificationEntry) return + didHandlePushNotificationEntry = true + // intent urls are handled by `useIntentHandler` if (linkingUrl) return diff --git a/src/ageAssurance/__mocks__/data.tsx b/src/ageAssurance/__mocks__/data.tsx index b548a2f866..f813e14ccc 100644 --- a/src/ageAssurance/__mocks__/data.tsx +++ b/src/ageAssurance/__mocks__/data.tsx @@ -1,3 +1,3 @@ -export const prefetchAgeAssuranceData = () => {} +export const prefetchAgeAssuranceServerData = () => {} export const setBirthdateForDid = () => {} export const setCreatedAtForDid = () => {} diff --git a/src/ageAssurance/components/NoAccessScreen.tsx b/src/ageAssurance/components/NoAccessScreen.tsx index 84584b2717..ac88e59f7a 100644 --- a/src/ageAssurance/components/NoAccessScreen.tsx +++ b/src/ageAssurance/components/NoAccessScreen.tsx @@ -32,7 +32,7 @@ import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' import {BottomSheetOutlet} from '#/../modules/bottom-sheet' import {useAgeAssurance} from '#/ageAssurance' -import {useAgeAssuranceDataContext} from '#/ageAssurance/data' +import {useAgeAssuranceServerDataContext} from '#/ageAssurance/data' import {useComputeAgeAssuranceRegionAccess} from '#/ageAssurance/useComputeAgeAssuranceRegionAccess' import { isLegacyBirthdateBug, @@ -53,7 +53,7 @@ export function NoAccessScreen() { const birthdateControl = useDialogControl() const deactivateAccountControl = useDialogControl() const deleteAccountControl = useDialogControl() - const {data} = useAgeAssuranceDataContext() + const {metadata} = useAgeAssuranceServerDataContext() const region = useAgeAssuranceRegionConfig() const isBirthdateUpdateAllowed = useIsBirthdateUpdateAllowed() const {logoutCurrentAccount} = useSessionApi() @@ -62,15 +62,15 @@ export function NoAccessScreen() { const aa = useAgeAssurance() const isBlocked = aa.state.status === aa.Status.Blocked const isAARegion = !!region - const hasDeclaredAge = data?.declaredAge !== undefined + const hasDeclaredAge = metadata?.declaredAge !== undefined const canUpdateBirthday = - isBirthdateUpdateAllowed || isLegacyBirthdateBug(data?.birthdate || '') + isBirthdateUpdateAllowed || isLegacyBirthdateBug(metadata?.birthdate || '') useEffect(() => { // just counting overall hits here ax.metric(`blockedGeoOverlay:shown`, {}) ax.metric(`ageAssurance:noAccessScreen:shown`, { - accountCreatedAt: data?.accountCreatedAt || 'unknown', + accountCreatedAt: metadata?.accountCreatedAt || 'unknown', isAARegion, hasDeclaredAge, canUpdateBirthday, diff --git a/src/ageAssurance/const.ts b/src/ageAssurance/const.ts new file mode 100644 index 0000000000..bd79353b51 --- /dev/null +++ b/src/ageAssurance/const.ts @@ -0,0 +1,28 @@ +import { + ageAssuranceRuleIDs as ids, + type AppBskyAgeassuranceDefs, +} from '@atproto/api' + +import {AgeAssuranceAccess} from '#/ageAssurance/types' + +/** + * Minimum age required to access the app at all. + */ +export const MIN_ACCESS_AGE = 13 + +export const FALLBACK_REGION_CONFIG: AppBskyAgeassuranceDefs.ConfigRegion = { + countryCode: '*', + regionCode: undefined, + minAccessAge: MIN_ACCESS_AGE, + rules: [ + { + $type: ids.IfDeclaredOverAge, + age: MIN_ACCESS_AGE, + access: AgeAssuranceAccess.Full, + }, + { + $type: ids.Default, + access: AgeAssuranceAccess.None, + }, + ], +} diff --git a/src/ageAssurance/data.tsx b/src/ageAssurance/data.tsx index 36a06fbd22..114d946602 100644 --- a/src/ageAssurance/data.tsx +++ b/src/ageAssurance/data.tsx @@ -24,6 +24,7 @@ import {fetchActorDeclarationRecord} from '#/state/queries/messages/actor-declar import {useAgent, useSession} from '#/state/session' import * as debug from '#/ageAssurance/debug' import {logger} from '#/ageAssurance/logger' +import {type AgeAssuranceMetadata} from '#/ageAssurance/types' import { getBirthdateStringFromAge, isLegacyBirthdateBug, @@ -485,9 +486,9 @@ export function useOtherRequiredDataQuery() { } /** - * Helper to prefetch all age assurance data. + * Helper to prefetch all age assurance data from the server. */ -export function prefetchAgeAssuranceData({agent}: {agent: AtpAgent}) { +export function prefetchAgeAssuranceServerData({agent}: {agent: AtpAgent}) { return Promise.allSettled([ // config fetch initiated at the top of the App.platform.tsx files, awaited here configPrefetchPromise, @@ -496,8 +497,8 @@ export function prefetchAgeAssuranceData({agent}: {agent: AtpAgent}) { ]) } -export function clearAgeAssuranceDataForDid({did}: {did: string}) { - logger.debug(`clearAgeAssuranceDataForDid: ${did}`) +export function clearAgeAssuranceServerDataForDid({did}: {did: string}) { + logger.debug(`clearAgeAssuranceServerDataForDid: ${did}`) qc.removeQueries({queryKey: createServerStateQueryKey({did}), exact: true}) qc.removeQueries({ queryKey: createOtherRequiredDataQueryKey({did}), @@ -505,8 +506,8 @@ export function clearAgeAssuranceDataForDid({did}: {did: string}) { }) } -export function clearAgeAssuranceData() { - logger.debug(`clearAgeAssuranceData`) +export function clearAgeAssuranceServerDataForAll() { + logger.debug(`clearAgeAssuranceServerDataForAll`) qc.clear() } @@ -514,30 +515,30 @@ export function clearAgeAssuranceData() { * Context */ -export type AgeAssuranceData = { +export type AgeAssuranceServerData = { + /** + * The raw config from the appview. + */ config: AppBskyAgeassuranceDefs.Config | undefined + /** + * The raw state from the appview. Must be further processed before being useful. + */ state: AppBskyAgeassuranceDefs.State | undefined - data: - | { - accountCreatedAt: AppBskyAgeassuranceDefs.StateMetadata['accountCreatedAt'] - declaredAge: number | undefined - birthdate: string | undefined - } - | undefined + metadata: AgeAssuranceMetadata | undefined } -export const AgeAssuranceDataContext = createContext({ +const AgeAssuranceServerDataContext = createContext({ config: undefined, state: undefined, - data: { + metadata: { accountCreatedAt: undefined, declaredAge: undefined, birthdate: undefined, }, }) -export function useAgeAssuranceDataContext() { - return useContext(AgeAssuranceDataContext) +export function useAgeAssuranceServerDataContext() { + return useContext(AgeAssuranceServerDataContext) } -export function AgeAssuranceDataProvider({ +export function AgeAssuranceServerDataProvider({ children, }: { children: React.ReactNode @@ -550,7 +551,8 @@ export function AgeAssuranceDataProvider({ () => ({ config, state, - data: { + metadata: { + // yes, it's weird, but accountCreatedAt comes back on the `getState` endpoint accountCreatedAt: metadata?.accountCreatedAt, declaredAge: data?.birthdate ? getAge(new Date(data.birthdate)) @@ -561,8 +563,8 @@ export function AgeAssuranceDataProvider({ [config, state, data, metadata], ) return ( - + {children} - + ) } diff --git a/src/ageAssurance/debug.ts b/src/ageAssurance/debug.ts index 257eeff93d..3368ddf147 100644 --- a/src/ageAssurance/debug.ts +++ b/src/ageAssurance/debug.ts @@ -26,35 +26,8 @@ export const deviceGeolocation: Geolocation | undefined = } : undefined -export const config: AppBskyAgeassuranceDefs.Config = { - regions: [ - { - countryCode: 'AA', - regionCode: undefined, - minAccessAge: 13, - rules: [ - { - $type: ids.Default, - access: 'full', - }, - ], - }, - { - countryCode: 'BB', - regionCode: undefined, - minAccessAge: 16, - rules: [ - { - $type: ids.Default, - access: 'full', - }, - ], - }, - ], -} - export const otherRequiredData: OtherRequiredData = { - birthdate: new Date(2000, 1, 1).toISOString(), + birthdate: new Date(2010, 12, 1).toISOString(), } const serverStateEnabled = false || IS_E2E @@ -72,6 +45,218 @@ export const serverState: AppBskyAgeassuranceGetState.OutputSchema | undefined = } : undefined +export const config: AppBskyAgeassuranceDefs.Config = { + regions: [ + { + countryCode: 'AA', + regionCode: undefined, + minAccessAge: 13, + rules: [ + { + $type: ids.Default, + access: 'full', + }, + ], + }, + { + countryCode: 'GB', + minAccessAge: 13, + rules: [ + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 13, + access: 'safe', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'AU', + minAccessAge: 16, + rules: [ + { + date: '2025-12-10T00:00:00Z', + access: 'none', + $type: ids.IfAccountNewerThan, + }, + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 16, + access: 'safe', + $type: ids.IfAssuredOverAge, + }, + { + age: 16, + access: 'safe', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'US', + regionCode: 'SD', + minAccessAge: 13, + rules: [ + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 13, + access: 'safe', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'US', + regionCode: 'WY', + minAccessAge: 13, + rules: [ + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 13, + access: 'safe', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'US', + regionCode: 'OH', + minAccessAge: 13, + rules: [ + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 13, + access: 'safe', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'US', + regionCode: 'MS', + minAccessAge: 18, + rules: [ + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'US', + regionCode: 'VA', + minAccessAge: 16, + rules: [ + { + age: 16, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 16, + access: 'full', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'US', + regionCode: 'TN', + minAccessAge: 18, + rules: [ + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 18, + access: 'full', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + { + countryCode: 'BR', + minAccessAge: 13, + rules: [ + { + age: 18, + access: 'full', + $type: ids.IfAssuredOverAge, + }, + { + age: 18, + access: 'full', + $type: ids.IfDeclaredOverAge, + }, + { + age: 13, + access: 'safe', + $type: ids.IfDeclaredOverAge, + }, + { + access: 'none', + $type: ids.Default, + }, + ], + }, + ], +} + export async function resolve(data: T) { await new Promise(y => setTimeout(y, 500)) // simulate network return data diff --git a/src/ageAssurance/index.tsx b/src/ageAssurance/index.tsx index a5cca327ae..20bcc2bdb8 100644 --- a/src/ageAssurance/index.tsx +++ b/src/ageAssurance/index.tsx @@ -1,11 +1,12 @@ -import {createContext, useCallback, useContext, useEffect, useMemo} from 'react' +import {createContext, useCallback, useContext, useMemo} from 'react' import {useGetAndRegisterPushToken} from '#/lib/notifications/notifications' +import {restrictChatSettings} from '#/state/queries/messages/restrictChatSettings' import {useAgent} from '#/state/session' import {Provider as RedirectOverlayProvider} from '#/ageAssurance/components/RedirectOverlay' import { - AgeAssuranceDataProvider, - useAgeAssuranceDataContext, + AgeAssuranceServerDataProvider, + useAgeAssuranceServerDataContext, } from '#/ageAssurance/data' import {logger} from '#/ageAssurance/logger' import { @@ -14,37 +15,29 @@ import { } from '#/ageAssurance/state' import { AgeAssuranceAccess, + type AgeAssuranceFlags, type AgeAssuranceState, AgeAssuranceStatus, } from '#/ageAssurance/types' import { - isUnderAge, - maybeRestrictChatSettings, - MIN_ACCESS_AGE, + computeAgeAssuranceFlags, useAgeAssuranceRegionConfigWithFallback, } from '#/ageAssurance/util' export { prefetchConfig as prefetchAgeAssuranceConfig, - prefetchAgeAssuranceData, + prefetchAgeAssuranceServerData, refetchServerState as refetchAgeAssuranceServerState, usePatchOtherRequiredData as usePatchAgeAssuranceOtherRequiredData, usePatchServerState as usePatchAgeAssuranceServerState, } from '#/ageAssurance/data' export {logger} from '#/ageAssurance/logger' -export {MIN_ACCESS_AGE} from '#/ageAssurance/util' const AgeAssuranceStateContext = createContext<{ Access: typeof AgeAssuranceAccess Status: typeof AgeAssuranceStatus state: AgeAssuranceState - flags: { - adultContentDisabled: boolean - chatDisabled: boolean - isDeclaredUnderAdultAge: boolean - isOverRegionMinAccessAge: boolean - isOverAppMinAccessAge: boolean - } + flags: AgeAssuranceFlags }>({ Access: AgeAssuranceAccess, Status: AgeAssuranceStatus, @@ -54,8 +47,10 @@ const AgeAssuranceStateContext = createContext<{ access: AgeAssuranceAccess.Full, }, flags: { + isAgeRestricted: false, adultContentDisabled: false, chatDisabled: false, + groupChatDisabled: false, isDeclaredUnderAdultAge: false, isOverRegionMinAccessAge: false, isOverAppMinAccessAge: false, @@ -73,65 +68,61 @@ export function useAgeAssurance() { export function Provider({children}: {children: React.ReactNode}) { return ( - + {children} - + ) } function InnerProvider({children}: {children: React.ReactNode}) { const agent = useAgent() const state = useAgeAssuranceState() - const {data} = useAgeAssuranceDataContext() - const config = useAgeAssuranceRegionConfigWithFallback() + const {metadata} = useAgeAssuranceServerDataContext() + const regionConfig = useAgeAssuranceRegionConfigWithFallback() const getAndRegisterPushToken = useGetAndRegisterPushToken() const handleAccessUpdate = useCallback( (s: AgeAssuranceState) => { - const isAgeRestricted = s.access !== AgeAssuranceAccess.Full - if (isAgeRestricted) { - void getAndRegisterPushToken({isAgeRestricted}) - maybeRestrictChatSettings({agent}) + const flags = computeAgeAssuranceFlags({ + state: s, + regionConfig, + metadata, + }) + if (flags.isAgeRestricted) { + void getAndRegisterPushToken({ + isAgeRestricted: true, + }) + } + if (flags.chatDisabled || flags.groupChatDisabled) { + void restrictChatSettings({ + agent, + restrictIncoming: flags.chatDisabled, + restrictGroupInvites: flags.groupChatDisabled, + }) } }, - [agent, getAndRegisterPushToken], + [agent, getAndRegisterPushToken, regionConfig, metadata], ) useOnAgeAssuranceAccessUpdate(handleAccessUpdate) - useEffect(() => { - logger.debug(`useAgeAssuranceState`, {state}) - }, [state]) - return ( { - const chatDisabled = state.access !== AgeAssuranceAccess.Full - const isDeclaredUnderAdultAge = data?.birthdate - ? isUnderAge(data.birthdate, 18) - : true - const isOverRegionMinAccessAge = data?.birthdate - ? !isUnderAge(data.birthdate, config.minAccessAge) - : false - const isOverAppMinAccessAge = data?.birthdate - ? !isUnderAge(data.birthdate, MIN_ACCESS_AGE) - : false - const adultContentDisabled = - state.access !== AgeAssuranceAccess.Full || isDeclaredUnderAdultAge - return { + const res = { Access: AgeAssuranceAccess, Status: AgeAssuranceStatus, state, - flags: { - adultContentDisabled, - chatDisabled, - isDeclaredUnderAdultAge, - isOverRegionMinAccessAge, - isOverAppMinAccessAge, - }, + flags: computeAgeAssuranceFlags({ + state, + regionConfig, + metadata, + }), } - }, [state, data, config])}> + logger.debug(`useAgeAssurance`, res) + return res + }, [state, metadata, regionConfig])}> {children} ) diff --git a/src/ageAssurance/state.ts b/src/ageAssurance/state.ts index 5aac40ef44..ff80bca725 100644 --- a/src/ageAssurance/state.ts +++ b/src/ageAssurance/state.ts @@ -1,24 +1,30 @@ import {useEffect, useMemo, useState} from 'react' -import {computeAgeAssuranceRegionAccess} from '@atproto/api' +import { + type AppBskyAgeassuranceDefs, + computeAgeAssuranceRegionAccess, +} from '@atproto/api' import {getAge} from '#/lib/strings/time' import {useSession} from '#/state/session' import { - type AgeAssuranceData, getConfigFromCache, getOtherRequiredDataFromCache, getServerStateFromCache, - useAgeAssuranceDataContext, + useAgeAssuranceServerDataContext, } from '#/ageAssurance/data' import {logger} from '#/ageAssurance/logger' import { AgeAssuranceAccess, + type AgeAssuranceMetadata, type AgeAssuranceState, AgeAssuranceStatus, parseAccessFromString, parseStatusFromString, } from '#/ageAssurance/types' -import {getAgeAssuranceRegionConfigWithFallback} from '#/ageAssurance/util' +import { + computeAgeAssuranceFlags, + getAgeAssuranceRegionConfigWithFallback, +} from '#/ageAssurance/util' import {type Geolocation, useGeolocation} from '#/geolocation' import {device} from '#/storage' @@ -27,18 +33,18 @@ import {device} from '#/storage' * server state before computing access based on AA config from the server + * geolocation and other data. */ -export function computeAgeAssuranceState({ +function computeAgeAssuranceState({ hasSession, - config, geolocation, + config, state, - data, + metadata, }: { hasSession: boolean - config: AgeAssuranceData['config'] geolocation: Geolocation - state: AgeAssuranceData['state'] - data: AgeAssuranceData['data'] + config?: AppBskyAgeassuranceDefs.Config + state?: AppBskyAgeassuranceDefs.State + metadata?: AgeAssuranceMetadata }) { /** * This is where we control logged-out moderation prefs. It's all @@ -88,7 +94,10 @@ export function computeAgeAssuranceState({ * accounts with an accurate birthdate, our default fallback rules should * ensure correct access. */ - const result = computeAgeAssuranceRegionAccess(region, data) + const result = computeAgeAssuranceRegionAccess(region, { + accountCreatedAt: metadata?.accountCreatedAt, + declaredAge: metadata?.declaredAge, + }) const computed = { lastInitiatedAt: state?.lastInitiatedAt, // prefer server state @@ -100,10 +109,10 @@ export function computeAgeAssuranceState({ ? parseAccessFromString(result.access) : AgeAssuranceAccess.Full, } - logger.debug('debug useAgeAssuranceState', { + logger.debug('computeAgeAssuranceState', { region, state, - data, + metadata, computed, }) return computed @@ -113,38 +122,51 @@ export function computeAgeAssuranceState({ * This is a last-ditch helper for out-of-band reads of the AA state, such as * during account creation. Don't use it for anything else. */ -export function getAndComputeAgeAssuranceState({did}: {did: string}) { +export function unsafeGetAndComputeAgeAssurance({did}: {did: string}) { const config = getConfigFromCache() const state = getServerStateFromCache({did}) - const data = getOtherRequiredDataFromCache({did}) + const requiredData = getOtherRequiredDataFromCache({did}) const geolocation = device.get(['mergedGeolocation']) - if (!geolocation || !config || !state || !data) { + if (!geolocation || !config || !state || !requiredData) { return { - status: AgeAssuranceStatus.Unknown, - access: AgeAssuranceAccess.Safe, + state: { + status: AgeAssuranceStatus.Unknown, + access: AgeAssuranceAccess.Safe, + }, } } - return computeAgeAssuranceState({ + const region = getAgeAssuranceRegionConfigWithFallback(config, geolocation) + const metadata: AgeAssuranceMetadata = { + accountCreatedAt: state.metadata?.accountCreatedAt, + declaredAge: requiredData?.birthdate + ? getAge(new Date(requiredData.birthdate)) + : undefined, + birthdate: requiredData?.birthdate, + } + const computed = computeAgeAssuranceState({ hasSession: true, config, geolocation, state: state.state, - data: { - accountCreatedAt: state.metadata?.accountCreatedAt, - declaredAge: data?.birthdate - ? getAge(new Date(data.birthdate)) - : undefined, - birthdate: data?.birthdate, - }, + metadata, }) + + return { + state: computed, + flags: computeAgeAssuranceFlags({ + state: computed, + regionConfig: region, + metadata, + }), + } } export function useAgeAssuranceState(): AgeAssuranceState { const {hasSession} = useSession() const geolocation = useGeolocation() - const {config, state, data} = useAgeAssuranceDataContext() + const {config, state, metadata} = useAgeAssuranceServerDataContext() return useMemo( () => @@ -153,9 +175,9 @@ export function useAgeAssuranceState(): AgeAssuranceState { config, geolocation, state, - data, + metadata, }), - [hasSession, geolocation, config, state, data], + [hasSession, geolocation, config, state, metadata], ) } diff --git a/src/ageAssurance/types.ts b/src/ageAssurance/types.ts index f34ed10aea..21abff89f0 100644 --- a/src/ageAssurance/types.ts +++ b/src/ageAssurance/types.ts @@ -1,3 +1,5 @@ +import {type computeAgeAssuranceRegionAccess} from '@atproto/api' + import {logger} from '#/ageAssurance/logger' export enum AgeAssuranceAccess { @@ -14,6 +16,12 @@ export enum AgeAssuranceStatus { Blocked = 'blocked', } +export type AgeAssuranceMetadata = Parameters< + typeof computeAgeAssuranceRegionAccess +>[1] & { + birthdate: string | undefined +} + export type AgeAssuranceState = { lastInitiatedAt?: string status: AgeAssuranceStatus @@ -21,6 +29,16 @@ export type AgeAssuranceState = { error?: 'config' // maybe other specific cases in the future } +export type AgeAssuranceFlags = { + isAgeRestricted: boolean + adultContentDisabled: boolean + chatDisabled: boolean + groupChatDisabled: boolean + isDeclaredUnderAdultAge: boolean + isOverRegionMinAccessAge: boolean + isOverAppMinAccessAge: boolean +} + export function parseStatusFromString(raw: string) { switch (raw) { case 'unknown': diff --git a/src/ageAssurance/useComputeAgeAssuranceRegionAccess.ts b/src/ageAssurance/useComputeAgeAssuranceRegionAccess.ts index e3ea48860f..5ba9e1ba6d 100644 --- a/src/ageAssurance/useComputeAgeAssuranceRegionAccess.ts +++ b/src/ageAssurance/useComputeAgeAssuranceRegionAccess.ts @@ -1,14 +1,14 @@ import {useCallback} from 'react' import {computeAgeAssuranceRegionAccess} from '@atproto/api' -import {useAgeAssuranceDataContext} from '#/ageAssurance/data' +import {useAgeAssuranceServerDataContext} from '#/ageAssurance/data' import {logger} from '#/ageAssurance/logger' import {AgeAssuranceAccess, parseAccessFromString} from '#/ageAssurance/types' import {getAgeAssuranceRegionConfigWithFallback} from '#/ageAssurance/util' import {type Geolocation} from '#/geolocation' export function useComputeAgeAssuranceRegionAccess() { - const {config, data} = useAgeAssuranceDataContext() + const {config, metadata} = useAgeAssuranceServerDataContext() return useCallback( (geolocation: Geolocation) => { if (!config) { @@ -19,11 +19,14 @@ export function useComputeAgeAssuranceRegionAccess() { config, geolocation, ) - const result = computeAgeAssuranceRegionAccess(region, data) + const result = computeAgeAssuranceRegionAccess(region, { + accountCreatedAt: metadata?.accountCreatedAt, + declaredAge: metadata?.declaredAge, + }) return result ? parseAccessFromString(result.access) : AgeAssuranceAccess.Full }, - [config, data], + [config, metadata], ) } diff --git a/src/ageAssurance/util.ts b/src/ageAssurance/util.ts index 310725db8f..0d493f1130 100644 --- a/src/ageAssurance/util.ts +++ b/src/ageAssurance/util.ts @@ -1,41 +1,22 @@ import {useMemo} from 'react' import { - ageAssuranceRuleIDs as ids, type AppBskyAgeassuranceDefs, - type AtpAgent, getAgeAssuranceRegionConfig, type ModerationPrefs, } from '@atproto/api' import {getAge} from '#/lib/strings/time' -import {restrictChatSettings} from '#/state/queries/messages/restrictChatSettings' -import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/moderation' +import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/const' +import {FALLBACK_REGION_CONFIG, MIN_ACCESS_AGE} from '#/ageAssurance/const' +import {useAgeAssuranceServerDataContext} from '#/ageAssurance/data' import { - getDidFromAgentSession, - getOtherRequiredDataFromCache, - useAgeAssuranceDataContext, -} from '#/ageAssurance/data' -import {AgeAssuranceAccess} from '#/ageAssurance/types' + AgeAssuranceAccess, + type AgeAssuranceFlags, + type AgeAssuranceMetadata, + type AgeAssuranceState, +} from '#/ageAssurance/types' import {type Geolocation, useGeolocation} from '#/geolocation' -export const MIN_ACCESS_AGE = 13 -const FALLBACK_REGION_CONFIG: AppBskyAgeassuranceDefs.ConfigRegion = { - countryCode: '*', - regionCode: undefined, - minAccessAge: MIN_ACCESS_AGE, - rules: [ - { - $type: ids.IfDeclaredOverAge, - age: MIN_ACCESS_AGE, - access: AgeAssuranceAccess.Full, - }, - { - $type: ids.Default, - access: AgeAssuranceAccess.None, - }, - ], -} - /** * Get age assurance region config based on geolocation, with fallback to * app defaults if no region config is found. @@ -62,7 +43,7 @@ export function getAgeAssuranceRegionConfigWithFallback( */ export function useAgeAssuranceRegionConfig() { const geolocation = useGeolocation() - const {config} = useAgeAssuranceDataContext() + const {config} = useAgeAssuranceServerDataContext() return useMemo(() => { if (!config) return // use generic helper, we want to potentially return undefined @@ -116,15 +97,37 @@ export const makeAgeRestrictedModerationPrefs = ( labels: DEFAULT_LOGGED_OUT_LABEL_PREFERENCES, }) -/** - * Checks our cache of the actor's chat declaration record, and if it's not - * already restricted, restricts it. - */ -export function maybeRestrictChatSettings({agent}: {agent: AtpAgent}) { - const did = getDidFromAgentSession(agent) - if (!did) return - const data = getOtherRequiredDataFromCache({did}) - // ...update the chat setting record if allowIncoming is not already 'none'. - if (data?.actorDeclaration?.allowIncoming === 'none') return - restrictChatSettings({agent, did}) +export function computeAgeAssuranceFlags({ + state, + regionConfig, + metadata, +}: { + state: AgeAssuranceState + regionConfig: AppBskyAgeassuranceDefs.ConfigRegion + metadata?: AgeAssuranceMetadata +}): AgeAssuranceFlags { + const isAgeRestricted = state.access !== AgeAssuranceAccess.Full + const chatDisabled = isAgeRestricted + const isDeclaredUnderAdultAge = metadata?.declaredAge + ? metadata.declaredAge < 18 + : true + const groupChatDisabled = chatDisabled || isDeclaredUnderAdultAge + const isOverRegionMinAccessAge = metadata?.declaredAge + ? metadata.declaredAge >= regionConfig.minAccessAge + : false + const isOverAppMinAccessAge = metadata?.declaredAge + ? metadata.declaredAge >= MIN_ACCESS_AGE + : false + const adultContentDisabled = + state.access !== AgeAssuranceAccess.Full || isDeclaredUnderAdultAge + + return { + isAgeRestricted, + adultContentDisabled, + chatDisabled, + groupChatDisabled, + isDeclaredUnderAdultAge, + isOverRegionMinAccessAge, + isOverAppMinAccessAge, + } } diff --git a/src/alf/index.tsx b/src/alf/index.tsx index 0cb5ceb3f7..a1a2d8adaa 100644 --- a/src/alf/index.tsx +++ b/src/alf/index.tsx @@ -9,7 +9,12 @@ import { setFontScale as persistFontScale, } from '#/alf/fonts' import {themes} from '#/alf/themes' -import {darken, lighten, rgbToHex} from '#/alf/util/colorGeneration' +import { + contrastRatio, + darken, + lighten, + rgbToHex, +} from '#/alf/util/colorGeneration' import {type Device} from '#/storage' export {type TextStyleProp, type Theme, type ViewStyleProp} from '@bsky.app/alf' @@ -26,6 +31,7 @@ export const utils = { rgbToHex, lighten, darken, + contrastRatio, } export type Alf = { diff --git a/src/alf/util/colorGeneration.test.ts b/src/alf/util/colorGeneration.test.ts index c4a2b0bbb5..8d330201e0 100644 --- a/src/alf/util/colorGeneration.test.ts +++ b/src/alf/util/colorGeneration.test.ts @@ -1,4 +1,10 @@ -import {darken, hexToRgb, lighten, rgbToHex} from './colorGeneration' +import { + contrastRatio, + darken, + hexToRgb, + lighten, + rgbToHex, +} from './colorGeneration' describe('hexToRgb', () => { it('parses 6-digit hex', () => { @@ -92,3 +98,33 @@ describe('lighten / darken', () => { expect(darken('#zzz', 10)).toBe('#zzz') }) }) + +describe('contrastRatio', () => { + it('returns 21 for black on white', () => { + expect(contrastRatio('#000000', '#ffffff')).toBeCloseTo(21, 5) + }) + + it('returns 1 for identical colors', () => { + expect(contrastRatio('#abcdef', '#abcdef')).toBeCloseTo(1, 5) + }) + + it('is symmetric regardless of argument order', () => { + expect(contrastRatio('#123456', '#fedcba')).toBeCloseTo( + contrastRatio('#fedcba', '#123456')!, + 5, + ) + }) + + it('clears AAA large text (4.5:1) for a high-contrast pairing', () => { + expect(contrastRatio('#1d3a5f', '#ffffff')!).toBeGreaterThanOrEqual(4.5) + }) + + it('fails AAA large text (4.5:1) for a low-contrast pairing', () => { + expect(contrastRatio('#777777', '#888888')!).toBeLessThan(4.5) + }) + + it('returns null for invalid hex input', () => { + expect(contrastRatio('not-a-color', '#ffffff')).toBeNull() + expect(contrastRatio('#ffffff', '#zzz')).toBeNull() + }) +}) diff --git a/src/alf/util/colorGeneration.ts b/src/alf/util/colorGeneration.ts index 85659af25f..f3be07d502 100644 --- a/src/alf/util/colorGeneration.ts +++ b/src/alf/util/colorGeneration.ts @@ -72,6 +72,48 @@ export function rgbToHex(r: number, g: number, b: number): string { .slice(1)}` } +/** + * Computes the WCAG contrast ratio between two colors, ranging from 1 (no + * contrast) to 21 (maximum contrast, i.e. black on white). Returns null if + * either argument is not a valid hex color. + * + * @see https://www.w3.org/TR/WCAG21/#dfn-contrast-ratio + */ +export function contrastRatio(hexA: string, hexB: string): number | null { + const rgbA = hexToRgb(hexA) + const rgbB = hexToRgb(hexB) + if (!rgbA || !rgbB) return null + const luminanceA = relativeLuminance(rgbA) + const luminanceB = relativeLuminance(rgbB) + const lighter = Math.max(luminanceA, luminanceB) + const darker = Math.min(luminanceA, luminanceB) + return (lighter + 0.05) / (darker + 0.05) +} + +/** + * Computes the WCAG relative luminance of an RGB color, ranging from 0 (black) + * to 1 (white). + * + * @see https://www.w3.org/TR/WCAG21/#dfn-relative-luminance + */ +function relativeLuminance({ + r, + g, + b, +}: { + r: number + g: number + b: number +}): number { + const toLinear = (channel: number) => { + const normalized = channel / 255 + return normalized <= 0.03928 + ? normalized / 12.92 + : ((normalized + 0.055) / 1.055) ** 2.4 + } + return 0.2126 * toLinear(r) + 0.7152 * toLinear(g) + 0.0722 * toLinear(b) +} + function rgbToHsl( r: number, g: number, diff --git a/src/alf/util/dimensions.ts b/src/alf/util/dimensions.ts new file mode 100644 index 0000000000..31af2ffa99 --- /dev/null +++ b/src/alf/util/dimensions.ts @@ -0,0 +1,19 @@ +import {useEffect, useState} from 'react' +import {Dimensions} from 'react-native' + +/** + * Same as `useWindowDimensions().fontScale`, but avoids rerendering + * whenever the screen size changes + */ +export function useNativeFontScale() { + const [fontScale, setFontScale] = useState(Dimensions.get('window').fontScale) + + useEffect(() => { + const sub = Dimensions.addEventListener('change', evt => { + setFontScale(evt.window.fontScale) + }) + return () => sub.remove() + }, []) + + return fontScale +} diff --git a/src/analytics/PassiveAnalytics.tsx b/src/analytics/PassiveAnalytics.tsx index 34b5f2d275..c772ed09b8 100644 --- a/src/analytics/PassiveAnalytics.tsx +++ b/src/analytics/PassiveAnalytics.tsx @@ -2,8 +2,6 @@ import {useEffect, useRef} from 'react' import {getCurrentState, onAppStateChange} from '#/lib/appState' import {useAnalytics} from '#/analytics' -import {Features, features} from '#/analytics/features' -import {IS_DEV, IS_TESTFLIGHT} from '#/env' /** * Tracks passive analytics like app foreground/background time. @@ -27,19 +25,19 @@ export function PassiveAnalytics() { }) } - if (IS_DEV || IS_TESTFLIGHT) { - const feats = Object.values(Features).reduce( - (acc, feat) => { - acc[feat] = features.evalFeature(feat) - return acc - }, - {} as Record, - ) - ax.logger.info('FEATURES', { - features: feats, - definitions: features.getFeatures(), - }) - } + // if (IS_DEV || IS_TESTFLIGHT) { + // const feats = Object.values(Features).reduce( + // (acc, feat) => { + // acc[feat] = features.evalFeature(feat) + // return acc + // }, + // {} as Record, + // ) + // ax.logger.info('FEATURES', { + // features: feats, + // definitions: features.getFeatures(), + // }) + // } }) return () => sub.remove() }, [ax]) diff --git a/src/analytics/features/types.ts b/src/analytics/features/types.ts index c8a8cd72d9..bca196c706 100644 --- a/src/analytics/features/types.ts +++ b/src/analytics/features/types.ts @@ -9,11 +9,11 @@ export enum Features { ImportContactsOnboardingDisable = 'import_contacts:onboarding:disable', ImportContactsSettingsDisable = 'import_contacts:settings:disable', LiveNowBetaDisable = 'live_now_beta:disable', - GroupChatsEnable = 'group_chats:enable', - GroupChatsHasBeenReleased = 'group_chats:has_been_released', + GroupChatsDisable = 'group_chats:disable', DmsNewMessageComposerEnable = 'dms:new_message_composer:enable', ComposerLanguageDetectionEnable = 'composer:language_detection:enable', PostGalleryEmbedEnable = 'post_gallery_embed:enable', + NotificationsExpandedProfileCardEnable = 'notifications:expanded_profile_card:enable', AATest = 'aa-test', } diff --git a/src/analytics/metrics/client.ts b/src/analytics/metrics/client.ts index 2aab90f265..1ea0573dcd 100644 --- a/src/analytics/metrics/client.ts +++ b/src/analytics/metrics/client.ts @@ -67,10 +67,6 @@ export class MetricsClient> { } private async sendBatch(events: Event[], isRetry: boolean = false) { - logger.debug(`sendBatch: ${events.length}`, { - isRetry, - }) - try { const body = JSON.stringify({events}) if (env.IS_WEB && 'navigator' in globalThis && navigator.sendBeacon) { diff --git a/src/analytics/metrics/types.ts b/src/analytics/metrics/types.ts index 90dbc4f983..eec5c3c207 100644 --- a/src/analytics/metrics/types.ts +++ b/src/analytics/metrics/types.ts @@ -586,9 +586,78 @@ export type Events = { | 'SendViaChatDialog' | 'ConvoSettings' } + + // Group chat adoption 'groupchat:create': { logContext: 'NewChatDialog' } + 'groupchat:landingPage:view': { + hasSession: boolean + } + 'groupchat:inviteLink:redeem': {} + + // Group chat user interactions + 'groupchat:message:send': { + convoId: string + isOwner: boolean + } + 'groupchat:mute': { + convoId: string + } + 'groupchat:unmute': { + convoId: string + } + 'groupchat:leave': { + convoId: string + isOwner: boolean + } + 'groupchat:settings:view': { + convoId: string + isOwner: boolean + } + 'groupchat:inviteLink:shareButton:press': { + convoId: string + method: 'post' | 'copy' | 'native' + } + 'groupchat:inviteLink:shared': { + convoId: string + method: 'post' | 'dm' + } + + // Group chat owner actions + 'groupchat:owner:editName': { + convoId: string + } + 'groupchat:owner:lock': { + convoId: string + } + 'groupchat:owner:unlock': { + convoId: string + } + 'groupchat:owner:kickMember': { + convoId: string + } + 'groupchat:owner:inviteMember': { + convoId: string + } + 'groupchat:owner:joinRequest:accept': { + convoId: string + } + 'groupchat:owner:joinRequest:reject': { + convoId: string + } + 'groupchat:owner:inviteLink:create': { + convoId: string + } + 'groupchat:owner:inviteLink:disable': { + convoId: string + } + + // Group chat problems + 'groupchat:join:memberLimitReached': { + convoId: string + } + 'starterPack:addUser': { starterPack?: string } @@ -1175,18 +1244,76 @@ export type Events = { 'profile:associated:germ:self-disconnect': {} 'profile:associated:germ:self-reconnect': {} - // Gallery carousel events - 'post:gallery:swipe': { + // Post photo embed events + 'post:photoEmbed:impression': { + layout: 'single' | 'grid' | 'carousel' + totalImages: number + postUri: string + postAuthorDid: string + feedDescriptor?: string + } + 'post:photoEmbed:open': { + layout: 'single' | 'grid' | 'carousel' + fromImage: number + totalImages: number + postUri: string + postAuthorDid: string + feedDescriptor?: string + } + 'post:photoEmbed:carouselSwipe': { fromImage: number toImage: number totalImages: number + postUri: string + postAuthorDid: string + feedDescriptor?: string } - 'post:gallery:openLightbox': { + 'post:photoEmbed:lightboxSwipe': { + layout: 'single' | 'grid' | 'carousel' fromImage: number - totalImages: number - } - 'post:gallery:impression': { + toImage: number totalImages: number postUri: string + postAuthorDid: string + feedDescriptor?: string } + + /* + * Invite friends (profile QR share sheet) + */ + + // NUX announcement dialog was shown to the user + 'invite:nux:presented': {} + // user pressed "Try it" on the NUX announcement + 'invite:nux:tryItPressed': {} + // invite friends dialog opened, with the surface that triggered it + 'invite:dialog:open': { + logContext: + | 'ProfileHeader' + | 'Drawer' + | 'FindContactsSettings' + | 'NuxAnnouncement' + } + // user copied the invite link to clipboard + 'invite:action:copy': {} + // user invoked the native share sheet with the invite link + 'invite:action:share': {} + // user saved the QR code image to their camera roll (success only) + 'invite:action:download': {} + // user pressed the scan button to open the QR scanner + 'invite:action:scan': {} + // user changed the QR card color theme + 'invite:theme:change': { + themeKey: 'dawn' | 'day' | 'dusk' | 'night' + } + // QR scanner decoded a code; result indicates whether it resolved to a profile + 'invite:scanner:scanned': { + result: 'profileFound' | 'invalidQr' + } + // empty-followers banner promoting invite/find friends was shown + 'invite:followersPromo:seen': {} + // user pressed the empty-followers promo banner + 'invite:followersPromo:press': {} + // user dismissed the empty-followers promo banner + 'invite:followersPromo:dismiss': {} } diff --git a/src/components/AvatarBubbles.tsx b/src/components/AvatarBubbles.tsx index c49dada16f..49ac4d006f 100644 --- a/src/components/AvatarBubbles.tsx +++ b/src/components/AvatarBubbles.tsx @@ -1,4 +1,4 @@ -import {useEffect, useMemo} from 'react' +import {useEffect} from 'react' import {View} from 'react-native' import Animated, { Easing, @@ -8,12 +8,10 @@ import Animated, { withDelay, withTiming, } from 'react-native-reanimated' -import { - moderateProfile, - type ModerationOpts, - type ModerationUI, -} from '@atproto/api' +import {moderateProfile} from '@atproto/api' +import {useMaybeProfileShadow} from '#/state/cache/profile-shadow' +import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useSession} from '#/state/session' import {UserAvatar} from '#/view/com/util/UserAvatar' import {atoms as a, useTheme} from '#/alf' @@ -33,7 +31,7 @@ export function AvatarBubbles({ profiles: allProfiles, self = false, size = 120, - moderationOpts, + count, }: { animate?: boolean profiles: bsky.profile.AnyProfileView[] @@ -45,19 +43,21 @@ export function AvatarBubbles({ */ self?: boolean size?: number - moderationOpts?: ModerationOpts + /** + * The true number of members, used to decide how many bubbles to render when + * it exceeds the number of `profiles` we have on hand (e.g. an invite preview + * that only carries a few member profiles for a much larger group). Slots + * without a profile render as placeholders. Defaults to `profiles.length`. + */ + count?: number }) { const {currentAccount} = useSession() const profiles = !self && allProfiles.length > 2 - ? allProfiles.filter(p => p?.did != null && p.did !== currentAccount?.did) + ? allProfiles.filter(p => p.did !== currentAccount?.did) : allProfiles - const moderations = useMemo(() => { - if (!moderationOpts) return [] - return profiles.map(p => { - return moderateProfile(p, moderationOpts) - }) - }, [profiles, moderationOpts]) + + const bubbleCount = Math.max(profiles.length, count ?? 0) const scale = size / 120 const marginOffset = size < 120 ? -2 : 0 @@ -89,7 +89,7 @@ export function AvatarBubbles({ }, [animate, p0, p1, p2, p3]) const scales = [p0, p1, p2, p3] - const layouts = getLayouts(profiles.length) + const layouts = getLayouts(bubbleCount) return ( @@ -110,7 +110,6 @@ export function AvatarBubbles({ y={layout.y} zIndex={layout.zIndex} includeProfileBorder={layout.border} - moderation={moderations[i]?.ui('avatar')} /> ))} @@ -119,14 +118,13 @@ export function AvatarBubbles({ } function AvatarBubble({ - profile, + profile: profileUnshadowed, scale, size, x, y, zIndex, includeProfileBorder, - moderation, }: { profile?: bsky.profile.AnyProfileView scale: SharedValue @@ -135,14 +133,15 @@ function AvatarBubble({ y: number zIndex?: number includeProfileBorder?: boolean - moderation?: ModerationUI }) { const t = useTheme() - const animatedStyle = useAnimatedStyle(() => ({ transform: [{translateX: x}, {translateY: y}, {scale: scale.get()}], })) + const profile = useMaybeProfileShadow(profileUnshadowed) + const moderationOpts = useModerationOpts() + return ( - {profile ? ( + {profile && moderationOpts ? ( ) : ( diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 5f74595029..2d02bb832f 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -45,7 +45,7 @@ export type ButtonColor = | 'negative' | 'primary_subtle' | 'negative_subtle' -export type ButtonSize = 'tiny' | 'small' | 'large' +export type ButtonSize = 'tiny' | 'small' | 'medium' | 'large' export type ButtonShape = 'round' | 'square' | 'rectangular' | 'default' export type VariantProps = { /** @@ -136,7 +136,7 @@ export const Button = forwardRef( ( { children, - variant, + variant: variantProp, color, size, shape = 'default', @@ -160,7 +160,8 @@ export const Button = forwardRef( * If a `color` is set, then we want to use the existing codepaths for * "solid" buttons. This is to maintain backwards compatibility. */ - if (!variant && color) { + let variant: VariantProps['variant'] = variantProp + if (!variantProp && color) { variant = 'solid' } @@ -458,6 +459,12 @@ export const Button = forwardRef( paddingHorizontal: 24, gap: 6, }) + } else if (size === 'medium') { + baseStyles.push(a.rounded_full, { + paddingVertical: 9, + paddingHorizontal: 28, + gap: 5, + }) } else if (size === 'small') { baseStyles.push(a.rounded_full, { paddingVertical: 8, @@ -479,6 +486,13 @@ export const Button = forwardRef( borderRadius: 10, gap: 3, }) + } else if (size === 'medium') { + baseStyles.push({ + paddingVertical: 9, + paddingHorizontal: 16, + borderRadius: 8, + gap: 3, + }) } else if (size === 'small') { baseStyles.push({ paddingVertical: 8, @@ -505,6 +519,12 @@ export const Button = forwardRef( } else { baseStyles.push({height: 44, width: 44}) } + } else if (size === 'medium') { + if (shape === 'round') { + baseStyles.push({height: 33, width: 33}) + } else { + baseStyles.push({height: 33, width: 33}) + } } else if (size === 'small') { if (shape === 'round') { baseStyles.push({height: 33, width: 33}) @@ -758,6 +778,8 @@ export function useSharedButtonTextStyles() { if (size === 'large') { baseStyles.push(a.text_md, a.font_medium) + } else if (size === 'medium') { + baseStyles.push(a.text_sm, a.font_medium) } else if (size === 'small') { baseStyles.push(a.text_sm, a.font_medium) } else if (size === 'tiny') { @@ -799,6 +821,7 @@ export function ButtonIcon({ size ?? (({ large: 'md', + medium: 'sm', small: 'sm', tiny: 'xs', }[buttonSize || 'small'] || 'sm') as Exclude< @@ -828,6 +851,7 @@ export function ButtonIcon({ */ const iconContainerSize = { large: 20, + medium: 17, small: 17, tiny: 15, }[buttonSize || 'small'] @@ -841,6 +865,7 @@ export function ButtonIcon({ if (buttonShape === 'default') { iconNegativeMargin = { large: -2, + medium: -2, small: -2, tiny: -1, }[buttonSize || 'small'] diff --git a/src/components/Dialog/index.tsx b/src/components/Dialog/index.tsx index af724a4ab2..bd23e566ad 100644 --- a/src/components/Dialog/index.tsx +++ b/src/components/Dialog/index.tsx @@ -218,7 +218,7 @@ export function Inner({children, style, header}: DialogInnerProps) { export const ScrollableInner = forwardRef( function ScrollableInner( - {children, contentContainerStyle, header, style, ...props}, + {children, contentContainerStyle, header, footer, style, ...props}, ref, ) { const {nativeSnapPoint, disableDrag, setDisableDrag, isHeightConstrained} = @@ -248,42 +248,45 @@ export const ScrollableInner = forwardRef( } return ( - - {header} - {children} - + <> + + {header} + {children} + + {footer} + ) }, ) @@ -350,9 +353,11 @@ export const InnerFlatList = forwardRef< export function FlatListFooter({ children, onLayout, + border = true, }: { children: React.ReactNode onLayout?: (event: LayoutChangeEvent) => void + border?: boolean }) { const t = useTheme() const {bottom} = useSafeAreaInsets() @@ -373,7 +378,7 @@ export function FlatListFooter({ a.bottom_0, a.w_full, a.z_10, - a.border_t, + border && a.border_t, t.atoms.bg, t.atoms.border_contrast_low, a.px_lg, diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index 9666e9a7a4..37c893be1a 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -170,6 +170,7 @@ export function Inner({ accessibilityLabelledBy, accessibilityDescribedBy, header, + footer, contentContainerStyle, }: DialogInnerProps) { const t = useTheme() @@ -216,6 +217,7 @@ export function Inner({ {children} + {footer} @@ -266,9 +268,11 @@ export const InnerFlatList = forwardRef< export function FlatListFooter({ children, onLayout, + border = true, }: { children: React.ReactNode onLayout?: (event: LayoutChangeEvent) => void + border?: boolean }) { const t = useTheme() @@ -281,7 +285,7 @@ export function FlatListFooter({ a.w_full, a.z_10, t.atoms.bg, - a.border_t, + border && a.border_t, t.atoms.border_contrast_low, a.px_lg, a.py_md, diff --git a/src/components/Dialog/types.ts b/src/components/Dialog/types.ts index 865083d501..79c40942de 100644 --- a/src/components/Dialog/types.ts +++ b/src/components/Dialog/types.ts @@ -79,14 +79,18 @@ export type DialogInnerProps = accessibilityLabelledBy: A11yProps['aria-labelledby'] accessibilityDescribedBy: string keyboardDismissMode?: ScrollViewProps['keyboardDismissMode'] + showsVerticalScrollIndicator?: ScrollViewProps['showsVerticalScrollIndicator'] contentContainerStyle?: StyleProp header?: React.ReactNode + footer?: React.ReactNode }> | DialogInnerPropsBase<{ label: string accessibilityLabelledBy?: undefined accessibilityDescribedBy?: undefined keyboardDismissMode?: ScrollViewProps['keyboardDismissMode'] + showsVerticalScrollIndicator?: ScrollViewProps['showsVerticalScrollIndicator'] contentContainerStyle?: StyleProp header?: React.ReactNode + footer?: React.ReactNode }> diff --git a/src/components/Error.tsx b/src/components/Error.tsx index 77aacdb451..190165a2df 100644 --- a/src/components/Error.tsx +++ b/src/components/Error.tsx @@ -1,12 +1,10 @@ import {View} from 'react-native' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' -import {Trans} from '@lingui/react/macro' +import {Trans, useLingui} from '@lingui/react/macro' import {useGoBack} from '#/lib/hooks/useGoBack' -import {CenteredView} from '#/view/com/util/Views' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' +import * as Layout from '#/components/Layout' import {Text} from '#/components/Typography' export function Error({ @@ -15,22 +13,20 @@ export function Error({ onRetry, onGoBack, hideBackButton, - sideBorders = true, }: { title?: string message?: string onRetry?: () => unknown onGoBack?: () => unknown hideBackButton?: boolean - sideBorders?: boolean }) { - const {_} = useLingui() + const {t: l} = useLingui() const t = useTheme() const {gtMobile} = useBreakpoints() const goBack = useGoBack(onGoBack) return ( - + ]}> {title} @@ -70,7 +65,7 @@ export function Error({ )} - + ) } diff --git a/src/components/Lightbox/Lightbox.web.tsx b/src/components/Lightbox/Lightbox.web.tsx index 8883bfb5e5..0222aa3156 100644 --- a/src/components/Lightbox/Lightbox.web.tsx +++ b/src/components/Lightbox/Lightbox.web.tsx @@ -1,5 +1,5 @@ import {useCallback, useEffect, useRef, useState} from 'react' -import {Pressable, StyleSheet, View} from 'react-native' +import {Pressable, ScrollView, StyleSheet, View} from 'react-native' import {Image} from 'expo-image' import {Trans, useLingui} from '@lingui/react/macro' import {FocusGuards, FocusScope} from 'radix-ui/internal' @@ -226,17 +226,21 @@ function LightboxGallery({ )} {img.alt ? ( - + ]} + scrollEnabled={isAltExpanded} + contentContainerStyle={[a.px_4xl, a.py_2xl]}> - + ) : null} {imgs.length > 1 && (

@@ -449,6 +453,14 @@ const styles = StyleSheet.create({ padding: 16, boxSizing: 'border-box', }, + altScroll: { + // Size to content like the View it replaced, rather than filling the + // column via ScrollView's default flexGrow. + flexGrow: 0, + flexShrink: 0, + // @ts-ignore web-only -sfn + maxHeight: '50vh', + }, menuBtn: { top: 20, left: 20, diff --git a/src/components/Lightbox/chrome/Footer.tsx b/src/components/Lightbox/chrome/Footer.tsx index a20c80df3d..0a708c7545 100644 --- a/src/components/Lightbox/chrome/Footer.tsx +++ b/src/components/Lightbox/chrome/Footer.tsx @@ -1,6 +1,9 @@ import {useRef} from 'react' import {LayoutAnimation, ScrollView, StyleSheet, View} from 'react-native' -import {useSafeAreaInsets} from 'react-native-safe-area-context' +import { + useSafeAreaFrame, + useSafeAreaInsets, +} from 'react-native-safe-area-context' import {BlurView} from 'expo-blur' import {useLingui} from '@lingui/react/macro' @@ -17,10 +20,16 @@ export function Footer({altText, isAltExpanded, onToggleAltExpanded}: Props) { const {t: l} = useLingui() const t = useTheme() const insets = useSafeAreaInsets() + const {height: screenHeight} = useSafeAreaFrame() const isMomentumScrolling = useRef(false) if (!altText) return null + // Cap the overlay height so long alt text - or text enlarged by the OS via + // Dynamic Type / font scaling - scrolls within the overlay instead of growing + // past the top of the screen. Leaves the upper half clear for the header. + const maxHeight = screenHeight / 2 + return ( { isMomentumScrolling.current = true diff --git a/src/components/Lightbox/chrome/ImageMenu.tsx b/src/components/Lightbox/chrome/ImageMenu.tsx index 8daa9a5b84..92b5c47749 100644 --- a/src/components/Lightbox/chrome/ImageMenu.tsx +++ b/src/components/Lightbox/chrome/ImageMenu.tsx @@ -10,7 +10,7 @@ import Animated, { } from 'react-native-reanimated' import {useLingui} from '@lingui/react/macro' -import {android, atoms as a, ios} from '#/alf' +import {atoms as a} from '#/alf' import {ArrowShareRight_Stroke2_Corner2_Rounded as ShareIcon} from '#/components/icons/ArrowShareRight' import {type Props as IconProps} from '#/components/icons/common' import {DotGrid3x1_Stroke2_Corner0_Rounded as DotsIcon} from '#/components/icons/DotGrid' @@ -25,7 +25,6 @@ type Props = { type Anchor = {x: number; y: number; width: number; height: number} -const MENU_WIDTH = 160 const GAP = 6 const CARD_BG = '#000000' const CARD_BORDER = '#232e3e' @@ -124,9 +123,8 @@ function MenuCard({ - {Array.from({length: count}).map((_, i) => { - const isActive = i === activeIndex - return ( - - ) - })} + + + {Array.from({length: count}).map((_, i) => { + const isActive = i === activeIndex + return ( + + ) + })} + ) } const styles = StyleSheet.create({ - row: { + root: { + borderRadius: 999, + overflow: 'hidden', + }, + inner: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', gap: GAP, + paddingHorizontal: 10, + paddingVertical: 6, + backgroundColor: 'rgba(0, 0, 0, 0.5)', }, activeDot: { width: ACTIVE, diff --git a/src/components/Lightbox/chrome/PagerDots.web.tsx b/src/components/Lightbox/chrome/PagerDots.web.tsx new file mode 100644 index 0000000000..370917254f --- /dev/null +++ b/src/components/Lightbox/chrome/PagerDots.web.tsx @@ -0,0 +1,62 @@ +import {StyleSheet, View} from 'react-native' + +type Props = { + count: number + activeIndex: number +} + +const ACTIVE = 6 +const INACTIVE = 4 +const GAP = 5 + +export function PagerDots({count, activeIndex}: Props) { + if (count <= 1) return null + return ( + + {Array.from({length: count}).map((_, i) => { + const isActive = i === activeIndex + return ( + + ) + })} + + ) +} + +const styles = StyleSheet.create({ + root: { + flexDirection: 'row', + alignItems: 'center', + justifyContent: 'center', + gap: GAP, + paddingHorizontal: 10, + paddingVertical: 6, + borderRadius: 999, + backgroundColor: 'rgba(0, 0, 0, 0.75)', + // @ts-expect-error web-only + backdropFilter: 'blur(8px)', + WebkitBackdropFilter: 'blur(8px)', + }, + activeDot: { + width: ACTIVE, + height: ACTIVE, + borderRadius: ACTIVE / 2, + }, + inactiveDot: { + width: INACTIVE, + height: INACTIVE, + borderRadius: INACTIVE / 2, + }, + active: { + backgroundColor: '#fff', + }, + inactive: { + backgroundColor: 'rgba(255, 255, 255, 0.4)', + }, +}) diff --git a/src/components/Lightbox/pager/ImagePager.tsx b/src/components/Lightbox/pager/ImagePager.tsx index 7b8815f276..c960490e91 100644 --- a/src/components/Lightbox/pager/ImagePager.tsx +++ b/src/components/Lightbox/pager/ImagePager.tsx @@ -39,6 +39,7 @@ import {type Dimensions} from '#/lib/media/types' import {useTheme} from '#/alf' import {setSystemUITheme} from '#/alf/util/systemUI' import {type Lightbox} from '#/components/Lightbox/state' +import {useAnalytics} from '#/analytics' import {IS_IOS} from '#/env' import {PlatformInfo} from '../../../../modules/expo-bluesky-swiss-army' import {Footer} from '../chrome/Footer' @@ -90,6 +91,9 @@ export default function ImageViewRoot({ 'use no memo' const ref = useAnimatedRef() const [activeLightbox, setActiveLightbox] = useState(nextLightbox) + // Lives here rather than in ImageView so it survives the remount + // when the orientation-based key below changes on rotation. + const [imageIndex, setImageIndex] = useState(nextLightbox?.index ?? 0) const [orientation, setOrientation] = useState<'portrait' | 'landscape'>( 'portrait', ) @@ -100,6 +104,7 @@ export default function ImageViewRoot({ if (!activeLightbox && nextLightbox) { setActiveLightbox(nextLightbox) + setImageIndex(nextLightbox.index) } useEffect(() => { @@ -192,6 +197,8 @@ export default function ImageViewRoot({ > orientation: 'portrait' | 'landscape' onRequestClose: () => void onPressSave: (uri: string) => void @@ -228,11 +239,14 @@ function ImageView({ openProgress: SharedValue thumbRects: SharedValue> }) { - const {images, index: initialImageIndex} = lightbox + const {images, metricsContext} = lightbox + // Capture at mount: after a rotation remount this is the preserved + // current index, so the pager re-opens on the same image. + const [initialImageIndex] = useState(imageIndex) + const ax = useAnalytics() const isAnimated = useMemo(() => canAnimate(lightbox), [lightbox]) const [isScaled, setIsScaled] = useState(false) const [isDragging, setIsDragging] = useState(false) - const [imageIndex, setImageIndex] = useState(initialImageIndex) const [showControls, setShowControls] = useState(true) const [isAltExpanded, setIsAltExpanded] = useState(false) const dismissSwipeTranslateY = useSharedValue(0) @@ -377,7 +391,21 @@ function ImageView({ scrollEnabled={!isScaled} initialPage={initialImageIndex} onPageSelected={e => { - setImageIndex(e.nativeEvent.position) + const next = e.nativeEvent.position + setImageIndex(prev => { + if (metricsContext && prev !== next) { + ax.metric('post:photoEmbed:lightboxSwipe', { + layout: metricsContext.layout, + fromImage: prev + 1, + toImage: next + 1, + totalImages: images.length, + postUri: metricsContext.postUri, + postAuthorDid: metricsContext.postAuthorDid, + feedDescriptor: metricsContext.feedDescriptor, + }) + } + return next + }) setIsScaled(false) }} onPageScrollStateChanged={e => { diff --git a/src/components/Lightbox/state.tsx b/src/components/Lightbox/state.tsx index 23af527734..6a8fdbe0b7 100644 --- a/src/components/Lightbox/state.tsx +++ b/src/components/Lightbox/state.tsx @@ -11,10 +11,20 @@ import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {useHotkeysContext} from '#/lib/hotkeys' import {type ImageSource} from '#/components/Lightbox/types' +export type LightboxMetricsContext = { + layout: 'single' | 'grid' | 'carousel' + postUri: string + postAuthorDid: string + feedDescriptor?: string +} + export type Lightbox = { id: string images: ImageSource[] index: number + // Set for post photo embeds so the lightbox can emit post:photoEmbed:lightboxSwipe. + // Left unset for non-post contexts (e.g. profile avatar/banner lightbox). + metricsContext?: LightboxMetricsContext } const LightboxContext = createContext<{ diff --git a/src/components/Link.tsx b/src/components/Link.tsx index 8795c8e899..258ba58ca4 100644 --- a/src/components/Link.tsx +++ b/src/components/Link.tsx @@ -6,6 +6,7 @@ import { type TargetedEvent, } from 'react-native' import {sanitizeUrl} from '@braintree/sanitize-url' +import {useLingui} from '@lingui/react/macro' import { type LinkProps as RNLinkProps, StackActions, @@ -26,11 +27,14 @@ import { linkRequiresWarning, } from '#/lib/strings/url-helpers' import {useModalControls} from '#/state/modals' +import {useInAppBrowser} from '#/state/preferences/in-app-browser' import {atoms as a, flatten, type TextStyleProp, useTheme, web} from '#/alf' import {Button, type ButtonProps} from '#/components/Button' import {useInteractionState} from '#/components/hooks/useInteractionState' +import {ArrowShareRight_Stroke2_Corner2_Rounded as ShareIcon} from '#/components/icons/ArrowShareRight' +import * as PeekMenu from '#/components/PeekMenu' import {Text, type TextProps} from '#/components/Typography' -import {IS_NATIVE, IS_WEB} from '#/env' +import {IS_IOS, IS_NATIVE, IS_WEB} from '#/env' import {router} from '#/routes' import {useGlobalDialogsControlContext} from './dialogs/Context' @@ -86,6 +90,13 @@ type BaseLinkProps = { */ shouldProxy?: boolean + /** + * iOS only. Wraps the link in a peek menu: long-pressing previews the live + * page in an in-app browser (morphing into it on tap when the in-app browser + * preference is on), with a share action in the menu. No-op elsewhere. + */ + peek?: boolean + /** * Web only */ @@ -275,11 +286,19 @@ export function useLink({ [outerOnLongPress, handleLongPress, shareOnLongPress], ) + // Opens the link through the normal external flow (consent dialog, in-app + // browser, or system browser per preference). Used by the peek menu when the + // in-app browser is off, so committing the peek behaves like a plain tap. + const openExternally = useCallback(() => { + void openLink(href, overridePresentation, shouldProxy) + }, [openLink, href, overridePresentation, shouldProxy]) + return { isExternal, href, onPress, onLongPress, + openExternally, } } @@ -305,9 +324,10 @@ export function Link({ download, shouldProxy, overridePresentation, + peek, ...rest }: LinkProps) { - const {href, isExternal, onPress, onLongPress} = useLink({ + const {href, isExternal, onPress, onLongPress, openExternally} = useLink({ to, displayText: typeof children === 'string' ? children : '', action, @@ -317,7 +337,10 @@ export function Link({ overridePresentation, }) - return ( + // Peek is iOS-only and only makes sense for external web links. + const peekEnabled = Boolean(peek && IS_IOS && isExternal) + + const button = ( + )} + + ) +} diff --git a/src/components/Post/Embed/ImageEmbed.tsx b/src/components/Post/Embed/ImageEmbed.tsx index 2c6bb6c5de..9d47302063 100644 --- a/src/components/Post/Embed/ImageEmbed.tsx +++ b/src/components/Post/Embed/ImageEmbed.tsx @@ -2,12 +2,16 @@ import {useRef} from 'react' import {InteractionManager, View} from 'react-native' import {type AnimatedRef} from 'react-native-reanimated' import {Image} from 'expo-image' +import {AppBskyEmbedGallery, type AppBskyEmbedImages} from '@atproto/api' import {atoms as a, tokens} from '#/alf' import {AutoSizedImage} from '#/components/images/AutoSizedImage' import {Gallery} from '#/components/images/Gallery' import {ImageLayoutGrid} from '#/components/images/ImageLayoutGrid' -import {useLightboxControls} from '#/components/Lightbox/state' +import { + type LightboxMetricsContext, + useLightboxControls, +} from '#/components/Lightbox/state' import {type Dimensions} from '#/components/Lightbox/types' import {ImageContextMenu} from '#/components/Post/Embed/ImageContextMenu' import {PostEmbedViewContext} from '#/components/Post/Embed/types' @@ -15,16 +19,43 @@ import {useAnalytics} from '#/analytics' import {type EmbedType} from '#/types/bsky/post' import {type CommonProps} from './types' +const MAX_GRID_IMAGES = 4 + export function ImageEmbed({ embed, ...rest }: CommonProps & { - embed: EmbedType<'images'> + embed: EmbedType<'images'> | EmbedType<'gallery'> }) { const ax = useAnalytics() const {openLightbox} = useLightboxControls() - const {images} = embed.view - const galleryEnabled = ax.features.enabled(ax.features.PostGalleryEmbedEnable) + const images: AppBskyEmbedImages.ViewImage[] = + embed.type === 'gallery' + ? embed.view.items.filter(AppBskyEmbedGallery.isViewImage).map(item => ({ + thumb: item.thumbnail, + fullsize: item.fullsize, + alt: item.alt, + aspectRatio: item.aspectRatio, + })) + : embed.view.images + const useExpandedLayout = + embed.type === 'gallery' + ? images.length > MAX_GRID_IMAGES + : ax.features.enabled(ax.features.PostGalleryEmbedEnable) + + const layout: 'single' | 'grid' | 'carousel' = + images.length === 1 ? 'single' : useExpandedLayout ? 'carousel' : 'grid' + + const postContext = rest.post + ? { + postUri: rest.post.uri, + postAuthorDid: rest.post.author.did, + feedDescriptor: rest.feedDescriptor, + } + : undefined + const metricsContext: LightboxMetricsContext | undefined = postContext + ? {layout, ...postContext} + : undefined // 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. @@ -43,6 +74,14 @@ export function ImageEmbed({ refs: AnimatedRef[], fetchedDims: (Dimensions | null)[], ) => { + if (postContext) { + ax.metric('post:photoEmbed:open', { + layout, + fromImage: index + 1, + totalImages: images.length, + ...postContext, + }) + } openLightbox({ images: items.map((item, i) => ({ ...item, @@ -53,6 +92,7 @@ export function ImageEmbed({ type: 'image', })), index, + metricsContext, }) } const onPressIn = (_: number) => { @@ -109,7 +149,7 @@ export function ImageEmbed({ ) } - if (galleryEnabled) { + if (useExpandedLayout) { return ( ) @@ -130,6 +171,7 @@ export function ImageEmbed({ onPress={onPress} onPressIn={onPressIn} viewContext={rest.viewContext} + isWithinQuote={rest.isWithinQuote} /> ) diff --git a/src/components/Post/Embed/JoinRequestEmbed.tsx b/src/components/Post/Embed/JoinRequestEmbed.tsx new file mode 100644 index 0000000000..ad91747826 --- /dev/null +++ b/src/components/Post/Embed/JoinRequestEmbed.tsx @@ -0,0 +1,83 @@ +import {type StyleProp, View, type ViewStyle} from 'react-native' + +import { + type ChatInvitePreview, + isKnownJoinLinkPreview, +} from '#/state/queries/join-links' +import {atoms as a, useTheme} from '#/alf' +import * as ChatInvite from '#/components/dms/ChatInvite' + +const JOIN_REQUEST_EMBED_HEIGHT = 140 + +/** + * The "join request" presentation of a chat invite, used as a post embed (in + * feeds and the post composer). Composes the headless `ChatInvite` primitive: + * pass either a `code` to fetch by, or an already-resolved `preview` as the + * initial data to avoid a loading flash. + */ +export function JoinRequestEmbed({ + code, + preview, + style, + onOpen, +}: { + code?: string + preview?: ChatInvitePreview + style?: StyleProp + onOpen?: () => void +}) { + const resolvedCode = + code ?? (isKnownJoinLinkPreview(preview) ? preview.code : undefined) + if (!resolvedCode) return null + + return ( + + + + ) +} + +/** + * The context-consuming presentation (loading / no-longer-available / card + + * join button). Exported so surfaces that own their own `ChatInvite.Root` (e.g. + * to add an error fallback) can render it without nesting another Root. + */ +export function JoinRequestEmbedBody({ + style, + onOpen, +}: { + style?: StyleProp + onOpen?: () => void +}) { + const t = useTheme() + const {status} = ChatInvite.useChatInvite() + + const box = [ + a.border, + a.rounded_lg, + t.atoms.border_contrast_low, + {height: JOIN_REQUEST_EMBED_HEIGHT}, + ] + + if (status === 'loading') { + return + } + + if (status !== 'available') { + return ( + + ) + } + + return ( + + + + + ) +} diff --git a/src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx b/src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx index 8c1187216c..837f1b4a05 100644 --- a/src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx +++ b/src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx @@ -1,13 +1,10 @@ import {Fragment, type ReactNode} from 'react' import {View} from 'react-native' import {AtUri} from '@atproto/api' -import {Trans, useLingui} from '@lingui/react/macro' +import {Trans} from '@lingui/react/macro' -import {makeProfileLink} from '#/lib/routes/links' import {toNiceDomain} from '#/lib/strings/url-helpers' import {atoms as a, useTheme} from '#/alf' -import {StandardSite} from '#/components/icons/community/StandardSite' -import {InlineLinkText} from '#/components/Link' import { matchStandardSitePublisher, matchStandardSitePublisherByUri, @@ -18,19 +15,15 @@ import { isStandardSitePublicationUri, } from '#/components/Post/Embed/StandardSiteEmbed/utils' import {Text} from '#/components/Typography' -import {useAnalytics} from '#/analytics' export function StandardSiteMetaRow({ type = 'document', - preview, view, }: ssTypes.CommonProps & ssTypes.PreviewProps & { type?: 'document' | 'publication' }) { - const ax = useAnalytics() const t = useTheme() - const {t: l} = useLingui() const highlightedPublisher = !!matchStandardSitePublisher(view) const didsFromRecords = view.associatedRefs @@ -47,7 +40,11 @@ export function StandardSiteMetaRow({ : undefined const articleDomain = toNiceDomain(view.uri) const articlePublisher = matchStandardSitePublisherByUri(view.uri) - const DomainIcon = articlePublisher?.Icon || StandardSite + const domainHandleMatch = + authorProfile?.handle && + (articleDomain === authorProfile.handle || + articleDomain.endsWith(`.${authorProfile.handle}`)) + const DomainIcon = articlePublisher?.Icon const metaTextStyle = [ a.text_xs, a.leading_tight, @@ -56,7 +53,7 @@ export function StandardSiteMetaRow({ const items: {key: string; node: ReactNode}[] = [] - if (!highlightedPublisher) { + if (!highlightedPublisher && !domainHandleMatch) { items.push({ key: 'domain', node: ( @@ -77,25 +74,7 @@ export function StandardSiteMetaRow({ key: 'author', node: ( - - by{' '} - { - e.stopPropagation() - e.preventDefault() - ax.metric('embed:standardSite:authorHandle:press', { - handle: authorProfile.handle, - }) - }}> - @{authorProfile.handle} - - + by @{authorProfile.handle} ), }) diff --git a/src/components/Post/Embed/StandardSiteEmbed/index.tsx b/src/components/Post/Embed/StandardSiteEmbed/index.tsx index 5f7fc1f5e7..64e93e4c68 100644 --- a/src/components/Post/Embed/StandardSiteEmbed/index.tsx +++ b/src/components/Post/Embed/StandardSiteEmbed/index.tsx @@ -5,7 +5,6 @@ import {plural} from '@lingui/core/macro' import {useLingui} from '@lingui/react/macro' import {useHaptics} from '#/lib/haptics' -import {useCallOnce} from '#/lib/once' import {shareUrl} from '#/lib/sharing' import {niceDate} from '#/lib/strings/time' import {toNiceDomain} from '#/lib/strings/url-helpers' @@ -16,6 +15,7 @@ import {Divider} from '#/components/Divider' import {useInteractionState} from '#/components/hooks/useInteractionState' import {ArrowTopRight_Stroke2_Corner0_Rounded as ArrowTopRightIcon} from '#/components/icons/Arrow' import {Clock_Stroke2_Corner0_Rounded as Clock} from '#/components/icons/Clock' +import {StandardSite} from '#/components/icons/community/StandardSite' import {Link} from '#/components/Link' import {MediaInsetBorder} from '#/components/MediaInsetBorder' import {matchStandardSitePublisher} from '#/components/Post/Embed/StandardSiteEmbed/publishers' @@ -80,13 +80,15 @@ export const StandardSiteEmbed = ({ onEmbedInteractionCallback?.() ax.metric('embed:standardSite:article:press', {url: view.uri}) } - const onLongPress = () => { - if (view.uri && IS_NATIVE) { - playHaptic('Heavy') - shareUrl(view.uri) - ax.metric('embed:standardSite:article:longPress', {url: view.uri}) - } - } + const onLongPress = IS_NATIVE + ? () => { + if (view.uri) { + playHaptic('Heavy') + void shareUrl(view.uri) + ax.metric('embed:standardSite:article:longPress', {url: view.uri}) + } + } + : undefined const onPressPublication = () => { playHaptic('Light') onEmbedInteractionCallback?.() @@ -94,21 +96,17 @@ export const StandardSiteEmbed = ({ url: view.source?.uri || '', }) } - const onLongPressPublication = () => { - if (view.source?.uri && IS_NATIVE) { - playHaptic('Heavy') - shareUrl(view.source.uri) - ax.metric('embed:standardSite:publication:longPress', { - url: view.source.uri, - }) - } - } - - useCallOnce(() => { - if (!preview) { - ax.metric('embed:standardSite:view', {url: view.uri}) - } - })() + const onLongPressPublication = IS_NATIVE + ? () => { + if (view.source?.uri) { + playHaptic('Heavy') + void shareUrl(view.source.uri) + ax.metric('embed:standardSite:publication:longPress', { + url: view.source.uri, + }) + } + } + : undefined if (isStandardPublication) { return ( @@ -129,7 +127,6 @@ export const StandardSiteEmbed = ({ style={[ a.flex_col, a.rounded_lg, - a.overflow_hidden, a.w_full, a.border, t.atoms.bg, @@ -137,126 +134,149 @@ export const StandardSiteEmbed = ({ preview && a.pointer_events_none, style, ]}> + {/* + * The article is an in-flow `Link` wrapping the content so the iOS peek + * menu has something to lift. The publication footer below lives outside + * it - it has its own link (to the publication) and Subscribe button, so + * it can't be nested inside the article's peek. + */} - <> - - - - {imageUri ? ( - - ) : undefined} - - + {() => ( - - {view.title} - - {view.description ? ( - - {view.description} - + {imageUri ? ( + ) : undefined} - {isStandard && (view.createdAt || view.readingTime) && ( + - {view.createdAt && ( + style={[ + a.pb_xs, + a.px_md, + {gap: 3}, + isStandard && [{gap: 5}, a.pb_sm], + ]}> + + {view.title} + + {view.description ? ( - {niceDate(i18n, view.createdAt, 'long', 'none')} + emoji + numberOfLines={view.thumb ? 2 : 4} + style={[a.text_sm, a.leading_snug]}> + {view.description} - )} - {view.readingTime && ( - - - - {l({ - message: plural(view.readingTime, { - one: '#m', - other: '#m', - }), - comment: `How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.`, - })} - + ) : undefined} + + {isStandard && (view.createdAt || view.readingTime) && ( + + {view.createdAt && ( + + {niceDate(i18n, view.createdAt, 'long', 'none')} + + )} + {view.readingTime && ( + + + + {l({ + message: plural(view.readingTime, { + one: '#m', + other: '#m', + }), + comment: `How long it takes to read an article, in minutes. Displayed in a short form, e.g. "5m" for 5 minutes.`, + })} + + + )} )} + + + {!view.source && ( + + + + + + )} - - - {!view.source && ( - - - - - - )} - + {view.source && ( - + {view.description && ( - + {view.description} @@ -426,6 +447,26 @@ export function SubscribeButton({ ? l`Subscribe on ${highlightedPublisher.name}` : l`View publication` + /* + * The custom site theme paints the button background with `accent` and the + * text with `accentForeground`. Only honor it when that pairing clears WCAG + * AAA (4.5:1) for large text, which the button's bold label qualifies as. + * Otherwise we fall through to the default `secondary_inverted` styling, + * which is guaranteed to be legible. + */ + const {accentRGB, accentForegroundRGB} = view.source?.theme || {} + let useCustomTheme = false + if (accentRGB && accentForegroundRGB) { + const accent = utils.rgbToHex(accentRGB.r, accentRGB.g, accentRGB.b) + const accentForeground = utils.rgbToHex( + accentForegroundRGB.r, + accentForegroundRGB.g, + accentForegroundRGB.b, + ) + const ratio = utils.contrastRatio(accent, accentForeground) + useCustomTheme = ratio !== null && ratio >= 4.5 + } + if (!view.source) return null const publicationTitle = view.source.title @@ -451,52 +492,60 @@ export function SubscribeButton({ } } - const onLongPress = () => { - if (view.source?.uri && IS_NATIVE) { - playHaptic('Heavy') - shareUrl(view.source.uri) - if (highlightedPublisher) { - ax.metric('embed:standardSite:subscribe:longPress', { - url: view.source?.uri || '', - }) - } else { - ax.metric('embed:standardSite:publicationCta:longPress', { - url: view.source?.uri || '', - }) + const onLongPress = IS_NATIVE + ? () => { + if (view.source?.uri) { + playHaptic('Heavy') + void shareUrl(view.source.uri) + if (highlightedPublisher) { + ax.metric('embed:standardSite:subscribe:longPress', { + url: view.source?.uri || '', + }) + } else { + ax.metric('embed:standardSite:publicationCta:longPress', { + url: view.source?.uri || '', + }) + } + } } - } + : undefined + + const button = ( + + {highlightedPublisher ? ( + <> + + + + {cta} + + ) : ( + <> + {cta} + + + )} + + ) + + if (!useCustomTheme) { + return button } return ( - - - {highlightedPublisher ? ( - <> - - - - {cta} - - ) : ( - <> - {cta} - - - )} - - + {button} ) } @@ -509,8 +558,9 @@ function PublicationIcon({ interacted?: boolean themeColors: ssTypes.ThemeColors }) { + const t = useTheme() if (!view.source) return null - return view.source?.icon ? ( + const icon = view.source?.icon ? ( ) + return ( + + + + + + {icon} + + ) } export function PublicationFooter({ @@ -578,6 +651,14 @@ export function PublicationFooter({ a.justify_between, a.p_md, a.gap_md, + a.overflow_hidden, + // Rounds the bottom corners to match the container border, since the + // container itself can't clip (overflow_hidden there breaks the peek + // lift animation on the article above). + { + borderBottomLeftRadius: a.rounded_lg.borderRadius, + borderBottomRightRadius: a.rounded_lg.borderRadius, + }, gtPhone && [a.flex_row, a.gap_sm], interactedOuter && t.atoms.bg_contrast_25, preview && a.pointer_events_none, @@ -617,6 +698,7 @@ export function PublicationFooter({ /> { + setActive: useCallback(() => { setActiveView(id) - }, + }, [setActiveView, id]), currentActiveView: activeViewId, - sendPosition: (y: number) => sendViewPosition(id, y), + sendPosition: useCallback( + (y: number) => { + sendViewPosition(id, y) + }, + [sendViewPosition, id], + ), } } diff --git a/src/components/Post/Embed/index.tsx b/src/components/Post/Embed/index.tsx index 054558ad83..69d92983ed 100644 --- a/src/components/Post/Embed/index.tsx +++ b/src/components/Post/Embed/index.tsx @@ -12,6 +12,7 @@ import {Trans} from '@lingui/react/macro' import {useQueryClient} from '@tanstack/react-query' import {makeProfileLink} from '#/lib/routes/links' +import {getChatInviteCodeFromUrl} from '#/lib/strings/url-helpers' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {unstableCacheProfileView} from '#/state/queries/profile' import {useSession} from '#/state/session' @@ -33,6 +34,7 @@ import { type EmbedType, parseEmbed, } from '#/types/bsky/post' +import {ChatInviteEmbed} from './ChatInviteEmbed' import {ExternalEmbed} from './ExternalEmbed' import {ModeratedFeedEmbed} from './FeedEmbed' import {ImageEmbed} from './ImageEmbed' @@ -52,6 +54,7 @@ export function Embed({embed: rawEmbed, ...rest}: EmbedProps) { switch (embed.type) { case 'images': + case 'gallery': case 'link': case 'video': { return @@ -87,7 +90,8 @@ function MediaEmbed({ embed: TEmbed }) { switch (embed.type) { - case 'images': { + case 'images': + case 'gallery': { return ( ) } + const chatInviteCode = getChatInviteCodeFromUrl(embed.view.external.uri) + if (chatInviteCode) { + return ( + + + + ) + } return ( )} diff --git a/src/components/Post/Embed/types.ts b/src/components/Post/Embed/types.ts index 6c023a14ef..77319b0e86 100644 --- a/src/components/Post/Embed/types.ts +++ b/src/components/Post/Embed/types.ts @@ -15,6 +15,13 @@ export type CommonProps = { viewContext?: PostEmbedViewContext isWithinQuote?: boolean allowNestedQuotes?: boolean + /** + * The post that contains this embed. Used for analytics on photo embed + * events (post:photoEmbed:*). When the embed has no owning post (e.g. + * composer previews), leave this undefined and no events will be emitted. + */ + post?: AppBskyFeedDefs.PostView + feedDescriptor?: string } export type EmbedProps = CommonProps & { diff --git a/src/components/PostControls/PostMenu/PostMenuItems.tsx b/src/components/PostControls/PostMenu/PostMenuItems.tsx index 257c1dcb41..7ed925405a 100644 --- a/src/components/PostControls/PostMenu/PostMenuItems.tsx +++ b/src/components/PostControls/PostMenu/PostMenuItems.tsx @@ -88,6 +88,7 @@ import {Trash_Stroke2_Corner0_Rounded as Trash} from '#/components/icons/Trash' import {Warning_Stroke2_Corner0_Rounded as Warning} from '#/components/icons/Warning' import {Loader} from '#/components/Loader' import * as Menu from '#/components/Menu' +import {BlockDialog} from '#/components/moderation/BlockDialog' import { ReportDialog, useReportDialogControl, @@ -550,9 +551,17 @@ let PostMenuItems = ({ ) : ( - {l`Translate`} + + {forceGoogleTranslate + ? l`Open in Google Translate` + : l`Translate`} + )} @@ -845,13 +854,10 @@ let PostMenuItems = ({ onConfirm={() => void onToggleReplyVisibility()} confirmButtonCta={l`Yes, hide`} /> - void onBlockAuthor()} - confirmButtonCta={l`Block`} - confirmButtonColor="negative" + profile={postAuthor} + onBlock={onBlockAuthor} /> ) diff --git a/src/components/PostControls/ShareMenu/RecentChats.tsx b/src/components/PostControls/ShareMenu/RecentChats.tsx index 6107fa5755..bab3cbfded 100644 --- a/src/components/PostControls/ShareMenu/RecentChats.tsx +++ b/src/components/PostControls/ShareMenu/RecentChats.tsx @@ -152,11 +152,7 @@ function RecentChatItem({ a.align_center, ]}> {convo.kind === 'group' ? ( - + ) : ( { ref.current?.capture?.().then(async (uri: string) => { if (IS_NATIVE) { - const res = await requestMediaLibraryPermissionsAsync() + // Write-only permission - saving the QR image does not require read + // access to the user's photo library. + const res = await requestPermissionsAsync(true) if (!res.granted) { Toast.show( @@ -73,7 +74,9 @@ export function QrCodeDialog({ // Incase of a FS failure, don't crash the app try { - await createAssetAsync(`file://${uri}`) + // saveToLibraryAsync writes without reading the asset back, so it + // works with the add-only permission on iOS (APP-2374) + await saveToLibraryAsync(`file://${uri}`) } catch (e: unknown) { Toast.show(_(msg`An error occurred while saving the QR code!`), { type: 'error', diff --git a/src/components/Typography.tsx b/src/components/Typography.tsx index a65889f67e..b105ffbb8c 100644 --- a/src/components/Typography.tsx +++ b/src/components/Typography.tsx @@ -23,6 +23,7 @@ export function Text({ title, dataSet, numberOfLines, + allowFontScaling = true, ...rest }: TextProps) { const {fonts, flags} = useAlf() @@ -36,7 +37,7 @@ export function Text({ style, ], { - fontScale: fonts.scaleMultiplier, + fontScale: allowFontScaling ? fonts.scaleMultiplier : 1, fontFamily: fonts.family, flags, }, @@ -57,6 +58,7 @@ export function Text({ numberOfLines, style: s, dataSet: Object.assign({tooltip: title}, dataSet || {}), + allowFontScaling, ...rest, } diff --git a/src/components/dialogs/SearchablePeopleList.tsx b/src/components/dialogs/SearchablePeopleList.tsx index 614234c17f..cf106684a4 100644 --- a/src/components/dialogs/SearchablePeopleList.tsx +++ b/src/components/dialogs/SearchablePeopleList.tsx @@ -514,11 +514,7 @@ function ExistingChatCard({ ]}> {convo.kind === 'group' ? ( - + ) : ( @@ -667,7 +663,6 @@ function SearchInput({ /> { + return ( + !IS_E2E && + isExistingUserAsOf( + '2026-06-11T00:00:00.000Z', + props.currentProfile.createdAt, + ) + ) +}) + +function getHero(theme: ThemeName) { + switch (theme) { + case 'light': + return require('../../../../assets/images/groupchats_announcement_light.webp') + case 'dark': + return require('../../../../assets/images/groupchats_announcement_dark.webp') + case 'dim': + return require('../../../../assets/images/groupchats_announcement_dim.webp') + } +} + +export function GroupChatsAnnouncement() { + const t = useTheme() + const {t: l} = useLingui() + const navigation = useNavigation() + const nuxDialogs = useNuxDialogContext() + const control = Dialog.useDialogControl() + const {bottom} = useSafeAreaInsets() + + // Measure the footer so the scrollable content can pad itself out from + // underneath it (the footer is absolutely positioned). + const [footerHeight, setFooterHeight] = useState( + platform({ + native: 124 + bottom, + web: 128, + default: 0, + }), + ) + + Dialog.useAutoOpen(control) + + const onClose = useCallback(() => { + nuxDialogs.dismissActiveNux() + }, [nuxDialogs]) + + const onPressStartGroupChat = useCallback(() => { + control.close(() => { + if (IS_WEB) { + navigation.navigate('Messages', {pushToNewGroupChat: true}) + } else { + // On native, Messages is nested inside MessagesTab. + // @ts-expect-error nested navigators aren't typed -sfn + navigation.navigate('MessagesTab', { + screen: 'Messages', + params: {pushToNewGroupChat: true}, + }) + } + }) + }, [control, navigation]) + + return ( + + + setFooterHeight(evt.nativeEvent.layout.height)} + border={false}> + + + + + + }> + + {l({ + + + + + + + New + + + + Group Chats + + + Take the conversation private. + + + + + Add people with a link} + descriptionText={ + Post it to Bluesky or share anywhere. + } + /> + Up to 50 people} + descriptionText={ + Bring up to 50 friends together in one chat. + } + /> + You’re in control} + descriptionText={ + + Mute, leave, or remove people anytime. It’s your chat. + + } + /> + + + + + ) +} + +function Feature({ + icon: Icon, + titleText, + descriptionText, + style, +}: { + icon: React.ComponentType + titleText: React.ReactNode + descriptionText: React.ReactNode +} & TextStyleProp) { + const t = useTheme() + return ( + + + + {titleText} + + {descriptionText} + + + + ) +} diff --git a/src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx b/src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx new file mode 100644 index 0000000000..48e4c05965 --- /dev/null +++ b/src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx @@ -0,0 +1,193 @@ +import {useCallback} from 'react' +import {View} from 'react-native' +import {Image} from 'expo-image' +import {Trans, useLingui} from '@lingui/react/macro' + +import {useCallOnce} from '#/lib/once' +import {Nux} from '#/state/queries/nuxs' +import {atoms as a, useTheme, web} from '#/alf' +import {themes} from '#/alf/themes' +import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {useNuxDialogContext} from '#/components/dialogs/nuxs' +import {Sparkle_Stroke2_Corner0_Rounded as SparkleIcon} from '#/components/icons/Sparkle' +import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' +import {IS_E2E, IS_NATIVE, IS_WEB} from '#/env' +import {InviteFriendsDialog} from '#/features/inviteFriends' +import {createIsEnabledCheck} from './utils' + +export const enabled = createIsEnabledCheck(() => { + // Native-only feature (matches the rest of the invite-friends scope). + // Skipped in E2E to keep tests deterministic. + return !IS_E2E && IS_NATIVE +}) + +export function InviteFriendsAnnouncement() { + const {activeNux} = useNuxDialogContext() + /* + * The invite dialog's control lives here (outside the activeNux + * conditional) so the dialog survives the announcement being dismissed + * during the "Try it" handoff - the native bottom sheet cannot hand off to + * a second sheet that unmounts along with the first. + */ + const inviteFriendsControl = Dialog.useDialogControl() + + return ( + <> + {activeNux === Nux.InviteFriendsAnnouncement && ( + + )} + + + ) +} + +function Announcement({ + inviteFriendsControl, +}: { + inviteFriendsControl: Dialog.DialogControlProps +}) { + const t = useTheme() + const {t: l} = useLingui() + const ax = useAnalytics() + const nuxDialogs = useNuxDialogContext() + const control = Dialog.useDialogControl() + + Dialog.useAutoOpen(control) + + useCallOnce(() => { + ax.metric('invite:nux:presented', {}) + })() + + const onClose = useCallback(() => { + nuxDialogs.dismissActiveNux() + }, [nuxDialogs]) + + const onPressTryIt = useCallback(() => { + ax.metric('invite:nux:tryItPressed', {}) + // Close this announcement (which dismisses the NUX and unmounts this + // component), then open the invite dialog. Its control lives in the + // parent, which stays mounted, so the dialog survives the dismissal. + // Defer the open to the next frame so the announcement's teardown + // completes first. + control.close(() => { + requestAnimationFrame(() => { + ax.metric('invite:dialog:open', {logContext: 'NuxAnnouncement'}) + inviteFriendsControl.open() + }) + }) + }, [ax, control, inviteFriendsControl]) + + return ( + <> + + + + + + {/* The image is the full header background; the tag sits on top of it. */} + {l`An + + {/* Pinned to the light palette: the header illustration has a + fixed light background, so the tag must stay dark in any + theme to remain legible. */} + + + + New Feature + + + + + + + + Invite your friends + + + + 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. + + + + + {!IS_WEB && ( + + + + + )} + + + + + + + ) +} diff --git a/src/components/dialogs/nuxs/index.tsx b/src/components/dialogs/nuxs/index.tsx index 2d2e2c6a6a..2fa8780d95 100644 --- a/src/components/dialogs/nuxs/index.tsx +++ b/src/components/dialogs/nuxs/index.tsx @@ -19,9 +19,13 @@ import {useProfileQuery} from '#/state/queries/profile' import {type SessionAccount, useSession} from '#/state/session' import {useOnboardingState} from '#/state/shell' import { - DraftsAnnouncement, - enabled as isDraftsAnnouncementEnabled, -} from '#/components/dialogs/nuxs/DraftsAnnouncement' + enabled as isGroupChatsAnnouncementEnabled, + GroupChatsAnnouncement, +} from '#/components/dialogs/nuxs/GroupChatsAnnouncement' +import { + enabled as isInviteFriendsAnnouncementEnabled, + InviteFriendsAnnouncement, +} from '#/components/dialogs/nuxs/InviteFriendsAnnouncement' import {isSnoozed, snooze, unsnooze} from '#/components/dialogs/nuxs/snoozing' import {type EnabledCheckProps} from '#/components/dialogs/nuxs/utils' import {useAnalytics} from '#/analytics' @@ -37,8 +41,12 @@ const queuedNuxs: { enabled?: (props: EnabledCheckProps) => boolean }[] = [ { - id: Nux.DraftsAnnouncement, - enabled: isDraftsAnnouncementEnabled, + id: Nux.GroupChatsAnnouncement, + enabled: isGroupChatsAnnouncementEnabled, + }, + { + id: Nux.InviteFriendsAnnouncement, + enabled: isInviteFriendsAnnouncementEnabled, }, ] @@ -186,7 +194,13 @@ function Inner({ return ( {/*For example, activeNux === Nux.NeueTypography && */} - {activeNux === Nux.DraftsAnnouncement && } + {activeNux === Nux.GroupChatsAnnouncement && } + {/* + Mounted unconditionally: it gates the announcement on `activeNux` + internally, so it can keep the invite-friends dialog mounted across + the announcement's dismissal during the "Try it" handoff. + */} + ) } diff --git a/src/components/dialogs/nuxs/snoozing.ts b/src/components/dialogs/nuxs/snoozing.ts index 91effd0501..94389d312b 100644 --- a/src/components/dialogs/nuxs/snoozing.ts +++ b/src/components/dialogs/nuxs/snoozing.ts @@ -1,6 +1,9 @@ -import {simpleAreDatesEqual} from '#/lib/strings/time' +import {IS_DEV} from '#/env' import {device} from '#/storage' +const PROD_SNOOZE_SECONDS = 3 * 60 * 60 // 3 hours +const SNOOZE_SECONDS = IS_DEV ? 10 : PROD_SNOOZE_SECONDS + export function snooze() { device.set(['lastNuxDialog'], new Date().toISOString()) } @@ -14,9 +17,5 @@ export function isSnoozed() { if (!lastNuxDialog) return false const last = new Date(lastNuxDialog) const now = new Date() - // already snoozed today - if (simpleAreDatesEqual(last, now)) { - return true - } - return false + return now.getTime() - last.getTime() < SNOOZE_SECONDS * 1000 } diff --git a/src/components/dms/ActionsWrapper.tsx b/src/components/dms/ActionsWrapper.tsx index 366b117976..d96dcbdca1 100644 --- a/src/components/dms/ActionsWrapper.tsx +++ b/src/components/dms/ActionsWrapper.tsx @@ -14,7 +14,6 @@ export function ActionsWrapper({ children, }: { message: ChatBskyConvoDefs.MessageView - hasReactions?: boolean isFromSelf: boolean senderProfile?: bsky.profile.AnyProfileView moderationOpts: ModerationOpts | undefined diff --git a/src/components/dms/ActionsWrapper.web.tsx b/src/components/dms/ActionsWrapper.web.tsx index b89712bd1f..75f816c07d 100644 --- a/src/components/dms/ActionsWrapper.web.tsx +++ b/src/components/dms/ActionsWrapper.web.tsx @@ -1,8 +1,10 @@ import {useCallback, useRef, useState} from 'react' import {Pressable, View} from 'react-native' import {type ChatBskyConvoDefs, type ModerationOpts} from '@atproto/api' +import {plural} from '@lingui/core/macro' import {useLingui} from '@lingui/react/macro' +import {EMOJI_REACTION_LIMIT} from '#/lib/constants' import {useMaybeProfileShadow} from '#/state/cache/profile-shadow' import {useConvoActive} from '#/state/messages/convo' import {useSession} from '#/state/session' @@ -17,14 +19,12 @@ import {canReact, hasReachedReactionLimit} from './util' export function ActionsWrapper({ message, - hasReactions, isFromSelf, senderProfile, moderationOpts, children, }: { message: ChatBskyConvoDefs.MessageView - hasReactions?: boolean isFromSelf: boolean senderProfile?: bsky.profile.AnyProfileView moderationOpts: ModerationOpts | undefined @@ -72,7 +72,18 @@ export function ActionsWrapper({ .removeReaction(message.id, emoji) .catch(() => Toast.show(l`Failed to remove emoji reaction`)) } else { - if (hasReachedReactionLimit(message, currentAccount?.did)) return + if (hasReachedReactionLimit(message, currentAccount?.did)) { + Toast.show( + l`You cannot add more than ${plural(EMOJI_REACTION_LIMIT, { + one: '# emoji reaction', + other: '# emoji reactions', + })}`, + { + type: 'info', + }, + ) + return + } convo.addReaction(message.id, emoji).catch(() => Toast.show(l`Failed to add emoji reaction`, { type: 'error', @@ -100,7 +111,6 @@ export function ActionsWrapper({ isFromSelf ? [a.mr_xs, {marginLeft: 'auto'}, a.flex_row_reverse] : [a.ml_xs, {marginRight: 'auto'}], - hasReactions ? [a.mb_2xl] : undefined, ]}> {reactionsAvailable && ( diff --git a/src/components/dms/AddMembersFlow.tsx b/src/components/dms/AddMembersFlow.tsx index 749e6976ed..bb591fb8c6 100644 --- a/src/components/dms/AddMembersFlow.tsx +++ b/src/components/dms/AddMembersFlow.tsx @@ -66,6 +66,7 @@ type Item = LabelItem | ProfileItem | EmptyItem | PlaceholderItem | LoadingItem export type State = { groupChatDids: string[] groupChatProfiles: bsky.profile.AnyProfileView[] + searchText: string } export type Action = @@ -79,6 +80,10 @@ export type Action = groupChatDids: string[] groupChatProfiles: bsky.profile.AnyProfileView[] } + | { + type: 'setSearchText' + searchText: string + } function reducer(state: State, action: Action): State { switch (action.type) { @@ -87,6 +92,7 @@ function reducer(state: State, action: Action): State { ...state, groupChatDids: action.groupChatDids, groupChatProfiles: action.groupChatProfiles, + searchText: '', } } case 'removeDids': { @@ -96,6 +102,12 @@ function reducer(state: State, action: Action): State { groupChatProfiles: action.groupChatProfiles, } } + case 'setSearchText': { + return { + ...state, + searchText: action.searchText, + } + } } } @@ -120,11 +132,19 @@ export function AddMembersFlow({ const [headerHeight, setHeaderHeight] = useState(0) const [footerHeight, setFooterHeight] = useState(0) - const [searchText, setSearchText] = useState('') const listRef = useRef(null) const inputRef = useRef(null) + const [{groupChatDids, groupChatProfiles, searchText}, dispatch] = useReducer( + reducer, + { + groupChatDids: [], + groupChatProfiles: [], + searchText: '', + }, + ) + const { data: autocompleteResults, isError, @@ -141,10 +161,12 @@ export function AddMembersFlow({ [memberListData], ) - const [{groupChatDids, groupChatProfiles}, dispatch] = useReducer(reducer, { - groupChatDids: [], - groupChatProfiles: [], - }) + // The existing members (including the viewer) already occupy slots, so the + // number of people that can still be added is whatever's left. + const remainingSlots = Math.max( + 0, + convo.details.memberLimit - memberListData.length, + ) const onRemoveDid = useCallback( (did: string) => { @@ -199,6 +221,7 @@ export function AddMembersFlow({ if (follows) { for (const page of follows.pages) { for (const profile of page.follows) { + if (!canBeAddedToGroup(profile)) continue _items.push({ type: 'profile', key: profile.did, @@ -206,12 +229,6 @@ export function AddMembersFlow({ }) } } - - _items.sort(item => { - return item.type === 'profile' && canBeAddedToGroup(item.profile) - ? -1 - : 1 - }) } else { for (let i = 0; i < 10; i++) { _items.push({type: 'placeholder', key: i + ''}) @@ -400,7 +417,7 @@ export function AddMembersFlow({ inputRef={inputRef} value={searchText} onChangeText={text => { - setSearchText(text) + dispatch({type: 'setSearchText', searchText: text}) listRef.current?.scrollToOffset({offset: 0, animated: false}) }} onEscape={control.close} @@ -471,6 +488,7 @@ export function AddMembersFlow({ values={groupChatDids} onChange={setGroupChatMembers} type="checkbox" + maxSelections={remainingSlots} label={l`Add group chat members`} style={web([a.contents])}> + + + + {preview.name} + + + + Group chat + + + + {preview.memberCount}/{preview.memberLimit}{' '} + + + + + + + + By{' '} + + {ownerDisplayName} + + + + + + {ownerHandle} + + + + + ) +} diff --git a/src/components/dms/ChatInvite/Context.tsx b/src/components/dms/ChatInvite/Context.tsx new file mode 100644 index 0000000000..bddbea4cb3 --- /dev/null +++ b/src/components/dms/ChatInvite/Context.tsx @@ -0,0 +1,59 @@ +import {createContext, useContext} from 'react' + +import {type ChatInvitePreview} from '#/state/queries/join-links' +import {type ButtonColor} from '#/components/Button' +import {type Props as SVGIconProps} from '#/components/icons/common' + +/** + * The derived state of the join/open action for a chat invite, computed once in + * `Root` and consumed by `JoinButton` (or any custom action UI). + */ +export type ChatInviteAction = { + label: string + accessibilityHint: string + icon: React.ComponentType + color: ButtonColor + /** + * Whether the action can be performed. False when the link is disabled, the + * chat is full, or the viewer doesn't meet the join rule. + */ + disabled: boolean + onPress: () => void + side: 'left' | 'right' +} + +/** + * The resolved state of a chat invite: + * - `loading`: the preview is still being fetched. + * - `error`: the fetch failed (e.g. network). Surfaces may want to fall back to + * a plain link rather than show a chat-specific error. + * - `unavailable`: the preview resolved but the link is disabled, invalid, or an + * unrecognized variant - there's nothing to join. + * - `available`: a usable `JoinLinkPreviewView` is present. + */ +export type ChatInviteStatus = 'loading' | 'error' | 'unavailable' | 'available' + +export type ChatInviteContextValue = { + code: string + status: ChatInviteStatus + preview: ChatInvitePreview | undefined + /** + * The derived action descriptor. Undefined while loading or when there's no + * preview to act on. + */ + action: ChatInviteAction | undefined + /** Whether the invite is rendered inside a fixed-height container; when true, text inside disables font scaling so the card doesn't overflow. */ + hasFixedHeight: boolean +} + +const ChatInviteContext = createContext(null) + +export function useChatInvite(): ChatInviteContextValue { + const ctx = useContext(ChatInviteContext) + if (!ctx) { + throw new Error('useChatInvite must be used within a ChatInvite.Root') + } + return ctx +} + +export const ChatInviteProvider = ChatInviteContext.Provider diff --git a/src/components/dms/ChatInvite/JoinButton.tsx b/src/components/dms/ChatInvite/JoinButton.tsx new file mode 100644 index 0000000000..6f3b8c654d --- /dev/null +++ b/src/components/dms/ChatInvite/JoinButton.tsx @@ -0,0 +1,42 @@ +import {type StyleProp, type ViewStyle} from 'react-native' + +import {atoms as a} from '#/alf' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' +import {useChatInvite} from './Context' + +/** + * The join/open action button for a chat invite. Reads the derived action from + * `ChatInvite.Root` context. Pass `onPress` to intercept (e.g. to close a + * surface before navigating); it runs before the default action. Renders + * nothing while loading or when there's no preview to act on. + */ +export function JoinButton({ + onPress, + style, +}: { + onPress?: () => void + style?: StyleProp +}) { + const {action, hasFixedHeight} = useChatInvite() + + if (!action) return null + + return ( + + ) +} diff --git a/src/components/dms/ChatInvite/Loading.tsx b/src/components/dms/ChatInvite/Loading.tsx new file mode 100644 index 0000000000..310ed7f1a5 --- /dev/null +++ b/src/components/dms/ChatInvite/Loading.tsx @@ -0,0 +1,18 @@ +import {type StyleProp, View, type ViewStyle} from 'react-native' + +import {atoms as a, useTheme} from '#/alf' +import {Loader} from '#/components/Loader' + +/** + * Loading state for a chat invite: a centered spinner. The outer container + * (height, border, etc.) varies per surface, so pass it via `style`. + */ +export function Loading({style}: {style?: StyleProp}) { + const t = useTheme() + + return ( + + + + ) +} diff --git a/src/components/dms/ChatInvite/Root.tsx b/src/components/dms/ChatInvite/Root.tsx new file mode 100644 index 0000000000..16f5bdfae4 --- /dev/null +++ b/src/components/dms/ChatInvite/Root.tsx @@ -0,0 +1,157 @@ +import {setStringAsync} from 'expo-clipboard' +import {ChatBskyGroupDefs} from '@atproto/api' +import {useLingui} from '@lingui/react/macro' +import {useNavigation} from '@react-navigation/native' + +import {type NavigationProp} from '#/lib/routes/types' +import { + type ChatInvitePreview, + useJoinLinkPreviewsQuery, +} from '#/state/queries/join-links' +import {useSession} from '#/state/session' +import {type ButtonColor} from '#/components/Button' +import {ArrowRight_Stroke2_Corner0_Rounded as ArrowRightIcon} from '#/components/icons/Arrow' +import {ArrowBoxRight_Stroke2_Corner3_Rounded as JoinIcon} from '#/components/icons/ArrowBoxRight' +import {ChainLink_Stroke2_Corner0_Rounded as LinkIcon} from '#/components/icons/ChainLink' +import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check' +import {type Props as SVGIconProps} from '#/components/icons/common' +import {RaisingHand4Finger_Stroke2_Corner2_Rounded as HandIcon} from '#/components/icons/RaisingHand' +import {useIntentDialogs} from '#/components/intents/IntentDialogs' +import * as Toast from '#/components/Toast' +import { + type ChatInviteAction, + ChatInviteProvider, + type ChatInviteStatus, +} from './Context' + +/** + * Headless data + state owner for a chat invite. Fetches the join link preview + * by code and derives the join/open action, exposing both via context for the + * composable parts (`Card`, `JoinButton`) or any custom UI to consume. + * + * Pass `initialPreview` when the preview is already known (e.g. a DM message + * embed already carries the resolved view) to avoid a loading flash. + */ +export function Root({ + code, + initialPreview, + currentConvoId, + hasFixedHeight, + children, +}: { + code: string + initialPreview?: ChatInvitePreview + /** + * The convo this invite is being viewed within, if any. When the invite + * links to the same chat, the action becomes "Copy link" instead of + * open/join (you're already here). + */ + currentConvoId?: string + hasFixedHeight: boolean + children: React.ReactNode +}) { + const {hasSession} = useSession() + const {t: l} = useLingui() + const navigation = useNavigation() + const {groupChatJoinDialogControl, setGroupChatJoinState} = useIntentDialogs() + + const {data, error, isPending} = useJoinLinkPreviewsQuery({ + codes: [code], + hasSession, + // Seed the cache with the already-resolved preview so we don't refetch. + initialData: initialPreview + ? {joinLinkPreviews: [initialPreview]} + : undefined, + }) + + const preview = data?.joinLinkPreviews[0] + + let status: ChatInviteStatus + if (isPending && !preview) { + status = 'loading' + } else if (error) { + status = 'error' + } else if (ChatBskyGroupDefs.isJoinLinkPreviewView(preview)) { + status = 'available' + } else { + // Resolved to a disabled/invalid/unrecognized preview - nothing to join. + status = 'unavailable' + } + + let action: ChatInviteAction | undefined + if (ChatBskyGroupDefs.isJoinLinkPreviewView(preview)) { + const convoId = preview.convo?.id + const isFollowing = preview.owner.viewer?.followedBy ?? false + const hasRequested = !convoId && preview.viewer?.requestedAt != null + + if (convoId && convoId === currentConvoId) { + // You're already in the chat this invite links to - offer to copy the + // link rather than open/join. + action = { + label: l`Copy link`, + accessibilityHint: l`Tap to copy this invite link`, + icon: LinkIcon, + side: 'left', + color: 'primary', + disabled: false, + onPress: () => { + void setStringAsync(`https://bsky.app/chat/${preview.code}`) + Toast.show(l`Copied to clipboard`, {type: 'success'}) + }, + } + } else if (convoId) { + action = { + label: l`Open chat`, + accessibilityHint: l`Tap to open this group chat`, + icon: ArrowRightIcon, + side: 'right', + color: 'primary', + disabled: false, + onPress: () => { + navigation.push('MessagesConversation', {conversation: convoId}) + }, + } + } else { + let canJoin = true + let icon: React.ComponentType = JoinIcon + let label = preview.requireApproval ? l`Request to join` : l`Join` + let color: ButtonColor = 'primary' + if (preview.memberCount >= preview.memberLimit) { + canJoin = false + icon = HandIcon + label = l`This chat is full` + color = 'secondary' + } else if (preview.joinRule === 'followedByOwner' && !isFollowing) { + canJoin = false + icon = HandIcon + label = l`Only people the chat owner follows can join` + color = 'secondary' + } else if (hasRequested) { + icon = CheckIcon + label = l`Requested` + color = 'secondary' + } + + action = { + label, + side: 'left', + accessibilityHint: preview.requireApproval + ? l`Tap to request access to join this group chat` + : l`Tap to join this group chat immediately`, + icon, + color, + disabled: !canJoin, + onPress: () => { + setGroupChatJoinState({code: preview.code}) + groupChatJoinDialogControl.open() + }, + } + } + } + + return ( + + {children} + + ) +} diff --git a/src/components/dms/ChatInvite/Unavailable.tsx b/src/components/dms/ChatInvite/Unavailable.tsx new file mode 100644 index 0000000000..cdfb1d951e --- /dev/null +++ b/src/components/dms/ChatInvite/Unavailable.tsx @@ -0,0 +1,29 @@ +import {type StyleProp, View, type ViewStyle} from 'react-native' +import {Trans} from '@lingui/react/macro' + +import {atoms as a, useTheme} from '#/alf' +import {Warning_Stroke2_Corner0_Rounded as WarningIcon} from '#/components/icons/Warning' +import {Text} from '#/components/Typography' +import {useChatInvite} from './Context' + +/** + * "No longer available" state for a chat invite, shown when the link is + * disabled, invalid, or otherwise can't be resolved. The outer container + * (height, border, etc.) varies per surface, so pass it via `style`. + */ +export function Unavailable({style}: {style?: StyleProp}) { + const t = useTheme() + const {hasFixedHeight} = useChatInvite() + + return ( + + + + Chat invite link no longer available + + + ) +} diff --git a/src/components/dms/ChatInvite/index.tsx b/src/components/dms/ChatInvite/index.tsx new file mode 100644 index 0000000000..a37745616a --- /dev/null +++ b/src/components/dms/ChatInvite/index.tsx @@ -0,0 +1,11 @@ +export {Card} from './Card' +export { + type ChatInviteAction, + type ChatInviteContextValue, + type ChatInviteStatus, + useChatInvite, +} from './Context' +export {JoinButton} from './JoinButton' +export {Loading} from './Loading' +export {Root} from './Root' +export {Unavailable} from './Unavailable' diff --git a/src/components/dms/ConvoMenu.tsx b/src/components/dms/ConvoMenu.tsx index 1e492c80d4..2eac8cdb3a 100644 --- a/src/components/dms/ConvoMenu.tsx +++ b/src/components/dms/ConvoMenu.tsx @@ -1,6 +1,6 @@ import {memo, useCallback} from 'react' import {Keyboard, View} from 'react-native' -import {ChatBskyConvoDefs, type ModerationCause} from '@atproto/api' +import {type ModerationCause} from '@atproto/api' import {Trans, useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' import {useQueryClient} from '@tanstack/react-query' @@ -16,13 +16,18 @@ import { unstableCacheProfileView, useProfileBlockMutationQueue, } from '#/state/queries/profile' +import {useSession} from '#/state/session' import {type ViewStyleProp} from '#/alf' import {atoms as a} from '#/alf' import {Button, ButtonIcon} from '#/components/Button' +import {AfterReportConversationDialog} from '#/components/dms/AfterReportConversationDialog' import {AfterReportDialog} from '#/components/dms/AfterReportDialog' import {BlockedByListDialog} from '#/components/dms/BlockedByListDialog' import {LeaveConvoPrompt} from '#/components/dms/LeaveConvoPrompt' -import {ReportConversationDialog} from '#/components/dms/ReportConversationDialog' +import { + type ConvoWithDetails, + getConvoReportSubject, +} from '#/components/dms/util' import {ArrowBoxLeft_Stroke2_Corner0_Rounded as ArrowBoxLeftIcon} from '#/components/icons/ArrowBoxLeft' import {Bubble_Stroke2_Corner2_Rounded as BubbleIcon} from '#/components/icons/Bubble' import {DotGrid3x1_Stroke2_Corner0_Rounded as DotsHorizontalIcon} from '#/components/icons/DotGrid' @@ -39,7 +44,6 @@ import {ReportDialog} from '#/components/moderation/ReportDialog' import * as Prompt from '#/components/Prompt' import * as Toast from '#/components/Toast' import type * as bsky from '#/types/bsky' -import {AfterReportConversationDialog} from './AfterReportConversationDialog' let ConvoMenu = ({ convo, @@ -49,10 +53,9 @@ let ConvoMenu = ({ showMarkAsRead, hideTrigger, blockInfo, - latestReportableMessage, style, }: { - convo: ChatBskyConvoDefs.ConvoView + convo: ConvoWithDetails profile: Shadow control?: Menu.MenuControlProps currentScreen: 'list' | 'conversation' @@ -62,20 +65,21 @@ let ConvoMenu = ({ listBlocks: ModerationCause[] userBlock?: ModerationCause } - latestReportableMessage?: ChatBskyConvoDefs.MessageView style?: ViewStyleProp['style'] }): React.ReactNode => { const {t: l} = useLingui() const queryClient = useQueryClient() + const {currentAccount} = useSession() const leaveConvoControl = Prompt.usePromptControl() const reportControl = Prompt.usePromptControl() const blockedByListControl = Prompt.usePromptControl() - const blockOrDeleteControl = Prompt.usePromptControl() - const deleteControl = Prompt.usePromptControl() + const afterReportControl = Prompt.usePromptControl() const {listBlocks} = blockInfo + const reportSubject = getConvoReportSubject(convo, currentAccount?.did) + return ( <> @@ -108,6 +112,7 @@ let ConvoMenu = ({ showMarkAsRead={showMarkAsRead} blockInfo={blockInfo} convo={convo} + canReport={!!reportSubject} leaveConvoControl={leaveConvoControl} reportControl={reportControl} blockedByListControl={blockedByListControl} @@ -116,54 +121,37 @@ let ConvoMenu = ({ - {latestReportableMessage ? ( - <> - { - const sender = convo.members.find( - member => member.did === latestReportableMessage.sender.did, - ) - if (sender) { - unstableCacheProfileView(queryClient, sender) - } - blockOrDeleteControl.open() - }} - /> - - + {reportSubject && ( + { + unstableCacheProfileView(queryClient, profile) + afterReportControl.open() + }} + /> + )} + {convo.kind === 'group' ? ( + ) : ( - <> - - - + )} + canReport: boolean showMarkAsRead?: boolean blockInfo: { listBlocks: ModerationCause[] @@ -201,9 +191,9 @@ function MenuContent({ const {listBlocks, userBlock} = blockInfo const isBlocking = userBlock || !!listBlocks.length const isDeletedAccount = profile.handle === 'missing.invalid' - const isGroupConvo = ChatBskyConvoDefs.isGroupConvo(initialConvo.kind) + const isGroupConvo = initialConvo.kind === 'group' - const convoId = initialConvo.id + const convoId = initialConvo.view.id const {data: convo} = useConvoQuery({convoId}) const onNavigateToProfile = useCallback(() => { @@ -299,15 +289,17 @@ function MenuContent({ )} - - - - Report conversation - - + {canReport && ( + + + + Report conversation + + + )} diff --git a/src/components/dms/InitiateChatFlow.tsx b/src/components/dms/InitiateChatFlow.tsx index 32da1e3e5b..ed4b9bc825 100644 --- a/src/components/dms/InitiateChatFlow.tsx +++ b/src/components/dms/InitiateChatFlow.tsx @@ -8,10 +8,12 @@ import { } from 'react' import {LayoutAnimation, type TextInput, View} from 'react-native' import {moderateProfile, type ModerationOpts} from '@atproto/api' -import {Trans, useLingui} from '@lingui/react/macro' +import {Plural, Trans, useLingui} from '@lingui/react/macro' +import {MAX_GROUP_NAME_GRAPHEME_LENGTH} from '#/lib/constants' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' +import {isOverMaxGraphemeCount} from '#/lib/strings/helpers' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useActorAutocompleteQuery} from '#/state/queries/actor-autocomplete' import {useChatActorStatusQuery} from '#/state/queries/messages/get-status' @@ -34,6 +36,7 @@ import {TimesLarge_Stroke2_Corner0_Rounded as XIcon} from '#/components/icons/Ti import * as ProfileCard from '#/components/ProfileCard' import * as Prompt from '#/components/Prompt' import {Text} from '#/components/Typography' +import {useAgeAssurance} from '#/ageAssurance' import {IS_NATIVE, IS_WEB} from '#/env' import type * as bsky from '#/types/bsky' import {ChatProfileTabs} from './ChatProfileTabs' @@ -96,6 +99,7 @@ export type State = { groupChatDids: string[] groupChatProfiles: bsky.profile.AnyProfileView[] groupName: string + searchText: string } export type Action = @@ -129,6 +133,10 @@ export type Action = type: 'goBackFromGroupName' screenTitle: string } + | { + type: 'setSearchText' + searchText: string + } function reducer(state: State, action: Action): State { switch (action.type) { @@ -147,6 +155,7 @@ function reducer(state: State, action: Action): State { ...state, groupChatDids: action.groupChatDids, groupChatProfiles: action.groupChatProfiles, + searchText: '', } } case 'removeDids': { @@ -161,6 +170,7 @@ function reducer(state: State, action: Action): State { ...state, chatState: ChatState.GROUP_NAME, screenTitle: action.screenTitle, + searchText: '', } } case 'nameGroup': { @@ -177,6 +187,7 @@ function reducer(state: State, action: Action): State { groupChatDids: [], groupChatProfiles: [], groupName: '', + searchText: '', } } case 'goBackFromGroupName': { @@ -187,6 +198,12 @@ function reducer(state: State, action: Action): State { groupName: '', } } + case 'setSearchText': { + return { + ...state, + searchText: action.searchText, + } + } } } @@ -194,10 +211,12 @@ export function InitiateChatFlow({ title, onSelectChat, onSelectGroupChat, + startInGroupChat = false, }: { title: string onSelectChat: (did: string) => void onSelectGroupChat: (dids: string[], groupName: string) => void + startInGroupChat?: boolean }) { const t = useTheme() const {t: l} = useLingui() @@ -207,13 +226,32 @@ export function InitiateChatFlow({ const [footerHeight, setFooterHeight] = useState(0) const listRef = useRef(null) const {currentAccount} = useSession() + const aa = useAgeAssurance() const inputRef = useRef(null) const accountTooNewPromptControl = Dialog.useDialogControl() const {data: chatStatus} = useChatActorStatusQuery() const canCreateGroups = chatStatus?.canCreateGroups ?? true + const groupMemberLimit = chatStatus?.groupMemberLimit - const [searchText, setSearchText] = useState('') + const [ + { + chatState, + screenTitle, + groupChatDids, + groupChatProfiles, + groupName, + searchText, + }, + dispatch, + ] = useReducer(reducer, { + chatState: startInGroupChat ? ChatState.NEW_GROUP_CHAT : ChatState.NEW_CHAT, + screenTitle: startInGroupChat ? l`New group chat` : title, + groupChatDids: [], + groupChatProfiles: [], + groupName: '', + searchText: '', + }) const { data: results, @@ -222,17 +260,6 @@ export function InitiateChatFlow({ } = useActorAutocompleteQuery(searchText, true, 12) const {data: follows} = useProfileFollowsQuery(currentAccount?.did) - const [ - {chatState, screenTitle, groupChatDids, groupChatProfiles, groupName}, - dispatch, - ] = useReducer(reducer, { - chatState: ChatState.NEW_CHAT, - screenTitle: title, - groupChatDids: [], - groupChatProfiles: [], - groupName: '', - }) - const newGroupChatTitle = l`New group chat` const groupNameTitle = l`Group name` @@ -298,6 +325,7 @@ export function InitiateChatFlow({ if (follows) { for (const page of follows.pages) { for (const profile of page.follows) { + if (!checker(profile)) continue _items.push({ type: 'profile', key: profile.did, @@ -305,10 +333,6 @@ export function InitiateChatFlow({ }) } } - - _items = _items.sort(item => { - return item.type === 'profile' && checker(item.profile) ? -1 : 1 - }) } else { _items.push(...placeholders) } @@ -327,7 +351,11 @@ export function InitiateChatFlow({ }) } - if (chatState === ChatState.NEW_CHAT && searchText === '') { + if ( + chatState === ChatState.NEW_CHAT && + searchText === '' && + !aa.flags.groupChatDisabled + ) { _items.unshift({type: 'newGroupChat', key: 'newGroupChat'}) } @@ -341,6 +369,7 @@ export function InitiateChatFlow({ results, currentAccount?.did, follows, + aa.flags.groupChatDisabled, ]) if (searchText && !isFetching && !items.length && !isError) { @@ -355,7 +384,6 @@ export function InitiateChatFlow({ case ChatState.NEW_GROUP_CHAT: LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) dispatch({type: 'goBackFromNewGroupChat', screenTitle: title}) - setSearchText('') break case ChatState.GROUP_NAME: LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) @@ -376,7 +404,6 @@ export function InitiateChatFlow({ const handlePressNext = useCallback(() => { LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) dispatch({type: 'startNameGroup', screenTitle: groupNameTitle}) - setSearchText('') }, [groupNameTitle]) const handlePressConfirm = useCallback(() => { @@ -458,6 +485,11 @@ export function InitiateChatFlow({ } }, []) + const groupNameTooLong = isOverMaxGraphemeCount({ + text: groupName, + maxCount: MAX_GROUP_NAME_GRAPHEME_LENGTH, + }) + let buttonLabel = l`Continue to group name` let buttonText = l`Next` let handleButtonPress = handlePressNext @@ -470,7 +502,7 @@ export function InitiateChatFlow({ buttonText = l`Create` handleButtonPress = handlePressConfirm showButton = true - isButtonDisabled = groupName === '' + isButtonDisabled = groupName === '' || groupNameTooLong break } @@ -502,7 +534,6 @@ export function InitiateChatFlow({ a.relative, a.align_center, a.justify_between, - web(a.pb_lg), ]}> {IS_NATIVE ? ( ) : showButton ? ( ) : ( @@ -416,8 +465,8 @@ function GroupChatJoinDialogContent({code}: {code?: string}) { } accessibilityHint={ joinLinkPreview.requireApproval - ? l`Request access to join this group chat` - : l`Join this group chat` + ? l`Tap to request access to join this group chat` + : l`Tap to join this group chat immediately` } size="large" color={buttonColor} diff --git a/src/components/moderation/BlockDialog.tsx b/src/components/moderation/BlockDialog.tsx new file mode 100644 index 0000000000..540f1603f0 --- /dev/null +++ b/src/components/moderation/BlockDialog.tsx @@ -0,0 +1,398 @@ +import {useState} from 'react' +import {View} from 'react-native' +import { + type ChatBskyConvoDefs, + ChatBskyConvoLeaveConvo, + ChatBskyGroupRemoveMembers, +} from '@atproto/api' +import {Trans, useLingui} from '@lingui/react/macro' +import {useQueryClient} from '@tanstack/react-query' + +import {isNetworkError} from '#/lib/strings/errors' +import {logger} from '#/logger' +import {type Shadow} from '#/state/cache/types' +import {useLeaveConvo} from '#/state/queries/messages/leave-conversation' +import { + createListMutualGroupsQueryKey, + useListMutualGroupsQuery, +} from '#/state/queries/messages/list-mutual-groups' +import {useRemoveFromGroupChat} from '#/state/queries/messages/remove-from-group' +import {useSession} from '#/state/session' +import {atoms as a, native, useTheme, web} from '#/alf' +import {AvatarBubbles} from '#/components/AvatarBubbles' +import {Button, ButtonIcon, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {type DialogControlProps} from '#/components/Dialog' +import {parseConvoView} from '#/components/dms/util' +import {Loader} from '#/components/Loader' +import * as Toast from '#/components/Toast' +import {Text} from '#/components/Typography' +import {type AnyProfileView} from '#/types/bsky/profile' + +type Item = ChatBskyConvoDefs.ConvoView + +type BlockDialogProps = { + control: DialogControlProps + profile: Shadow + onBlock: () => Promise + currentConvoId?: string +} + +export function BlockDialog({ + control, + profile, + onBlock, + currentConvoId, +}: BlockDialogProps) { + return ( + + + + + + + + ) +} + +function BlockDialogInner({ + control, + profile, + onBlock, + currentConvoId, +}: { + control: DialogControlProps + profile: Shadow + onBlock: () => Promise + currentConvoId?: string +}) { + const t = useTheme() + const {t: l} = useLingui() + + const [headerHeight, setHeaderHeight] = useState(0) + const [footerHeight, setFooterHeight] = useState(0) + + /* + * Optimistically hide convos the viewer has left or removed the profile + * from, before the query refetches. We don't expect many items here, so a + * simple filter is fine. + */ + const [removedConvoIds, setRemovedConvoIds] = useState>( + () => new Set(), + ) + const onOptimisticallyRemoveConvo = (convoId: string) => { + setRemovedConvoIds(prev => { + const next = new Set(prev) + next.add(convoId) + return next + }) + } + const onRestoreConvo = (convoId: string) => { + setRemovedConvoIds(prev => { + const next = new Set(prev) + next.delete(convoId) + return next + }) + } + + const {data, isLoading, hasNextPage, isFetchingNextPage, fetchNextPage} = + useListMutualGroupsQuery({ + subject: profile.did, + enabled: !profile.viewer?.blocking, + }) + const items: Item[] = (data?.pages.flatMap(page => page.convos) ?? []).filter( + item => !removedConvoIds.has(item.id), + ) + const hasMutualGroupChats = items.length > 0 + + const onEndReached = async () => { + if (isFetchingNextPage || !hasNextPage) return + try { + await fetchNextPage() + } catch (err) { + logger.error('Failed to load more mutual group chats', {message: err}) + } + } + + const renderItems = ({item}: {item: Item}) => { + return ( + + ) + } + + const listHeader = ( + setHeaderHeight(evt.nativeEvent.layout.height)}> + + + {profile.viewer?.blocking ? ( + Unblock account? + ) : ( + Block account? + )} + + + {profile.viewer?.blocking ? ( + + The account will be able to interact with you after unblocking. + + ) : profile.associated?.labeler ? ( + + 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. + + ) : ( + + Blocked accounts cannot reply in your threads, mention you, or + otherwise interact with you. + + )} + + + {hasMutualGroupChats ? ( + + + Mutual group chats + + + ) : null} + + ) + + const footer = ( + + + + + ) + + if (isLoading || !hasMutualGroupChats) { + return ( + + {listHeader} + {isLoading ? ( + + + + ) : null} + {footer} + + ) + } + + return ( + + + + ) : null + } + footer={ + setFooterHeight(evt.nativeEvent.layout.height)}> + {footer} + + } + contentContainerStyle={[a.gap_0, {paddingBottom: footerHeight}]} + scrollIndicatorInsets={{top: headerHeight, bottom: footerHeight}} + onEndReached={() => void onEndReached()} + onEndReachedThreshold={0.5} + style={[web([{height: '100vh', maxHeight: 600}])]} + webInnerStyle={[{maxWidth: 420}]} + /> + ) +} + +function MutualGroupChat({ + view, + profileDid, + currentConvoId, + onOptimisticallyRemoveConvo, + onRestoreConvo, +}: { + view: ChatBskyConvoDefs.ConvoView + profileDid: string + currentConvoId?: string + onOptimisticallyRemoveConvo: (convoId: string) => void + onRestoreConvo: (convoId: string) => void +}) { + const t = useTheme() + const {t: l} = useLingui() + const {currentAccount} = useSession() + const queryClient = useQueryClient() + + const convo = parseConvoView(view, currentAccount?.did) + + const {mutate: leaveConvo, isPending: isLeavePending} = useLeaveConvo( + convo?.view.id, + { + onSuccess: () => { + Toast.show(l`Left group chat.`) + void queryClient.invalidateQueries({ + queryKey: createListMutualGroupsQueryKey({subject: profileDid}), + }) + }, + onError: error => { + onRestoreConvo(view.id) + logger.error('Error leaving group chat', {message: error}) + let errorMessage = l`Could not leave chat.` + if (isNetworkError(error)) { + errorMessage = l`A network error occurred. Please check your internet connection.` + } else if (error instanceof ChatBskyConvoLeaveConvo.InvalidConvoError) { + errorMessage = l`Chat not found.` + } else if ( + error instanceof ChatBskyConvoLeaveConvo.OwnerCannotLeaveError + ) { + errorMessage = l`Chat owners cannot leave a group chat.` + } + Toast.show(errorMessage, {type: 'error'}) + }, + }, + ) + + const {mutate: removeMembers, isPending: isRemovePending} = + useRemoveFromGroupChat(convo?.view.id, { + onSuccess: () => { + Toast.show(l`Member removed from group chat.`) + void queryClient.invalidateQueries({ + queryKey: createListMutualGroupsQueryKey({subject: profileDid}), + }) + }, + onError: error => { + onRestoreConvo(view.id) + logger.error('Error removing group chat member', {message: error}) + let errorMessage = l`Could not remove member.` + if (isNetworkError(error)) { + errorMessage = l`A network error occurred. Please check your internet connection.` + } else if ( + error instanceof ChatBskyGroupRemoveMembers.InvalidConvoError + ) { + errorMessage = l`Chat not found.` + } else if ( + error instanceof ChatBskyGroupRemoveMembers.InsufficientRoleError + ) { + errorMessage = l`You must be a chat owner to remove a member.` + } + Toast.show(errorMessage, {type: 'error'}) + }, + }) + + if (!convo || convo.kind !== 'group') return null + + const owner = convo.primaryMember + const isViewerOwner = owner?.did != null && owner.did === currentAccount?.did + const isProfileOwner = owner?.did != null && owner.did === profileDid + const isCurrentConvo = view.id === currentConvoId + + return ( + + + + + + {convo.details.name} + + {isViewerOwner ? ( + + You own this chat + + ) : isProfileOwner ? ( + + They own this chat + + ) : null} + + + {isViewerOwner ? ( + + ) : isCurrentConvo ? ( + + Current chat + + ) : ( + + )} + + ) +} diff --git a/src/components/moderation/ReportDialog/utils/parseReportSubject.ts b/src/components/moderation/ReportDialog/utils/parseReportSubject.ts index 405640c453..a7d4b94c32 100644 --- a/src/components/moderation/ReportDialog/utils/parseReportSubject.ts +++ b/src/components/moderation/ReportDialog/utils/parseReportSubject.ts @@ -87,7 +87,10 @@ export function parseReportSubject( reply: !!record.reply, image: embed.type === 'images' || - (embed.type === 'post_with_media' && embed.media.type === 'images'), + embed.type === 'gallery' || + (embed.type === 'post_with_media' && + (embed.media.type === 'images' || + embed.media.type === 'gallery')), video: embed.type === 'video' || (embed.type === 'post_with_media' && embed.media.type === 'video'), diff --git a/src/features/inviteFriends/InviteFriendsDialog.tsx b/src/features/inviteFriends/InviteFriendsDialog.tsx new file mode 100644 index 0000000000..7ca76f6e66 --- /dev/null +++ b/src/features/inviteFriends/InviteFriendsDialog.tsx @@ -0,0 +1,19 @@ +import * as Dialog from '#/components/Dialog' +import {InviteFriendsDialogInner} from './InviteFriendsDialogInner' + +export function InviteFriendsDialog({ + control, + onClose, +}: { + control: Dialog.DialogControlProps + onClose?: () => void +}) { + return ( + + + + ) +} diff --git a/src/features/inviteFriends/InviteFriendsDialog.web.tsx b/src/features/inviteFriends/InviteFriendsDialog.web.tsx new file mode 100644 index 0000000000..155c533918 --- /dev/null +++ b/src/features/inviteFriends/InviteFriendsDialog.web.tsx @@ -0,0 +1,13 @@ +import {type DialogControlProps} from '#/components/Dialog' + +/** + * Web no-op - the invite-friends share sheet is native-only by design. + * Callers may still create a Dialog control and pass it; opening it does + * nothing on web. + */ +export function InviteFriendsDialog(_props: { + control: DialogControlProps + onClose?: () => void +}) { + return null +} diff --git a/src/features/inviteFriends/InviteFriendsDialogInner.tsx b/src/features/inviteFriends/InviteFriendsDialogInner.tsx new file mode 100644 index 0000000000..16377c49f3 --- /dev/null +++ b/src/features/inviteFriends/InviteFriendsDialogInner.tsx @@ -0,0 +1,272 @@ +import {Suspense, useRef, useState} from 'react' +import {Pressable, View} from 'react-native' +import type ViewShot from 'react-native-view-shot' +import {setStringAsync} from 'expo-clipboard' +import {requestPermissionsAsync, saveToLibraryAsync} from 'expo-media-library' +import {useLingui} from '@lingui/react/macro' +import {useNavigation} from '@react-navigation/native' + +import {type NavigationProp} from '#/lib/routes/types' +import {shareUrl as nativeShareUrl} from '#/lib/sharing' +import {logger} from '#/logger' +import {useProfileQuery} from '#/state/queries/profile' +import {useSession} from '#/state/session' +import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {Divider} from '#/components/Divider' +import {Error as ErrorMessage} from '#/components/Error' +import {ChainLink_Stroke2_Corner0_Rounded as ChainLinkIcon} from '#/components/icons/ChainLink' +import {Loader} from '#/components/Loader' +import * as Toast from '#/components/Toast' +import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' +import {IS_NATIVE} from '#/env' +import {ActionButtons} from './components/ActionButtons' +import {ThemedQrCard} from './components/ThemedQrCard' +import {ThemePicker} from './components/ThemePicker' +import {getInviteTheme, type InviteThemeKey} from './themes' +import {getInviteDisplayUrl, getInviteShareUrl} from './urls' + +export function InviteFriendsDialogInner({ + control, +}: { + control: Dialog.DialogControlProps +}) { + const {t: l} = useLingui() + const t = useTheme() + const ax = useAnalytics() + const navigation = useNavigation() + const {currentAccount} = useSession() + const profileQuery = useProfileQuery({did: currentAccount?.did}) + const [themeKey, setThemeKey] = useState('day') + const captureRef = useRef(null) + + const theme = getInviteTheme(themeKey) + const variant = t.name === 'light' ? theme.light : theme.dark + + const handle = profileQuery.data?.handle + const avatarUri = profileQuery.data?.avatar + + // 'handle.invalid' is the atproto sentinel for an unresolvable DID - treat + // it like a load error so we don't display a broken share URL. + const isHandleValid = !!handle && handle !== 'handle.invalid' + + const canonicalShareUrl = isHandleValid ? getInviteShareUrl(handle) : '' + const displayUrl = isHandleValid ? getInviteDisplayUrl(handle) : '' + + const onShare = async () => { + if (!canonicalShareUrl) { + Toast.show(l`Could not share – please try again`, {type: 'error'}) + return + } + ax.metric('invite:action:share', {}) + try { + await nativeShareUrl(canonicalShareUrl) + } catch (err) { + logger.error('InviteFriendsDialog: share failed', {safeMessage: err}) + } + } + + const onDownload = async () => { + if (!IS_NATIVE) return + if (!canonicalShareUrl) { + Toast.show(l`Could not download – please try again`, {type: 'error'}) + return + } + const uri = await captureRef.current?.capture?.() + if (!uri) { + Toast.show(l`Could not capture QR code`, {type: 'error'}) + return + } + + // Write-only permission - saving the QR image does not require read access + // to the user's photo library. + const permission = await requestPermissionsAsync(true) + if (!permission.granted) { + Toast.show( + l`You must grant access to your photo library to save a QR code`, + {type: 'error'}, + ) + return + } + + try { + // saveToLibraryAsync writes without reading the asset back, so it works + // with the add-only permission. createAssetAsync fetches the created + // asset, which triggers the full library read prompt on iOS (APP-2374). + await saveToLibraryAsync(`file://${uri}`) + ax.metric('invite:action:download', {}) + Toast.show(l`QR code saved to your camera roll!`) + } catch (err) { + logger.error('InviteFriendsDialog: download failed', {safeMessage: err}) + Toast.show(l`An error occurred while saving the QR code!`, { + type: 'error', + }) + } + } + + const onScan = () => { + ax.metric('invite:action:scan', {}) + // Close dialog first, then navigate (control.close callback per CLAUDE.md + // Dialog footgun rule — prevents race with the navigation push). + control.close(() => { + navigation.navigate('InviteScanner') + }) + } + + const onCopy = async () => { + if (!canonicalShareUrl) { + Toast.show(l`Could not copy – please try again`, {type: 'error'}) + return + } + try { + await setStringAsync(canonicalShareUrl) + ax.metric('invite:action:copy', {}) + Toast.show(l`Invite link copied`) + } catch (err) { + logger.error('InviteFriendsDialog: copy failed', {safeMessage: err}) + Toast.show(l`Failed to copy link`, {type: 'error'}) + } + } + + const onThemeChange = (next: InviteThemeKey) => { + ax.metric('invite:theme:change', {themeKey: next}) + setThemeKey(next) + } + + return ( + ( + + )}> + {l`Invite Friends`} + + }> + + + + + {profileQuery.isLoading ? ( + + + + ) : profileQuery.error || !isHandleValid ? ( + + profileQuery.refetch()} + hideBackButton + /> + + ) : ( + + + + }> + + + )} + + + + void onShare()} + onDownload={() => void onDownload()} + onScan={onScan} + /> + + + + + + {l({ + message: 'Invite link', + context: 'profile invite', + comment: + 'Link that invites someone to follow your profile, distinct from a group chat invite link', + })} + + + + + + + + {displayUrl || ' '} + + void onCopy()} + hitSlop={8} + style={({pressed}) => [{opacity: pressed ? 0.7 : 1}]}> + + {l`Copy`} + + + + + + ) +} diff --git a/src/features/inviteFriends/InviteScannerScreen.tsx b/src/features/inviteFriends/InviteScannerScreen.tsx new file mode 100644 index 0000000000..2887835c6b --- /dev/null +++ b/src/features/inviteFriends/InviteScannerScreen.tsx @@ -0,0 +1,264 @@ +import {useCallback, useState} from 'react' +import {Pressable, StyleSheet, useWindowDimensions, View} from 'react-native' +import {useSafeAreaInsets} from 'react-native-safe-area-context' +import Svg, {Path} from 'react-native-svg' +import { + type BarcodeScanningResult, + CameraView, + useCameraPermissions, +} from 'expo-camera' +import {useLingui} from '@lingui/react/macro' +import {useNavigation} from '@react-navigation/native' + +import {type NavigationProp} from '#/lib/routes/types' +import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonText} from '#/components/Button' +import {ArrowLeft_Stroke2_Corner0_Rounded as ArrowLeftIcon} from '#/components/icons/Arrow' +import {CircleInfo_Stroke2_Corner0_Rounded as InfoIcon} from '#/components/icons/CircleInfo' +import * as Layout from '#/components/Layout' +import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' + +const SCAN_FRAME_SIZE = 333 +const SCAN_FRAME_RADIUS = 16 + +export function InviteScannerScreen() { + const {t: l} = useLingui() + const t = useTheme() + const ax = useAnalytics() + const insets = useSafeAreaInsets() + const navigation = useNavigation() + const [permission, requestPermission] = useCameraPermissions() + const [showError, setShowError] = useState(false) + const [scannerEnabled, setScannerEnabled] = useState(true) + + const onClose = useCallback(() => { + navigation.goBack() + }, [navigation]) + + const onBarcodeScanned = useCallback( + (result: BarcodeScanningResult) => { + if (!scannerEnabled) return + const url = result.data?.trim() + if (!url) return + + // Match bsky.app/profile/{handle} URLs (with or without https://). + const profileMatch = url.match( + /^(?:https?:\/\/)?bsky\.app\/profile\/([^/?#]+)/i, + ) + if (!profileMatch) { + ax.metric('invite:scanner:scanned', {result: 'invalidQr'}) + setScannerEnabled(false) + setShowError(true) + return + } + + ax.metric('invite:scanner:scanned', {result: 'profileFound'}) + setScannerEnabled(false) + const handle = profileMatch[1] + navigation.replace('Profile', {name: handle}) + }, + [ax, scannerEnabled, navigation], + ) + + const onRetry = useCallback(() => { + setShowError(false) + setScannerEnabled(true) + }, []) + + // Permission states --------------------------------------------------------- + + if (!permission) { + // Still loading the initial permission state — render nothing. + return + } + + if (!permission.granted) { + return ( + + + + + {l`Scan QR code`} + + + + + + + {l`Camera access needed`} + + + {l`Bluesky needs camera access to scan QR codes from other profiles.`} + + + + + ) + } + + // Active scanner ------------------------------------------------------------ + + return ( + + + + + + {/* scan-frame outline (the colored border around the cutout) */} + + + + [ + { + width: 32, + height: 32, + alignItems: 'center', + justifyContent: 'center', + opacity: pressed ? 0.6 : 1, + }, + ]}> + + + + + {/* Error overlay shown when scanned QR isn't a valid profile URL */} + {showError && ( + + + + + {l`Profile not found`} + + + {l`Oops, this profile doesn't exist. Try scanning another one.`} + + + + + )} + + ) +} + +/** + * Renders a dark scrim covering the camera view with a rounded-rect cutout in + * the middle. Implemented as a single SVG Path (outer screen rect + inner + * rounded rect, even-odd fill) so the cutout's corners match the colored + * outline above it. + */ +function ScannerScrim() { + const {width, height} = useWindowDimensions() + const r = SCAN_FRAME_RADIUS + const half = SCAN_FRAME_SIZE / 2 + const x = width / 2 - half + const y = height / 2 - half + const right = x + SCAN_FRAME_SIZE + const bottom = y + SCAN_FRAME_SIZE + const d = + `M0 0 H${width} V${height} H0 Z ` + + `M${x + r} ${y} H${right - r} A${r} ${r} 0 0 1 ${right} ${y + r} ` + + `V${bottom - r} A${r} ${r} 0 0 1 ${right - r} ${bottom} ` + + `H${x + r} A${r} ${r} 0 0 1 ${x} ${bottom - r} ` + + `V${y + r} A${r} ${r} 0 0 1 ${x + r} ${y} Z` + return ( + + + + ) +} diff --git a/src/features/inviteFriends/InviteScannerScreen.web.tsx b/src/features/inviteFriends/InviteScannerScreen.web.tsx new file mode 100644 index 0000000000..5a5875f3e7 --- /dev/null +++ b/src/features/inviteFriends/InviteScannerScreen.web.tsx @@ -0,0 +1,45 @@ +import {View} from 'react-native' +import {useLingui} from '@lingui/react/macro' + +import {atoms as a, useTheme} from '#/alf' +import {CircleInfo_Stroke2_Corner0_Rounded as InfoIcon} from '#/components/icons/CircleInfo' +import * as Layout from '#/components/Layout' +import {Text} from '#/components/Typography' + +/** + * Web fallback - QR scanning relies on the device camera and is native-only by + * design. The route is registered on all platforms, so a web user reaching + * /invite/scan via a direct URL gets this message instead of the native + * camera UI. + */ +export function InviteScannerScreen() { + const {t: l} = useLingui() + const t = useTheme() + return ( + + + + + {l`Scan QR code`} + + + + + + + {l`Not available on this platform`} + + + {l`Please use the Bluesky mobile app to scan a QR code.`} + + + + ) +} diff --git a/src/features/inviteFriends/components/ActionButtons.tsx b/src/features/inviteFriends/components/ActionButtons.tsx new file mode 100644 index 0000000000..b96af58139 --- /dev/null +++ b/src/features/inviteFriends/components/ActionButtons.tsx @@ -0,0 +1,48 @@ +import {View} from 'react-native' +import {useLingui} from '@lingui/react/macro' + +import {atoms as a} from '#/alf' +import {StackedButton} from '#/components/Button' +import {ArrowShareRight_Stroke2_Corner2_Rounded as ShareIcon} from '#/components/icons/ArrowShareRight' +import {Camera_Stroke2_Corner0_Rounded as CameraIcon} from '#/components/icons/Camera' +import {Download_Stroke2_Corner0_Rounded as DownloadIcon} from '#/components/icons/Download' + +export function ActionButtons({ + onShare, + onDownload, + onScan, +}: { + onShare: () => void + onDownload: () => void + onScan: () => void +}) { + const {t: l} = useLingui() + return ( + + + {l`Share link`} + + + {l`Download`} + + + {l`Scan`} + + + ) +} diff --git a/src/features/inviteFriends/components/FollowersPromoBanner.tsx b/src/features/inviteFriends/components/FollowersPromoBanner.tsx new file mode 100644 index 0000000000..8701181599 --- /dev/null +++ b/src/features/inviteFriends/components/FollowersPromoBanner.tsx @@ -0,0 +1,101 @@ +import {useEffect} from 'react' +import {Pressable, View} from 'react-native' +import {Image} from 'expo-image' +import {useLingui} from '@lingui/react/macro' + +import {atoms as a, useTheme} from '#/alf' +import {TimesLarge_Stroke2_Corner0_Rounded as TimesIcon} from '#/components/icons/Times' +import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' + +export function FollowersPromoBanner({ + onPress, + onDismiss, +}: { + onPress: () => void + onDismiss: () => void +}) { + const {t: l} = useLingui() + const t = useTheme() + const ax = useAnalytics() + + useEffect(() => { + ax.metric('invite:followersPromo:seen', {}) + // Fire once per mount - parent unmounts the banner when followers > 0 or + // when dismissed, so each mount is a distinct impression. + // eslint-disable-next-line react-hooks/exhaustive-deps + }, []) + + const handlePress = () => { + ax.metric('invite:followersPromo:press', {}) + onPress() + } + + const handleDismiss = () => { + ax.metric('invite:followersPromo:dismiss', {}) + onDismiss() + } + return ( + + {/* + * The dismiss button is a sibling of (not nested inside) the banner + * Pressable - nesting Pressables causes touch-handling conflicts on + * Android. This relative wrapper matches the banner bounds so the dismiss + * button can be positioned absolutely against the card's top-right corner. + */} + + [ + a.flex_row, + a.align_center, + a.w_full, + { + height: 80, + borderRadius: 16, + backgroundColor: t.palette.primary_50, + paddingHorizontal: 16, + paddingVertical: 16, + opacity: pressed ? 0.85 : 1, + }, + ]}> + + + {l`Import contacts or invite your friends`} + + + [ + { + position: 'absolute', + top: 8, + right: 8, + padding: 4, + opacity: pressed ? 0.5 : 1, + }, + ]}> + + + + + ) +} diff --git a/src/features/inviteFriends/components/ThemePicker.tsx b/src/features/inviteFriends/components/ThemePicker.tsx new file mode 100644 index 0000000000..179c80d815 --- /dev/null +++ b/src/features/inviteFriends/components/ThemePicker.tsx @@ -0,0 +1,120 @@ +import {Pressable, View} from 'react-native' +import {LinearGradient} from 'expo-linear-gradient' +import {useLingui} from '@lingui/react/macro' + +import {useTheme} from '#/alf' +import {ChevronBottom_Stroke2_Corner0_Rounded as ChevronDown} from '#/components/icons/Chevron' +import * as Menu from '#/components/Menu' +import {Text} from '#/components/Typography' +import {INVITE_THEME_KEYS, INVITE_THEMES, type InviteThemeKey} from '../themes' + +const PILL_LABEL_SIZE = 13.1 +const SWATCH_SIZE = 14 +const CHEVRON_SIZE = 8 +const MENU_ITEM_SWATCH = 18 + +export function ThemePicker({ + value, + onChange, +}: { + value: InviteThemeKey + onChange: (next: InviteThemeKey) => void +}) { + const t = useTheme() + const {t: l} = useLingui() + const current = INVITE_THEMES[value] + + const labels: Record = { + dawn: l`Dawn`, + day: l`Day`, + dusk: l`Dusk`, + night: l`Night`, + } + + return ( + + + {({props}) => ( + ({ + flexDirection: 'row', + alignItems: 'center', + gap: 8, + paddingLeft: 12, + paddingRight: 14, + paddingVertical: 7, + borderRadius: 16, + backgroundColor: t.palette.contrast_50, + opacity: pressed ? 0.7 : 1, + })}> + + + + {l`Color`} + + + + + )} + + + + + {INVITE_THEME_KEYS.map(key => { + const theme = INVITE_THEMES[key] + return ( + onChange(key)}> + + {labels[key]} + + + ) + })} + + + + ) +} + +function GradientSwatch({ + from, + to, + size, +}: { + from: string + to: string + size: number +}) { + return ( + + ) +} diff --git a/src/features/inviteFriends/components/ThemedQrCard.tsx b/src/features/inviteFriends/components/ThemedQrCard.tsx new file mode 100644 index 0000000000..394d6ecca5 --- /dev/null +++ b/src/features/inviteFriends/components/ThemedQrCard.tsx @@ -0,0 +1,246 @@ +import {lazy} from 'react' +import {View} from 'react-native' +// @ts-expect-error missing types +import QRCode from 'react-native-qrcode-styled' +import type ViewShot from 'react-native-view-shot' +import {Image} from 'expo-image' +import {LinearGradient} from 'expo-linear-gradient' + +import {Logo} from '#/view/icons/Logo' +import {atoms as a, useTheme} from '#/alf' +import {hexToRgb, rgbToHex} from '#/alf/util/colorGeneration' +import {Text} from '#/components/Typography' +import {type InviteThemeVariant} from '../themes' + +const LazyViewShot = lazy( + // @ts-expect-error dynamic import + () => import('react-native-view-shot/src/index'), +) + +const CARD_WIDTH = 278 +const CARD_GRADIENT_PADDING = 12 +const QR_AREA = CARD_WIDTH - CARD_GRADIENT_PADDING * 2 +const QR_PIECE_SIZE = 7 +const QR_INNER_PADDING = 4 +const AVATAR_WRAPPER = 72 +const AVATAR_IMAGE = 60 +const AVATAR_BORDER = 2 + +export function ThemedQrCard({ + variant, + shareUrl, + handle, + avatarUri, + captureRef, +}: { + variant: InviteThemeVariant + shareUrl: string + handle: string + avatarUri?: string + captureRef: React.Ref +}) { + const t = useTheme() + return ( + + + + + + + + {avatarUri ? ( + + ) : ( + + + + )} + + + + + {`@${handle}`} + + + + + ) +} + +/** + * Returns the `gradient` prop shape that react-native-qrcode-styled accepts + * on both pieces and eyes. Mirrors the card's top-to-bottom LinearGradient + * so the QR data appears as a continuous extension of the card gradient + * rather than a separate solid-color overlay. + */ +function qrGradient(from: string, to: string) { + return { + gradient: { + type: 'linear' as const, + options: { + colors: [from, to], + start: [0.5, 0] as [number, number], + end: [0.5, 1] as [number, number], + }, + }, + } +} + +// Vertical positions (0..1 along the QR) where the corner eye centers sit. +// QR is 33 modules square; eye centers are at module index 3 and 29. +const EYE_TOP_T = 3 / 33 +const EYE_BOTTOM_T = 29 / 33 + +/** + * Returns the solid color the canvas-wide gradient would paint at vertical + * position `t` (0=top, 1=bottom). We use this to color each eye so that the + * eye blends seamlessly into the gradient on the surrounding data pieces. + * Eyes can't use a local `gradient` prop here - react-native-qrcode-styled + * 0.3.3 has an internal ID mismatch where the eye gradient are + * registered as `${pos}CornerSquareGradient` / `${pos}CornerDotGradient` + * but the Path fill references `url(#${pos}OuterEyeGradient)` / + * `url(#${pos}InnerEyeGradient)`, so per-eye gradients silently render + * with no fill. + */ +function eyeColor(from: string, to: string, t: number): string { + const fromRgb = hexToRgb(from) + const toRgb = hexToRgb(to) + if (!fromRgb || !toRgb) return from + return rgbToHex( + fromRgb.r + (toRgb.r - fromRgb.r) * t, + fromRgb.g + (toRgb.g - fromRgb.g) * t, + fromRgb.b + (toRgb.b - fromRgb.b) * t, + ) +} diff --git a/src/features/inviteFriends/components/ThemedQrCard.web.tsx b/src/features/inviteFriends/components/ThemedQrCard.web.tsx new file mode 100644 index 0000000000..bdecdc97b2 --- /dev/null +++ b/src/features/inviteFriends/components/ThemedQrCard.web.tsx @@ -0,0 +1,6 @@ +/** + * Web no-op - the invite-friends feature is native-only by design. + */ +export function ThemedQrCard() { + return null +} diff --git a/src/features/inviteFriends/hooks/useFollowersPromoDismissed.ts b/src/features/inviteFriends/hooks/useFollowersPromoDismissed.ts new file mode 100644 index 0000000000..90e2c0668f --- /dev/null +++ b/src/features/inviteFriends/hooks/useFollowersPromoDismissed.ts @@ -0,0 +1,12 @@ +import {device, useStorage} from '#/storage' + +/** + * Persisted dismiss state for the "Import contacts or invite your friends" + * promo banner shown on the Followers screen empty state. + */ +export function useFollowersPromoDismissed() { + const [dismissed = false, setDismissed] = useStorage(device, [ + 'inviteFriendsFollowersPromoDismissed', + ]) + return [dismissed, setDismissed] as const +} diff --git a/src/features/inviteFriends/index.ts b/src/features/inviteFriends/index.ts new file mode 100644 index 0000000000..f6e0416bbc --- /dev/null +++ b/src/features/inviteFriends/index.ts @@ -0,0 +1,4 @@ +export {FollowersPromoBanner} from './components/FollowersPromoBanner' +export {useFollowersPromoDismissed} from './hooks/useFollowersPromoDismissed' +export {InviteFriendsDialog} from './InviteFriendsDialog' +export {InviteScannerScreen} from './InviteScannerScreen' diff --git a/src/features/inviteFriends/themes.test.ts b/src/features/inviteFriends/themes.test.ts new file mode 100644 index 0000000000..6dbdfb2e9c --- /dev/null +++ b/src/features/inviteFriends/themes.test.ts @@ -0,0 +1,28 @@ +import {describe, expect, it} from '@jest/globals' + +import {getInviteTheme, INVITE_THEME_KEYS, INVITE_THEMES} from './themes' + +describe('invite themes', () => { + it('exposes four themes in canonical order', () => { + expect(INVITE_THEME_KEYS).toEqual(['dawn', 'day', 'dusk', 'night']) + }) + + it('has light and dark variants for every theme', () => { + for (const key of INVITE_THEME_KEYS) { + const theme = INVITE_THEMES[key] + expect(theme.light.qrPrimary).toMatch(/^#/) + expect(theme.dark.qrPrimary).toMatch(/^#/) + expect(theme.swatch).toMatch(/^#/) + } + }) + + it('getInviteTheme returns the requested theme', () => { + expect(getInviteTheme('day').swatch).toBe(INVITE_THEMES.day.swatch) + expect(getInviteTheme('night').swatch).toBe(INVITE_THEMES.night.swatch) + }) + + it('getInviteTheme falls back to day for unknown keys', () => { + // @ts-expect-error testing runtime fallback + expect(getInviteTheme('mystery').swatch).toBe(INVITE_THEMES.day.swatch) + }) +}) diff --git a/src/features/inviteFriends/themes.ts b/src/features/inviteFriends/themes.ts new file mode 100644 index 0000000000..6b71217372 --- /dev/null +++ b/src/features/inviteFriends/themes.ts @@ -0,0 +1,115 @@ +/** + * Color themes for the Invite Friends share sheet (APP-2142). + * + * Each theme has a light + dark pair. The QR halo / card border use the + * matching primary color; the QR data uses qrPrimary; the avatar handle text + * follows handleColor. + */ +export type InviteThemeKey = 'dawn' | 'day' | 'dusk' | 'night' + +export type InviteThemeVariant = { + /** QR data + eye color */ + qrPrimary: string + /** Card top-to-bottom gradient start (top) */ + gradientFrom: string + /** Card top-to-bottom gradient end (bottom) */ + gradientTo: string + /** Card drop-shadow color (opaque hex; opacity handled separately) */ + shadowColor: string + /** Handle label rendered under the QR (typically white) */ + handleColor: string +} + +export type InviteTheme = { + key: InviteThemeKey + /** Color shown in the theme picker dot */ + swatch: string + light: InviteThemeVariant + dark: InviteThemeVariant +} + +export const INVITE_THEME_KEYS: readonly InviteThemeKey[] = [ + 'dawn', + 'day', + 'dusk', + 'night', +] as const + +export const INVITE_THEMES: Record = { + dawn: { + key: 'dawn', + swatch: '#ff6dbe', + light: { + qrPrimary: '#ff6dbe', + gradientFrom: '#a8ccff', + gradientTo: '#ff6dbe', + shadowColor: '#ff6dbe', + handleColor: '#ffffff', + }, + dark: { + qrPrimary: '#ff6dbe', + gradientFrom: '#a8ccff', + gradientTo: '#ff6dbe', + shadowColor: '#ff6dbe', + handleColor: '#ffffff', + }, + }, + day: { + key: 'day', + swatch: '#006aff', + light: { + qrPrimary: '#006aff', + gradientFrom: '#006aff', + gradientTo: '#75afff', + shadowColor: '#006aff', + handleColor: '#ffffff', + }, + dark: { + qrPrimary: '#006aff', + gradientFrom: '#006aff', + gradientTo: '#75afff', + shadowColor: '#006aff', + handleColor: '#ffffff', + }, + }, + dusk: { + key: 'dusk', + swatch: '#f88f47', + light: { + qrPrimary: '#f88f47', + gradientFrom: '#f88f47', + gradientTo: '#b15aa2', + shadowColor: '#f88f47', + handleColor: '#ffffff', + }, + dark: { + qrPrimary: '#f88f47', + gradientFrom: '#f88f47', + gradientTo: '#b15aa2', + shadowColor: '#f88f47', + handleColor: '#ffffff', + }, + }, + night: { + key: 'night', + swatch: '#0048ad', + light: { + qrPrimary: '#0048ad', + gradientFrom: '#0048ad', + gradientTo: '#001533', + shadowColor: '#001533', + handleColor: '#ffffff', + }, + dark: { + qrPrimary: '#0048ad', + gradientFrom: '#0048ad', + gradientTo: '#001533', + shadowColor: '#001533', + handleColor: '#ffffff', + }, + }, +} + +export function getInviteTheme(key: InviteThemeKey): InviteTheme { + return INVITE_THEMES[key] ?? INVITE_THEMES.day +} diff --git a/src/features/inviteFriends/urls.test.ts b/src/features/inviteFriends/urls.test.ts new file mode 100644 index 0000000000..e24c3ca1cc --- /dev/null +++ b/src/features/inviteFriends/urls.test.ts @@ -0,0 +1,71 @@ +import {describe, expect, it} from '@jest/globals' + +import {getInviteDisplayUrl, getInviteShareUrl} from './urls' + +describe('invite URLs', () => { + describe('getInviteShareUrl', () => { + it('returns the canonical profile URL for a handle', () => { + expect(getInviteShareUrl('alice.bsky.social')).toBe( + 'https://bsky.app/profile/alice.bsky.social', + ) + }) + + it('preserves custom domains', () => { + expect(getInviteShareUrl('thepope.dev')).toBe( + 'https://bsky.app/profile/thepope.dev', + ) + }) + + it('strips a leading @ if present', () => { + expect(getInviteShareUrl('@alice.bsky.social')).toBe( + 'https://bsky.app/profile/alice.bsky.social', + ) + }) + + it('passes the handle through verbatim (handles are API-normalized, like makeProfileLink)', () => { + expect(getInviteShareUrl('Alice.Bsky.Social')).toBe( + 'https://bsky.app/profile/Alice.Bsky.Social', + ) + }) + + it('returns empty string for empty handle (EDGE-001)', () => { + expect(getInviteShareUrl('')).toBe('') + expect(getInviteShareUrl('@')).toBe('') + }) + }) + + describe('getInviteDisplayUrl', () => { + it('returns the scheme-stripped canonical profile URL', () => { + expect(getInviteDisplayUrl('danielle.bsky.team')).toBe( + 'bsky.app/profile/danielle.bsky.team', + ) + }) + + it('uses the bare handle when there is no dot', () => { + expect(getInviteDisplayUrl('alice')).toBe('bsky.app/profile/alice') + }) + + it('passes the handle through verbatim (handles are API-normalized, like makeProfileLink)', () => { + expect(getInviteDisplayUrl('Danielle.bsky.team')).toBe( + 'bsky.app/profile/Danielle.bsky.team', + ) + }) + + it('strips a leading @ if present', () => { + expect(getInviteDisplayUrl('@alice.bsky.social')).toBe( + 'bsky.app/profile/alice.bsky.social', + ) + }) + + it('returns empty string for empty handle (EDGE-001)', () => { + expect(getInviteDisplayUrl('')).toBe('') + expect(getInviteDisplayUrl('@')).toBe('') + }) + + it('mirrors getInviteShareUrl exactly minus the scheme', () => { + expect(getInviteDisplayUrl('alice.bsky.social')).toBe( + getInviteShareUrl('alice.bsky.social').replace(/^https:\/\//, ''), + ) + }) + }) +}) diff --git a/src/features/inviteFriends/urls.ts b/src/features/inviteFriends/urls.ts new file mode 100644 index 0000000000..7a22b8faf4 --- /dev/null +++ b/src/features/inviteFriends/urls.ts @@ -0,0 +1,31 @@ +/** + * URL helpers for the Invite Friends share sheet (APP-2142). + * + * Every action (QR payload, share sheet, clipboard) and the displayed label + * all derive from the same canonical `https://bsky.app/profile/{handle}` URL, + * so what the user reads matches exactly what they copy/share. The displayed + * label simply drops the `https://` scheme for readability. + * + * Kept as a dependency-free leaf module (no #/lib/strings/url-helpers import) + * so its unit tests stay fast and isolated from the heavy @atproto/api graph. + */ + +function stripLeadingAt(handle: string): string { + return handle.startsWith('@') ? handle.slice(1) : handle +} + +/** Canonical URL - used for QR payload, Share, and Copy. Empty handle -> empty string. */ +export function getInviteShareUrl(handle: string): string { + const bare = stripLeadingAt(handle) + if (!bare) return '' + return `https://bsky.app/profile/${bare}` +} + +/** + * Human-readable label shown in the "Invite link" field. This is the same + * canonical URL as getInviteShareUrl with the `https://` scheme stripped, so + * the displayed text always resolves and matches what Copy/Share use. + */ +export function getInviteDisplayUrl(handle: string): string { + return getInviteShareUrl(handle).replace(/^https:\/\//, '') +} diff --git a/src/lib/api/feed/author.ts b/src/lib/api/feed/author.ts index cc19f0f7a1..3b97b8ef73 100644 --- a/src/lib/api/feed/author.ts +++ b/src/lib/api/feed/author.ts @@ -1,20 +1,20 @@ import { AppBskyFeedDefs, type AppBskyFeedGetAuthorFeed as GetAuthorFeed, - type BskyAgent, + type AtpAgent, } from '@atproto/api' import {type FeedAPI, type FeedAPIResponse} from './types' export class AuthorFeedAPI implements FeedAPI { - agent: BskyAgent + agent: AtpAgent _params: GetAuthorFeed.QueryParams constructor({ agent, feedParams, }: { - agent: BskyAgent + agent: AtpAgent feedParams: GetAuthorFeed.QueryParams }) { this.agent = agent diff --git a/src/lib/api/feed/custom.ts b/src/lib/api/feed/custom.ts index 18bb8c8f07..54d9dc9067 100644 --- a/src/lib/api/feed/custom.ts +++ b/src/lib/api/feed/custom.ts @@ -1,7 +1,7 @@ import { type AppBskyFeedDefs, type AppBskyFeedGetFeed as GetCustomFeed, - BskyAgent, + AtpAgent, jsonStringToLex, } from '@atproto/api' @@ -13,7 +13,7 @@ import {type FeedAPI, type FeedAPIResponse} from './types' import {createBskyTopicsHeader, isBlueskyOwnedFeed} from './utils' export class CustomFeedAPI implements FeedAPI { - agent: BskyAgent + agent: AtpAgent params: GetCustomFeed.QueryParams userInterests?: string @@ -22,7 +22,7 @@ export class CustomFeedAPI implements FeedAPI { feedParams, userInterests, }: { - agent: BskyAgent + agent: AtpAgent feedParams: GetCustomFeed.QueryParams userInterests?: string }) { @@ -113,7 +113,7 @@ async function loggedOutFetch({ * @see https://github.com/bluesky-social/atproto/blob/60df3fc652b00cdff71dd9235d98a7a4bb828f05/packages/api/src/agent.ts#L120 */ const labelersHeader = { - 'atproto-accept-labelers': BskyAgent.appLabelers + 'atproto-accept-labelers': AtpAgent.appLabelers .map(l => `${l};redact`) .join(', '), } diff --git a/src/lib/api/feed/demo.ts b/src/lib/api/feed/demo.ts index 049e0f116e..42d1046bdc 100644 --- a/src/lib/api/feed/demo.ts +++ b/src/lib/api/feed/demo.ts @@ -1,12 +1,12 @@ -import {type AppBskyFeedDefs, type BskyAgent} from '@atproto/api' +import {type AppBskyFeedDefs, type AtpAgent} from '@atproto/api' import {DEMO_FEED} from '#/lib/demo' import {type FeedAPI, type FeedAPIResponse} from './types' export class DemoFeedAPI implements FeedAPI { - agent: BskyAgent + agent: AtpAgent - constructor({agent}: {agent: BskyAgent}) { + constructor({agent}: {agent: AtpAgent}) { this.agent = agent } diff --git a/src/lib/api/feed/following.ts b/src/lib/api/feed/following.ts index 26de7f8a07..17e96d8e1b 100644 --- a/src/lib/api/feed/following.ts +++ b/src/lib/api/feed/following.ts @@ -1,11 +1,11 @@ -import {type AppBskyFeedDefs, type BskyAgent} from '@atproto/api' +import {type AppBskyFeedDefs, type AtpAgent} from '@atproto/api' import {type FeedAPI, type FeedAPIResponse} from './types' export class FollowingFeedAPI implements FeedAPI { - agent: BskyAgent + agent: AtpAgent - constructor({agent}: {agent: BskyAgent}) { + constructor({agent}: {agent: AtpAgent}) { this.agent = agent } diff --git a/src/lib/api/feed/home.ts b/src/lib/api/feed/home.ts index 7a0d72d915..aa13c70bf0 100644 --- a/src/lib/api/feed/home.ts +++ b/src/lib/api/feed/home.ts @@ -1,4 +1,4 @@ -import {type AppBskyFeedDefs, type BskyAgent} from '@atproto/api' +import {type AppBskyFeedDefs, type AtpAgent} from '@atproto/api' import {PROD_DEFAULT_FEED} from '#/lib/constants' import {CustomFeedAPI} from './custom' @@ -27,7 +27,7 @@ export const FALLBACK_MARKER_POST: AppBskyFeedDefs.FeedViewPost = { } export class HomeFeedAPI implements FeedAPI { - agent: BskyAgent + agent: AtpAgent following: FollowingFeedAPI discover: CustomFeedAPI usingDiscover = false @@ -39,7 +39,7 @@ export class HomeFeedAPI implements FeedAPI { agent, }: { userInterests?: string - agent: BskyAgent + agent: AtpAgent }) { this.agent = agent this.following = new FollowingFeedAPI({agent}) diff --git a/src/lib/api/feed/likes.ts b/src/lib/api/feed/likes.ts index c970fa72fb..1511dc833a 100644 --- a/src/lib/api/feed/likes.ts +++ b/src/lib/api/feed/likes.ts @@ -1,20 +1,20 @@ import { type AppBskyFeedDefs, type AppBskyFeedGetActorLikes as GetActorLikes, - type BskyAgent, + type AtpAgent, } from '@atproto/api' import {type FeedAPI, type FeedAPIResponse} from './types' export class LikesFeedAPI implements FeedAPI { - agent: BskyAgent + agent: AtpAgent params: GetActorLikes.QueryParams constructor({ agent, feedParams, }: { - agent: BskyAgent + agent: AtpAgent feedParams: GetActorLikes.QueryParams }) { this.agent = agent diff --git a/src/lib/api/feed/merge.ts b/src/lib/api/feed/merge.ts index b3f9575dee..c341dd53a0 100644 --- a/src/lib/api/feed/merge.ts +++ b/src/lib/api/feed/merge.ts @@ -1,7 +1,7 @@ import { type AppBskyFeedDefs, type AppBskyFeedGetTimeline, - type BskyAgent, + type AtpAgent, } from '@atproto/api' import shuffle from 'lodash.shuffle' @@ -24,7 +24,7 @@ const POST_AGE_CUTOFF = 60e3 * 60 * 24 // 24hours export class MergeFeedAPI implements FeedAPI { userInterests?: string - agent: BskyAgent + agent: AtpAgent params: FeedParams feedTuners: FeedTunerFn[] following: MergeFeedSource_Following @@ -39,7 +39,7 @@ export class MergeFeedAPI implements FeedAPI { feedTuners, userInterests, }: { - agent: BskyAgent + agent: AtpAgent feedParams: FeedParams feedTuners: FeedTunerFn[] userInterests?: string @@ -175,7 +175,7 @@ export class MergeFeedAPI implements FeedAPI { } class MergeFeedSource { - agent: BskyAgent + agent: AtpAgent feedTuners: FeedTunerFn[] sourceInfo: ReasonFeedSource | undefined cursor: string | undefined = undefined @@ -186,7 +186,7 @@ class MergeFeedSource { agent, feedTuners, }: { - agent: BskyAgent + agent: AtpAgent feedTuners: FeedTunerFn[] }) { this.agent = agent @@ -253,7 +253,7 @@ class MergeFeedSource_Following extends MergeFeedSource { } class MergeFeedSource_Custom extends MergeFeedSource { - agent: BskyAgent + agent: AtpAgent minDate: Date feedUri: string userInterests?: string @@ -264,7 +264,7 @@ class MergeFeedSource_Custom extends MergeFeedSource { feedTuners, userInterests, }: { - agent: BskyAgent + agent: AtpAgent feedUri: string feedTuners: FeedTunerFn[] userInterests?: string diff --git a/src/lib/api/index.ts b/src/lib/api/index.ts index d9a026ca83..5a278aeba4 100644 --- a/src/lib/api/index.ts +++ b/src/lib/api/index.ts @@ -1,13 +1,15 @@ import { type $Typed, type AppBskyEmbedExternal, + type AppBskyEmbedGallery, type AppBskyEmbedImages, type AppBskyEmbedRecord, type AppBskyEmbedRecordWithMedia, type AppBskyEmbedVideo, AppBskyFeedPost, + type AtpAgent, BlobRef, - type BskyAgent, + ChatBskyGroupDefs, type ComAtprotoLabelDefs, type ComAtprotoRepoApplyWrites, type ComAtprotoRepoStrongRef, @@ -21,6 +23,7 @@ import {sha256} from 'js-sha256' import {CID} from 'multiformats/cid' import * as Hasher from 'multiformats/hashes/hasher' +import {IMAGE_SIZE_CONFIG_POSTS} from '#/lib/constants' import {isNetworkError} from '#/lib/strings/errors' import {shortenLinks, stripInvalidMentions} from '#/lib/strings/rich-text-manip' import {logger} from '#/logger' @@ -52,7 +55,7 @@ interface PostOpts { } export async function post( - agent: BskyAgent, + agent: AtpAgent, queryClient: QueryClient, opts: PostOpts, ) { @@ -177,7 +180,8 @@ export async function post( writes: writes, validate: true, }) - } catch (e: any) { + } catch (err) { + const e = err as Error logger.error(`Failed to create post`, { safeMessage: e.message, }) @@ -193,7 +197,7 @@ export async function post( return {uris} } -async function resolveRT(agent: BskyAgent, richtext: RichText) { +async function resolveRT(agent: AtpAgent, richtext: RichText) { const trimmedText = richtext.text // Trim leading whitespace-only lines (but don't break ASCII art). .replace(/^(\s*\n)+/, '') @@ -213,7 +217,7 @@ export class ReplyDeletedError extends Error { } } -async function resolveReply(agent: BskyAgent, replyTo: string) { +async function resolveReply(agent: AtpAgent, replyTo: string) { const {data} = await agent.app.bsky.feed.getPosts({ uris: [replyTo], }) @@ -246,12 +250,13 @@ async function resolveReply(agent: BskyAgent, replyTo: string) { } async function resolveEmbed( - agent: BskyAgent, + agent: AtpAgent, queryClient: QueryClient, draft: PostDraft, onStateChange: ((state: string) => void) | undefined, ): Promise< | $Typed + | $Typed | $Typed | $Typed | $Typed @@ -304,13 +309,14 @@ async function resolveEmbed( } async function resolveMedia( - agent: BskyAgent, + agent: AtpAgent, queryClient: QueryClient, embedDraft: EmbedDraft, onStateChange: ((state: string) => void) | undefined, ): Promise< | $Typed | $Typed + | $Typed | $Typed | undefined > { @@ -323,7 +329,10 @@ async function resolveMedia( const images: AppBskyEmbedImages.Image[] = await Promise.all( imagesDraft.map(async (image, i) => { logger.debug(`Compressing image #${i}`) - const {path, width, height, mime} = await compressImage(image) + const {path, width, height, mime} = await compressImage( + image, + IMAGE_SIZE_CONFIG_POSTS, + ) logger.debug(`Uploading image #${i}`) const res = await uploadBlob(agent, path, mime) return { @@ -338,6 +347,34 @@ async function resolveMedia( images, } } + if (embedDraft.media?.type === 'gallery') { + const imagesDraft = embedDraft.media.images + logger.debug(`Uploading images`, { + count: imagesDraft.length, + }) + onStateChange?.(t`Uploading images...`) + const items: $Typed[] = await Promise.all( + imagesDraft.map(async (image, i) => { + logger.debug(`Compressing image #${i}`) + const {path, width, height, mime} = await compressImage( + image, + IMAGE_SIZE_CONFIG_POSTS, + ) + logger.debug(`Uploading image #${i}`) + const res = await uploadBlob(agent, path, mime) + return { + $type: 'app.bsky.embed.gallery#image' as const, + image: res.data.blob, + alt: image.alt, + aspectRatio: {width, height}, + } + }), + ) + return { + $type: 'app.bsky.embed.gallery', + items, + } + } if ( embedDraft.media?.type === 'video' && embedDraft.media.video.status === 'done' @@ -427,12 +464,25 @@ async function resolveMedia( }, } } + if ( + resolvedLink.type === 'chat-invite' && + ChatBskyGroupDefs.isJoinLinkPreviewView(resolvedLink.view) + ) { + return { + $type: 'app.bsky.embed.external', + external: { + uri: resolvedLink.uri, + title: resolvedLink.view.name, + description: `${resolvedLink.view.memberCount}/${resolvedLink.view.memberLimit}`, + }, + } + } } return undefined } async function resolveRecord( - agent: BskyAgent, + agent: AtpAgent, queryClient: QueryClient, uri: string, ): Promise { @@ -470,6 +520,7 @@ async function computeCid(record: AppBskyFeedPost.Record): Promise { } // Returns a transformed version of the object for use in DAG-CBOR. +// eslint-disable-next-line @typescript-eslint/no-explicit-any function prepareForHashing(v: any): any { // IMPORTANT: BlobRef#ipld() returns the correct object we need for hashing, // the API client will convert this for you but we're hashing in the client, @@ -492,9 +543,10 @@ function prepareForHashing(v: any): any { // Walk through plain objects if (isPlainObject(v)) { - const obj: any = {} + const obj: Record = {} let pure = true for (const key in v) { + // eslint-disable-next-line @typescript-eslint/no-unsafe-member-access let value = v[key] // `value` is undefined if (value === undefined) { @@ -513,6 +565,7 @@ function prepareForHashing(v: any): any { return v } +// eslint-disable-next-line @typescript-eslint/no-explicit-any function isPlainObject(v: any): boolean { if (typeof v !== 'object' || v === null) { return false diff --git a/src/lib/api/resolve.ts b/src/lib/api/resolve.ts index f75cd74db2..476c0f1a20 100644 --- a/src/lib/api/resolve.ts +++ b/src/lib/api/resolve.ts @@ -1,12 +1,12 @@ import { type AppBskyFeedDefs, type AppBskyGraphDefs, - type BskyAgent, + type AtpAgent, type ComAtprotoRepoStrongRef, } from '@atproto/api' import {AtUri} from '@atproto/api' -import {POST_IMG_MAX} from '#/lib/constants' +import {DM_SERVICE_HEADERS, IMAGE_SIZE_CONFIG_2K_1MB} from '#/lib/constants' import {getLinkMeta, type LinkMeta} from '#/lib/link-meta/link-meta' import {resolveShortLink} from '#/lib/link-meta/resolve-short-link' import {downloadAndResize} from '#/lib/media/manip' @@ -16,6 +16,7 @@ import { } from '#/lib/strings/starter-pack' import { convertBskyAppUrlIfNeeded, + getChatInviteCodeFromUrl, isBskyCustomFeedUrl, isBskyListUrl, isBskyPostUrl, @@ -26,6 +27,7 @@ import { } from '#/lib/strings/url-helpers' import {type ComposerImage} from '#/state/gallery' import {createComposerImage} from '#/state/gallery' +import {type ChatInvitePreview} from '#/state/queries/join-links' import {type Gif} from '#/features/gifPicker/types' import {createGIFDescription} from '../gif-alt-text' @@ -71,12 +73,20 @@ type ResolvedStarterPackRecord = { view: AppBskyGraphDefs.StarterPackView } +type ResolvedChatInvite = { + type: 'chat-invite' + uri: string + code: string + view?: ChatInvitePreview +} + export type ResolvedLink = | ResolvedExternalLink | ResolvedPostRecord | ResolvedFeedRecord | ResolvedListRecord | ResolvedStarterPackRecord + | ResolvedChatInvite export class EmbeddingDisabledError extends Error { constructor() { @@ -85,7 +95,7 @@ export class EmbeddingDisabledError extends Error { } export async function resolveLink( - agent: BskyAgent, + agent: AtpAgent, uri: string, ): Promise { if (isShortLink(uri)) { @@ -141,6 +151,19 @@ export async function resolveLink( view: res.data.list, } } + const chatInviteCode = getChatInviteCodeFromUrl(uri) + if (chatInviteCode) { + const res = await agent.chat.bsky.group.getJoinLinkPreviews( + {codes: [chatInviteCode]}, + {headers: DM_SERVICE_HEADERS}, + ) + return { + type: 'chat-invite', + uri, + code: chatInviteCode, + view: res.data.joinLinkPreviews[0], + } + } if (isBskyStartUrl(uri) || isBskyStarterPackUrl(uri)) { const parsed = parseStarterPackUri(uri) if (!parsed) { @@ -194,7 +217,7 @@ export async function resolveLink( } export async function resolveGif( - agent: BskyAgent, + agent: AtpAgent, gif: Gif, ): Promise { const gifUrl = gif.media_formats.gif.url @@ -236,7 +259,7 @@ function getFileSlug(url: string | undefined): string | undefined { } async function resolveExternal( - agent: BskyAgent, + agent: AtpAgent, uri: string, ): Promise { const result = await getLinkMeta(agent, uri) @@ -261,10 +284,7 @@ export async function imageToThumb( try { const img = await downloadAndResize({ uri: imageUri, - width: POST_IMG_MAX.width, - height: POST_IMG_MAX.height, - mode: 'contain', - maxSize: POST_IMG_MAX.size, + ...IMAGE_SIZE_CONFIG_2K_1MB, timeout: 15e3, }) if (img) { diff --git a/src/lib/api/upload-blob.ts b/src/lib/api/upload-blob.ts index 260ba770b8..0bee39b9b1 100644 --- a/src/lib/api/upload-blob.ts +++ b/src/lib/api/upload-blob.ts @@ -1,5 +1,5 @@ import {copyAsync} from 'expo-file-system/legacy' -import {type BskyAgent, type ComAtprotoRepoUploadBlob} from '@atproto/api' +import {type AtpAgent, type ComAtprotoRepoUploadBlob} from '@atproto/api' import {safeDeleteAsync} from '#/lib/media/manip' @@ -7,7 +7,7 @@ import {safeDeleteAsync} from '#/lib/media/manip' * @param encoding Allows overriding the blob's type */ export async function uploadBlob( - agent: BskyAgent, + agent: AtpAgent, input: string | Blob, encoding?: string, ): Promise { diff --git a/src/lib/api/upload-blob.web.ts b/src/lib/api/upload-blob.web.ts index 9f21be5670..d74e834647 100644 --- a/src/lib/api/upload-blob.web.ts +++ b/src/lib/api/upload-blob.web.ts @@ -1,4 +1,4 @@ -import {type BskyAgent, type ComAtprotoRepoUploadBlob} from '@atproto/api' +import {type AtpAgent, type ComAtprotoRepoUploadBlob} from '@atproto/api' /** * @note It is recommended, on web, to use the `file` instance of the file @@ -7,7 +7,7 @@ import {type BskyAgent, type ComAtprotoRepoUploadBlob} from '@atproto/api' * be passed directly to this function. */ export async function uploadBlob( - agent: BskyAgent, + agent: AtpAgent, input: string | Blob, encoding?: string, ): Promise { diff --git a/src/lib/constants.ts b/src/lib/constants.ts index a22700f880..91d1319c6b 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -67,6 +67,8 @@ export const MAX_DRAFT_GRAPHEME_LENGTH = 1000 export const MAX_DM_GRAPHEME_LENGTH = 1000 +export const MAX_GROUP_NAME_GRAPHEME_LENGTH = 50 + // Recommended is 100 per: https://www.w3.org/WAI/GL/WCAG20/tests/test3.html // but increasing limit per user feedback export const MAX_ALT_TEXT = 2000 @@ -97,10 +99,14 @@ export const STAGING_FEEDS = [ `feedgen|${STAGING_DEFAULT_FEED('thevids')}`, ] -export const POST_IMG_MAX = { - width: 2000, - height: 2000, - size: 1000000, +export const IMAGE_SIZE_CONFIG_POSTS = { + maxDimension: 4000, + maxSize: 2000000, +} + +export const IMAGE_SIZE_CONFIG_2K_1MB = { + maxDimension: 2000, + maxSize: 1000000, } export const STAGING_LINK_META_PROXY = diff --git a/src/lib/generate-starterpack.ts b/src/lib/generate-starterpack.ts index 1f4265a17e..a53e95a6a3 100644 --- a/src/lib/generate-starterpack.ts +++ b/src/lib/generate-starterpack.ts @@ -2,7 +2,7 @@ import { type $Typed, type AppBskyActorDefs, type AppBskyGraphGetStarterPack, - type BskyAgent, + type AtpAgent, type ComAtprotoRepoApplyWrites, type Facet, } from '@atproto/api' @@ -28,7 +28,7 @@ export const createStarterPackList = async ({ description?: string descriptionFacets?: Facet[] profiles: bsky.profile.AnyProfileView[] - agent: BskyAgent + agent: AtpAgent }): Promise<{uri: string; cid: string}> => { if (profiles.length === 0) throw new Error('No profiles given') @@ -152,7 +152,7 @@ function createListItem({ } async function whenAppViewReady( - agent: BskyAgent, + agent: AtpAgent, uri: string, fn: (res?: AppBskyGraphGetStarterPack.Response) => boolean, ) { diff --git a/src/lib/hooks/useGoogleTranslate.ts b/src/lib/hooks/useGoogleTranslate.ts index 70f1637bd8..15bec91a26 100644 --- a/src/lib/hooks/useGoogleTranslate.ts +++ b/src/lib/hooks/useGoogleTranslate.ts @@ -50,10 +50,10 @@ export function useGoogleTranslate() { } catch (err) { if (__DEV__) console.error(err) // most likely means they don't have the translate app - await openLink(translateUrl) + openLink(translateUrl) } } else { - await openLink(translateUrl) + openLink(translateUrl) } }, [openLink], diff --git a/src/lib/hooks/useNotificationHandler.ts b/src/lib/hooks/useNotificationHandler.ts index 65332dea0b..9621cafc88 100644 --- a/src/lib/hooks/useNotificationHandler.ts +++ b/src/lib/hooks/useNotificationHandler.ts @@ -380,6 +380,18 @@ export function useNotificationsHandler() { handleNotification(payload) Notifications.dismissAllNotificationsAsync() + // Also clear the native `lastResponse` cache. Otherwise a subsequent + // `getLastNotificationResponse()` (e.g. on an account-switch remount, + // which re-runs `handlePushNotificationEntry`) would replay this + // payload and ping-pong the user back to the previous account/chat. + try { + Notifications.clearLastNotificationResponse() + } catch (error) { + notyLogger.error( + `useNotificationsHandler: error clearing notification response`, + {error}, + ) + } } else { logger.error('useNotificationsHandler: received no payload', { identifier: e.notification.request.identifier, diff --git a/src/lib/hooks/useOpenLink.ts b/src/lib/hooks/useOpenLink.ts index 9c6e75ecb8..4fb9c6d7cc 100644 --- a/src/lib/hooks/useOpenLink.ts +++ b/src/lib/hooks/useOpenLink.ts @@ -26,7 +26,7 @@ export function useOpenLink() { const {inAppBrowserConsentControl} = useGlobalDialogsControlContext() const openLink = useCallback( - async (url: string, override?: boolean, shouldProxy?: boolean) => { + (url: string, override?: boolean, shouldProxy?: boolean) => { if (isBskyRSSUrl(url) && isRelativeUrl(url)) { url = createBskyAppAbsoluteUrl(url) } @@ -66,12 +66,12 @@ export function useOpenLink() { }).catch(err => { if (__DEV__) logger.error('Could not open web browser', {message: err}) - Linking.openURL(url) + void Linking.openURL(url) }) return } } - Linking.openURL(url) + void Linking.openURL(url) }, [ax, enabled, inAppBrowserConsentControl, t, dialogContext], ) diff --git a/src/lib/link-meta/link-meta.ts b/src/lib/link-meta/link-meta.ts index e72bab9f01..c282a0c4c3 100644 --- a/src/lib/link-meta/link-meta.ts +++ b/src/lib/link-meta/link-meta.ts @@ -1,4 +1,4 @@ -import {type AppBskyEmbedExternal, type BskyAgent} from '@atproto/api' +import {type AppBskyEmbedExternal, type AtpAgent} from '@atproto/api' import {LINK_META_PROXY} from '#/lib/constants' import {getGiphyMetaUri} from '#/lib/strings/embed-player' @@ -31,7 +31,7 @@ export interface LinkMeta { } export async function getLinkMeta( - agent: BskyAgent, + agent: AtpAgent, url: string, timeout = 15e3, ): Promise { diff --git a/src/lib/media/manip.ts b/src/lib/media/manip.ts index 2be799e261..84ab65af92 100644 --- a/src/lib/media/manip.ts +++ b/src/lib/media/manip.ts @@ -16,24 +16,21 @@ import {manipulateAsync, SaveFormat} from 'expo-image-manipulator' import * as MediaLibrary from 'expo-media-library' import * as Sharing from 'expo-sharing' -import {POST_IMG_MAX} from '#/lib/constants' import {logger} from '#/logger' import {IS_ANDROID, IS_IOS} from '#/env' import {type PickerImage} from './picker.shared' import {type Dimensions} from './types' -import {convertCdnPreset} from './util' +import {convertCdnPreset, getResizedDimensions} from './util' export async function compressIfNeeded( img: PickerImage, - maxSize: number = POST_IMG_MAX.size, + {maxDimension, maxSize}: {maxDimension: number; maxSize: number}, ): Promise { if (img.size < maxSize) { return img } const resizedImage = await doResize(normalizePath(img.path), { - width: img.width, - height: img.height, - mode: 'stretch', + maxDimension, maxSize, }) const finalImageMovedPath = await moveToPermanentPath( @@ -49,9 +46,7 @@ export async function compressIfNeeded( export interface DownloadAndResizeOpts { uri: string - width: number - height: number - mode: 'contain' | 'cover' | 'stretch' + maxDimension: number maxSize: number timeout: number } @@ -67,7 +62,10 @@ export async function downloadAndResize(opts: DownloadAndResizeOpts) { const path = await downloadImage(opts.uri, String(uuid.v4()), opts.timeout) try { - return await doResize(path, opts) + return await doResize(path, { + maxDimension: opts.maxDimension, + maxSize: opts.maxSize, + }) } finally { void safeDeleteAsync(path) } @@ -188,9 +186,7 @@ export function getImageDim(path: string): Promise { // = interface DoResizeOpts { - width: number - height: number - mode: 'contain' | 'cover' | 'stretch' + maxDimension: number maxSize: number } @@ -204,10 +200,13 @@ async function doResize( // Performing an "empty" manipulation lets us get the dimensions of the original image. React Native's Image.getSize() // does not work for local files... const imageRes = await manipulateAsync(localUri, [], {}) - const newDimensions = getResizedDimensions({ - width: imageRes.width, - height: imageRes.height, - }) + const newDimensions = getResizedDimensions( + { + width: imageRes.width, + height: imageRes.height, + }, + opts.maxDimension, + ) let minQualityPercentage = 0 let maxQualityPercentage = 101 // exclusive @@ -388,28 +387,6 @@ async function withTempFile( } } -export function getResizedDimensions(originalDims: { - width: number - height: number -}) { - if ( - originalDims.width <= POST_IMG_MAX.width && - originalDims.height <= POST_IMG_MAX.height - ) { - return originalDims - } - - const ratio = Math.min( - POST_IMG_MAX.width / originalDims.width, - POST_IMG_MAX.height / originalDims.height, - ) - - return { - width: Math.round(originalDims.width * ratio), - height: Math.round(originalDims.height * ratio), - } -} - async function downloadImage(uri: string, destName: string, timeout: number) { // Download to a temp path first, then rename with the correct extension // based on the response's mimeType. diff --git a/src/lib/media/manip.web.ts b/src/lib/media/manip.web.ts index 8fa2b6a4fa..94732687ef 100644 --- a/src/lib/media/manip.web.ts +++ b/src/lib/media/manip.web.ts @@ -1,27 +1,28 @@ import {type PickerImage} from './picker.shared' import {type Dimensions} from './types' -import {blobToDataUri, convertCdnPreset, getDataUriSize} from './util' +import { + blobToDataUri, + convertCdnPreset, + getDataUriSize, + getResizedDimensions, +} from './util' export async function compressIfNeeded( img: PickerImage, - maxSize: number, + {maxDimension, maxSize}: {maxDimension: number; maxSize: number}, ): Promise { if (img.size < maxSize) { return img } return await doResize(img.path, { - width: img.width, - height: img.height, - mode: 'stretch', + maxDimension, maxSize, }) } export interface DownloadAndResizeOpts { uri: string - width: number - height: number - mode: 'contain' | 'cover' | 'stretch' + maxDimension: number maxSize: number timeout: number } @@ -34,7 +35,10 @@ export async function downloadAndResize(opts: DownloadAndResizeOpts) { clearTimeout(to) const dataUri = await blobToDataUri(resBody) - return await doResize(dataUri, opts) + return await doResize(dataUri, { + maxDimension: opts.maxDimension, + maxSize: opts.maxSize, + }) } export async function shareImageModal(_opts: {uri: string}) { @@ -70,9 +74,7 @@ export async function getImageDim(path: string): Promise { // = interface DoResizeOpts { - width: number - height: number - mode: 'contain' | 'cover' | 'stretch' + maxDimension: number maxSize: number } @@ -80,6 +82,9 @@ async function doResize( dataUri: string, opts: DoResizeOpts, ): Promise { + const sourceDims = await getImageDim(dataUri) + const newDimensions = getResizedDimensions(sourceDims, opts.maxDimension) + let newDataUri let minQualityPercentage = 0 @@ -90,10 +95,10 @@ async function doResize( (maxQualityPercentage + minQualityPercentage) / 2, ) const tempDataUri = await createResizedImage(dataUri, { - width: opts.width, - height: opts.height, + width: newDimensions.width, + height: newDimensions.height, quality: qualityPercentage / 100, - mode: opts.mode, + mode: 'contain', }) if (getDataUriSize(tempDataUri) < opts.maxSize) { @@ -111,8 +116,8 @@ async function doResize( path: newDataUri, mime: 'image/jpeg', size: getDataUriSize(newDataUri), - width: opts.width, - height: opts.height, + width: newDimensions.width, + height: newDimensions.height, } } diff --git a/src/lib/media/picker.e2e.tsx b/src/lib/media/picker.e2e.tsx index f01217d2a5..7aaa69c47d 100644 --- a/src/lib/media/picker.e2e.tsx +++ b/src/lib/media/picker.e2e.tsx @@ -8,6 +8,7 @@ import ExpoImageCropTool, { type OpenCropperOptions, } from '@bsky.app/expo-image-crop-tool' +import {IMAGE_SIZE_CONFIG_2K_1MB} from '#/lib/constants' import {compressIfNeeded} from './manip' import {type PickerImage} from './picker.shared' @@ -28,13 +29,16 @@ async function getFile() { throw new Error('Failed to get file info') } - return await compressIfNeeded({ - path: file, - mime: 'image/jpeg', - size: fileInfo.size, - width: 4288, - height: 2848, - }) + return await compressIfNeeded( + { + path: file, + mime: 'image/jpeg', + size: fileInfo.size, + width: 4288, + height: 2848, + }, + IMAGE_SIZE_CONFIG_2K_1MB, + ) } export async function openPicker(): Promise { diff --git a/src/lib/media/util.ts b/src/lib/media/util.ts index da0b306d4f..8db418f045 100644 --- a/src/lib/media/util.ts +++ b/src/lib/media/util.ts @@ -2,6 +2,31 @@ export function extractDataUriMime(uri: string): string { return uri.substring(uri.indexOf(':') + 1, uri.indexOf(';')) } +export function getResizedDimensions( + originalDims: { + width: number + height: number + }, + maxDimension: number, +) { + if ( + originalDims.width <= maxDimension && + originalDims.height <= maxDimension + ) { + return originalDims + } + + const ratio = Math.min( + maxDimension / originalDims.width, + maxDimension / originalDims.height, + ) + + return { + width: Math.round(originalDims.width * ratio), + height: Math.round(originalDims.height * ratio), + } +} + // Fairly accurate estimate that is more performant // than decoding and checking length of URI export function getDataUriSize(uri: string): number { diff --git a/src/lib/media/video/upload.shared.ts b/src/lib/media/video/upload.shared.ts index fd46e27868..f8aaa1249b 100644 --- a/src/lib/media/video/upload.shared.ts +++ b/src/lib/media/video/upload.shared.ts @@ -1,4 +1,4 @@ -import {type BskyAgent} from '@atproto/api' +import {type AtpAgent} from '@atproto/api' import {type I18n} from '@lingui/core' import {msg} from '@lingui/core/macro' @@ -13,7 +13,7 @@ export async function getServiceAuthToken({ lxm, exp, }: { - agent: BskyAgent + agent: AtpAgent aud?: string lxm: string exp?: number @@ -30,7 +30,7 @@ export async function getServiceAuthToken({ return serviceAuth.token } -export async function getVideoUploadLimits(agent: BskyAgent, i18n: I18n) { +export async function getVideoUploadLimits(agent: AtpAgent, i18n: I18n) { const token = await getServiceAuthToken({ agent, lxm: 'app.bsky.video.getUploadLimits', diff --git a/src/lib/media/video/upload.ts b/src/lib/media/video/upload.ts index 503577a76a..721ee7f94f 100644 --- a/src/lib/media/video/upload.ts +++ b/src/lib/media/video/upload.ts @@ -1,5 +1,5 @@ import {createUploadTask, FileSystemUploadType} from 'expo-file-system/legacy' -import {type AppBskyVideoDefs, type BskyAgent} from '@atproto/api' +import {type AppBskyVideoDefs, type AtpAgent} from '@atproto/api' import {type I18n} from '@lingui/core' import {msg} from '@lingui/core/macro' import {nanoid} from 'nanoid/non-secure' @@ -19,7 +19,7 @@ export async function uploadVideo({ i18n, }: { video: CompressedVideo - agent: BskyAgent + agent: AtpAgent did: string setProgress: (progress: number) => void signal: AbortSignal diff --git a/src/lib/media/video/upload.web.ts b/src/lib/media/video/upload.web.ts index 98d329a709..e88a04707c 100644 --- a/src/lib/media/video/upload.web.ts +++ b/src/lib/media/video/upload.web.ts @@ -1,4 +1,4 @@ -import {type AppBskyVideoDefs, type BskyAgent} from '@atproto/api' +import {type AppBskyVideoDefs, type AtpAgent} from '@atproto/api' import {type I18n} from '@lingui/core' import {msg} from '@lingui/core/macro' import {nanoid} from 'nanoid/non-secure' @@ -18,7 +18,7 @@ export async function uploadVideo({ i18n, }: { video: CompressedVideo - agent: BskyAgent + agent: AtpAgent did: string setProgress: (progress: number) => void signal: AbortSignal diff --git a/src/lib/moderation.ts b/src/lib/moderation.ts index 9b0ac0ea5f..2fb37009e2 100644 --- a/src/lib/moderation.ts +++ b/src/lib/moderation.ts @@ -1,7 +1,7 @@ import {useMemo} from 'react' import { type AppBskyLabelerDefs, - BskyAgent, + AtpAgent, type ComAtprotoLabelDefs, type InterpretedLabelValueDefinition, LABELS, @@ -91,9 +91,9 @@ export function isAppLabeler( | AppBskyLabelerDefs.LabelerViewDetailed, ): boolean { if (typeof labeler === 'string') { - return BskyAgent.appLabelers.includes(labeler) + return AtpAgent.appLabelers.includes(labeler) } - return BskyAgent.appLabelers.includes(labeler.creator.did) + return AtpAgent.appLabelers.includes(labeler.creator.did) } export function isLabelerSubscribed( diff --git a/src/lib/moderation/blocked-and-muted.ts b/src/lib/moderation/blocked-and-muted.ts index 9806ca83ad..c8cc8611ce 100644 --- a/src/lib/moderation/blocked-and-muted.ts +++ b/src/lib/moderation/blocked-and-muted.ts @@ -1,7 +1,7 @@ import type * as bsky from '#/types/bsky' export function isBlockedOrBlocking(profile: bsky.profile.AnyProfileView) { - return profile.viewer?.blockedBy || profile.viewer?.blocking + return Boolean(profile.viewer?.blockedBy || profile.viewer?.blocking) } export function isMuted(profile: bsky.profile.AnyProfileView) { diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index 22bb50572a..8996d2fed3 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -59,6 +59,7 @@ export type CommonNavigatorParams = { AboutSettings: undefined AppIconSettings: undefined FindContactsSettings: undefined + InviteScanner: undefined Search: {q?: string; tab?: 'user' | 'profile' | 'feed'} Hashtag: {tag: string; author?: string} Topic: {topic: string} @@ -109,7 +110,11 @@ export type MyProfileTabNavigatorParams = CommonNavigatorParams & { } export type MessagesTabNavigatorParams = CommonNavigatorParams & { - Messages: {pushToConversation?: string; animation?: 'push' | 'pop'} + Messages: { + pushToConversation?: string + pushToNewGroupChat?: boolean + animation?: 'push' | 'pop' + } } export type FlatNavigatorParams = CommonNavigatorParams & { @@ -117,7 +122,11 @@ export type FlatNavigatorParams = CommonNavigatorParams & { Search: {q?: string; tab?: 'user' | 'profile' | 'feed'} Feeds: undefined Notifications: undefined - Messages: {pushToConversation?: string; animation?: 'push' | 'pop'} + Messages: { + pushToConversation?: string + pushToNewGroupChat?: boolean + animation?: 'push' | 'pop' + } } export type AllNavigatorParams = CommonNavigatorParams & { @@ -130,7 +139,11 @@ export type AllNavigatorParams = CommonNavigatorParams & { Notifications: undefined MyProfileTab: undefined MessagesTab: undefined - Messages: {pushToConversation?: string; animation?: 'push' | 'pop'} + Messages: { + pushToConversation?: string + pushToNewGroupChat?: boolean + animation?: 'push' | 'pop' + } } // NOTE diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts index b5c278dacf..38d3d70813 100644 --- a/src/lib/strings/url-helpers.ts +++ b/src/lib/strings/url-helpers.ts @@ -1,5 +1,5 @@ import {AtUri} from '@atproto/api' -import psl from 'psl' +import {parse} from 'psl' import TLDs from 'tlds' import {BSKY_SERVICE} from '#/lib/constants' @@ -178,7 +178,8 @@ export function isBskyStarterPackUrl(url: string): boolean { return false } -export const CHAT_INVITE_CODE_REGEX = /^\/c\/([a-zA-Z0-9]{7,10})$/ +// Invite codes are 7 alphanumeric characters long, supporting up to 10 here to future-proof. +export const CHAT_INVITE_CODE_REGEX = /^\/chat\/([a-zA-Z0-9]{7,10})$/ export function getChatInviteCodeFromUrl(url: string): string | undefined { let pathname: string @@ -328,7 +329,7 @@ export function isPossiblyAUrl(str: string): boolean { } export function splitApexDomain(hostname: string): [string, string] { - const hostnamep = psl.parse(hostname) + const hostnamep = parse(hostname) if (hostnamep.error || !hostnamep.listed || !hostnamep.domain) { return ['', hostname] } diff --git a/src/locale/locales/an/messages.po b/src/locale/locales/an/messages.po index e97b4004c5..355a985252 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Aragonese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(tien conteniu incrustau)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# me-fa-goyo} other {# me-fa-goyos}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mes} other {# meses}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento no leyiu} other {# elementos no leyius}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>texto y etiquetas" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "avatar de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento no leyiu} other {# elementos no leyius}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} t'han seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorLink} y a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorLink} y a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} ha republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} s'han rechistrau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} t'ha seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} t'ha seguiu tamién" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} le ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} le ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} s'ha rechistrau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} t'han seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorName} y a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} y a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} les ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} han republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} mas} other {{formattedAuthorsCount} mas}} s'han rechistrau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} t'ha seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} tamién t'ha seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "A {firstAuthorName} le ha feito goyo la tuya canal personalizada" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} le ha feito goyo la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha republicau la tuya publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} s'ha rechistau con o tuyo paquet d'inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} seguindo" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "No se puede ninviar mensaches a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# elemento no leyiu} other {# elementos no leyius}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, y {2, plural, one {# atro} other {# atros}} s'in #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidors}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {me-fa-goyo} other {me-fa-goyos}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicacions}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} miembros" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accesibilidat" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Achustes d'accesibilidat" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Achustes d'accesibilidat" msgid "Account" msgstr "Cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Cuenta blocada" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Cuenta seguida" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Cuenta sacada de l'acceso rápido" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Cuenta desblocada" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Has deixau de seguir a esta cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Cuenta no silenciada" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Anyadir" @@ -999,8 +1094,8 @@ msgstr "Anyadir cuenta" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Anyadir texto alternativo (opcional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Anyadir una atra cuenta" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Anyadir una atra publicación" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Anyadir una atra clau" msgid "Add App Password" msgstr "Anyadir clau d'app" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Anyadir mas detalles (opcional)" @@ -1091,6 +1186,10 @@ msgstr "Anyadir chent" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Detalles adicionals (limite 300 carácters)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Toz" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Permite l'acceso a los tuyos mensaches directos" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Sesión ya iniciada como @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Texto alternativo" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Lo texto alternativo describe imáchens a usuarios ciegos u con baixa visión, y aduya a dar mas contexto a toz." @@ -1387,7 +1486,7 @@ msgstr "I ha habiu una error" msgid "An error occurred" msgstr "I ha habiu una error" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "I ha habiu una error en comprimir lo video." @@ -1421,7 +1520,8 @@ msgstr "I ha habiu una error mientres cargaba lo video. Per favor torne a intent msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "I ha habiu una error en alzar lo codigo QR!" @@ -1432,11 +1532,11 @@ msgstr "I ha habiu una error en alzar lo codigo QR!" msgid "An error occurred while trying to follow all" msgstr "I ha habiu una error mientres intentaba seguir a toz" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Un problema no incluyiu en estas opcions" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "I ha habiu un problema mientres intentaba ubrir lo chat." #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "I ha habiu un problema. Intenta de nuevo." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Claus de l'app" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Apelación ninviada" @@ -1632,14 +1740,14 @@ msgstr "Revisión d'a suspensión" msgid "Appeal Suspension" msgstr "Revisón d'a suspensión" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apelar esta decisión" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archivau dende {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Publicación archivada" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Yes seguro de querer borrar la clau d'aplicación \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Yes seguro que quiers eliminar este paquet d'inicio?" msgid "Are you sure you want to discard your changes?" msgstr "De seguro que quiers descartar los tuyos cambios?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Yes seguro que quiers deixar esta conversación? Los mensaches serán eliminaus pa tu, pero no pas pa l'atro participant." +#: src/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 "Yes seguro que deseyas sacar esto d'as tuyas canals?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Seguro que quiers eliminar esta publicación?" @@ -1724,8 +1838,8 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Desnudez artistica u no erotica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Autorreproducir videos y GIFs" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Dezaga" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Aniversario" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blocar" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blocar cuenta" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Blocar la cuenta?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blocar cuentas" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Blocar lista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "Blocar estas cuentas?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blocar usuario" @@ -1946,9 +2057,9 @@ msgstr "Blocar usuario" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blocar usuario" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blocau" @@ -1964,14 +2075,12 @@ msgstr "Blocau" msgid "Blocked accounts" msgstr "Cuentas blocadas" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentas blocadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Las cuentas blocadas no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza." @@ -1987,7 +2096,7 @@ msgstr "Si blocas un etiquetador encara podrán seguir aplicando etiquetas a la msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Lo bloqueyo ye publico. Si blocas una cuenta no podrán responder en os tuyos filos, mencionar-te ni interactuar con tu de garra traza." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Si blocas a etiquetador encara podrán seguir aplicando etiquetas a la tuya cuenta, pero privará que respondan en os tuyos filos, te mencionen u interactúen con tu de garra traza." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar l'autenticidat d'a data declarada." @@ -2029,7 +2138,7 @@ msgstr "Bluesky ye millor con amigos!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Condicions d'o servicio de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky triará un conchunto de cuentas recomendadas de personas en o su msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky no amostrará lo tuyo perfil u publicacions a usuarios que no haigan iniciau sesión. Ye posible que atras apps no respecten esta solicitut. Esto no fa que la tuya cuenta sía privada." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "Libros" 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" @@ -2137,24 +2254,34 @@ msgstr "Negocios" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Per {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Per <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "En crear una cuenta, acceptas los <0>Termins de Servicio." msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Camera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Camera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Camera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Camera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancelar" @@ -2248,9 +2384,9 @@ msgstr "Cancelar la reactivación y zarrar la sesión" msgid "Cancel search" msgstr "Cancelar busqueda" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "No se puede interactuar con un usuario blocau" @@ -2264,7 +2400,7 @@ msgstr "Subtítols (.vtt)" msgid "Captions & alt text" msgstr "Subtítols y texto alternativo" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Cambiar identificador" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Cambiar servicio de moderación" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Cambiar la razón d'o reporte" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Conversa" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciau" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Achustes de chat" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Configuración de chat" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciau" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Tría esta color como lo tuyo avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Fe clic pa reintentar mensache fallido" @@ -2594,28 +2745,30 @@ msgstr "Fe clic pa reintentar mensache fallido" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Fe clic pa reintentar mensache fallido" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Zarrar" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Zarrar dialogo activo" @@ -2647,6 +2800,10 @@ msgstr "Zarrar dialogo activo" msgid "Close alert" msgstr "Zarrar l'alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Zarrar lo calaixo inferior" @@ -2657,8 +2814,10 @@ msgstr "Zarrar lo calaixo inferior" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Zarrar finestra" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Zarrar la imachen" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Zarrar este dialogo" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Zarra l'alerta d'actualización de clau" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Comprimir la lista d'usuarios" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Comprimir la lista d'usuarios pa una notificación en particular" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Historietas" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices d'a comunidat" @@ -2740,12 +2915,12 @@ msgstr "Completa lo desafío" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Redactar una nueva publicación" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "Redactar la respuesta" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Comprimindo video..." @@ -2780,7 +2955,7 @@ msgstr "Configurau en <0>achustes de moderación." msgid "Confirm" msgstr "Confirmar" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contactar con soporte" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Conteniu y multimedia" msgid "Content and media" msgstr "Conteniu y multimedia" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Conteniu y multimedia" @@ -2889,7 +3064,7 @@ msgstr "Fondo d'o menú contextual, faga clic pa zarrar lo menú." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Continar filo..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Contina con o siguient paso" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversa eliminada" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversa eliminada" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada a lo portafuellas" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiau!" msgid "Copies build version to clipboard" msgstr "Copia la versión de construcción a lo portafuellas" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiar" @@ -2997,6 +3184,11 @@ msgstr "Copiar DID" msgid "Copy host" msgstr "Copiar host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Copia lo vinclo a la lista" msgid "Copy link to post" msgstr "Copiar lo vinclo a la publicación" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiar texto d'o mensache" @@ -3037,12 +3229,12 @@ msgstr "Copiar texto d'o mensache" msgid "Copy post at:// URI" msgstr "Copiar at:// URI d'a publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiar texto d'a publicación" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiar codigo QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica de dreitos d'autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "No s'ha puesto salir d'este chat " +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "No s'ha puesto cargar esta canal" @@ -3100,7 +3308,11 @@ msgstr "No s'ha puesto cargar esta canal" msgid "Could not load list" msgstr "No s'ha puesto cargar esta lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "No s'ha puesto silenciar lo chat" @@ -3108,11 +3320,19 @@ msgstr "No s'ha puesto silenciar lo chat" msgid "Could not process your video" msgstr "No s'ha puesto procesar lo tuyo video" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Crear" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Crea un paquet d'inicio" @@ -3174,13 +3394,14 @@ msgstr "Crea un paquet d'inicio pa yo" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Crea una cuenta" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Crea un avatar" @@ -3206,7 +3427,7 @@ msgstr "Crea un avatar" msgid "Create another" msgstr "Crea-ne unatro" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crear una cuenta nueva" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Crea un reporte de {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Creau {0}" @@ -3270,6 +3492,10 @@ msgstr "Lo creador ha estau blocau" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tema fosco" msgid "Date of birth" msgstr "Data de naixencia" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Per Defecto" msgid "Default icons" msgstr "Iconos per defecto" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Borrar la clau d'a app" msgid "Delete app password?" msgstr "Borrar la clau d'a app?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "Borrar lo rechistro de declaracion de conversa" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Borrar conversa" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Borrar pa yo" @@ -3399,11 +3633,11 @@ msgstr "Borrar pa yo" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Borrar mensache" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Borrar mensache pa yo" @@ -3411,9 +3645,9 @@ msgstr "Borrar mensache pa yo" msgid "Delete my account" msgstr "Borrar la mía cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Borrar una publicación" @@ -3430,17 +3664,17 @@ msgstr "Borrar paquet d'inicio?" msgid "Delete this list?" msgstr "Borrar esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Borrar esta publicación?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Eliminau" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Cuenta borrada" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Texto descriptivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Desvincular cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Desvincular publicación de la cita?" @@ -3507,13 +3741,13 @@ msgstr "Achustar quí puede interactuar con esta publicación" msgid "Dim" msgstr "Tenue" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Desactivar Correu 2FA" msgid "Disable haptic feedback" msgstr "Desactivar la retroalimentación haptica" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Desactivau" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar cambios?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Descartar la publicación?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Descubrir nuevas canals" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descartar" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Descartar error" @@ -3642,6 +3877,10 @@ msgstr "Amagar esta sección" 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" @@ -3673,7 +3912,7 @@ msgstr "No incluye desnudez." msgid "Domain verified!" msgstr "Dominio verificau!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Dople toque pa zarrar lo dialogo" @@ -3737,19 +3981,14 @@ msgstr "Dople toque pa zarrar lo dialogo" msgid "Double tap to like" msgstr "Toca dos vegadas pa indicar que te fa goyo" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Descargar Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Descargar fichero CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Descargar fichero CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Duración:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "p. eix. alicia" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editar avatar" @@ -3847,19 +4102,19 @@ msgstr "Editar avatar" msgid "Edit Feeds" msgstr "Editar canals" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editar la imachen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editar achustes d'interacción" @@ -3868,7 +4123,16 @@ msgstr "Editar achustes d'interacción" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar las mías noticias" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Personas" @@ -3912,12 +4171,12 @@ msgstr "Editar achustes d'interacción d'a publicación" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Editar lo perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editar lo perfil" @@ -3925,7 +4184,8 @@ msgstr "Editar lo perfil" msgid "Edit starter pack" msgstr "Editar paquet d'inicio" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Editar quí puede responder" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Edita lo tuyo paquet d'inicio" @@ -3971,7 +4231,7 @@ msgstr "Adreza de correu electronico" msgid "Email Resent" msgstr "Correu electronico reninviau" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Incrusta esta publicación en o tuyo puesto web. Simplament copia lo sig msgid "Embedded video player" msgstr "Reproductor de video incrustau" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Activar" @@ -4025,7 +4285,7 @@ msgstr "Activar conteniu adulto" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "Activar fichers multimedia externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Escribe una clau" msgid "Enter a word or tag" msgstr "Escribe una parola u etiqueta" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "Cambia a pantalla completa" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Toz" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Toz" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Toz" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Excluye a los usuarios que sigues" msgid "Exit fullscreen" msgstr "Salir de pantalla completa" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expandir lo texto alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expandir lista d'usuarios" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir u comprimir la publicación completa a la cual yes respondendo" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "Ixampla u reduce lo texto d'a publicación" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Uri esperada pa resolver un rechistro" @@ -4277,10 +4536,10 @@ msgstr "Fichers multimedia explicitos u potencialment perturbadors." msgid "Explicit sexual images." msgstr "Imáchens sexuals explicitas." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Fichers multimedia externos" @@ -4331,18 +4587,22 @@ msgstr "Fichers multimedia externos" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "No s'ha puesto cambiar l'identificador. Torna-lo a intentar." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "No s'ha puesto crear una clau d'aplicación. Torna-lo a intentar." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Error en crear lo paquet d'inicio" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Error en eliminar lo mensache" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Error en eliminar la publicación, per favor intenta-lo de nuevo" @@ -4394,24 +4655,24 @@ msgstr "Error en eliminar la publicación, per favor intenta-lo de nuevo" msgid "Failed to delete starter pack" msgstr "Error en eliminar lo paquet d'inicio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Error en cargar las preferencias de canals" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Error en cargar las canals sucheridas" msgid "Failed to load suggested follows" msgstr "Error en cargar las sucherencias de seguimiento" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Error en clavar la publicación." #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Error en ninviar l'apelación, per favor intenta de nuevo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Error en cambiar lo estau de silencio d'o filo, per favor intenta de nuevo" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Error en actualizar las canals" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Error en actualizar los achustes" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Canal" @@ -4649,7 +4914,7 @@ msgstr "Canal" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Canal de {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menú d'a canal" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Comentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Canals" @@ -4739,7 +5004,7 @@ msgstr "Filtrar la busqueda per idioma (actualment: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Finalizando" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Buscar cuentas pa seguir" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Trobar chent a qui seguir" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Seguir" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Seguir {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Seguir cuenta" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Seguir tamién" @@ -4916,7 +5183,7 @@ msgstr "Seguir tamién" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Seguiu per <0>{0} y <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguiu per <0>{0}, <1>{1}, y {2, plural, one {# other} other {# others}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que conoixes" @@ -4960,10 +5231,10 @@ msgstr "Seguidors que conoixes" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Seguindo" @@ -4977,12 +5248,12 @@ msgstr "Seguindo" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Seguindo {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferencias d'a canal de seguimiento" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias d'a canal de Seguimiento" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te sigue" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Te sigue" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Fuent" @@ -5065,11 +5333,16 @@ msgstr "Has olbidau la tuya clau?" msgid "Forgot?" msgstr "La has olbidada?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "De <0/>" msgid "Generate a starter pack" msgstr "Chenera un paquet d'inicio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obtiene aduya" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Da-le una cara a lo tuyo perfil" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Tornar" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Tornar" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Tornar ta lo paso anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ir ta l'inicio" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ir ta l'inicio" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ir ta l'inicio" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ir ta la conversiación con {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Ir ta lo siguient" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ir ta lo perfil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ir ta lo perfil de l'usuario" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Identificador masiau largo. Intenta-lo con uno mas curto." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Etiqueta" @@ -5458,8 +5756,8 @@ msgstr "Etiqueta {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Aduya" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Lista amagada" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Lista amagada" msgid "Hide" msgstr "Amagar" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Amagar" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Amagar la publicación pa yo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Amagar respuesta pa toz" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Amagar respuesta pa yo" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Amagar esta publicación?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Amagar esta respuesta?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Quiers amagar las tendencias?" msgid "Hide trending videos?" msgstr "Quiers amagar los videos en tendencias?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Amagar lista d'usuarios" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "Amaga lo conteniu" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Tenemos problemas pa cargar estes datos. Debaixo trobarás mas detalles. msgid "Hmmmm, we couldn't load that moderation service." msgstr "Pareixe que somos tenendo problemas pa cargar estes datos. Mira debaixo pa mas detalles. Si este problema sigue, per favor contacta-nos." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Aguarte! Somos dando acceso a videos gradualment, y encara yes en a lista d'espera. Torna a consultar luego!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Inicio" @@ -5721,7 +6019,7 @@ msgstr "L'entiendo" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Si lo texto alternativo ye largo, alterna con o estau expandiu d'o texto alternativo" @@ -5757,15 +6055,15 @@ msgstr "Si eliminas esta lista, no podrás recuperar-la." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tiens lo tuyo propio dominio, puez fer-lo servir como identificador. Ixo te permite autoverificar la tuya identidat – <0>mas información." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Si eliminas esta publicación, no podrás recuperar-la." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "Si yes un desenrollador/a, puez alochar lo tuyo propio servidor." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Si yes mirando de cambiar lo tuyo identificador u correu electronico, fe-lo antes de desactivar la tuya cuenta." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imachen" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Codigo de confirmación 2FA no ye valido." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Identificador no valido. Intenta-lo con un atro." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Obchecto de reporte invalido" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Codigo de Verificación no valido" @@ -6001,8 +6315,15 @@ msgstr "Codigo d'invitación" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Convida a personas a este paquet inicial!" +#: 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 "Convida a los tuyos amigos a seguir las tuyas canals y personas favoritas" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID de fayena: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID de fayena: {0}" msgid "Jobs" msgstr "Fayenas" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Fayenas" msgid "Join Bluesky" msgstr "Une-te a Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Une-te a la conversa" msgid "Journalism" msgstr "Periodismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Etiquetas en a tuya cuenta" msgid "Labels on your content" msgstr "Etiquetas en o tuyo conteniu" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Achustes d'Idiomas" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Zaguero" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Aprender mas sobre esta advertencia" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Mas información sobre lo que ye publico en Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Aprender-ne mas." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Deixar" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Deixar chat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Deixar conversa" @@ -6284,13 +6642,14 @@ msgstr "Deixar conversa" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Deixar conversa" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Salir de Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "quedan." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Liuchero" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Me fa goyo" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Dar «me fa goyo» a esta noticia" @@ -6358,8 +6721,8 @@ msgstr "Dar «me fa goyo» a esta noticia" msgid "Like this labeler" msgstr "Como este etiquetador" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Le ha feito goyo a" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le fa goyo a {0, plural, one {# usuario} other {# usuarios}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Me fa goyo" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Me fa goyo en esta publicación" @@ -6409,11 +6768,11 @@ msgstr "Me fa goyo en esta publicación" msgid "Linear" msgstr "Linial" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no ye silenciada" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listas" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Cargando..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Rechistro" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo de <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Pareixe que te falta una canal de seguimiento. <0>Fe clic aquí pa anyad msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Chestiona las tuyas parolas y etiquetas silenciadas" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcar como leyiu" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "usuarios mencionaus" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencions" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Mensache {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mensache eliminau" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mensache eliminau" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "Lo mensache ye masiau largo" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mensaches" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -6894,7 +7247,7 @@ msgstr "Lista de moderación actualizada" msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderación" @@ -6903,7 +7256,7 @@ msgstr "Listas de moderación" msgid "moderation settings" msgstr "achustes de moderación" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Estaus de moderación" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Mas opcions" @@ -6949,7 +7302,7 @@ msgstr "Cintas" msgid "Music" msgstr "Mosica" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silenciar" @@ -6965,8 +7318,8 @@ msgstr "Silenciar" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Cuenta muda" msgid "Mute accounts" msgstr "Silenciar cuentas" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silenciar conversación" @@ -6994,7 +7347,7 @@ msgstr "Silenciar la lista" msgid "Mute these accounts?" msgstr "Silenciar estas cuentas?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Silenciar esta parola nomás en etiquetas" msgid "Mute this word until you unmute it" msgstr "Silenciar esta parola dica que la tornes a habilitar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silenciar filo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silenciar parolas y etiquetas" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -7062,6 +7419,10 @@ msgstr "Parolas y etiquetas silenciadas" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Dengún puede veyer a qui silencias. Las cuentas silenciadas pueden interactuar con tu, pero no veyerás las suyas publicacions en a tuya canal u notificacions." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Navega a la siguient pantalla" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navega a lo tuyo perfil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "No importa, crea un identificador per yo" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nuevo" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nuevo chat" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nueva publicación" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nueva publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Siguient" msgid "Next image" msgstr "Imachen nueva" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Ya no sigues a {0}" @@ -7362,7 +7726,7 @@ msgstr "Ya no sigues a {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "No i hai mensaches encara" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Encara no i hai notificacions!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Dengún, fueras de l'autor, puede citar esta publicación." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Sin resultau" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sin resultaus" @@ -7446,8 +7810,8 @@ msgstr "Sin resultaus" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "No s'ha trobau resultaus" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "No trobau" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Achustes de notificación" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sons de notificación" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificacions" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Amortar" @@ -7623,9 +7974,10 @@ msgstr "D'acuerdo" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Ye bien" @@ -7648,35 +8000,35 @@ msgstr "en<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Reiniciando" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Falta lo texto alternativo en una u cuantas imáchens." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Falta lo texto alternativo d'uno u mas videos." @@ -7685,6 +8037,26 @@ msgstr "Falta lo texto alternativo d'uno u mas videos." msgid "Only {0} can reply." msgstr "Nomás {0} puede responder." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Nomás s'admite fichers d'imachen" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nomás s'admiten fichers WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Nomás s'admiten fichers WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Ups, bella cosa ha saliu mal!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ups, bella cosa ha saliu mal!" msgid "Oops!" msgstr "Ui!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Ubrir lo creyador de avatares" @@ -7720,12 +8106,17 @@ msgstr "Ubrir lo creyador de avatares" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Ubrir opcions de conversación" @@ -7739,16 +8130,16 @@ msgstr "Ubrir lo menú lateral" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Ubrir selector d'emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Ubrir menú d'opcions d'a canal" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Ubrir vinclo a {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Ubrir menú d'opcions d'a publicación" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Ubrir pachina d'historico" msgid "Open system log" msgstr "Ubrir rechistro d'o sistema" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Ubre un dialogo pa anyadir una advertencia de conteniu a la tuya publica msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Ubre detalles adicionals pa una dentrada de depuración" @@ -7838,7 +8250,7 @@ msgstr "Ubre detalles adicionals pa una dentrada de depuración" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Ubrir camera d'o dispositivo" @@ -7858,22 +8270,24 @@ msgstr "Ubrir compositor" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Ubre lo formulario de restablimiento de clau" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Ubre este perfil" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "L'equipo de moderación ha recibiu la denuncia." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Los nuestros moderadors han revisau denuncias y han decidiu desactivar lo tuyo acceso a los chats en Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Los nuestros moderadors han revisau denuncias y han decidiu desactivar l msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Pachina no trobada" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Pachina no trobada" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Pausar video" msgid "People" msgstr "Personas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Personas seguidas per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Personas seguindo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Fotografía" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imáchens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Clavar la canal" @@ -8152,12 +8578,12 @@ msgstr "Clavar la canal" msgid "Pin to home" msgstr "Clavar en inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Clavar en inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Clavar en o tuyo perfil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Clavau" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} clavau en Inicio" @@ -8236,7 +8662,7 @@ msgstr "Per favor, tría lo tuyo identificador." msgid "Please choose your password." msgstr "Per favor, tría la tuya clau." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Per favor, completa la verificación CAPTCHA." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "Escribe una clau. Ha de tener a lo menos 8 carácters." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Escribe un nombre unico pa esta clau d'aplicación u fe servir una chenerada aleatoriament." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Escribe lo tuyo correu electronico." msgid "Please enter your invite code." msgstr "Escribe lo tuyo codigo d'invitación." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "Escribe la tuya clau" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Per favor explica per qué creyes que esta etiqueta ye estada aplicada incorrectament per {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Per favor explica per qué creyes que los tuyos chats son estaus deshabilitaus incorrectament" @@ -8358,7 +8784,11 @@ msgstr "Tría una razón pa esta denuncia" msgid "Please sign in as @{0}" msgstr "Per favor, escribe como @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Politica" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publicar-lo tot" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Publicación per {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Publicación eliminada" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "No s'ha puesto cargar la publicación. Compreba la connexión a internet y torna-lo a intentar." @@ -8454,18 +8884,22 @@ msgstr "Publicación amagada per tu" msgid "Post interaction settings" msgstr "Achustes d'interacción d'a publicación" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Configuración d'interacción d'a publicación" +#: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Las publicacions pueden estar silenciadas seguntes lo suyo texto, las su msgid "Posts hidden" msgstr "Publicacions amagadas" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Presiona pa reintentar la connexión" -#: src/components/Error.tsx:61 +#: 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 "Presiona pa reintentar" @@ -8536,7 +8966,7 @@ msgstr "Presiona pa reintentar" msgid "Press to view followers of this account that you also follow" msgstr "Preta pa veyer los seguidors d'esta cuenta que tamién sigues" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Privacidat" msgid "Privacy and security" msgstr "Privacidat y seguranza" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Politica de privacidat" @@ -8586,15 +9015,15 @@ msgstr "Politica de privacidat" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Procesando video..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Procesando..." @@ -8602,10 +9031,10 @@ msgstr "Procesando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Perfil" @@ -8613,6 +9042,7 @@ msgstr "Perfil" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Codigo QR copiau a lo tuyo portafuellas!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Lo codigo QR ha estau descargau!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Codigo QR alzau en o tuyo carret de fotos!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Citar una publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "La publicación citada ha estau readjuntada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "La publicación citada s'ha deseparau correctament" @@ -8711,12 +9138,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citas d'esta publicación" @@ -8728,16 +9155,16 @@ msgstr "S'ha excediu lo limite de frecuencia - has mirau de cambiar lo tuyo iden msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Readchuntar cita" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Motivo d'o recurso" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "Recomendacions" msgid "Reconnect" msgstr "Reconnectar" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Recargar conversacions" @@ -8863,6 +9304,8 @@ msgstr "Recargar conversacions" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Eliminar a {displayName} d'o paquet inicial" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Borrar la cuenta" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Eliminar l'adchunto" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Eliminar l'avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Eliminar lo banner" @@ -8914,8 +9362,9 @@ msgstr "Eliminar lo banner" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Eliminar la incrustación" @@ -8929,12 +9378,12 @@ msgstr "Eliminar la canal" msgid "Remove feed?" msgstr "Eliminar la canal?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "Sacar d'as tuyas canals?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Eliminar la imachen" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Eliminar republicación" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Eliminau per autor" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Eliminau per tu" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Respuestas" @@ -9104,14 +9552,14 @@ msgstr "Respuestas deshabilitadas" msgid "Replies to this post are disabled." msgstr "Las respuestas en esta publicación son deshabilitadas." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Responder" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})" @@ -9125,10 +9573,6 @@ msgstr "Respuesta amagada per l'autor d'o filo" msgid "Reply Hidden by You" msgstr "Respuesta amagada per tu" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "La configuración de respuestas ye triada per l'autor d'o filo" @@ -9137,18 +9581,18 @@ msgstr "La configuración de respuestas ye triada per l'autor d'o filo" msgid "Reply sorting" msgstr "Orden d'as respuestas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidat d'a respuesta actualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "La respuesta s'ha amagau correctament" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Denunciar" @@ -9157,20 +9601,20 @@ msgstr "Denunciar" msgid "Report account" msgstr "Denunciar cuenta" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Denunciar conversación" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Finestra de denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Denunciar canal" @@ -9179,12 +9623,12 @@ msgstr "Denunciar canal" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Denunciar mensache" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Denunciar publicación" @@ -9199,8 +9643,8 @@ msgstr "Denunciar paquet d'inicio" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Denuncia ninviada" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Denunciar esta canal" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Denunciar esta lista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Republicar" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republicar ({0, plural, one {# republicación} other {# republicacions}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Tornau a publicar per tu" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Republicacions d'esta publicación" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Requerir texto alternativo antes de publicar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Demanda una adreza de correu pa dentrar con la tuya cuenta." @@ -9328,7 +9791,17 @@ msgstr "Requeriu pa este furnidor" msgid "Required in your region" msgstr "Requeriu en a tuya rechión" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "Restablir l'estau d'incorporación" msgid "Reset password" msgstr "Restablir clau" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Reintenta la zaguera acción, que presentó una error" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Reintenta la zaguera acción, que presentó una error" msgid "Retry" msgstr "Reintentar" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Torna a intentar cargar las opcions de denuncia" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Tornar ta la pachina anterior" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tornar ta la pachina anterior" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Alzar cambios" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Alzar imachen" msgid "Save new handle" msgstr "Alzar nuevo identificador" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Alzar codigo QR" @@ -9518,13 +9994,13 @@ msgstr "Alzar codigo QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Alzar en as mías canals" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Canals alzadas" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Alzau en as tuyas canals" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Di ola!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Ciencia" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Desplazar enta alto" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Mirar en as publicacions de @{0}" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "Mirar en as mías publicacions" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Mirar en publicacions" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Buscar perfils" msgid "Search..." msgstr "Mirar..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Mira perfils" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Tría una color" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Triar GIF" msgid "Select GIF \"{0}\"" msgstr "Triar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Triar idioma..." msgid "Select languages" msgstr "Triar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Triar un servicio de moderación" @@ -9904,11 +10390,11 @@ msgstr "Tría los tuyos intereses d'as opcions contino" msgid "Select your preferred language for translations in your feed." msgstr "Tría en qué idioma deseyas traducir las publicacions d'a tuya canal." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Ninviar correu" @@ -9935,11 +10421,11 @@ msgstr "Ninviar correu" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Ninviar comentarios" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Ninviar mensache" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Ninviar publicación a..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Ninviar denuncia a {title}" @@ -9960,7 +10446,7 @@ msgstr "Ninviar denuncia a {title}" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Ninviar vía mensache directo" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Estableix lo correu electronico pa restablir la clau" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Achustes" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Actividat sexual u desnudez erotica." msgid "Sexually Suggestive" msgstr "Sexualment suchestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Compartir" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Compartir de totas trazas" @@ -10097,16 +10586,21 @@ msgstr "Compartir de totas trazas" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Compartir vinclo" @@ -10114,6 +10608,11 @@ msgstr "Compartir vinclo" msgid "Share link dialog" msgstr "Finestra pa compartir vinclo" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Compartir codigo QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Comparte esta canal" @@ -10142,8 +10641,8 @@ msgstr "Comparte este paquet d'inicio y aduya a las personas a unir-se a la tuya #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Prebador de Preferencias Compartidas" @@ -10167,16 +10666,16 @@ msgstr "Veyer texto alternativo" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Veyer de totas trazas" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Amostrar menos como este" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Veyer mas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Amostrar-ne mas como este" @@ -10246,8 +10745,8 @@ msgstr "Amostrar respuestas" msgid "Show replies as" msgstr "Amostrar las respuestas como" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Amostrar respuesta pa toz" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Amostrar advertencia y filtrar d'as canals" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Amuestra información sobre cuán se va crear esta publicación" @@ -10297,15 +10796,17 @@ msgstr "Amuestra lo conteniu" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Inicia sesión u crea una cuenta pa unir-te a la conversación!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Entrar con una cuenta que no ye en a lista" @@ -10337,8 +10842,12 @@ msgstr "Entrar con una cuenta que no ye en a lista" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sesión en Bluesky u crea una nueva cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Zarrar sesión" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Zarrar sesión" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Salir?" @@ -10391,7 +10900,7 @@ msgstr "Blincar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Mas chicot" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Bella cosa no yera bien en os datos que yes mirando de denunciar. Contacta con o soporte." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "I ha habiu una error" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "I ha habiu una error!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "I ha habiu una error. Intenta-lo atra vegada." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Bella cosa va mal? Fe-nos-lo saber." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Esportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Iniciar un nuevo chat" @@ -10582,17 +11101,17 @@ msgstr "Empecipia a anyadir chent" msgid "Start adding people!" msgstr "Empecipia a anyadir chent!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquet d'inicio" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Libro de cuentos" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Ninviar" @@ -10684,9 +11203,9 @@ msgstr "Ninviar recurso" msgid "Submit Appeal" msgstr "Ninviar recurso" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Ninviar denuncia" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Subscribir-se" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Exito!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Soporte" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Cambiar cuentas" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Cambiar cuentas" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Cambiar a {0}" @@ -10824,11 +11347,15 @@ msgstr "Rechistro d'o sistema" msgid "Tags only" msgstr "Nomás etiquetas" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Toca pa descartar" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Condicions de servicio" @@ -10939,7 +11484,7 @@ msgstr "Texto y etiquetas" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campo d'introducción de texto" @@ -10981,9 +11526,9 @@ msgstr "Ixo ye tot, amigos!" msgid "That's everything!" msgstr "Ixo ye tot!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrá interactuar con tu dimpués de desblocar-la." @@ -11049,6 +11594,11 @@ msgstr "Los achustes siguients serán usaus por defecto cuan se creyen nuevas pu 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "La Politica de privacidat s'ha tresladau a <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "I ha habiu un problema en actualizar las tuyas canals, compreba la tuya connexión y torna-lo a intentar." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "I ha habiu un problema {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Estes achustes nomás afectan a la canal \"Seguindo\"" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} ha estau marcada:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Esta apelación será ninviada a <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Esta apelación será ninviada a lo servicio de moderación de Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Esta apelación será ninviada a lo servicio de moderación de Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Este chat ye estau desconnectau" @@ -11310,7 +11881,11 @@ msgstr "Este conteniu no ye disponible perque un d'os usuarios involucraus ha bl msgid "This content is not viewable without a Bluesky account." msgstr "Este conteniu no se puede veyer sin una cuenta de Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Esta conversa ye con una cuenta eliminada u desactivada. Preta pa veyer las opcions" @@ -11318,7 +11893,7 @@ msgstr "Esta conversa ye con una cuenta eliminada u desactivada. Preta pa veyer msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Esta canal ye vueda." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Esta canal ya no ye en linia. Somos amostrando <0>Descubrir en cuenta." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Este identificador ye reservau. Intenta-lo con una diferent." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "Esta lista – creada per tu – contiene posibles violacions d'as direc msgid "This list is empty." msgstr "Esta lista ye vueda." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación diz haber estau creada lo <0>{0}, pero la hemos vista en Bluesky lo <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicación ha deshabilitau las citas de publicacions." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil nomás ye visible pa usuarios rechistraus. No será visible pa personas no rechistradas." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Esta respuesta será clasificada en una sección amagada a la fin d'o tuyo filo y silenciará las notificacions pa respuestas posteriors, tanto pa tu como pa atros." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Este usuario no tiene seguidors." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminará @{0} d'a lista d'acceso rapido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Esto eliminará la tuya publicación d'esta cita pa toz los usuarios y la reemplazará con un marcador de posición." @@ -11574,7 +12166,7 @@ msgstr "Preferencias de filos" msgid "Threaded" msgstr "En filos" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferencias de filos" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Pa desactivar lo metodo de 2FA per correu electronico, verifica per favor lo tuyo acceso a l'adreza de correu electronico." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Alto" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traducir" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Vídeos populars" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Tornar a intentar" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Tornar a intentar" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Televisión" @@ -11763,11 +12369,15 @@ msgstr "No se puede contactar con o tuyo furnidor. Compreba la tuya connexión a msgid "Unable to delete" msgstr "No se puede eliminar" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Desblocar" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Desblocar" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desblocar cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Desblocar cuenta?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desfer la republicación ({0, plural, one {# republicación} other {# republicaciones}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Deixar de seguir a {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Deixar de seguir esta cuenta" @@ -11872,7 +12487,7 @@ msgstr "Deixar de seguir esta cuenta" msgid "Unfollows the user" msgstr "Deixa de seguir a l'usuario" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Garra d'os tuyos etiquetadors subscritos soporta este tipo de denuncia." @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Ya no me fa goyo" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Ya no me fa goyo ({0, plural, one {# me-fa-goyo} other {# me-fa-goyos}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "Deixar de silenciar" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Deixar de silenciar cuenta" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Deixar de silenciar conversación" @@ -11955,12 +12562,12 @@ msgstr "Deixar de silenciar conversación" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Deixar de silenciar filo" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Desclavar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desclavar la canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Desclavar d'inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Desclavar d'o perfil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Desclavar lista de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} ye desclavau d'Inicio" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "Actualizar <0>{displayName} en Listas" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Actualizar a {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Ha fallau l'actualización de l'adchunto d'a cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 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:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Puya una foto en cuenta" @@ -12098,39 +12717,40 @@ msgstr "Puya una foto en cuenta" msgid "Upload a text file to:" msgstr "Carga un fichero de texto en:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Puyar dende la camera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Puyar dende los tuyos fichers" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Puyar dende la biblioteca" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Cargando imáchens..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Cargando thumbnail d'o vinclo..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Cargando video..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Usuario blocau" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Lista d'usuarios per {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "usuarios seguius per <0>@{0}" msgid "users following <0>@{0}" msgstr "usuarios que siguen a <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificar rechistro DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Lo video no s'ha puesto procesar" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Canal de video" @@ -12419,7 +13039,7 @@ msgstr "Video no trobau." msgid "Video settings" msgstr "Configuración d'o video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video cargau" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Veyer lo perfil de {0}" @@ -12467,20 +13087,15 @@ msgstr "Veyer lo perfil de {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Veyer lo perfil de l'usuario blocau" @@ -12503,10 +13118,18 @@ msgstr "Veyer detalles" msgid "View full thread" msgstr "Veyer filo completo" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Veyer información sobre estas etiquetas" @@ -12522,7 +13145,7 @@ msgstr "Veyer mas" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Veyer perfil" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Veyer l'avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Veyer lo servicio de etiquetau proporcionau per @{0}" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Veyer usuarios a qui les fa goyo esta canal" @@ -12596,8 +13219,8 @@ msgstr "Veyer las tuyas cuentas silenciadas" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Veyer la imachen completa" @@ -12640,8 +13263,8 @@ msgstr "Advertir de conteniu" msgid "Warn content and filter from feeds" msgstr "Advertir de conteniu y filtrar d'as canals" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "No hemos puesto trobar resultaus pa este tema." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "No hemos puesto cargar esta conversación" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "No hemos puesto determinar si tiens permiso pa puyar videos. Per favor, torna a intentar-lo. xxxxxxxxxxxxxxxxxxxxxxxxxx" @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "T'informaremos cuan la tuya cuenta sía lista." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Somos tenendo problemas de ret, intenta de nuevo" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Vai! La publicación a la cual yes respondendo ha estau eliminada." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Vai! No trobamos la pachina que buscabas." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Cómo quiers clamar a lo tuyo paquet d'inicio?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Qué fas?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Quí puede interactuar con esta publicación?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Quí puede responder" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Vai!" @@ -12939,7 +13566,7 @@ msgstr "Per qué creyes que este paquet d'inicio ha d'estar revisau?" msgid "Why should this user be reviewed?" msgstr "Per qué creyes que este usuario ha d'estar revisau?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Redacta una publicación" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Redacta una respuesta" @@ -12978,7 +13605,8 @@ msgstr "Escritors" msgid "Wrong DID returned from server. Received: {0}" msgstr "Lo servidor ha tornau un DID incorrecto. Recibiu: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Sí, eliminar este paquet d'inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Sí, deseparar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Sí, amagar" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "No tiens permiso pa puyar videos." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puez continar las conversacions en curso independientment d'a configuración que tríes." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Agora puez iniciar sesión con a tuya nueva clau." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Puez reactivar la tuya cuenta pa continar iniciando sesión. Lo tuyo per 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Puez actualizar-lo mas enta debant dende la tuya configuración." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "No tiens garra canal alzada." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Nomás puez anyadir dica 3 canals" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir a lo menos a siet personas mas pa chenerar un paquet d'inicio." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Has d'atorgar acceso a la tuya biblioteca de fotos pa alzar un codigo QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Saldrás de totas las tuyas cuentas." @@ -13378,11 +14038,11 @@ msgstr "Saldrás de totas las tuyas cuentas." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Ya no recibirás notificacions d'este filo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Agora recibirás notificacions d'este filo" @@ -13390,12 +14050,12 @@ msgstr "Agora recibirás notificacions d'este filo" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Ninviamos un codigo de reinicio a lo tuyo correu. Escribe ixe codigo aquí y dimpués escribe la tuya nueva clau." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "Te mantendrás actualizau con estas canals" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Ya yes en coda" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzau lo tuyo limite diario de carga de videos (masiaus videos)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "La tuya cuenta ye estada suspendida" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La tuya cuenta encara no tiene prou antiguidat como pa puyar videos. Torna a intentar-lo mas enta debant." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Lo tuyo repositorio de cuenta, que contiene toz los rechistros de datos publicos, puede estar descargau como un fichero \"CAR\". Este fichero no incluye fichers multimedia incrustaus, como imáchens, ni los tuyos datos privaus, que han d'estar obtenius per separau." @@ -13519,7 +14191,7 @@ msgstr "Hemos recibiu lo tuyo recurso. Si s'acepta, t'avisaremos per correu elec msgid "Your birth date" msgstr "La tuya data de naixencia" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Los tuyos chats son estau deshabilitaus" @@ -13527,11 +14199,11 @@ msgstr "Los tuyos chats son estau deshabilitaus" 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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Lo tuyo correu electronico pareixe no estar valido." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "La tuya canal de Seguindo ye vueda! Sigue a mas usuarios pa veyer las su msgid "Your full handle will be <0>@{0}" msgstr "Lo tuyo identificador completo será <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Las tuyas parolas silenciadas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "La tuya denuncia se ninviará a <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "La tuya denuncia se ninviará a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 0761cba3cb..707665fb9e 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:203 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:639 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" msgid "{0}s" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:427 +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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:811 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,13 +645,13 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:33 -msgid "{memberCount}/{MEMBER_LIMIT}" +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" msgstr "" #: src/features/liveNow/utils.ts:10 @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,6 +870,13 @@ 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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -802,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -825,7 +907,11 @@ msgstr "" 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/Navigation.tsx:547 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -837,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:452 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -854,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -872,15 +977,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -893,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -993,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1006,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1505 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2168 msgid "Add another post to thread" msgstr "" @@ -1029,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1037,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1046,7 +1147,7 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" @@ -1056,8 +1157,8 @@ msgstr "" msgid "Add members" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:528 #: src/components/moderation/ReportDialog/index.tsx:532 -#: src/components/moderation/ReportDialog/index.tsx:536 msgid "Add more details (optional)" msgstr "" @@ -1074,8 +1175,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 #: src/screens/ProfileList/AboutSection.tsx:72 #: src/screens/ProfileList/AboutSection.tsx:90 msgid "Add people" @@ -1085,6 +1186,10 @@ msgstr "" 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 "" @@ -1133,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1159,11 +1264,11 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:550 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 msgid "Admin" msgstr "" @@ -1222,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1235,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1272,13 +1377,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1332,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1356,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1381,7 +1486,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "" @@ -1416,6 +1521,7 @@ msgid "An error occurred while loading your lists :/" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1426,11 +1532,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1450,25 +1556,29 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: src/screens/Messages/components/InviteLinkDialog.tsx:190 +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:56 -msgid "An issue occurred creating the group chat, please try again" +#: 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:42 -msgid "An issue occurred starting the chat, please try again" +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +msgid "An issue occurred starting the chat, please try again." msgstr "" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 @@ -1479,12 +1589,12 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1533,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 msgid "Anyone can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 msgid "Anyone can request to join" msgstr "" @@ -1549,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: src/screens/Messages/components/InviteLinkDialog.tsx:458 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1591,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1612,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "" @@ -1626,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1651,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1669,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1682,23 +1796,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1718,8 +1838,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1746,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1761,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1777,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1790,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1826,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1834,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 msgid "Before you can message another user, you must first verify your email." msgstr "" @@ -1868,53 +1991,53 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:147 -msgid "Block and Delete" +#: 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:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1922,20 +2045,29 @@ msgstr "" msgid "Block these accounts?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:188 -#: src/components/dms/AfterReportDialog.tsx:191 +#: 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 "" -#: src/components/dms/AfterReportDialog.tsx:153 -msgid "Block User" +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:184 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:196 +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -1943,14 +2075,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1966,7 +2096,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -1979,7 +2109,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2008,7 +2138,7 @@ msgstr "" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2016,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2032,7 +2166,7 @@ msgstr "" 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2060,6 +2194,10 @@ msgstr "" 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" @@ -2116,24 +2254,34 @@ msgstr "" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:853 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:174 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2160,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2171,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2191,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2207,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2227,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "" @@ -2243,7 +2400,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2276,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:449 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2289,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:314 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:394 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2323,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2340,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2352,31 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:199 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:82 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2393,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:201 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2454,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 msgid "Choose who can join this group chat and how." msgstr "" @@ -2508,7 +2684,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:126 msgid "Click here to add people to this group chat" msgstr "" @@ -2516,7 +2692,7 @@ msgstr "" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 msgid "Click here to create or manage an invite link for this group chat" msgstr "" @@ -2533,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2542,11 +2718,11 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:141 msgid "Click here to view the invite link for this group chat" msgstr "" @@ -2555,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "" @@ -2569,24 +2745,30 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 -#: src/components/dms/AfterReportDialog.tsx:93 -#: src/components/dms/AfterReportDialog.tsx:98 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2594,14 +2776,14 @@ msgstr "" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 #: src/screens/Settings/components/ChangePasswordDialog.tsx:288 #: src/screens/Settings/components/ChangePasswordDialog.tsx:293 #: src/view/com/feeds/MissingFeed.tsx:211 @@ -2610,7 +2792,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2618,6 +2800,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2628,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "" @@ -2643,17 +2831,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "" @@ -2666,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1727 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2696,7 +2900,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2711,12 +2915,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1603 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2724,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2565 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2567 msgid "Compressing video..." msgstr "" @@ -2751,7 +2955,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2788,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2796,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2813,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2860,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2879,40 +3083,53 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:148 -#: src/components/dms/AfterReportDialog.tsx:151 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2929,7 +3146,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 msgid "Copy" msgstr "" @@ -2962,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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" @@ -2983,8 +3210,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -2992,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "" @@ -3002,8 +3229,8 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" @@ -3017,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3030,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3038,22 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:138 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: 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:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3064,7 +3308,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:205 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3072,11 +3320,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3103,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3123,7 +3379,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:207 #: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3138,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3162,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3170,7 +3427,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3192,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:301 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:547 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:713 -#: src/components/moderation/ReportDialog/index.tsx:759 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3220,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:461 +#: src/screens/Messages/components/InviteLinkDialog.tsx:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3234,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3275,6 +3537,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3305,8 +3575,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3333,8 +3603,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3342,22 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:194 -#: src/components/dms/AfterReportDialog.tsx:197 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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/AfterReportDialog.tsx:150 -msgid "Delete Conversation" -msgstr "" - -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3366,11 +3633,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3378,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1615 msgid "Delete post" msgstr "" @@ -3397,17 +3664,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:189 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3438,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3474,13 +3741,13 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 msgid "Disable" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3488,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3501,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 msgid "Disable link" msgstr "" @@ -3514,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:455 msgid "Disable this invite link?" msgstr "" @@ -3527,9 +3794,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3540,19 +3807,19 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1396 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1640 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3576,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2486 msgid "Dismiss error" msgstr "" @@ -3609,6 +3877,10 @@ msgstr "" 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" @@ -3640,7 +3912,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3648,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3667,15 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 -#: src/components/dms/AfterReportDialog.tsx:144 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3691,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3703,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3725,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3753,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3789,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3804,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3813,19 +4102,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3834,7 +4123,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 msgid "Edit link settings" msgstr "" @@ -3852,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:495 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -3878,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -3891,7 +4184,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:494 +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Edit this group chat’s name" msgstr "" @@ -3903,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3937,7 +4231,7 @@ msgstr "" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -3972,8 +4266,8 @@ msgstr "" msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -3991,7 +4285,7 @@ msgstr "" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4004,13 +4298,12 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4057,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4109,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2585 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4151,23 +4444,23 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4183,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4204,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4243,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4255,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4288,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4297,13 +4587,17 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" @@ -4320,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 msgid "Failed to copy link" msgstr "" @@ -4329,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:101 msgid "Failed to create invite link" msgstr "" @@ -4342,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4360,24 +4655,24 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:124 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:343 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 msgid "Failed to enable invite link" msgstr "" @@ -4393,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:370 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4422,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4459,16 +4753,15 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:391 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:357 +#: src/screens/Messages/ConversationSettings/index.tsx:383 msgid "Failed to mute group chat" msgstr "" @@ -4477,22 +4770,22 @@ msgid "Failed to pin post" msgstr "" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4500,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:73 msgid "Failed to remove group chat member" msgstr "" @@ -4508,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:158 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4535,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4546,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:394 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:429 msgid "Failed to unlock group chat" msgstr "" @@ -4563,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4580,7 +4879,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4607,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4615,7 +4914,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4628,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4642,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4705,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4713,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4734,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4761,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4813,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4858,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4872,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -4882,7 +5183,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4910,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -4926,10 +5231,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -4943,12 +5248,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4961,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5031,11 +5333,16 @@ msgstr "" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5052,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 msgid "Generate invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 msgid "Generate new link" msgstr "" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5140,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2590 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5179,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "" @@ -5203,7 +5514,9 @@ msgid "Go back to previous step" msgstr "" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5213,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5238,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5250,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5262,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:255 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:251 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5286,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5306,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:383 +#: src/screens/Messages/ConversationSettings/index.tsx:412 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:350 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:338 +#: src/screens/Messages/ConversationSettings/index.tsx:364 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:89 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:378 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5387,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5412,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5424,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5445,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5488,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5497,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5519,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5543,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5572,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5586,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5618,19 +5954,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5679,7 +6011,6 @@ msgid "I have my own domain" msgstr "" #: src/components/dms/BlockedByListDialog.tsx:55 -#: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" msgstr "" @@ -5688,7 +6019,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5724,15 +6055,15 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5740,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5753,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5784,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5824,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5848,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5921,6 +6255,10 @@ msgstr "" 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 "" @@ -5930,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5948,6 +6290,11 @@ msgstr "" msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -5968,8 +6315,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 msgid "Invite Friends" msgstr "" @@ -5977,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 -#: src/screens/Messages/ConversationSettings/index.tsx:508 +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 msgid "Invite link disabled" msgstr "" @@ -6007,6 +6371,11 @@ msgstr "" 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 "" @@ -6041,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2505 msgid "Job ID: {0}" msgstr "" @@ -6050,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6057,6 +6431,16 @@ msgstr "" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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" @@ -6066,8 +6450,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1446 +#: src/view/com/composer/Composer.tsx:1456 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6076,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6110,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6141,7 +6530,7 @@ msgid "Latest" msgstr "" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6168,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6196,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6206,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6219,37 +6608,48 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:542 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 msgid "Leave" msgstr "" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" -#: src/components/dms/ConvoMenu.tsx:229 -#: src/components/dms/ConvoMenu.tsx:233 -#: src/components/dms/ConvoMenu.tsx:299 -#: src/components/dms/ConvoMenu.tsx:303 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:541 +#: src/screens/Messages/ConversationSettings/index.tsx:584 msgid "Leave this group chat" msgstr "" @@ -6258,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6286,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6305,11 +6713,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6317,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6336,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6368,11 +6768,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6458,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6504,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6554,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:520 +#: src/screens/Messages/ConversationSettings/index.tsx:562 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6591,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6621,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6646,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:241 -#: src/components/dms/ConvoMenu.tsx:245 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6685,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6720,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 msgctxt "action" msgid "Message" msgstr "" @@ -6730,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6772,19 +7170,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:651 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6797,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6809,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -6853,7 +7247,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -6862,7 +7256,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6887,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "" @@ -6908,7 +7302,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:526 msgid "Mute" msgstr "" @@ -6924,8 +7318,8 @@ msgstr "" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6936,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:260 #: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -6953,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:485 +#: src/screens/Messages/ConversationSettings/index.tsx:524 msgid "Mute this group chat" msgstr "" @@ -6981,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: 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:526 msgid "Muted" msgstr "" @@ -6999,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7021,6 +7419,10 @@ msgstr "" 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" @@ -7063,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:345 -#: src/components/moderation/ReportDialog/index.tsx:362 +#: 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 "" @@ -7076,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7087,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:107 -#: src/components/dms/dialogs/NewChatDialog.tsx:117 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 msgid "New chat with {0}" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 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 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7130,26 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 -#: src/components/dms/InitiateChatFlow.tsx:715 -#: src/components/dms/InitiateChatFlow.tsx:743 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#. 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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7180,16 +7587,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7215,8 +7622,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7237,6 +7644,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7274,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7288,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7306,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7315,7 +7726,7 @@ msgstr "" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "" @@ -7331,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7352,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7388,8 +7799,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7399,8 +7810,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7462,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7475,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "" @@ -7501,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "" @@ -7554,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "" @@ -7576,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:658 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7601,27 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7630,6 +8037,26 @@ msgstr "" 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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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 @@ -7640,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -7648,6 +8085,10 @@ msgstr "" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7657,7 +8098,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7665,12 +8106,17 @@ msgstr "" msgid "Open camera" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 msgid "Open chat member options for {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7684,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2145 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7705,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:408 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7735,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7762,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:409 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7775,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "" @@ -7783,7 +8250,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7803,22 +8270,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:302 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:288 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7835,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7847,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7864,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -7940,12 +8416,14 @@ msgstr "" msgid "Our blog post" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:88 -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" @@ -7953,14 +8431,15 @@ msgstr "" msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8011,34 +8490,34 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 msgid "People I follow can request to join" msgstr "" @@ -8079,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8095,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8109,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8179,7 +8662,7 @@ msgstr "" msgid "Please choose your password." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8187,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8208,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8228,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8236,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8249,7 +8732,7 @@ msgstr "" msgid "Please enter your invite code." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8266,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" @@ -8301,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8309,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8326,7 +8813,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1793 msgctxt "action" msgid "Post" msgstr "" @@ -8346,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1791 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1455 msgid "Post anyway" msgstr "" @@ -8360,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8397,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 msgid "Post link" msgstr "" @@ -8434,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8448,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8468,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:349 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8479,7 +8966,7 @@ msgstr "" msgid "Press to view followers of this account that you also follow" msgstr "" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8502,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8529,15 +9015,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2579 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2581 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8545,10 +9031,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8556,6 +9042,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8578,39 +9065,39 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1777 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1772 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1761 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1766 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:140 @@ -8622,13 +9109,10 @@ msgid "QR code has been downloaded!" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8637,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8654,12 +9138,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8671,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:413 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 msgid "Re-enable link" msgstr "" @@ -8688,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8707,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8755,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8784,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8806,6 +9304,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8821,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:231 msgid "Remove {displayName} from this group chat" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8834,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8857,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8872,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8902,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8925,7 +9431,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -8952,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:224 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:222 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -8978,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9032,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "" @@ -9047,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1789 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9068,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9080,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:533 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 msgid "Report" msgstr "" @@ -9100,21 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:287 -#: src/components/dms/ConvoMenu.tsx:291 -#: src/components/dms/ReportConversationPrompt.tsx:17 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:265 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9123,12 +9623,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9141,12 +9641,15 @@ msgstr "" msgid "Report starter pack" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:85 -#: src/components/dms/AfterReportDialog.tsx:177 +#: 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 "" @@ -9154,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:532 +#: src/screens/Messages/ConversationSettings/index.tsx:576 msgid "Report this group chat" msgstr "" @@ -9163,7 +9666,7 @@ msgid "Report this list" msgstr "" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9197,10 +9700,6 @@ msgstr "" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9223,23 +9722,27 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9247,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9269,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9314,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9332,17 +9864,18 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:299 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 @@ -9356,25 +9889,25 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:296 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9395,7 +9928,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:207 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9420,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1408 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1410 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9459,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9475,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9501,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9517,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9603,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9618,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9700,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9769,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9791,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:434 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9845,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9862,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9876,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9893,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:824 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9901,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9915,7 +10460,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -9956,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -9971,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10020,16 +10565,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 #: src/components/StarterPack/QrCodeDialog.tsx:195 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "" @@ -10038,16 +10586,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10055,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10065,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10083,8 +10641,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10092,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10108,16 +10666,16 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10138,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10160,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10187,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10211,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10238,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10270,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:213 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10278,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:212 +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 "" @@ -10289,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10300,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10332,7 +10900,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1453 msgid "Skip empty posts?" msgstr "" @@ -10346,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10354,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10403,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10428,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:110 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/JoinRequests.tsx:87 msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:291 +#: 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 @@ -10458,11 +11031,11 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:239 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10505,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:123 +#: 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:191 msgid "Start a new chat" msgstr "" @@ -10523,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:779 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10595,12 +11173,12 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10612,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "" @@ -10625,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:512 -#: src/components/moderation/ReportDialog/index.tsx:573 -#: src/components/moderation/ReportDialog/index.tsx:580 +#: 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 "" @@ -10636,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10673,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:108 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10711,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10721,12 +11303,20 @@ msgstr "" 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10735,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10757,11 +11347,15 @@ msgstr "" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10787,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10857,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -10872,7 +11484,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "" @@ -10914,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -10982,6 +11594,11 @@ msgstr "" 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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -10990,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11034,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:499 msgid "There is no invite link for this group chat." msgstr "" @@ -11048,10 +11665,13 @@ 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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11059,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11069,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11094,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11154,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11187,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" @@ -11196,7 +11824,7 @@ msgstr "" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11204,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11243,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:128 +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 "" @@ -11251,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11289,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11301,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11310,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11343,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:624 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:620 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11367,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11383,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:130 +#: src/screens/Messages/ConversationSettings/index.tsx:151 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "This screen is only available for group conversations." msgstr "" @@ -11407,7 +12066,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/features/liveNow/index.tsx:200 +#: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." msgstr "" @@ -11423,15 +12082,23 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: 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 +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 "" @@ -11476,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11499,7 +12166,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11525,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11534,10 +12201,6 @@ msgstr "" msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." msgstr "" -#: src/components/dms/ReportConversationPrompt.tsx:19 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" - #: src/components/dms/DateDivider.tsx:27 msgid "Today" msgstr "" @@ -11575,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11596,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11631,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11640,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:167 +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 "" @@ -11692,6 +12369,18 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" msgstr "" @@ -11712,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:662 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "" @@ -11758,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11780,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11793,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:496 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11805,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11825,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:519 +#: src/screens/Messages/ConversationSettings/index.tsx:561 msgid "Unlock this group chat" msgstr "" @@ -11860,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:265 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -11876,12 +12562,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:484 +#: src/screens/Messages/ConversationSettings/index.tsx:523 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11895,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11917,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -11951,14 +12637,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1542 msgid "Unsupported video type: {mimeType}" 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" @@ -11968,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 #: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 msgid "Update invite link" msgstr "" @@ -11986,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12001,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12019,39 +12717,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2572 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2574 msgid "Uploading video..." msgstr "" @@ -12094,7 +12793,8 @@ msgstr "" msgid "user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12131,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12175,12 +12875,12 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12197,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12224,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12236,7 +12936,7 @@ 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12269,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12300,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12339,7 +13039,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2592 msgid "Video uploaded" msgstr "" @@ -12352,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1136 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:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12375,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12387,20 +13087,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 +#: src/components/dms/MessagesListHeader.tsx:111 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 msgid "View {displayName}’s profile" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12423,10 +13118,18 @@ msgstr "" msgid "View full thread" msgstr "" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42 +#: 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:56 msgid "View information about these labels" msgstr "" @@ -12442,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1131 msgid "View post" msgstr "" @@ -12459,10 +13162,10 @@ msgstr "" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12470,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:506 +#: src/screens/Messages/ConversationSettings/index.tsx:548 msgid "View the invite link for this group chat" msgstr "" @@ -12483,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12516,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12560,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12585,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:111 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 msgid "We couldn’t load this conversation’s settings" msgstr "" @@ -12635,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -12664,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12699,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12734,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "" @@ -12785,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12798,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 msgid "Who can join this group chat and how" msgstr "" @@ -12807,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12827,6 +13534,7 @@ 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 "" @@ -12858,15 +13566,19 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:49 +#: 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:1320 +#: src/view/com/composer/Composer.tsx:1424 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12875,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1602 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1504 msgid "Write your reply" msgstr "" @@ -12893,7 +13605,8 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:129 +#: src/screens/Messages/ConversationSettings/index.tsx:150 +#: src/screens/Messages/JoinRequests.tsx:109 msgid "Wrong kind of conversation" msgstr "" @@ -12920,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -12945,7 +13658,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:635 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -12979,11 +13692,11 @@ msgstr "" msgid "You are Live" msgstr "" -#: src/features/liveNow/index.tsx:368 +#: src/features/liveNow/index.tsx:371 msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "" @@ -12991,7 +13704,7 @@ msgstr "" msgid "You are not following anyone yet" msgstr "" -#: src/features/liveNow/index.tsx:312 +#: src/features/liveNow/index.tsx:315 msgid "You are now live!" msgstr "" @@ -13032,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13054,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13070,9 +13792,9 @@ msgstr "" 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13081,6 +13803,15 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13108,6 +13839,10 @@ msgstr "" msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13177,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1419 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13235,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13244,10 +13983,11 @@ msgid "You must be following at least seven other people to generate a starter p msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13255,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13265,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13279,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13289,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13301,12 +14050,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13340,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13374,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13386,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -13410,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "" @@ -13430,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "" @@ -13438,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13472,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13493,7 +14254,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13522,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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 @@ -13534,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1127 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1124 msgid "Your posts were sent" msgstr "" @@ -13546,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13559,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1126 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:523 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13572,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1454 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 19484e6287..3f2275176a 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Asturian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(contién elementos incrustaos)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# préstame} other {# préstames}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minutu} other {# minutos}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mes} other {# meses}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# segundu} other {# segundos}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>testu y etiquetes" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar de: {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0} m" msgid "{0}s" msgstr "{0} s" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minutu} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} siguiéronte" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} prestó-yos la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} rexistróse col to paquete d'iniciación" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} siguióte" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} siguióte tamién" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} prestó-y el to feed personalizáu" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} prestó-y la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} republicó la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} rexistróse col to paquete d'iniciación" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} siguiéronte" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} prestó-yos la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} siguióte" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} siguióte tamién" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} prestó-y la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} republicó la publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} rexistróse col to paquete d'iniciación" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "Sigue a {following}" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Nun se puen unviar mensaxes a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} y {2, plural, one {# más} other {# más}} inclú #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {siguidor} other {siguidores}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "{1, plural, one {Sigue a} other {Sigue a}} <0>{0}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {préstame} other {préstames}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {cites}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicaciones}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} miembros" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accesibilidá" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Configuración d'accesibilidá" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Configuración d'accesibilidá" msgid "Account" msgstr "Cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Quitóse la cuenta del accesu rápidu" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Amestar" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Amestar otra cuenta" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Amestar otra publicación" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "Crear una contraseña d'aplicación" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "Amestar persones" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Too" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Permitir l'accesu a los mensaxes direutos" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Yá aniciesti la sesión como @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Testu alternativu" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "El testu alternativu describe imáxenes pa persones ciegues o con problemes de visión y ayuda a dar contestu a tol mundu." @@ -1387,7 +1486,7 @@ msgstr "Prodúxose un error" msgid "An error occurred" msgstr "Prodúxose un error" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Prodúxose un error mentanto se comprimía'l videu." @@ -1421,7 +1520,8 @@ msgstr "Prodúxose un error mentanto se cargaba'l videu. Volvi tentalo." msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "¡Prodúxose un error mentanto se guardaba'l códigu QR!" @@ -1432,11 +1532,11 @@ msgstr "¡Prodúxose un error mentanto se guardaba'l códigu QR!" msgid "An error occurred while trying to follow all" msgstr "Prodúxose un error al tentar de siguir a toles cuentes" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Un problema que nun s'inclúi nestes opciones" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Prodúxose un error al tentar d'abrir la charra" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Prodúxose un problema. Volvi tentalo." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseñes d'aplicación" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Unvióse l'apellación" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apellar esta decisión" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Archivóse la publicación" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "¿De xuru que quies desaniciar la contraseña d'aplicación «{0}»?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "¿De xuru que quies desaniciar esti elementu del paquete d'iniciación?" msgid "Are you sure you want to discard your changes?" msgstr "¿De xuru que quies escartar los cambeos?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "¿De xuru que quies quitar esti elementu de los tos feeds?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "¿De xuru que quies escartar esta publicación?" @@ -1724,8 +1838,8 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Desnudos artísticos o que nun son eróticos." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Reproducir automáticamente vídeos y GIFs" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Atrás" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Aniversariu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloquiar la cuenta" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "¿Quies bloquiar la cuenta?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloquiar les cuentes" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Bloquiar la llista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "¿Quies bloquiar estes cuentes?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "" @@ -1948,7 +2059,7 @@ msgctxt "button" msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloquióse" @@ -1964,14 +2075,12 @@ msgstr "Bloquióse" msgid "Blocked accounts" msgstr "Cuentes bloquiaes" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentes bloquiaes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma." @@ -1987,7 +2096,7 @@ msgstr "El bloquéu nun impide qu'esti etiquetador aplique etiquetes a la to cue msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloquéu ye públicu. Les cuentes bloquiaes nun puen responder nos tos filos, mentante nin interactuar contigo de nenguna forma." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "El bloquéu nun impide que les etiquetes s'apliquen a la to cuenta, mas nun va dexar qu'esta cuenta respuenda a los tos filos o interactúe contigo." @@ -2000,7 +2109,7 @@ msgstr "Blogue" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nun pue verificar l'autenticidá de la data indicada." @@ -2029,7 +2138,7 @@ msgstr "¡Bluesky ye meyor con compaña!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Términos del serviciu de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "" msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky nun va amosar el perfil nin les publicaciones a los usuarios que nun aniciaren la sesión. Ye posible qu'otres aplicaciones nun respeten esta solicitú. Esta opción nun fai que la cuenta seya privada." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "Llibros" 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" @@ -2137,24 +2254,34 @@ msgstr "Negocios" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Por «{0}»" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Al crear una cuenta aceptes los <0>términos del serviciu." msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Cámara" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Cámara" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Cámara" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Cámara" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Encaboxar" @@ -2248,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Nun se pue interactuar con un usuariu bloquiáu" @@ -2264,7 +2400,7 @@ msgstr "Sotítulos (.vtt)" msgid "Captions & alt text" msgstr "Sotítulos y testu alternativu" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Cambéu del identificador" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Charra" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Silencióse la charra" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Configuración de la charra" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Configuración de les charres" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "La charra dexó de tar silenciada" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Calca pa volver unviar el mensaxe que falló" @@ -2594,28 +2745,30 @@ msgstr "Calca pa volver unviar el mensaxe que falló" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Calca pa volver unviar el mensaxe que falló" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Zarrar" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Zarrar el diálogu activu" @@ -2647,6 +2800,10 @@ msgstr "Zarrar el diálogu activu" msgid "Close alert" msgstr "Zarrar l'alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Zarrar el caxón baxeru" @@ -2657,8 +2814,10 @@ msgstr "Zarrar el caxón baxeru" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Zarrar el diálogu" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Zarrar la imaxe" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Zarrar esti diálogu" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Contrayer la llista d'usuarios" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Contrái la llista d'usuarios d'una notificación apurrida" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Cómics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Pautes de la Comunidá" @@ -2740,12 +2915,12 @@ msgstr "Completa'l retu" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Comprimiendo'l videu…" @@ -2780,7 +2955,7 @@ msgstr "Configuróse nes <0>opciones de moderación." msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2889,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Siguir col filu…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Dir al pasu siguiente" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Desanicióse la conversación" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Desanicióse la conversación" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "La versión de la compilación copióse nel cartafueyu" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "¡Copióse!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiar" @@ -2997,6 +3184,11 @@ msgstr "Copiar el DID" msgid "Copy host" msgstr "Copiar l'agospiador" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Copiar l'enllaz de la llista" msgid "Copy link to post" msgstr "Copiar l'enllaz de la publicación" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiar el testu del mensaxe" @@ -3037,12 +3229,12 @@ msgstr "Copiar el testu del mensaxe" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiar el testu de la publicación" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiar el códigu QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de derechos d'autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Nun se pudo colar de la charra" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Nun se pudo cargar el feed" @@ -3100,7 +3308,11 @@ msgstr "Nun se pudo cargar el feed" msgid "Could not load list" msgstr "Nun se pudo cargar la llista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Nun se pudo silenciar la charra" @@ -3108,11 +3320,19 @@ msgstr "Nun se pudo silenciar la charra" msgid "Could not process your video" msgstr "Nun se pudo procesar el videu" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Crear" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3174,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Crear un avatar" @@ -3206,7 +3427,7 @@ msgstr "Crear un avatar" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Data de creación: {0}" @@ -3270,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Estilu escuru" msgid "Date of birth" msgstr "Data de nacencia" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "La predeterminada" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Desaniciar la contraseña d'aplicación" msgid "Delete app password?" msgstr "¿Quies desaniciar la contraseña d'aplicación?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Desaniciar pa min" @@ -3399,11 +3633,11 @@ msgstr "Desaniciar pa min" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3411,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Desaniciar la publicación" @@ -3430,17 +3664,17 @@ msgstr "¿Quies desaniciar el paquete d'iniciación?" msgid "Delete this list?" msgstr "¿Quies desaniciar esta llista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "¿Quies desaniciar esti artículu?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Testu alternativu descriptivu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Separtar la cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "¿Quies separtar la cita?" @@ -3507,13 +3741,13 @@ msgstr "Diálogu: configura quién pue interactuar con esta publicación" msgid "Dim" msgstr "Lleve" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "Desactivar la rempuesta háptica" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Desactivóse" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Escartar" msgid "Discard changes?" msgstr "¿Quies escartar los cambeos?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "¿Quies escartar la publicación?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Descubri feeds nuevos" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Escartar l'error" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "Nun inclúin desnudos." msgid "Domain verified!" msgstr "¡Verificóse'l dominiu!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Fecho" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3737,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "Baxar el ficheru CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Baxar el ficheru CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Duración:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "p. exem. alicia" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editar l'avatar" @@ -3847,19 +4102,19 @@ msgstr "Editar l'avatar" msgid "Edit Feeds" msgstr "Editar los feeds" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editar la imaxe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editar la configuración de les interaiciones" @@ -3868,7 +4123,16 @@ msgstr "Editar la configuración de les interaiciones" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edición de los mios feeds" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edición de les persones" @@ -3912,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Edición del perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editar el perfil" @@ -3925,7 +4184,8 @@ msgstr "Editar el perfil" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3971,7 +4231,7 @@ msgstr "Direición de corréu electrónicu" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Incrusta esta publicación nel to sitiu web. Namás copia'l fragmentu de msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Activar" @@ -4025,7 +4285,7 @@ msgstr "Activar el conteníu p'adultos" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "Activar el conteníu multimedia esternu" msgid "Enable media players for" msgstr "Activar los reproductores multimedia de:" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "Introduz una pallabra o etiqueta" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tol mundu" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Tol mundu" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Tol mundu" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4277,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "Imáxenes sexuales esplícites." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencies del conteníu multimedia esternu" @@ -4331,18 +4587,22 @@ msgstr "Preferencies del conteníu multimedia esternu" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "El cambéu del identificador falló. Volvi tentalo." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "La creación de la contraseña d'aplicación falló. Volvi tentalo." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "La creación del paquete d'iniciación falló" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "El desaniciu del mensaxe falló" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "El desaniciu de la publicación falló. Volvi tentalo" @@ -4394,24 +4655,24 @@ msgstr "El desaniciu de la publicación falló. Volvi tentalo" msgid "Failed to delete starter pack" msgstr "El desaniciu del paquete d'iniciación falló" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "La carga de les preferencies de los feeds falló" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "La carga de los feeds suxeríos falló" msgid "Failed to load suggested follows" msgstr "La carga de los perfiles suxeríos falló" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Nun se pudo fixar la publicación" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "L'unviu de l'apellación falló. Volvi tentalo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "L'anovamientu de los feeds falló" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "L'anovamientu de la configuración falló" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed de {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Opinar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Atopar cuentes pa siguir" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Siguir" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Siguir tamién" @@ -4916,7 +5183,7 @@ msgstr "Siguir tamién" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Siguidores de @{0} que conoces" @@ -4960,10 +5231,10 @@ msgstr "Siguidores que conoces" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Siguiendo" @@ -4977,12 +5248,12 @@ msgstr "Siguiendo" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "Preferencies del feed «Siguiendo»" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencies del feed «Siguiendo»" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Síguete" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Síguete" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Fonte" @@ -5065,11 +5333,16 @@ msgstr "¿Escaeciesti la contraseña?" msgid "Forgot?" msgstr "¿Escaeciéstila?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "Xeneración d'un paquete d'iniciación" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Pon cara al perfil" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Dir p'atrás" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Dir p'atrás" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Dir al pasu anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Dir al aniciu" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Dir al perfil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Dir al perfil del usuariu" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "L'identificador ye mui llongu. Prueba con otru." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Etiqueta" @@ -5458,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "Esconder" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Esconder" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Escondeme la publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Esconder la rempuesta pa tol mundu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Escondeme la rempuesta" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "¿Quies esconder esta publicación?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "¿Quies esconder esta rempuesta?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "¿Quies esconder los temes en tendencia?" msgid "Hide trending videos?" msgstr "¿Quies esconder los vídeos en tendencia?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Esconder la llista d'usuarios" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Umm… Paez que tenemos problemes pa cargar estos datos. Consulta abaxo msgid "Hmmmm, we couldn't load that moderation service." msgstr "Umm… Nun pudimos cargar el serviciu de moderación." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Aniciu" @@ -5721,7 +6019,7 @@ msgstr "Entiéndolo" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5757,15 +6055,15 @@ msgstr "Si desanicies esta llista, nun vas ser a recuperala." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tienes un dominiu pues usalu como identificador. Esto permítete verificar la to identidá. <0>Conoz más equí." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Si quites esta publicación, nun vas ser a recuperala." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Si tentes de camudar l'identificador o la direición de corréu, failo enantes de desactivar la cuenta." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imaxe" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "L'identificador ye inválidu. Prueba con otru." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -6001,8 +6315,15 @@ msgstr "Códigu d'invitación" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID de trabayu: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID de trabayu: {0}" msgid "Jobs" msgstr "Trabayu" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Trabayu" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Xúnite a la conversación" msgid "Journalism" msgstr "Periodismu" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Configuración de llingua" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Lo último" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Saber más tocante a esta alvertencia" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Saber más tocante a qué ye público en Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Saber más." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Colar" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Colar de la conversación" @@ -6284,13 +6642,14 @@ msgstr "Colar de la conversación" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Colar de la conversación" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claru" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Dar préstame" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6346,11 +6713,7 @@ msgstr "10 préstames" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6358,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "A quién-y prestó" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {Prestó-y a # usuariu} other {Prestó-yos a # usuarios}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Préstames" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Préstames d'esta publicación" @@ -6409,11 +6768,11 @@ msgstr "Préstames d'esta publicación" msgid "Linear" msgstr "Socesión llinial" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Llistes" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Cargando…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Rexistru" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logotipu de <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcar como lleíu" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menciones" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Desanicióse'l mensaxe" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Desanicióse'l mensaxe" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "El mensaxe ye mui llongu" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mensaxes" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -6894,7 +7247,7 @@ msgstr "Anovóse la llista de moderación" msgid "Moderation lists" msgstr "Llistes de moderación" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Llistes de moderación" @@ -6903,7 +7256,7 @@ msgstr "Llistes de moderación" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Más opciones" @@ -6949,7 +7302,7 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Desactivar el volume" @@ -6965,8 +7318,8 @@ msgstr "Desactivar el volume" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silenciar la conversación" @@ -6994,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silenciar el filu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silenciar pallabres y etiquetes" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuentes silenciaes" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentes silenciaes" @@ -7062,6 +7419,10 @@ msgstr "Pallabres y etiquetes silenciaes" 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Crear un identificador" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nueva" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Charra nueva" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Publicación nueva" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Publicación nueva" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Noticies" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Siguiente" msgid "Next image" msgstr "Imaxe siguiente" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Yá nun sigues a {0}" @@ -7362,7 +7726,7 @@ msgstr "Yá nun sigues a {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Nun hai nengún mensaxe" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "¡Nun hai nengún avisu!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Naide más que l'autor pue citar esta publicación." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Nun hai nengún resultáu" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nun hai nengún resultáu" @@ -7446,8 +7810,8 @@ msgstr "Nun hai nengún resultáu" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Nun s'atopó nengún resultáu" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Nun s'atopó" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Soníos d'avisu" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Avisos" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Non" @@ -7623,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "D'acuerdu" @@ -7648,35 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "A una o más imáxenes fálta-yos el testu alternativu." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "A unu o más vídeos fálta-yos el testu alternativu." @@ -7685,6 +8037,26 @@ msgstr "A unu o más vídeos fálta-yos el testu alternativu." 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Namás son compatibles los ficheros WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Namás son compatibles los ficheros WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "¡Meca! Prodúxose dalgún error." +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "¡Meca! Prodúxose dalgún error." msgid "Oops!" msgstr "¡Meca!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Abrir el creador d'avatares" @@ -7720,12 +8106,17 @@ msgstr "Abrir el creador d'avatares" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7739,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Abrir el selector de fustaxes" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Abre los detalles adicionales d'una entrada de depuración" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Abre la cámara del preséu" @@ -7858,22 +8270,24 @@ msgstr "Abre'l compositor" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Abre esti perfil" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Los moderadores revisaron los informes y decidieron desactivate l'accesu a les charres de Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Los moderadores revisaron los informes y decidieron desactivate l'accesu msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Nun s'atopó la páxina" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Nun s'atopó la páxina" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "" msgid "People" msgstr "Persones" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Persones siguíes por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Persones que siguen a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Fotografía" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Semeyes destinaes a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar el feed" @@ -8152,12 +8578,12 @@ msgstr "Fixar el feed" msgid "Pin to home" msgstr "Fixar nel aniciu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fixar nel aniciu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fixar nel to perfil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fixóse" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Fixesti «{0}» nel aniciu" @@ -8236,7 +8662,7 @@ msgstr "Escueyi un identificador." msgid "Please choose your password." msgstr "Escueyi una contraseña." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Completa'l captcha de verificación." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Introduz un nome únicu pa esta contraseña d'aplicación o usa'l xeneráu aleatoriamente." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Introduz la to direición de corréu eletrónicu." msgid "Please enter your invite code." msgstr "Introduz el to códigu d'invitación." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Desplica por qué pienses que les charres se desactivaron incorreutamente" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornu" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publicar too" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "La xuba de la publicación falló. Comprueba la conexón a internet y volvi tentalo." @@ -8454,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "Configuración de les interaiciones de la publicación" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "Escondiéronse les publicaciones" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Primi pa tentar de volver conectate" -#: src/components/Error.tsx:61 +#: 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 "Primi pa retentalo" @@ -8536,7 +8966,7 @@ msgstr "Primi pa retentalo" msgid "Press to view followers of this account that you also follow" msgstr "Primi pa ver los siguidores d'esta cuenta que tamién te siguen" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Privacidá" msgid "Privacy and security" msgstr "Privacidá y seguranza" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Política de privacidá" @@ -8586,15 +9015,15 @@ msgstr "Política de privacidá" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Procesando'l videu…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Procesando…" @@ -8602,10 +9031,10 @@ msgstr "Procesando…" msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Perfil" @@ -8613,6 +9042,7 @@ msgstr "Perfil" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "¡El códigu QR copióse nel cartafueyu!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "¡El códigu QR guardóse nel carrete!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Citar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "La cita volvió axuntase" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "La cita separtóse correutamente" @@ -8711,12 +9138,12 @@ msgstr "Desactiváronse les cites" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Cites" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Cites d'esta publicación" @@ -8728,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Volver cargar les conversaciones" @@ -8863,6 +9304,8 @@ msgstr "Volver cargar les conversaciones" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Quitar la cuenta" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Quitar l'avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8914,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8929,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "¿Quies quitar el feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Quitar la republicación" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Rempuestes" @@ -9104,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Responder" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9137,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Anovóse la visibilidá de les rempuestes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "La rempuesta escondióse correutamente" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "" @@ -9157,20 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Informar de la conversación" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Informar del feed" @@ -9179,12 +9623,12 @@ msgstr "Informar del feed" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Informar de la publicación" @@ -9199,8 +9643,8 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Informe d'esti feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Informe d'esta llista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Republicar" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Republiquesti" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Republicaciones d'esta publicación" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Riquir un testu alternativu enantes de publicar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Volvi tentar la última aición, la que produxo l'error" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Volvi tentar la última aición, la que produxo l'error" msgid "Retry" msgstr "Retentar" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar los cambeos" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "" msgid "Save new handle" msgstr "Guardar l'identificador nuevu" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "" @@ -9518,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Guardar nos mios feeds" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Feeds guardaos" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardóse nos tos feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "¡Saluda!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Ciencia" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "Seleicionar llingües" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "Seleiciona la llingua que prefieres pa les traducciones del feed." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9935,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Unviar la publicación a…" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Unviar per mensaxe direutu" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configuración" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Actividá sexual o desnudos eróticos." msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Compartir" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Compartir de toes toes" @@ -10097,16 +10586,21 @@ msgstr "Compartir de toes toes" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10114,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Compartir el códigu QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10142,8 +10641,8 @@ msgstr "Comparti esti paquete d'iniciación y ayuda a la xente a xunise a la to #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10167,16 +10666,16 @@ msgstr "Amosar el testu alternativu" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Amosar de toes toes" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Amosar menos d'esto" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Amosar más" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Amosar más d'esto" @@ -10246,8 +10745,8 @@ msgstr "Amosar les rempuestes" msgid "Show replies as" msgstr "Amosar les rempuestes como" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "¡Anicia la sesión o crea una cuenta pa xunite a la conversación!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10337,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Zarrar la sesión" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "¿Quies zarrar la sesión?" @@ -10391,7 +10900,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Pequeña" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Prodúxose dalgún error" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "¡Prodúxose dalgún error!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "¿Hai daqué mal? Coméntanoslo." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Deportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Charra nueva" @@ -10582,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "Amestar persones" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete d'iniciación" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Unviar" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Cambiar de cuenta" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "Rexistru del sistema" msgid "Tags only" msgstr "Namás etiquetes" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Términos del serviciu" @@ -10939,7 +11484,7 @@ msgstr "Testu y etiquetes" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campu pa introducir testu" @@ -10981,9 +11526,9 @@ msgstr "Alón." msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta va ser a interactuar contigo dempués de desbloquiala." @@ -11049,6 +11594,11 @@ msgstr "Va predeterminase la configuración siguiente pa cuando crees publicacio 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacidá treslladóse a <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Del estilu" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Hebo un problema al conectase col sirvidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Hebo un error al anovar los feeds. Comprueba la conexón a internet y volvi tentalo." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "¡Hebo un problema! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Esta configuración namás s'aplica al feed «Siguiendo»." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Esta apellación va unviase a <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Esta apellación va unviase al serviciu de moderación de Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Esta apellación va unviase al serviciu de moderación de Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11310,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "Esti conteníu nun se pue ver ensin una cuenta de Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Esta conversación ye con una cuenta desaniciada o desactivada. Primi pa consiguir opciones" @@ -11318,7 +11893,7 @@ msgstr "Esta conversación ye con una cuenta desaniciada o desactivada. Primi pa msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Esti feed ta baleru." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Esti identificador ta acutáu. Prueba con otru." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "Esta llista ta balera." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Indicóse qu'esta publicación se creó'l <0>{0} mas la primer vegada que se creó en Bluesky foi'l <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "L'autor d'esta publicación desactivó les cites." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Esti usuariu nun tien nengún siguidor." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Esta aición va quitar la publicación d'esta cita pa tolos usuarios y va sustituyila con un espaciu acutáu." @@ -11574,7 +12166,7 @@ msgstr "Preferencies de los filos" msgid "Threaded" msgstr "Filos" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferencies de los filos" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Lo destacao" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traducir" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Vídeos en tendencia" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Retentar" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Retentar" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "TV" @@ -11763,11 +12369,15 @@ msgstr "" msgid "Unable to delete" msgstr "Nun ye posible desaniciar" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desbloquiar la cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "¿Quies desbloquiar la cuenta?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11872,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "Dexa de siguir al usuariu" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Dexar de silenciar la conversación" @@ -11955,12 +12562,12 @@ msgstr "Dexar de silenciar la conversación" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Dexar de silenciar el filu" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Lliberar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lliberar el feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Lliberar del aniciu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Lliberar del perfil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Lliberar la llista de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Lliberésti'l feed «{0}» del aniciu" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "L'anovamientu del elementu axuntu de la cita falló" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "L'anovamientu de la visibilidá de la rempuesta falló" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Xubir una semeya" @@ -12098,39 +12717,40 @@ msgstr "Xubir una semeya" msgid "Upload a text file to:" msgstr "Xubi un ficheru de testu a:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Xubir dende Cámara" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Xubir dende Ficheros" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Xubir dende Biblioteca" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Xubiendo les imáxenes…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Xubiendo la miniatura del enllaz…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Xubiendo'l videu…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "usuarios siguíos por <0>@{0}" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificar el rexistru DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Videu" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Nun se pudo procesar el videu" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "Nun s'atopó'l videu." msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Xubióse'l videu" @@ -12432,18 +13052,18 @@ msgstr "Videu: {0}" msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" @@ -12467,20 +13087,15 @@ msgstr "Ver el perfil de {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12503,10 +13118,18 @@ msgstr "Ver los detalles" msgid "View full thread" msgstr "Ver el filu completu" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Ver la información d'estes etiquetes" @@ -12522,7 +13145,7 @@ msgstr "Ver más" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Ver el perfil" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Ver a qué usuarios-yos prestó esti feed" @@ -12596,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Nun pudimos atopar nengún resultáu pa esi tema." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Nun pudimos cargar esta conversación" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nun fuimos a determinar si tienes permisu pa xubir vídeos. Volvi tentalo." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Vamos avisate cuando la cuenta tea preparada." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Tenemos problemes de rede. Volvi tentalo" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Desanicióse la publicación a la que tas respondiendo." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Nun podemos atopar la páxina que buscabes." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "¿Cómo quies llamar al paquete d'iniciación?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "¿Que pasó?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "¿Quién pue interactuar con esta publicación?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Quién pue responder" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "¡Meca!" @@ -12939,7 +13566,7 @@ msgstr "¿Por qué habría revisase esti paquete d'iniciación?" msgid "Why should this user be reviewed?" msgstr "¿Por qué habría revisase esti usuariu?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Escribir una rempuesta" @@ -12978,7 +13605,8 @@ msgstr "Escritores" msgid "Wrong DID returned from server. Received: {0}" msgstr "El sirvidor devolvió un DID incorreutu. Recibióse: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Sí, desanicialu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Sí, separtar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Sí, esconder" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Nun tienes permisu pa xubir vídeos." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Pues siguir coles conversaciones que tengas en cursu independientemente de la opción qu'escueyas." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Yá pues aniciar la sesión cola contraseña nueva." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Pues volver activar la cuenta pa siguir aniciando la sesión. El perfil 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Nun tienes nengún feed guardáu." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Namás pues amestar hasta 3 feeds" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tienes de siguir a, polo menos, siete persones más pa xenerar un paquete d'iniciación." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Tienes de conceder l'accesu a la biblioteca de semeyes pa guardar un códigu QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Vas zarrar la sesión de toles cuentes." @@ -13378,11 +14038,11 @@ msgstr "Vas zarrar la sesión de toles cuentes." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Yá nun vas recibir avisos d'esti filu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Agora vas recibir avisos d'esti filu" @@ -13390,12 +14050,12 @@ msgstr "Agora vas recibir avisos d'esti filu" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Vas recibir un mensaxe per corréu electrónicu con un códigu. Introduzlu equí y escribi la contraseña nueva." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Algamesti la llende diaria de vídeos xubíos (milenta bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Algamesti la llende diaria de vídeos xubíos (milenta vídeos)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "La cuenta nun tien abonda antigüedá como pa xubir vídeos. Volvi tentalo dempués." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "El depósitu de la cuenta, que contién tolos rexistros de datos públicos, pues baxalu como ficheru «CAR». Esti ficheru nun contién incrustaciones multimedia (imáxenes, vídeos…) nin datos privaos, que los tienes de consiguir per separtao." @@ -13519,7 +14191,7 @@ msgstr "Unvióse l'apellación. Si s'acepta, vas recibir un mensaxe per corréu msgid "Your birth date" msgstr "Data de nacencia" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Desactiváronse les charres" @@ -13527,11 +14199,11 @@ msgstr "Desactiváronse les charres" 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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "La direición de corréu paez ser inválida." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "¡El feed siguiente ta baleru! Sigui a más usuarios pa ver qué pasó." msgid "Your full handle will be <0>@{0}" msgstr "L'identificador completu va ser <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Pallabres que silenciesti" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 7e15d09ad1..d99871bfe9 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Azerbaijani\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:203 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:639 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" msgid "{0}s" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:427 +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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:811 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,13 +645,13 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:33 -msgid "{memberCount}/{MEMBER_LIMIT}" +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" msgstr "" #: src/features/liveNow/utils.ts:10 @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,6 +870,13 @@ 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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -802,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -825,7 +907,11 @@ msgstr "" 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/Navigation.tsx:547 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -837,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:452 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -854,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -872,15 +977,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -893,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -993,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1006,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1505 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2168 msgid "Add another post to thread" msgstr "" @@ -1029,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1037,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1046,7 +1147,7 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" @@ -1056,8 +1157,8 @@ msgstr "" msgid "Add members" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:528 #: src/components/moderation/ReportDialog/index.tsx:532 -#: src/components/moderation/ReportDialog/index.tsx:536 msgid "Add more details (optional)" msgstr "" @@ -1074,8 +1175,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 #: src/screens/ProfileList/AboutSection.tsx:72 #: src/screens/ProfileList/AboutSection.tsx:90 msgid "Add people" @@ -1085,6 +1186,10 @@ msgstr "" 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 "" @@ -1133,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1159,11 +1264,11 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:550 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 msgid "Admin" msgstr "" @@ -1222,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1235,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1272,13 +1377,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1332,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1356,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1381,7 +1486,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "" @@ -1416,6 +1521,7 @@ msgid "An error occurred while loading your lists :/" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1426,11 +1532,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1450,25 +1556,29 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: src/screens/Messages/components/InviteLinkDialog.tsx:190 +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:56 -msgid "An issue occurred creating the group chat, please try again" +#: 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:42 -msgid "An issue occurred starting the chat, please try again" +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +msgid "An issue occurred starting the chat, please try again." msgstr "" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 @@ -1479,12 +1589,12 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1533,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 msgid "Anyone can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 msgid "Anyone can request to join" msgstr "" @@ -1549,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: src/screens/Messages/components/InviteLinkDialog.tsx:458 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1591,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1612,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "" @@ -1626,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1651,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1669,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1682,23 +1796,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1718,8 +1838,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1746,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1761,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1777,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1790,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1826,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1834,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 msgid "Before you can message another user, you must first verify your email." msgstr "" @@ -1868,53 +1991,53 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:147 -msgid "Block and Delete" +#: 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:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1922,20 +2045,29 @@ msgstr "" msgid "Block these accounts?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:188 -#: src/components/dms/AfterReportDialog.tsx:191 +#: 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 "" -#: src/components/dms/AfterReportDialog.tsx:153 -msgid "Block User" +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:184 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:196 +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -1943,14 +2075,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1966,7 +2096,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -1979,7 +2109,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2008,7 +2138,7 @@ msgstr "" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2016,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2032,7 +2166,7 @@ msgstr "" 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2060,6 +2194,10 @@ msgstr "" 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" @@ -2116,24 +2254,34 @@ msgstr "" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:853 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:174 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2160,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2171,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2191,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2207,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2227,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "" @@ -2243,7 +2400,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2276,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:449 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2289,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:314 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:394 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2323,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2340,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2352,31 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:199 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:82 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2393,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:201 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2454,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 msgid "Choose who can join this group chat and how." msgstr "" @@ -2508,7 +2684,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:126 msgid "Click here to add people to this group chat" msgstr "" @@ -2516,7 +2692,7 @@ msgstr "" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 msgid "Click here to create or manage an invite link for this group chat" msgstr "" @@ -2533,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2542,11 +2718,11 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:141 msgid "Click here to view the invite link for this group chat" msgstr "" @@ -2555,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "" @@ -2569,24 +2745,30 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 -#: src/components/dms/AfterReportDialog.tsx:93 -#: src/components/dms/AfterReportDialog.tsx:98 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2594,14 +2776,14 @@ msgstr "" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 #: src/screens/Settings/components/ChangePasswordDialog.tsx:288 #: src/screens/Settings/components/ChangePasswordDialog.tsx:293 #: src/view/com/feeds/MissingFeed.tsx:211 @@ -2610,7 +2792,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2618,6 +2800,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2628,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "" @@ -2643,17 +2831,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "" @@ -2666,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1727 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2696,7 +2900,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2711,12 +2915,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1603 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2724,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2565 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2567 msgid "Compressing video..." msgstr "" @@ -2751,7 +2955,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2788,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2796,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2813,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2860,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2879,40 +3083,53 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:148 -#: src/components/dms/AfterReportDialog.tsx:151 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2929,7 +3146,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 msgid "Copy" msgstr "" @@ -2962,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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" @@ -2983,8 +3210,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -2992,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "" @@ -3002,8 +3229,8 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" @@ -3017,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3030,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3038,22 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:138 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: 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:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3064,7 +3308,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:205 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3072,11 +3320,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3103,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3123,7 +3379,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:207 #: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3138,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3162,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3170,7 +3427,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3192,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:301 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:547 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:713 -#: src/components/moderation/ReportDialog/index.tsx:759 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3220,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:461 +#: src/screens/Messages/components/InviteLinkDialog.tsx:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3234,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3275,6 +3537,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3305,8 +3575,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3333,8 +3603,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3342,22 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:194 -#: src/components/dms/AfterReportDialog.tsx:197 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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/AfterReportDialog.tsx:150 -msgid "Delete Conversation" -msgstr "" - -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3366,11 +3633,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3378,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1615 msgid "Delete post" msgstr "" @@ -3397,17 +3664,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:189 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3438,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3474,13 +3741,13 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 msgid "Disable" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3488,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3501,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 msgid "Disable link" msgstr "" @@ -3514,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:455 msgid "Disable this invite link?" msgstr "" @@ -3527,9 +3794,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3540,19 +3807,19 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1396 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1640 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3576,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2486 msgid "Dismiss error" msgstr "" @@ -3609,6 +3877,10 @@ msgstr "" 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" @@ -3640,7 +3912,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3648,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3667,15 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 -#: src/components/dms/AfterReportDialog.tsx:144 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3691,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3703,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3725,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3753,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3789,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3804,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3813,19 +4102,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3834,7 +4123,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 msgid "Edit link settings" msgstr "" @@ -3852,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:495 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -3878,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -3891,7 +4184,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:494 +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Edit this group chat’s name" msgstr "" @@ -3903,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3937,7 +4231,7 @@ msgstr "" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -3972,8 +4266,8 @@ msgstr "" msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -3991,7 +4285,7 @@ msgstr "" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4004,13 +4298,12 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4057,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4109,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2585 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4151,23 +4444,23 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4183,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4204,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4243,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4255,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4288,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4297,13 +4587,17 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" @@ -4320,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 msgid "Failed to copy link" msgstr "" @@ -4329,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:101 msgid "Failed to create invite link" msgstr "" @@ -4342,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4360,24 +4655,24 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:124 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:343 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 msgid "Failed to enable invite link" msgstr "" @@ -4393,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:370 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4422,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4459,16 +4753,15 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:391 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:357 +#: src/screens/Messages/ConversationSettings/index.tsx:383 msgid "Failed to mute group chat" msgstr "" @@ -4477,22 +4770,22 @@ msgid "Failed to pin post" msgstr "" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4500,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:73 msgid "Failed to remove group chat member" msgstr "" @@ -4508,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:158 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4535,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4546,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:394 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:429 msgid "Failed to unlock group chat" msgstr "" @@ -4563,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4580,7 +4879,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4607,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4615,7 +4914,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4628,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4642,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4705,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4713,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4734,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4761,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4813,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4858,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4872,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -4882,7 +5183,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4910,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -4926,10 +5231,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -4943,12 +5248,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4961,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5031,11 +5333,16 @@ msgstr "" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5052,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 msgid "Generate invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 msgid "Generate new link" msgstr "" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5140,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2590 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5179,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "" @@ -5203,7 +5514,9 @@ msgid "Go back to previous step" msgstr "" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5213,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5238,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5250,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5262,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:255 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:251 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5286,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5306,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:383 +#: src/screens/Messages/ConversationSettings/index.tsx:412 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:350 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:338 +#: src/screens/Messages/ConversationSettings/index.tsx:364 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:89 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:378 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5387,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5412,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5424,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5445,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5488,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5497,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5519,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5543,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5572,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5586,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5618,19 +5954,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5679,7 +6011,6 @@ msgid "I have my own domain" msgstr "" #: src/components/dms/BlockedByListDialog.tsx:55 -#: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" msgstr "" @@ -5688,7 +6019,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5724,15 +6055,15 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5740,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5753,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5784,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5824,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5848,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5921,6 +6255,10 @@ msgstr "" 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 "" @@ -5930,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5948,6 +6290,11 @@ msgstr "" msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -5968,8 +6315,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 msgid "Invite Friends" msgstr "" @@ -5977,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 -#: src/screens/Messages/ConversationSettings/index.tsx:508 +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 msgid "Invite link disabled" msgstr "" @@ -6007,6 +6371,11 @@ msgstr "" 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 "" @@ -6041,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2505 msgid "Job ID: {0}" msgstr "" @@ -6050,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6057,6 +6431,16 @@ msgstr "" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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" @@ -6066,8 +6450,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1446 +#: src/view/com/composer/Composer.tsx:1456 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6076,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6110,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6141,7 +6530,7 @@ msgid "Latest" msgstr "" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6168,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6196,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6206,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6219,37 +6608,48 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:542 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 msgid "Leave" msgstr "" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" -#: src/components/dms/ConvoMenu.tsx:229 -#: src/components/dms/ConvoMenu.tsx:233 -#: src/components/dms/ConvoMenu.tsx:299 -#: src/components/dms/ConvoMenu.tsx:303 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:541 +#: src/screens/Messages/ConversationSettings/index.tsx:584 msgid "Leave this group chat" msgstr "" @@ -6258,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6286,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6305,11 +6713,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6317,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6336,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6368,11 +6768,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6458,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6504,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6554,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:520 +#: src/screens/Messages/ConversationSettings/index.tsx:562 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6591,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6621,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6646,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:241 -#: src/components/dms/ConvoMenu.tsx:245 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6685,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6720,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 msgctxt "action" msgid "Message" msgstr "" @@ -6730,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6772,19 +7170,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:651 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6797,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6809,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -6853,7 +7247,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -6862,7 +7256,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6887,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "" @@ -6908,7 +7302,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:526 msgid "Mute" msgstr "" @@ -6924,8 +7318,8 @@ msgstr "" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6936,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:260 #: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -6953,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:485 +#: src/screens/Messages/ConversationSettings/index.tsx:524 msgid "Mute this group chat" msgstr "" @@ -6981,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: 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:526 msgid "Muted" msgstr "" @@ -6999,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7021,6 +7419,10 @@ msgstr "" 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" @@ -7063,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:345 -#: src/components/moderation/ReportDialog/index.tsx:362 +#: 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 "" @@ -7076,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7087,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:107 -#: src/components/dms/dialogs/NewChatDialog.tsx:117 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 msgid "New chat with {0}" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 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 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7130,26 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 -#: src/components/dms/InitiateChatFlow.tsx:715 -#: src/components/dms/InitiateChatFlow.tsx:743 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#. 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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7180,16 +7587,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7215,8 +7622,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7237,6 +7644,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7274,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7288,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7306,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7315,7 +7726,7 @@ msgstr "" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "" @@ -7331,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7352,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7388,8 +7799,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7399,8 +7810,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7462,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7475,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "" @@ -7501,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "" @@ -7554,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "" @@ -7576,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:658 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7601,27 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7630,6 +8037,26 @@ msgstr "" 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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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 @@ -7640,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -7648,6 +8085,10 @@ msgstr "" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7657,7 +8098,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7665,12 +8106,17 @@ msgstr "" msgid "Open camera" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 msgid "Open chat member options for {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7684,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2145 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7705,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:408 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7735,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7762,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:409 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7775,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "" @@ -7783,7 +8250,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7803,22 +8270,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:302 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:288 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7835,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7847,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7864,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -7940,12 +8416,14 @@ msgstr "" msgid "Our blog post" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:88 -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" @@ -7953,14 +8431,15 @@ msgstr "" msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8011,34 +8490,34 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 msgid "People I follow can request to join" msgstr "" @@ -8079,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8095,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8109,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8179,7 +8662,7 @@ msgstr "" msgid "Please choose your password." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8187,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8208,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8228,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8236,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8249,7 +8732,7 @@ msgstr "" msgid "Please enter your invite code." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8266,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" @@ -8301,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8309,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8326,7 +8813,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1793 msgctxt "action" msgid "Post" msgstr "" @@ -8346,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1791 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1455 msgid "Post anyway" msgstr "" @@ -8360,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8397,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 msgid "Post link" msgstr "" @@ -8434,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8448,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8468,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:349 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8479,7 +8966,7 @@ msgstr "" msgid "Press to view followers of this account that you also follow" msgstr "" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8502,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8529,15 +9015,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2579 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2581 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8545,10 +9031,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8556,6 +9042,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8578,39 +9065,39 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1777 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1772 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1761 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1766 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:140 @@ -8622,13 +9109,10 @@ msgid "QR code has been downloaded!" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8637,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8654,12 +9138,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8671,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:413 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 msgid "Re-enable link" msgstr "" @@ -8688,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8707,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8755,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8784,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8806,6 +9304,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8821,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:231 msgid "Remove {displayName} from this group chat" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8834,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8857,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8872,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8902,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8925,7 +9431,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -8952,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:224 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:222 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -8978,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9032,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "" @@ -9047,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1789 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9068,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9080,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:533 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 msgid "Report" msgstr "" @@ -9100,21 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:287 -#: src/components/dms/ConvoMenu.tsx:291 -#: src/components/dms/ReportConversationPrompt.tsx:17 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:265 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9123,12 +9623,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9141,12 +9641,15 @@ msgstr "" msgid "Report starter pack" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:85 -#: src/components/dms/AfterReportDialog.tsx:177 +#: 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 "" @@ -9154,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:532 +#: src/screens/Messages/ConversationSettings/index.tsx:576 msgid "Report this group chat" msgstr "" @@ -9163,7 +9666,7 @@ msgid "Report this list" msgstr "" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9197,10 +9700,6 @@ msgstr "" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9223,23 +9722,27 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9247,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9269,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9314,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9332,17 +9864,18 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:299 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 @@ -9356,25 +9889,25 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:296 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9395,7 +9928,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:207 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9420,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1408 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1410 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9459,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9475,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9501,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9517,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9603,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9618,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9700,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9769,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9791,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:434 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9845,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9862,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9876,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9893,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:824 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9901,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9915,7 +10460,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -9956,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -9971,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10020,16 +10565,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 #: src/components/StarterPack/QrCodeDialog.tsx:195 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "" @@ -10038,16 +10586,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10055,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10065,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10083,8 +10641,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10092,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10108,16 +10666,16 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10138,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10160,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10187,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10211,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10238,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10270,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:213 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10278,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:212 +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 "" @@ -10289,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10300,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10332,7 +10900,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1453 msgid "Skip empty posts?" msgstr "" @@ -10346,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10354,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10403,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10428,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:110 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/JoinRequests.tsx:87 msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:291 +#: 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 @@ -10458,11 +11031,11 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:239 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10505,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:123 +#: 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:191 msgid "Start a new chat" msgstr "" @@ -10523,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:779 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10595,12 +11173,12 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10612,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "" @@ -10625,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:512 -#: src/components/moderation/ReportDialog/index.tsx:573 -#: src/components/moderation/ReportDialog/index.tsx:580 +#: 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 "" @@ -10636,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10673,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:108 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10711,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10721,12 +11303,20 @@ msgstr "" 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10735,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10757,11 +11347,15 @@ msgstr "" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10787,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10857,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -10872,7 +11484,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "" @@ -10914,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -10982,6 +11594,11 @@ msgstr "" 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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -10990,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11034,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:499 msgid "There is no invite link for this group chat." msgstr "" @@ -11048,10 +11665,13 @@ 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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11059,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11069,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11094,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11154,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11187,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" @@ -11196,7 +11824,7 @@ msgstr "" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11204,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11243,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:128 +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 "" @@ -11251,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11289,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11301,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11310,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11343,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:624 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:620 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11367,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11383,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:130 +#: src/screens/Messages/ConversationSettings/index.tsx:151 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "This screen is only available for group conversations." msgstr "" @@ -11407,7 +12066,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/features/liveNow/index.tsx:200 +#: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." msgstr "" @@ -11423,15 +12082,23 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: 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 +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 "" @@ -11476,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11499,7 +12166,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11525,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11534,10 +12201,6 @@ msgstr "" msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." msgstr "" -#: src/components/dms/ReportConversationPrompt.tsx:19 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" - #: src/components/dms/DateDivider.tsx:27 msgid "Today" msgstr "" @@ -11575,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11596,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11631,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11640,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:167 +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 "" @@ -11692,6 +12369,18 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" msgstr "" @@ -11712,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:662 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "" @@ -11758,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11780,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11793,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:496 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11805,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11825,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:519 +#: src/screens/Messages/ConversationSettings/index.tsx:561 msgid "Unlock this group chat" msgstr "" @@ -11860,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:265 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -11876,12 +12562,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:484 +#: src/screens/Messages/ConversationSettings/index.tsx:523 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11895,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11917,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -11951,14 +12637,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1542 msgid "Unsupported video type: {mimeType}" 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" @@ -11968,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 #: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 msgid "Update invite link" msgstr "" @@ -11986,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12001,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12019,39 +12717,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2572 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2574 msgid "Uploading video..." msgstr "" @@ -12094,7 +12793,8 @@ msgstr "" msgid "user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12131,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12175,12 +12875,12 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12197,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12224,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12236,7 +12936,7 @@ 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12269,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12300,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12339,7 +13039,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2592 msgid "Video uploaded" msgstr "" @@ -12352,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1136 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:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12375,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12387,20 +13087,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 +#: src/components/dms/MessagesListHeader.tsx:111 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 msgid "View {displayName}’s profile" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12423,10 +13118,18 @@ msgstr "" msgid "View full thread" msgstr "" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42 +#: 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:56 msgid "View information about these labels" msgstr "" @@ -12442,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1131 msgid "View post" msgstr "" @@ -12459,10 +13162,10 @@ msgstr "" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12470,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:506 +#: src/screens/Messages/ConversationSettings/index.tsx:548 msgid "View the invite link for this group chat" msgstr "" @@ -12483,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12516,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12560,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12585,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:111 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 msgid "We couldn’t load this conversation’s settings" msgstr "" @@ -12635,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -12664,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12699,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12734,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "" @@ -12785,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12798,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 msgid "Who can join this group chat and how" msgstr "" @@ -12807,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12827,6 +13534,7 @@ 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 "" @@ -12858,15 +13566,19 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:49 +#: 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:1320 +#: src/view/com/composer/Composer.tsx:1424 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12875,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1602 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1504 msgid "Write your reply" msgstr "" @@ -12893,7 +13605,8 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:129 +#: src/screens/Messages/ConversationSettings/index.tsx:150 +#: src/screens/Messages/JoinRequests.tsx:109 msgid "Wrong kind of conversation" msgstr "" @@ -12920,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -12945,7 +13658,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:635 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -12979,11 +13692,11 @@ msgstr "" msgid "You are Live" msgstr "" -#: src/features/liveNow/index.tsx:368 +#: src/features/liveNow/index.tsx:371 msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "" @@ -12991,7 +13704,7 @@ msgstr "" msgid "You are not following anyone yet" msgstr "" -#: src/features/liveNow/index.tsx:312 +#: src/features/liveNow/index.tsx:315 msgid "You are now live!" msgstr "" @@ -13032,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13054,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13070,9 +13792,9 @@ msgstr "" 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13081,6 +13803,15 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13108,6 +13839,10 @@ msgstr "" msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13177,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1419 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13235,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13244,10 +13983,11 @@ msgid "You must be following at least seven other people to generate a starter p msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13255,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13265,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13279,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13289,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13301,12 +14050,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13340,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13374,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13386,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -13410,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "" @@ -13430,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "" @@ -13438,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13472,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13493,7 +14254,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13522,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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 @@ -13534,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1127 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1124 msgid "Your posts were sent" msgstr "" @@ -13546,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13559,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1126 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:523 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13572,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1454 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 f13f0efdb8..f7b0f7ad7a 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Bengali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:203 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:639 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" msgid "{0}s" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:427 +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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:811 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,13 +645,13 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:33 -msgid "{memberCount}/{MEMBER_LIMIT}" +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" msgstr "" #: src/features/liveNow/utils.ts:10 @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,6 +870,13 @@ 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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -802,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -825,7 +907,11 @@ msgstr "" 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/Navigation.tsx:547 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -837,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:452 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -854,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -872,15 +977,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -893,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -993,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1006,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1505 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2168 msgid "Add another post to thread" msgstr "" @@ -1029,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1037,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1046,7 +1147,7 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" @@ -1056,8 +1157,8 @@ msgstr "" msgid "Add members" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:528 #: src/components/moderation/ReportDialog/index.tsx:532 -#: src/components/moderation/ReportDialog/index.tsx:536 msgid "Add more details (optional)" msgstr "" @@ -1074,8 +1175,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 #: src/screens/ProfileList/AboutSection.tsx:72 #: src/screens/ProfileList/AboutSection.tsx:90 msgid "Add people" @@ -1085,6 +1186,10 @@ msgstr "" 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 "" @@ -1133,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1159,11 +1264,11 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:550 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 msgid "Admin" msgstr "" @@ -1222,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1235,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1272,13 +1377,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1332,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1356,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1381,7 +1486,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "" @@ -1416,6 +1521,7 @@ msgid "An error occurred while loading your lists :/" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1426,11 +1532,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1450,25 +1556,29 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: src/screens/Messages/components/InviteLinkDialog.tsx:190 +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:56 -msgid "An issue occurred creating the group chat, please try again" +#: 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:42 -msgid "An issue occurred starting the chat, please try again" +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +msgid "An issue occurred starting the chat, please try again." msgstr "" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 @@ -1479,12 +1589,12 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1533,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 msgid "Anyone can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 msgid "Anyone can request to join" msgstr "" @@ -1549,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: src/screens/Messages/components/InviteLinkDialog.tsx:458 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1591,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1612,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "" @@ -1626,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1651,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1669,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1682,23 +1796,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1718,8 +1838,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1746,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1761,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1777,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1790,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1826,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1834,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 msgid "Before you can message another user, you must first verify your email." msgstr "" @@ -1868,53 +1991,53 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:147 -msgid "Block and Delete" +#: 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:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1922,20 +2045,29 @@ msgstr "" msgid "Block these accounts?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:188 -#: src/components/dms/AfterReportDialog.tsx:191 +#: 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 "" -#: src/components/dms/AfterReportDialog.tsx:153 -msgid "Block User" +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:184 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:196 +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -1943,14 +2075,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1966,7 +2096,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -1979,7 +2109,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2008,7 +2138,7 @@ msgstr "" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2016,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2032,7 +2166,7 @@ msgstr "" 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2060,6 +2194,10 @@ msgstr "" 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" @@ -2116,24 +2254,34 @@ msgstr "" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:853 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:174 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2160,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2171,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2191,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2207,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2227,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "" @@ -2243,7 +2400,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2276,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:449 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2289,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:314 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:394 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2323,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2340,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2352,31 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:199 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:82 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2393,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:201 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2454,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 msgid "Choose who can join this group chat and how." msgstr "" @@ -2508,7 +2684,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:126 msgid "Click here to add people to this group chat" msgstr "" @@ -2516,7 +2692,7 @@ msgstr "" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 msgid "Click here to create or manage an invite link for this group chat" msgstr "" @@ -2533,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2542,11 +2718,11 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:141 msgid "Click here to view the invite link for this group chat" msgstr "" @@ -2555,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "" @@ -2569,24 +2745,30 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 -#: src/components/dms/AfterReportDialog.tsx:93 -#: src/components/dms/AfterReportDialog.tsx:98 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2594,14 +2776,14 @@ msgstr "" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 #: src/screens/Settings/components/ChangePasswordDialog.tsx:288 #: src/screens/Settings/components/ChangePasswordDialog.tsx:293 #: src/view/com/feeds/MissingFeed.tsx:211 @@ -2610,7 +2792,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2618,6 +2800,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2628,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "" @@ -2643,17 +2831,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "" @@ -2666,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1727 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2696,7 +2900,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2711,12 +2915,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1603 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2724,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2565 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2567 msgid "Compressing video..." msgstr "" @@ -2751,7 +2955,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2788,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2796,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2813,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2860,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2879,40 +3083,53 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:148 -#: src/components/dms/AfterReportDialog.tsx:151 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2929,7 +3146,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 msgid "Copy" msgstr "" @@ -2962,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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" @@ -2983,8 +3210,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -2992,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "" @@ -3002,8 +3229,8 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" @@ -3017,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3030,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3038,22 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:138 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: 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:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3064,7 +3308,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:205 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3072,11 +3320,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3103,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3123,7 +3379,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:207 #: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3138,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3162,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3170,7 +3427,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3192,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:301 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:547 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:713 -#: src/components/moderation/ReportDialog/index.tsx:759 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3220,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:461 +#: src/screens/Messages/components/InviteLinkDialog.tsx:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3234,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3275,6 +3537,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3305,8 +3575,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3333,8 +3603,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3342,22 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:194 -#: src/components/dms/AfterReportDialog.tsx:197 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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/AfterReportDialog.tsx:150 -msgid "Delete Conversation" -msgstr "" - -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3366,11 +3633,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3378,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1615 msgid "Delete post" msgstr "" @@ -3397,17 +3664,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:189 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3438,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3474,13 +3741,13 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 msgid "Disable" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3488,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3501,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 msgid "Disable link" msgstr "" @@ -3514,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:455 msgid "Disable this invite link?" msgstr "" @@ -3527,9 +3794,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3540,19 +3807,19 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1396 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1640 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3576,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2486 msgid "Dismiss error" msgstr "" @@ -3609,6 +3877,10 @@ msgstr "" 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" @@ -3640,7 +3912,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3648,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3667,15 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 -#: src/components/dms/AfterReportDialog.tsx:144 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3691,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3703,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3725,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3753,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3789,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3804,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3813,19 +4102,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3834,7 +4123,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 msgid "Edit link settings" msgstr "" @@ -3852,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:495 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -3878,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -3891,7 +4184,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:494 +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Edit this group chat’s name" msgstr "" @@ -3903,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3937,7 +4231,7 @@ msgstr "" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -3972,8 +4266,8 @@ msgstr "" msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -3991,7 +4285,7 @@ msgstr "" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4004,13 +4298,12 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4057,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4109,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2585 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4151,23 +4444,23 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4183,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4204,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4243,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4255,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4288,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4297,13 +4587,17 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" @@ -4320,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 msgid "Failed to copy link" msgstr "" @@ -4329,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:101 msgid "Failed to create invite link" msgstr "" @@ -4342,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4360,24 +4655,24 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:124 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:343 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 msgid "Failed to enable invite link" msgstr "" @@ -4393,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:370 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4422,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4459,16 +4753,15 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:391 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:357 +#: src/screens/Messages/ConversationSettings/index.tsx:383 msgid "Failed to mute group chat" msgstr "" @@ -4477,22 +4770,22 @@ msgid "Failed to pin post" msgstr "" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4500,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:73 msgid "Failed to remove group chat member" msgstr "" @@ -4508,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:158 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4535,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4546,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:394 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:429 msgid "Failed to unlock group chat" msgstr "" @@ -4563,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4580,7 +4879,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4607,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4615,7 +4914,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4628,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4642,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4705,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4713,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4734,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4761,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4813,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4858,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4872,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -4882,7 +5183,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4910,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -4926,10 +5231,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -4943,12 +5248,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4961,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5031,11 +5333,16 @@ msgstr "" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5052,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 msgid "Generate invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 msgid "Generate new link" msgstr "" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5140,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2590 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5179,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "" @@ -5203,7 +5514,9 @@ msgid "Go back to previous step" msgstr "" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5213,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5238,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5250,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5262,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:255 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:251 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5286,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5306,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:383 +#: src/screens/Messages/ConversationSettings/index.tsx:412 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:350 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:338 +#: src/screens/Messages/ConversationSettings/index.tsx:364 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:89 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:378 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5387,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5412,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5424,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5445,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5488,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5497,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5519,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5543,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5572,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5586,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5618,19 +5954,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5679,7 +6011,6 @@ msgid "I have my own domain" msgstr "" #: src/components/dms/BlockedByListDialog.tsx:55 -#: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" msgstr "" @@ -5688,7 +6019,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5724,15 +6055,15 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5740,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5753,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5784,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5824,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5848,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5921,6 +6255,10 @@ msgstr "" 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 "" @@ -5930,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5948,6 +6290,11 @@ msgstr "" msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -5968,8 +6315,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 msgid "Invite Friends" msgstr "" @@ -5977,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 -#: src/screens/Messages/ConversationSettings/index.tsx:508 +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 msgid "Invite link disabled" msgstr "" @@ -6007,6 +6371,11 @@ msgstr "" 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 "" @@ -6041,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2505 msgid "Job ID: {0}" msgstr "" @@ -6050,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6057,6 +6431,16 @@ msgstr "" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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" @@ -6066,8 +6450,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1446 +#: src/view/com/composer/Composer.tsx:1456 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6076,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6110,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6141,7 +6530,7 @@ msgid "Latest" msgstr "" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6168,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6196,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6206,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6219,37 +6608,48 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:542 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 msgid "Leave" msgstr "" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" -#: src/components/dms/ConvoMenu.tsx:229 -#: src/components/dms/ConvoMenu.tsx:233 -#: src/components/dms/ConvoMenu.tsx:299 -#: src/components/dms/ConvoMenu.tsx:303 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:541 +#: src/screens/Messages/ConversationSettings/index.tsx:584 msgid "Leave this group chat" msgstr "" @@ -6258,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6286,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6305,11 +6713,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6317,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6336,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6368,11 +6768,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6458,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6504,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6554,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:520 +#: src/screens/Messages/ConversationSettings/index.tsx:562 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6591,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6621,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6646,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:241 -#: src/components/dms/ConvoMenu.tsx:245 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6685,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6720,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 msgctxt "action" msgid "Message" msgstr "" @@ -6730,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6772,19 +7170,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:651 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6797,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6809,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -6853,7 +7247,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -6862,7 +7256,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6887,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "" @@ -6908,7 +7302,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:526 msgid "Mute" msgstr "" @@ -6924,8 +7318,8 @@ msgstr "" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6936,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:260 #: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -6953,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:485 +#: src/screens/Messages/ConversationSettings/index.tsx:524 msgid "Mute this group chat" msgstr "" @@ -6981,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: 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:526 msgid "Muted" msgstr "" @@ -6999,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7021,6 +7419,10 @@ msgstr "" 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" @@ -7063,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:345 -#: src/components/moderation/ReportDialog/index.tsx:362 +#: 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 "" @@ -7076,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7087,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:107 -#: src/components/dms/dialogs/NewChatDialog.tsx:117 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 msgid "New chat with {0}" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 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 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7130,26 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 -#: src/components/dms/InitiateChatFlow.tsx:715 -#: src/components/dms/InitiateChatFlow.tsx:743 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#. 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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7180,16 +7587,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7215,8 +7622,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7237,6 +7644,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7274,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7288,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7306,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7315,7 +7726,7 @@ msgstr "" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "" @@ -7331,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7352,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7388,8 +7799,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7399,8 +7810,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7462,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7475,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "" @@ -7501,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "" @@ -7554,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "" @@ -7576,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:658 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7601,27 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7630,6 +8037,26 @@ msgstr "" 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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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 @@ -7640,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -7648,6 +8085,10 @@ msgstr "" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7657,7 +8098,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7665,12 +8106,17 @@ msgstr "" msgid "Open camera" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 msgid "Open chat member options for {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7684,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2145 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7705,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:408 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7735,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7762,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:409 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7775,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "" @@ -7783,7 +8250,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7803,22 +8270,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:302 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:288 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7835,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7847,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7864,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -7940,12 +8416,14 @@ msgstr "" msgid "Our blog post" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:88 -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" @@ -7953,14 +8431,15 @@ msgstr "" msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8011,34 +8490,34 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 msgid "People I follow can request to join" msgstr "" @@ -8079,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8095,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8109,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8179,7 +8662,7 @@ msgstr "" msgid "Please choose your password." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8187,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8208,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8228,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8236,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8249,7 +8732,7 @@ msgstr "" msgid "Please enter your invite code." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8266,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" @@ -8301,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8309,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8326,7 +8813,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1793 msgctxt "action" msgid "Post" msgstr "" @@ -8346,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1791 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1455 msgid "Post anyway" msgstr "" @@ -8360,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8397,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 msgid "Post link" msgstr "" @@ -8434,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8448,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8468,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:349 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8479,7 +8966,7 @@ msgstr "" msgid "Press to view followers of this account that you also follow" msgstr "" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8502,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8529,15 +9015,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2579 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2581 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8545,10 +9031,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8556,6 +9042,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8578,39 +9065,39 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1777 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1772 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1761 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1766 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:140 @@ -8622,13 +9109,10 @@ msgid "QR code has been downloaded!" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8637,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8654,12 +9138,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8671,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:413 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 msgid "Re-enable link" msgstr "" @@ -8688,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8707,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8755,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8784,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8806,6 +9304,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8821,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:231 msgid "Remove {displayName} from this group chat" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8834,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8857,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8872,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8902,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8925,7 +9431,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -8952,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:224 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:222 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -8978,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9032,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "" @@ -9047,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1789 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9068,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9080,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:533 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 msgid "Report" msgstr "" @@ -9100,21 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:287 -#: src/components/dms/ConvoMenu.tsx:291 -#: src/components/dms/ReportConversationPrompt.tsx:17 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:265 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9123,12 +9623,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9141,12 +9641,15 @@ msgstr "" msgid "Report starter pack" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:85 -#: src/components/dms/AfterReportDialog.tsx:177 +#: 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 "" @@ -9154,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:532 +#: src/screens/Messages/ConversationSettings/index.tsx:576 msgid "Report this group chat" msgstr "" @@ -9163,7 +9666,7 @@ msgid "Report this list" msgstr "" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9197,10 +9700,6 @@ msgstr "" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9223,23 +9722,27 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9247,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9269,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9314,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9332,17 +9864,18 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:299 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 @@ -9356,25 +9889,25 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:296 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9395,7 +9928,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:207 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9420,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1408 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1410 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9459,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9475,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9501,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9517,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9603,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9618,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9700,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9769,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9791,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:434 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9845,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9862,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9876,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9893,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:824 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9901,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9915,7 +10460,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -9956,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -9971,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10020,16 +10565,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 #: src/components/StarterPack/QrCodeDialog.tsx:195 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "" @@ -10038,16 +10586,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10055,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10065,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10083,8 +10641,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10092,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10108,16 +10666,16 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10138,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10160,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10187,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10211,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10238,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10270,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:213 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10278,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:212 +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 "" @@ -10289,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10300,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10332,7 +10900,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1453 msgid "Skip empty posts?" msgstr "" @@ -10346,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10354,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10403,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10428,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:110 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/JoinRequests.tsx:87 msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:291 +#: 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 @@ -10458,11 +11031,11 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:239 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10505,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:123 +#: 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:191 msgid "Start a new chat" msgstr "" @@ -10523,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:779 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10595,12 +11173,12 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10612,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "" @@ -10625,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:512 -#: src/components/moderation/ReportDialog/index.tsx:573 -#: src/components/moderation/ReportDialog/index.tsx:580 +#: 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 "" @@ -10636,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10673,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:108 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10711,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10721,12 +11303,20 @@ msgstr "" 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10735,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10757,11 +11347,15 @@ msgstr "" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10787,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10857,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -10872,7 +11484,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "" @@ -10914,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -10982,6 +11594,11 @@ msgstr "" 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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -10990,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11034,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:499 msgid "There is no invite link for this group chat." msgstr "" @@ -11048,10 +11665,13 @@ 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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11059,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11069,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11094,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11154,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11187,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" @@ -11196,7 +11824,7 @@ msgstr "" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11204,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11243,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:128 +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 "" @@ -11251,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11289,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11301,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11310,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11343,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:624 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:620 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11367,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11383,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:130 +#: src/screens/Messages/ConversationSettings/index.tsx:151 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "This screen is only available for group conversations." msgstr "" @@ -11407,7 +12066,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/features/liveNow/index.tsx:200 +#: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." msgstr "" @@ -11423,15 +12082,23 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: 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 +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 "" @@ -11476,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11499,7 +12166,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11525,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11534,10 +12201,6 @@ msgstr "" msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." msgstr "" -#: src/components/dms/ReportConversationPrompt.tsx:19 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" - #: src/components/dms/DateDivider.tsx:27 msgid "Today" msgstr "" @@ -11575,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11596,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11631,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11640,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:167 +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 "" @@ -11692,6 +12369,18 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" msgstr "" @@ -11712,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:662 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "" @@ -11758,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11780,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11793,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:496 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11805,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11825,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:519 +#: src/screens/Messages/ConversationSettings/index.tsx:561 msgid "Unlock this group chat" msgstr "" @@ -11860,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:265 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -11876,12 +12562,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:484 +#: src/screens/Messages/ConversationSettings/index.tsx:523 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11895,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11917,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -11951,14 +12637,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1542 msgid "Unsupported video type: {mimeType}" 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" @@ -11968,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 #: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 msgid "Update invite link" msgstr "" @@ -11986,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12001,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12019,39 +12717,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2572 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2574 msgid "Uploading video..." msgstr "" @@ -12094,7 +12793,8 @@ msgstr "" msgid "user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12131,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12175,12 +12875,12 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12197,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12224,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12236,7 +12936,7 @@ 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12269,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12300,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12339,7 +13039,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2592 msgid "Video uploaded" msgstr "" @@ -12352,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1136 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:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12375,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12387,20 +13087,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 +#: src/components/dms/MessagesListHeader.tsx:111 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 msgid "View {displayName}’s profile" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12423,10 +13118,18 @@ msgstr "" msgid "View full thread" msgstr "" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42 +#: 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:56 msgid "View information about these labels" msgstr "" @@ -12442,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1131 msgid "View post" msgstr "" @@ -12459,10 +13162,10 @@ msgstr "" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12470,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:506 +#: src/screens/Messages/ConversationSettings/index.tsx:548 msgid "View the invite link for this group chat" msgstr "" @@ -12483,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12516,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12560,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12585,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:111 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 msgid "We couldn’t load this conversation’s settings" msgstr "" @@ -12635,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -12664,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12699,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12734,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "" @@ -12785,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12798,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 msgid "Who can join this group chat and how" msgstr "" @@ -12807,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12827,6 +13534,7 @@ 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 "" @@ -12858,15 +13566,19 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:49 +#: 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:1320 +#: src/view/com/composer/Composer.tsx:1424 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12875,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1602 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1504 msgid "Write your reply" msgstr "" @@ -12893,7 +13605,8 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:129 +#: src/screens/Messages/ConversationSettings/index.tsx:150 +#: src/screens/Messages/JoinRequests.tsx:109 msgid "Wrong kind of conversation" msgstr "" @@ -12920,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -12945,7 +13658,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:635 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -12979,11 +13692,11 @@ msgstr "" msgid "You are Live" msgstr "" -#: src/features/liveNow/index.tsx:368 +#: src/features/liveNow/index.tsx:371 msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "" @@ -12991,7 +13704,7 @@ msgstr "" msgid "You are not following anyone yet" msgstr "" -#: src/features/liveNow/index.tsx:312 +#: src/features/liveNow/index.tsx:315 msgid "You are now live!" msgstr "" @@ -13032,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13054,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13070,9 +13792,9 @@ msgstr "" 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13081,6 +13803,15 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13108,6 +13839,10 @@ msgstr "" msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13177,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1419 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13235,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13244,10 +13983,11 @@ msgid "You must be following at least seven other people to generate a starter p msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13255,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13265,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13279,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13289,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13301,12 +14050,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13340,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13374,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13386,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -13410,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "" @@ -13430,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "" @@ -13438,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13472,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13493,7 +14254,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13522,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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 @@ -13534,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1127 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1124 msgid "Your posts were sent" msgstr "" @@ -13546,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13559,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1126 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:523 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13572,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1454 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 80161ce405..81669d4234 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:203 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:639 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" msgid "{0}s" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:427 +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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:811 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,13 +645,13 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:33 -msgid "{memberCount}/{MEMBER_LIMIT}" +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" msgstr "" #: src/features/liveNow/utils.ts:10 @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,6 +870,13 @@ 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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -802,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -825,7 +907,11 @@ msgstr "" 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/Navigation.tsx:547 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -837,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:452 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -854,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -872,15 +977,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -893,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -993,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1006,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1505 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2168 msgid "Add another post to thread" msgstr "" @@ -1029,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1037,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1046,7 +1147,7 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" @@ -1056,8 +1157,8 @@ msgstr "" msgid "Add members" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:528 #: src/components/moderation/ReportDialog/index.tsx:532 -#: src/components/moderation/ReportDialog/index.tsx:536 msgid "Add more details (optional)" msgstr "" @@ -1074,8 +1175,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 #: src/screens/ProfileList/AboutSection.tsx:72 #: src/screens/ProfileList/AboutSection.tsx:90 msgid "Add people" @@ -1085,6 +1186,10 @@ msgstr "" 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 "" @@ -1133,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1159,11 +1264,11 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:550 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 msgid "Admin" msgstr "" @@ -1222,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1235,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1272,13 +1377,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1332,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1356,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1381,7 +1486,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "" @@ -1416,6 +1521,7 @@ msgid "An error occurred while loading your lists :/" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1426,11 +1532,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1450,25 +1556,29 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: src/screens/Messages/components/InviteLinkDialog.tsx:190 +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:56 -msgid "An issue occurred creating the group chat, please try again" +#: 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:42 -msgid "An issue occurred starting the chat, please try again" +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +msgid "An issue occurred starting the chat, please try again." msgstr "" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 @@ -1479,12 +1589,12 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1533,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 msgid "Anyone can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 msgid "Anyone can request to join" msgstr "" @@ -1549,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: src/screens/Messages/components/InviteLinkDialog.tsx:458 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1591,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1612,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "" @@ -1626,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1651,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1669,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1682,23 +1796,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1718,8 +1838,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1746,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1761,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1777,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1790,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1826,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1834,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 msgid "Before you can message another user, you must first verify your email." msgstr "" @@ -1868,53 +1991,53 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:147 -msgid "Block and Delete" +#: 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:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1922,20 +2045,29 @@ msgstr "" msgid "Block these accounts?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:188 -#: src/components/dms/AfterReportDialog.tsx:191 +#: 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 "" -#: src/components/dms/AfterReportDialog.tsx:153 -msgid "Block User" +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:184 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:196 +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -1943,14 +2075,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1966,7 +2096,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -1979,7 +2109,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2008,7 +2138,7 @@ msgstr "" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2016,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2032,7 +2166,7 @@ msgstr "" 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2060,6 +2194,10 @@ msgstr "" 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" @@ -2116,24 +2254,34 @@ msgstr "" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:853 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:174 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2160,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2171,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2191,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2207,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2227,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "" @@ -2243,7 +2400,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2276,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:449 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2289,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:314 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:394 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2323,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2340,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2352,31 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:199 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:82 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2393,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:201 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2454,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 msgid "Choose who can join this group chat and how." msgstr "" @@ -2508,7 +2684,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:126 msgid "Click here to add people to this group chat" msgstr "" @@ -2516,7 +2692,7 @@ msgstr "" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 msgid "Click here to create or manage an invite link for this group chat" msgstr "" @@ -2533,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2542,11 +2718,11 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:141 msgid "Click here to view the invite link for this group chat" msgstr "" @@ -2555,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "" @@ -2569,24 +2745,30 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 -#: src/components/dms/AfterReportDialog.tsx:93 -#: src/components/dms/AfterReportDialog.tsx:98 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2594,14 +2776,14 @@ msgstr "" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 #: src/screens/Settings/components/ChangePasswordDialog.tsx:288 #: src/screens/Settings/components/ChangePasswordDialog.tsx:293 #: src/view/com/feeds/MissingFeed.tsx:211 @@ -2610,7 +2792,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2618,6 +2800,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2628,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "" @@ -2643,17 +2831,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "" @@ -2666,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1727 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2696,7 +2900,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2711,12 +2915,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1603 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2724,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2565 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2567 msgid "Compressing video..." msgstr "" @@ -2751,7 +2955,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2788,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2796,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2813,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2860,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2879,40 +3083,53 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:148 -#: src/components/dms/AfterReportDialog.tsx:151 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2929,7 +3146,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 msgid "Copy" msgstr "" @@ -2962,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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" @@ -2983,8 +3210,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -2992,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "" @@ -3002,8 +3229,8 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" @@ -3017,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3030,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3038,22 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:138 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: 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:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3064,7 +3308,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:205 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3072,11 +3320,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3103,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3123,7 +3379,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:207 #: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3138,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3162,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3170,7 +3427,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3192,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:301 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:547 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:713 -#: src/components/moderation/ReportDialog/index.tsx:759 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3220,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:461 +#: src/screens/Messages/components/InviteLinkDialog.tsx:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3234,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3275,6 +3537,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3305,8 +3575,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3333,8 +3603,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3342,22 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:194 -#: src/components/dms/AfterReportDialog.tsx:197 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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/AfterReportDialog.tsx:150 -msgid "Delete Conversation" -msgstr "" - -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3366,11 +3633,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3378,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1615 msgid "Delete post" msgstr "" @@ -3397,17 +3664,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:189 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3438,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3474,13 +3741,13 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 msgid "Disable" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3488,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3501,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 msgid "Disable link" msgstr "" @@ -3514,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:455 msgid "Disable this invite link?" msgstr "" @@ -3527,9 +3794,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3540,19 +3807,19 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1396 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1640 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3576,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2486 msgid "Dismiss error" msgstr "" @@ -3609,6 +3877,10 @@ msgstr "" 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" @@ -3640,7 +3912,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3648,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3667,15 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 -#: src/components/dms/AfterReportDialog.tsx:144 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3691,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3703,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3725,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3753,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3789,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3804,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3813,19 +4102,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3834,7 +4123,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 msgid "Edit link settings" msgstr "" @@ -3852,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:495 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -3878,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -3891,7 +4184,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:494 +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Edit this group chat’s name" msgstr "" @@ -3903,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3937,7 +4231,7 @@ msgstr "" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -3972,8 +4266,8 @@ msgstr "" msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -3991,7 +4285,7 @@ msgstr "" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4004,13 +4298,12 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4057,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4109,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2585 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4151,23 +4444,23 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4183,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4204,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4243,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4255,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4288,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4297,13 +4587,17 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" @@ -4320,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 msgid "Failed to copy link" msgstr "" @@ -4329,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:101 msgid "Failed to create invite link" msgstr "" @@ -4342,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4360,24 +4655,24 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:124 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:343 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 msgid "Failed to enable invite link" msgstr "" @@ -4393,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:370 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4422,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4459,16 +4753,15 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:391 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:357 +#: src/screens/Messages/ConversationSettings/index.tsx:383 msgid "Failed to mute group chat" msgstr "" @@ -4477,22 +4770,22 @@ msgid "Failed to pin post" msgstr "" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4500,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:73 msgid "Failed to remove group chat member" msgstr "" @@ -4508,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:158 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4535,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4546,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:394 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:429 msgid "Failed to unlock group chat" msgstr "" @@ -4563,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4580,7 +4879,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4607,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4615,7 +4914,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4628,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4642,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4705,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4713,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4734,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4761,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4813,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4858,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4872,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -4882,7 +5183,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4910,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -4926,10 +5231,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -4943,12 +5248,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4961,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5031,11 +5333,16 @@ msgstr "" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5052,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 msgid "Generate invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 msgid "Generate new link" msgstr "" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5140,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2590 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5179,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "" @@ -5203,7 +5514,9 @@ msgid "Go back to previous step" msgstr "" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5213,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5238,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5250,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5262,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:255 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:251 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5286,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5306,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:383 +#: src/screens/Messages/ConversationSettings/index.tsx:412 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:350 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:338 +#: src/screens/Messages/ConversationSettings/index.tsx:364 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:89 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:378 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5387,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5412,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5424,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5445,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5488,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5497,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5519,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5543,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5572,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5586,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5618,19 +5954,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5679,7 +6011,6 @@ msgid "I have my own domain" msgstr "" #: src/components/dms/BlockedByListDialog.tsx:55 -#: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" msgstr "" @@ -5688,7 +6019,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5724,15 +6055,15 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5740,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5753,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5784,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5824,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5848,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5921,6 +6255,10 @@ msgstr "" 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 "" @@ -5930,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5948,6 +6290,11 @@ msgstr "" msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -5968,8 +6315,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 msgid "Invite Friends" msgstr "" @@ -5977,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 -#: src/screens/Messages/ConversationSettings/index.tsx:508 +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 msgid "Invite link disabled" msgstr "" @@ -6007,6 +6371,11 @@ msgstr "" 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 "" @@ -6041,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2505 msgid "Job ID: {0}" msgstr "" @@ -6050,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6057,6 +6431,16 @@ msgstr "" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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" @@ -6066,8 +6450,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1446 +#: src/view/com/composer/Composer.tsx:1456 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6076,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6110,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6141,7 +6530,7 @@ msgid "Latest" msgstr "" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6168,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6196,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6206,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6219,37 +6608,48 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:542 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 msgid "Leave" msgstr "" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" -#: src/components/dms/ConvoMenu.tsx:229 -#: src/components/dms/ConvoMenu.tsx:233 -#: src/components/dms/ConvoMenu.tsx:299 -#: src/components/dms/ConvoMenu.tsx:303 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:541 +#: src/screens/Messages/ConversationSettings/index.tsx:584 msgid "Leave this group chat" msgstr "" @@ -6258,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6286,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6305,11 +6713,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6317,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6336,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6368,11 +6768,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6458,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6504,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6554,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:520 +#: src/screens/Messages/ConversationSettings/index.tsx:562 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6591,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6621,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6646,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:241 -#: src/components/dms/ConvoMenu.tsx:245 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6685,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6720,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 msgctxt "action" msgid "Message" msgstr "" @@ -6730,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6772,19 +7170,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:651 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6797,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6809,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -6853,7 +7247,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -6862,7 +7256,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6887,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "" @@ -6908,7 +7302,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:526 msgid "Mute" msgstr "" @@ -6924,8 +7318,8 @@ msgstr "" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6936,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:260 #: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -6953,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:485 +#: src/screens/Messages/ConversationSettings/index.tsx:524 msgid "Mute this group chat" msgstr "" @@ -6981,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: 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:526 msgid "Muted" msgstr "" @@ -6999,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7021,6 +7419,10 @@ msgstr "" 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" @@ -7063,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:345 -#: src/components/moderation/ReportDialog/index.tsx:362 +#: 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 "" @@ -7076,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7087,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:107 -#: src/components/dms/dialogs/NewChatDialog.tsx:117 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 msgid "New chat with {0}" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 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 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7130,26 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 -#: src/components/dms/InitiateChatFlow.tsx:715 -#: src/components/dms/InitiateChatFlow.tsx:743 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#. 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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7180,16 +7587,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7215,8 +7622,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7237,6 +7644,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7274,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7288,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7306,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7315,7 +7726,7 @@ msgstr "" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "" @@ -7331,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7352,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7388,8 +7799,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7399,8 +7810,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7462,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7475,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "" @@ -7501,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "" @@ -7554,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "" @@ -7576,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:658 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7601,27 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7630,6 +8037,26 @@ msgstr "" 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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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 @@ -7640,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -7648,6 +8085,10 @@ msgstr "" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7657,7 +8098,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7665,12 +8106,17 @@ msgstr "" msgid "Open camera" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 msgid "Open chat member options for {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7684,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2145 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7705,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:408 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7735,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7762,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:409 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7775,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "" @@ -7783,7 +8250,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7803,22 +8270,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:302 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:288 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7835,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7847,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7864,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -7940,12 +8416,14 @@ msgstr "" msgid "Our blog post" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:88 -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" @@ -7953,14 +8431,15 @@ msgstr "" msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8011,34 +8490,34 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 msgid "People I follow can request to join" msgstr "" @@ -8079,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8095,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8109,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8179,7 +8662,7 @@ msgstr "" msgid "Please choose your password." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8187,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8208,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8228,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8236,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8249,7 +8732,7 @@ msgstr "" msgid "Please enter your invite code." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8266,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" @@ -8301,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8309,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8326,7 +8813,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1793 msgctxt "action" msgid "Post" msgstr "" @@ -8346,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1791 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1455 msgid "Post anyway" msgstr "" @@ -8360,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8397,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 msgid "Post link" msgstr "" @@ -8434,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8448,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8468,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:349 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8479,7 +8966,7 @@ msgstr "" msgid "Press to view followers of this account that you also follow" msgstr "" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8502,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8529,15 +9015,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2579 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2581 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8545,10 +9031,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8556,6 +9042,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8578,39 +9065,39 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1777 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1772 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1761 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1766 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:140 @@ -8622,13 +9109,10 @@ msgid "QR code has been downloaded!" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8637,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8654,12 +9138,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8671,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:413 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 msgid "Re-enable link" msgstr "" @@ -8688,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8707,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8755,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8784,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8806,6 +9304,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8821,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:231 msgid "Remove {displayName} from this group chat" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8834,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8857,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8872,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8902,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8925,7 +9431,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -8952,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:224 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:222 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -8978,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9032,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "" @@ -9047,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1789 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9068,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9080,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:533 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 msgid "Report" msgstr "" @@ -9100,21 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:287 -#: src/components/dms/ConvoMenu.tsx:291 -#: src/components/dms/ReportConversationPrompt.tsx:17 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:265 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9123,12 +9623,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9141,12 +9641,15 @@ msgstr "" msgid "Report starter pack" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:85 -#: src/components/dms/AfterReportDialog.tsx:177 +#: 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 "" @@ -9154,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:532 +#: src/screens/Messages/ConversationSettings/index.tsx:576 msgid "Report this group chat" msgstr "" @@ -9163,7 +9666,7 @@ msgid "Report this list" msgstr "" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9197,10 +9700,6 @@ msgstr "" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9223,23 +9722,27 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9247,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9269,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9314,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9332,17 +9864,18 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:299 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 @@ -9356,25 +9889,25 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:296 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9395,7 +9928,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:207 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9420,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1408 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1410 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9459,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9475,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9501,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9517,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9603,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9618,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9700,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9769,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9791,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:434 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9845,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9862,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9876,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9893,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:824 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9901,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9915,7 +10460,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -9956,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -9971,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10020,16 +10565,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 #: src/components/StarterPack/QrCodeDialog.tsx:195 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "" @@ -10038,16 +10586,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10055,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10065,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10083,8 +10641,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10092,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10108,16 +10666,16 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10138,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10160,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10187,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10211,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10238,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10270,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:213 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10278,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:212 +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 "" @@ -10289,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10300,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10332,7 +10900,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1453 msgid "Skip empty posts?" msgstr "" @@ -10346,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10354,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10403,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10428,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:110 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/JoinRequests.tsx:87 msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:291 +#: 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 @@ -10458,11 +11031,11 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:239 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10505,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:123 +#: 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:191 msgid "Start a new chat" msgstr "" @@ -10523,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:779 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10595,12 +11173,12 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10612,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "" @@ -10625,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:512 -#: src/components/moderation/ReportDialog/index.tsx:573 -#: src/components/moderation/ReportDialog/index.tsx:580 +#: 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 "" @@ -10636,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10673,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:108 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10711,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10721,12 +11303,20 @@ msgstr "" 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10735,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10757,11 +11347,15 @@ msgstr "" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10787,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10857,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -10872,7 +11484,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "" @@ -10914,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -10982,6 +11594,11 @@ msgstr "" 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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -10990,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11034,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:499 msgid "There is no invite link for this group chat." msgstr "" @@ -11048,10 +11665,13 @@ 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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11059,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11069,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11094,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11154,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11187,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" @@ -11196,7 +11824,7 @@ msgstr "" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11204,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11243,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:128 +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 "" @@ -11251,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11289,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11301,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11310,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11343,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:624 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:620 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11367,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11383,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:130 +#: src/screens/Messages/ConversationSettings/index.tsx:151 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "This screen is only available for group conversations." msgstr "" @@ -11407,7 +12066,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/features/liveNow/index.tsx:200 +#: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." msgstr "" @@ -11423,15 +12082,23 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: 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 +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 "" @@ -11476,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11499,7 +12166,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11525,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11534,10 +12201,6 @@ msgstr "" msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." msgstr "" -#: src/components/dms/ReportConversationPrompt.tsx:19 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" - #: src/components/dms/DateDivider.tsx:27 msgid "Today" msgstr "" @@ -11575,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11596,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11631,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11640,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:167 +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 "" @@ -11692,6 +12369,18 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" msgstr "" @@ -11712,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:662 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "" @@ -11758,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11780,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11793,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:496 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11805,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11825,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:519 +#: src/screens/Messages/ConversationSettings/index.tsx:561 msgid "Unlock this group chat" msgstr "" @@ -11860,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:265 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -11876,12 +12562,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:484 +#: src/screens/Messages/ConversationSettings/index.tsx:523 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11895,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11917,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -11951,14 +12637,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1542 msgid "Unsupported video type: {mimeType}" 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" @@ -11968,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 #: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 msgid "Update invite link" msgstr "" @@ -11986,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12001,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12019,39 +12717,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2572 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2574 msgid "Uploading video..." msgstr "" @@ -12094,7 +12793,8 @@ msgstr "" msgid "user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12131,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12175,12 +12875,12 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12197,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12224,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12236,7 +12936,7 @@ 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12269,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12300,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12339,7 +13039,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2592 msgid "Video uploaded" msgstr "" @@ -12352,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1136 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:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12375,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12387,20 +13087,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 +#: src/components/dms/MessagesListHeader.tsx:111 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 msgid "View {displayName}’s profile" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12423,10 +13118,18 @@ msgstr "" msgid "View full thread" msgstr "" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42 +#: 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:56 msgid "View information about these labels" msgstr "" @@ -12442,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1131 msgid "View post" msgstr "" @@ -12459,10 +13162,10 @@ msgstr "" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12470,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:506 +#: src/screens/Messages/ConversationSettings/index.tsx:548 msgid "View the invite link for this group chat" msgstr "" @@ -12483,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12516,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12560,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12585,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:111 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 msgid "We couldn’t load this conversation’s settings" msgstr "" @@ -12635,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -12664,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12699,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12734,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "" @@ -12785,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12798,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 msgid "Who can join this group chat and how" msgstr "" @@ -12807,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12827,6 +13534,7 @@ 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 "" @@ -12858,15 +13566,19 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:49 +#: 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:1320 +#: src/view/com/composer/Composer.tsx:1424 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12875,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1602 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1504 msgid "Write your reply" msgstr "" @@ -12893,7 +13605,8 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:129 +#: src/screens/Messages/ConversationSettings/index.tsx:150 +#: src/screens/Messages/JoinRequests.tsx:109 msgid "Wrong kind of conversation" msgstr "" @@ -12920,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -12945,7 +13658,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:635 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -12979,11 +13692,11 @@ msgstr "" msgid "You are Live" msgstr "" -#: src/features/liveNow/index.tsx:368 +#: src/features/liveNow/index.tsx:371 msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "" @@ -12991,7 +13704,7 @@ msgstr "" msgid "You are not following anyone yet" msgstr "" -#: src/features/liveNow/index.tsx:312 +#: src/features/liveNow/index.tsx:315 msgid "You are now live!" msgstr "" @@ -13032,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13054,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13070,9 +13792,9 @@ msgstr "" 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13081,6 +13803,15 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13108,6 +13839,10 @@ msgstr "" msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13177,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1419 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13235,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13244,10 +13983,11 @@ msgid "You must be following at least seven other people to generate a starter p msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13255,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13265,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13279,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13289,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13301,12 +14050,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13340,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13374,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13386,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -13410,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "" @@ -13430,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "" @@ -13438,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13472,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13493,7 +14254,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13522,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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 @@ -13534,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1127 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1124 msgid "Your posts were sent" msgstr "" @@ -13546,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13559,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1126 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:523 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13572,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1454 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 2f12ec3fec..8c79ebf2b8 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" categoria (activa)A" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(té contingut incrustat)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# m'agrada} other {# m'agrades}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membre} other {# membres}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minut} other {# minuts}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mes} other {# mesos}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# persona ha} other {# persones han}} reaccionat– {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# segon} other {# segons}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# element sense llegir} other {# elements sense llegir}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>text i etiquetes" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} s'ha afegit al xat" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} i {1} s'han afegit al xat" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} seguint" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} ha reaccionat amb {1}" @@ -290,7 +299,7 @@ msgstr "{0} ha estat eliminat del grup" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, una llista de {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Avatar de: {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} min" msgid "{0}s" msgstr "{0} s" +#: 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 "{count, plural, one {# actualització de xat} other {# actualitzacions de xat}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# sol·licitud} other {# sol·licituds}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# element sense llegir} other {# elements sense llegir}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ sol·licituds" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minuts}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} s'han registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} t'ha seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} t'ha seguit de tornada" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} li ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} li ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} li ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} ha tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} ha republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} s'ha registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} t'ha verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} els ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} han republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} s'han registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} i{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} t'han verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} t'ha seguit" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} t'ha seguit de tornada" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} li ha agradat el teu canal personalitzat" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} li ha agradat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} li ha agradat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} ha tret la seva verificació del teu compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha republicat la teva publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} ha republicat la teva republicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} s'ha registrat amb el teu starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} t'ha verificat" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} t'ha verificat" msgid "{following} following" msgstr "{following} seguint" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} no es pot afegir" @@ -547,7 +606,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:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "No es poden enviar missatges a {handle}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# hora{minutesString}} other {# hores{minutesString msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# hora} other {# hores}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "{MAX_DESCRIPTION, plural, other {La descripció és massa llarga, el nom msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {El nom per mostrar és massa llarg, el nombre màxim de caràcters és #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Pots amagar un màxim de # respostes.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} ha reaccionat {0} a {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Els canals i les persones preferits de {name}: uneix-te a mi!" msgid "{name}'s starter pack" msgstr "Starter pack de: {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# element sense llegir} other {# elements sense llegir}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacte trobat} other {# contactes trobats}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# sol·licitud} other {# sol·licituds}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ sol·licituds" @@ -656,6 +725,12 @@ msgstr "{userName} està verificat" msgid "{userName}'s verifications" msgstr "Verificacions de {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} es #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidors}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {m'agrada} other {m'agrades}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {cites}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicació} other {republicacions}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {desada} other {desades}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} membres" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "S'ha produït un error de xarxa. Si us plau, comprova la connexió a Int #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "S'ha produït un error de xarxa. Si us plau, comprova la connexió a Internet." @@ -804,7 +884,7 @@ msgstr "S'ha produït un error de xarxa. Si us plau, comprova la connexió a Int msgid "A new code has been sent" msgstr "S'ha enviat un codi nou" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Una nova forma de verificació" @@ -827,11 +907,11 @@ msgstr "Una captura de pantalla d'una pàgina de perfil amb una icona de campana 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Comportament abusiu o discriminatori" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Accepta" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Accepta" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Accepta la sol·licitud de xat" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Accepta la sol·licitud" @@ -860,17 +950,26 @@ msgstr "Accepta la sol·licitud" msgid "Accept this language suggestion" msgstr "Accepta aquest suggeriment d'idioma" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accessibilitat" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Configuració d'accessibilitat" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Configuració d'accessibilitat" msgid "Account" msgstr "Compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Compte bloquejat" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Compte seguit" @@ -899,7 +998,7 @@ msgstr "S'ha suspès el compte" msgid "Account is deactivated" msgstr "S'ha desactivat el compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Proveïdor de comptes" msgid "Account removed from quick access" msgstr "Compte eliminat de l'accés ràpid" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Compte desbloquejat" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Compte no seguit" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Compte no silenciat" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Els comptes amb una marca de verificació blava<0><1/>poden verificar-ne altres. Bluesky selecciona aquests verificadors de confiança." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Activitat d'altres persones" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notificacions d'activitat" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Afegeix" @@ -999,8 +1094,8 @@ msgstr "Afegeix un compte" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Afegeix text alternatiu (opcional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Afegeix un altre compte" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Afegeix una altra publicació" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Afegeix una altra publicació al fil" @@ -1035,7 +1130,7 @@ msgstr "Afegeix una contrasenya d'aplicació" msgid "Add App Password" msgstr "Afegeix una contrasenya d'aplicació" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Afegeix una etiqueta d'automatització al compte" @@ -1043,7 +1138,7 @@ msgstr "Afegeix una etiqueta d'automatització al compte" msgid "Add emoji reaction" msgstr "Afegeix una reacció d'emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Afegeix membres al grup del xat" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Afegeix imatge" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Afegeix imatges a la publicació" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Afegeix membre" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Afegeix més detalls (opcional)" @@ -1091,6 +1186,10 @@ msgstr "Afegeix gent" msgid "Add people to list" msgstr "Afegeix gent a la llista" +#: 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 "Afegeix una reacció" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Afegeix la teva data de naixement" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Afegit per {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Afegit mitjançant enllaç d'invitació" @@ -1165,12 +1264,12 @@ msgstr "Afegint membres a la llista..." msgid "Additional details (limit 1000 characters)" msgstr "Detalls addicionals (límit de 1000 caràcters)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Detalls addicionals (límit de 300 caràcters)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "S'ha enviat la sol·licitud de garantia d'edat" msgid "Age assurance only takes a few minutes" msgstr "La garantia d'edat només triga uns minuts" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "josepmaria@exemple.cat" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Totes" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Totes {0}" @@ -1278,13 +1377,13 @@ msgstr "Permet l'accés als teus missatges directes" msgid "Allow anyone to reply" msgstr "Permet respondre a tothom" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Permet missatges directes de" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Permet invitacions a grups de xat de" @@ -1338,12 +1437,12 @@ msgstr "Ja tens un compte?" msgid "Already signed in as @{0}" msgstr "Ja estàs registrat com a @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Text alternatiu" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "El text alternatiu descriu les imatges per a les persones cegues o amb problemes de visió, i ajuda donar context a tothom." @@ -1387,7 +1486,7 @@ msgstr "Hi ha hagut un error" msgid "An error occurred" msgstr "Hi ha hagut un error" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Hi ha hagut un error mentre es comprimia el vídeo." @@ -1421,7 +1520,8 @@ msgstr "Hi ha hagut un error mentre es carregava el vídeo. Prova-ho més tard." msgid "An error occurred while loading your lists :/" msgstr "S'ha produït un error en carregar les teves llistes :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "S'ha produït un error en desar el codi QR!" @@ -1432,11 +1532,11 @@ msgstr "S'ha produït un error en desar el codi QR!" msgid "An error occurred while trying to follow all" msgstr "S'ha produït un error en intentar seguir-ho tot" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Hi ha hagut un error mentre es pujava el vídeo. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "S'ha produït un error en penjar el vídeo. Comprova la teva connexió a Internet i torna-ho a provar." @@ -1456,24 +1556,28 @@ msgstr "Una il·lustració que representa els avatars d'usuari que flueixen des 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" +#: 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 "Una il·lustració que mostra que Bluesky selecciona verificadors de confiança i, al seu torn, els verificadors de confiança verifiquen els comptes d'usuari individuals." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Un enllaç d'invitació permet que les persones s'uneixin a aquest xat de grup sense ser afegides directament. Tu controles qui pot utilitzar l'enllaç i si necessiten la teva aprovació. Pots desactivar l'enllaç en qualsevol moment." +#: 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 "Un problema que no està inclòs en aquestes opcions" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Hi ha hagut un problema en provar d'obrir el xat" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Hi ha hagut un problema, prova-ho de nou." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Una maqueta d'un iPhone que mostra l'aplicació Bluesky oberta al perfil d'un usuari verificat amb una marca de verificació blava al costat del seu nom de visualització." @@ -1539,13 +1643,17 @@ msgstr "Qualsevol" msgid "Anyone can interact" msgstr "Qualsevol pot interactuar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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 "Qualsevol es pot unir al moment" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Qualsevol pot sol·licitar unir-se" @@ -1555,11 +1663,11 @@ msgstr "Qualsevol pot sol·licitar unir-se" msgid "Anyone who follows me" msgstr "Qualsevol que em segueixi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" @@ -1618,7 +1726,7 @@ msgstr "Apel·la a la suspensió de la transmissió en directe" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Apel·lació enviada" @@ -1632,14 +1740,14 @@ msgstr "Apel·la la suspensió" msgid "Appeal Suspension" msgstr "Apel·la la suspensió" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apel·la aquesta decisió" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,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:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arxivat del dia {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Publicació arxivada" @@ -1675,7 +1783,7 @@ msgstr "N'estàs realment segur, de debò?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Segur que voleu suprimir la contrasenya de l'aplicació \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Estàs segur que vols esborrar aquest missatge? El missatge s'esborrarà per a tu, però no per als altres participants." @@ -1688,23 +1796,29 @@ msgstr "Estàs segur que vols eliminar aquest starter pack?" msgid "Are you sure you want to discard your changes?" msgstr "Estàs segur que vols descartar els canvis?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Segur que vols sortir de {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Segur que vols abandonar la conversa?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatges s'esborraran per a tu, però no per a l'altre participant." +#: src/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 "Segur que vols eliminar-ho dels teus canals?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Estàs segur que vols descartar aquesta publicació?" @@ -1724,8 +1838,8 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Nuesa artística o no eròtica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Assigna un tema per a l'algoritme" @@ -1752,7 +1866,7 @@ msgstr "Compte automatitzat" msgid "Automation label" msgstr "Etiqueta d'automatització" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etiqueta d'automatització" @@ -1767,12 +1881,12 @@ msgstr "Reprodueix automàticament vídeos i GIFs" msgid "Available" msgstr "Disponible" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Disponible" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Disponible" msgid "Back" msgstr "Endarrere" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Torna als xats" @@ -1832,7 +1948,7 @@ msgstr "Abans de crear una publicació o respondre-la, primer has de verificar e 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Abans d'acceptar aquest xat, primer has de verificar el teu correu." @@ -1840,13 +1956,14 @@ msgstr "Abans d'acceptar aquest xat, primer has de verificar el teu correu." msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Abans de poder rebre notificacions de les publicacions de {name}, primer has de verificar el teu correu electrònic." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Abans de poder enviar missatges a un altre usuari, primer has de verificar el teu correu." @@ -1874,45 +1991,39 @@ msgstr "Data de naixement" msgid "Birthday" msgstr "Aniversari" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloqueja" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Bloqueja {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloqueja el compte" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Bloqueja el compte?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Vols bloquejar el compte?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloqueja comptes" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Bloqueja una llista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bloqueja o denuncia" @@ -1936,9 +2047,9 @@ msgstr "Vols bloquejar aquests comptes?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloqueja l'usuari" @@ -1946,9 +2057,9 @@ msgstr "Bloqueja l'usuari" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloqueja l'usuari" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Bloqueja l'usuari i/o elimina aquesta conversa" @@ -1956,7 +2067,7 @@ msgstr "Bloqueja l'usuari i/o elimina aquesta conversa" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloquejada" @@ -1964,14 +2075,12 @@ msgstr "Bloquejada" msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Comptes bloquejats" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Els comptes bloquejats no poden respondre cap fil teu, ni anomenar-te ni interactuar amb tu de cap manera." @@ -1987,7 +2096,7 @@ msgstr "El bloqueig no evita que aquest etiquetador apliqui etiquetes al teu com msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloqueig és públic. Els comptes bloquejats no poden respondre els teus fils, ni mencionar-te ni interactuar amb tu de cap manera." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Bloquejar no evitarà que s'apliquin etiquetes al teu compte, però no deixarà que aquest compte respongui els teus fils ni interactuï amb tu." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no pot confirmar l'autenticitat de la data declarada." @@ -2029,7 +2138,7 @@ msgstr "Bluesky és millor amb col·legues!" msgid "Bluesky is more fun with friends" msgstr "Bluesky és més divertit amb amics! Importa els teus contactes per veure qui ja hi és" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky és més divertit amb amics! Importa els teus contactes per veure qui ja hi és." @@ -2037,11 +2146,15 @@ msgstr "Bluesky és més divertit amb amics! Importa els teus contactes per veur msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky és més divertit amb amics. Vols convidar-ne alguns? <0/>" +#: 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 "Condicions del servei de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la t msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky no mostrarà el teu perfil ni les publicacions als usuaris que no estiguin registrats. Altres aplicacions poden no seguir aquesta demanda. Això no fa que el teu compte sigui privat." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verificarà de manera proactiva comptes notables i autèntics." @@ -2081,6 +2194,10 @@ msgstr "Llibres" msgid "Breaking site rules" msgstr "Incompliment de les normes del lloc" +#: 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" @@ -2137,24 +2254,34 @@ msgstr "Negocis" msgid "Button to go back to the home timeline" msgstr "Botó per tornar a la cronologia d'inici" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Per {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Per <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Creant un compte indiques que estàs d'acord amb les <0>Condicions del s msgid "By you" msgstr "Per tu" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Càmera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Càmera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Càmera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Càmera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancel·la" @@ -2248,9 +2384,9 @@ msgstr "Cancel·la la reactivació i surt" msgid "Cancel search" msgstr "Cancel·la la cerca" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "No pots interactuar amb un usuari bloquejat" @@ -2264,7 +2400,7 @@ msgstr "Subtítols (.vtt)" msgid "Captions & alt text" msgstr "Subtítols i text alternatiu" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carrusel" @@ -2297,7 +2433,7 @@ msgstr "Canvia l'idioma de l'aplicació" msgid "Change Handle" msgstr "Canvia l'identificador" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Canvia el servei de moderació" @@ -2310,11 +2446,11 @@ msgstr "Canvia la contrasenya" msgid "Change password dialog" msgstr "Diàleg de canvi de contrasenya" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Canvia la categoria de l'informe" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Canvia" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Xat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Xat esborrat" @@ -2361,6 +2497,12 @@ msgstr "Xat esborrat" msgid "Chat ended" msgstr "El xat ha finalitzat" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Xat tancat" @@ -2373,35 +2515,44 @@ msgstr "Missatges del xat - silenciats" msgid "Chat messages - sound" msgstr "Missatges del xat - amb so" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Xat silenciat" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Safata de sol·licituds de xat" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Sol·licituds de xat" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Configuració del xat" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Configuració del xat" @@ -2418,14 +2569,14 @@ msgstr "S'ha canviat el títol del xat a {0}" msgid "Chat unlocked" msgstr "Xat desbloquejat" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Xat no silenciat" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Xats" @@ -2479,7 +2630,7 @@ msgstr "Tria els idiomes de publicació" msgid "Choose this color as your avatar" msgstr "Tria aquest color com el teu avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Tria qui pot unir-se a aquest xat de grup i com." @@ -2558,7 +2709,7 @@ msgstr "Fes clic aquí per tancar sessió" msgid "Click here to resend the email" msgstr "Fes clic aquí per tornar a enviar el correu electrònic" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Fes clic aquí per reiniciar el procés de verificació." @@ -2567,7 +2718,7 @@ msgstr "Fes clic aquí per reiniciar el procés de verificació." msgid "Click here to update your birthdate" msgstr "Fes clic aquí per actualitzar la teva data de naixement" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Fes clic aquí per actualitzar el teu correu" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Clica aquí per provar d'enviar el missatge de nou" @@ -2594,28 +2745,30 @@ msgstr "Clica aquí per provar d'enviar el missatge de nou" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Clica aquí per provar d'enviar el missatge de nou" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Tanca" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Tanca el diàleg actiu" @@ -2647,6 +2800,10 @@ msgstr "Tanca el diàleg actiu" msgid "Close alert" msgstr "Tanca l'advertència" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Tanca el calaix inferior" @@ -2657,8 +2814,10 @@ msgstr "Tanca el calaix inferior" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Tanca el diàleg" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Tanca la imatge" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Tanca el menú" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Tanca aquest diàleg" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Tanca l'editor de la publicació i descarta l'esborrany" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Plega la llista d'usuaris" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Plega la llista d'usuaris per una notificació concreta" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Còmics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrius de la comunitat" @@ -2740,12 +2915,12 @@ msgstr "Completa la prova" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Crea una nova publicació" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Comprimint el GIF..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Comprimint el vídeo..." @@ -2780,7 +2955,7 @@ msgstr "Configurat a <0>configuració de moderació." msgid "Confirm" msgstr "Confirma" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contacta amb suport" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "La sincronització de contactes no està disponible en aquest dispositiu, ja que l'aplicació no pot accedir als teus contactes." @@ -2825,11 +3000,11 @@ msgstr "La sincronització de contactes no està disponible en aquest dispositiu msgid "Contact us" msgstr "Contacteu-nos" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Contactes importats" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Contactes eliminats" @@ -2842,7 +3017,7 @@ msgstr "Contingut i multimèdia" msgid "Content and media" msgstr "Contingut i multimèdia" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Contingut i multimèdia" @@ -2889,7 +3064,7 @@ msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Continua el fil" msgid "Continue thread..." msgstr "Continua el fil..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 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:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Continua" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Conversa" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversa esborrada" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversa esborrada" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Número de versió copiat en memòria" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiat" msgid "Copies build version to clipboard" msgstr "Copia la versió de construcció al porta-retalls" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copia" @@ -2997,6 +3184,11 @@ msgstr "Copia DID" msgid "Copy host" msgstr "Copia l'amfitrió" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Copia l'enllaç a la llista" msgid "Copy link to post" msgstr "Copia l'enllaç a la publicació" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copia l'enllaç al perfil" @@ -3027,8 +3219,8 @@ msgstr "Copia l'enllaç al perfil" msgid "Copy link to starter pack" msgstr "Copia l'enllaç a l'starter pack" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copia el text del missatge" @@ -3037,12 +3229,12 @@ msgstr "Copia el text del missatge" msgid "Copy post at:// URI" msgstr "Copia at:// URI de la publicació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copia el text de la publicació" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copia el codi QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de drets d'autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "No s'ha pogut connectar al canal personalitzat" @@ -3065,7 +3261,15 @@ msgstr "No s'ha pogut connectar al canal personalitzat" msgid "Could not connect to feed service" msgstr "No s'ha pogut connectar al servei de canals" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "No s'ha pogut recuperar la publicació" @@ -3073,23 +3277,27 @@ msgstr "No s'ha pogut recuperar la publicació" msgid "Could not find profile" msgstr "No s'ha pogut trobar el perfil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "No s'han pogut seguir totes les coincidències; comprova la connexió de xarxa." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "No s'han pogut seguir totes les coincidències. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "No s'ha pogut abandonar el xat" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "No s'ha pogut carregar el canal" @@ -3100,7 +3308,11 @@ msgstr "No s'ha pogut carregar el canal" msgid "Could not load list" msgstr "No s'ha pogut carregar la llista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "No s'ha pogut silenciar el xat" @@ -3108,11 +3320,19 @@ msgstr "No s'ha pogut silenciar el xat" msgid "Could not process your video" msgstr "No s'ha pogut processar el teu vídeo" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "No s'han pogut desar els canvis: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "No s'ha pogut actualitzar la configuració de notificacions" @@ -3139,7 +3359,7 @@ msgstr "Codi de país" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Crea" @@ -3153,13 +3373,13 @@ msgstr "Crea una llista" msgid "Create a list from this starter pack" msgstr "Crea una llista a partir d'aquest l'starter pack" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Crea un starter pack" @@ -3174,13 +3394,14 @@ msgstr "Crea un starter pack per a mi" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Enlloc d'això, crea un avatar" @@ -3206,7 +3427,7 @@ msgstr "Enlloc d'això, crea un avatar" msgid "Create another" msgstr "Crea'n un altre" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Crea un xat de grup" @@ -3228,19 +3449,20 @@ msgstr "Crea una llista a partir de l'starter pack" msgid "Create moderation list" msgstr "Crea una llista de moderació" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crea un nou compte" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Crea o modifica un enllaç d'invitació per a aquest xat de grup" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Crea un informe per a {0}" @@ -3256,8 +3478,8 @@ msgstr "Crea una llista d'usuaris" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Creat {0}" @@ -3270,6 +3492,10 @@ msgstr "S'ha bloquejat al creador" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tema fosc" msgid "Date of birth" msgstr "Data de naixement" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Per defecte" msgid "Default icons" msgstr "Icones per defecte" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Elimina la contrasenya d'aplicació" msgid "Delete app password?" msgstr "Vols eliminar la contrasenya d'aplicació?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Elimina el xat" @@ -3378,19 +3612,19 @@ msgstr "Elimina el xat" msgid "Delete chat declaration record" msgstr "Suprimeix el registre de declaració de xat" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Suprimeix contactes" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Elimina la conversa" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Elimina-ho per mi" @@ -3399,11 +3633,11 @@ msgstr "Elimina-ho per mi" msgid "Delete list" msgstr "Elimina la llista" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Elimina el missatge" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Elimina el missatge per mi" @@ -3411,9 +3645,9 @@ msgstr "Elimina el missatge per mi" msgid "Delete my account" msgstr "Elimina el meu compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Elimina la publicació" @@ -3430,17 +3664,17 @@ msgstr "Vols eliminar l'starter pack?" msgid "Delete this list?" msgstr "Vols eliminar aquesta llista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Vols eliminar aquesta publicació?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Eliminat" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Compte eliminat" @@ -3471,12 +3705,12 @@ msgstr "Descripció (màxim 1000 caràcters)" msgid "Descriptive alt text" msgstr "Text alternatiu descriptiu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Desenganxa la citació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Vols desenganxar la citació?" @@ -3507,13 +3741,13 @@ msgstr "Diàleg: ajusta qui pot interactuar amb aquesta publicació" msgid "Dim" msgstr "Tènue" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Desactiva" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Deshabilita la verificació en dos passos" @@ -3521,7 +3755,7 @@ msgstr "Deshabilita la verificació en dos passos" msgid "Disable captions" msgstr "Desactiva els subtítols" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Deshabilita la verificació en dos passos per correu" @@ -3534,8 +3768,8 @@ msgstr "Desactiva el correu 2FA" msgid "Disable haptic feedback" msgstr "Desactiva la retroalimentació hàptica" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Desactiva l'enllaç" @@ -3547,7 +3781,7 @@ msgstr "Desactiva les publicacions que citen aquesta publicació" msgid "Disable replies entirely" msgstr "Desactiva del tot les respostes" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Vols desactivar aquest enllaç d'invitació?" @@ -3560,9 +3794,9 @@ msgstr "Desactivat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Descarta" msgid "Discard changes?" msgstr "Vols descartar els canvis?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Vols descartar la publicació?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Desconnecta Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Descobreix nous canals" msgid "Discover New Feeds" msgstr "Descobreix nous canals" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descarta" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Ignora el bàner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Descarta l'error" @@ -3642,6 +3877,10 @@ msgstr "Amaga aquesta secció" msgid "Dismiss this suggestion" msgstr "Descarta aquest suggeriment" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "No inclou nuesa." msgid "Domain verified!" msgstr "Domini verificat!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "No tens un codi o en necessites un? <0>Clica aquí." @@ -3681,7 +3920,7 @@ msgstr "No tens un codi o en necessites un? <0>Clica aquí." msgid "Don’t see a code? <0>Click here to resend." msgstr "No veus un codi? <0>Clica aquí per a reenviar-lo." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "No has rebut el correu? <0>Clica aquí per a reenviar-lo." @@ -3700,16 +3939,21 @@ msgstr "No pateixis! Tots els missatges i la configuració existents es desen i #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Fet" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Fes doble toc per tancar el diàleg" @@ -3737,19 +3981,14 @@ msgstr "Fes doble toc per tancar el diàleg" msgid "Double tap to like" msgstr "Fes dos tocs per a fer m'agrada" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Descarrega Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Descarrega el fitxer CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Descarrega el fitxer CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Descarregar dades de xat" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Descarregar dades de xat" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Descarrega la imatge" +#: 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 "Comportament depredador o de manipulació grooming" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "A causa de les lleis de la teva regió, algunes funcions de Bluesky esta msgid "Duration:" msgstr "Durada:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "p. ex. jordi" @@ -3823,9 +4079,8 @@ msgstr "p. ex. Usuaris que sempre responen amb anuncis." msgid "Eating disorders" msgstr "Trastorns alimentaris" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Edita" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Edita l'avatar" @@ -3847,19 +4102,19 @@ msgstr "Edita l'avatar" msgid "Edit Feeds" msgstr "Edita els canals" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Edita el nom del grup" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Edita la imatge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Edita les preferències de les interaccions" @@ -3868,7 +4123,16 @@ msgstr "Edita les preferències de les interaccions" msgid "Edit interests" msgstr "Edita els interessos" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "Edita la configuració de l'enllaç" @@ -3886,20 +4150,15 @@ msgstr "Edita l'estat en directe" msgid "Edit moderation list" msgstr "Edita la llista de moderació" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edita els meus canals" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Edita el nom" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -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" @@ -3912,12 +4171,12 @@ msgstr "Edita les preferències de les interaccions a la publicació" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Edita el perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Edita el perfil" @@ -3925,7 +4184,8 @@ msgstr "Edita el perfil" msgid "Edit starter pack" msgstr "Edita l'starter pack" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Edita el nom d'aquest xat de grup" @@ -3937,7 +4197,7 @@ msgstr "Edita la llista d'usuaris" msgid "Edit who can reply" msgstr "Edita qui pot respondre" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Edita el teu starter pack" @@ -3971,7 +4231,7 @@ msgstr "Adreça de correu" msgid "Email Resent" msgstr "S'ha tornat a enviar el correu" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Correu enviat!" @@ -4006,8 +4266,8 @@ msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent msgid "Embedded video player" msgstr "Incrusta el reproductor de vídeo" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Habilita" @@ -4025,7 +4285,7 @@ msgstr "Habilita el contingut per a adults" msgid "Enable captions" msgstr "Activa els subtítols" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Habilita la verificació en dos passos per correu" @@ -4038,13 +4298,12 @@ msgstr "Habilita els continguts externs" msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa les notificacions per a un compte visitant el seu perfil i prement la <0>icona de la campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Activa les notificacions push" @@ -4091,8 +4350,8 @@ msgstr "Introdueix una contrasenya" msgid "Enter a word or tag" msgstr "Introdueix una lletra o etiqueta" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Entra el codi" @@ -4143,12 +4402,12 @@ msgstr "Canvia a pantalla completa" msgid "Entertainment" msgstr "Entreteniment" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Error en obtenir les dades més recents." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tothom" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Tothom" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Tothom" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Tota la resta" @@ -4217,16 +4476,16 @@ msgstr "Exclou els usuaris que segueixes" msgid "Exit fullscreen" msgstr "Surt de la pantalla completa" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expandeix el text alternatiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expandeix la llista d'usuaris" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Expandeix o replega la publicació completa a la qual estàs responent" @@ -4238,7 +4497,7 @@ msgstr "Expandeix el text de la publicació" msgid "Expands or collapses post text" msgstr "Amplia o redueix el text de la publicació" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "S'esperava que l'uri es resolgués en un registre" @@ -4277,10 +4536,10 @@ msgstr "Contingut explícit o potencialment pertorbador." msgid "Explicit sexual images." msgstr "Imatges sexuals explícites." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explora" @@ -4289,11 +4548,8 @@ msgstr "Explora" msgid "Explore the app" msgstr "Explora l'aplicació" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Exporta les dades del xat" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Exporta les meves dades de xat" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferència del contingut extern" @@ -4331,18 +4587,22 @@ msgstr "Preferència del contingut extern" msgid "Extremist content" msgstr "Contingut extremista" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "No s'ha pogut acceptar el xat" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "No s'ha pogut afegir la reacció d'emoji" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "No s'han pogut afegir membres" @@ -4354,7 +4614,8 @@ msgstr "No s'ha pogut afegir a l'starter pack" msgid "Failed to change handle. Please try again." msgstr "No s'ha pogut canviar l'identificador. Torna-ho a provar." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "No s'ha pogut copiar l'enllaç" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "No s'ha pogut crear la contrasenya d'aplicació. Torna-ho a provar." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "No s'ha pogut crear la conversa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "No s'ha pogut crear l'enllaç d'invitació" @@ -4376,17 +4637,17 @@ msgstr "No s'ha pogut crear l'enllaç d'invitació" msgid "Failed to create starter pack" msgstr "No s'ha pogut crear l'starter pack" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "No s'ha pogut esborrar el xat" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "No s'ha pogut esborrar el missatge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" @@ -4394,24 +4655,24 @@ msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" msgid "Failed to delete starter pack" msgstr "No s'ha pogut eliminar l'starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "No s'ha pogut desactivar l'enllaç d'invitació" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "No s'ha pogut desconnectar Germ DM. Error: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "No s'ha pogut editar el nom del xat de grup" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "No s'ha pogut editar l'enllaç d'invitació" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "No s'ha pogut activar l'enllaç d'invitació" @@ -4427,19 +4688,27 @@ msgstr "No has pogut seguir tots els teus amics. Torna-ho a provar" msgid "Failed to hide suggestion, please check your internet connection" msgstr "No s'ha pogut amagar el suggeriment. Comprova la connexió a Internet" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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 "No s'ha pogut iniciar l'aplicació d'SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "No s'ha pogut abandonar el xat de grup" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "No s'han pogut carregar les converses" @@ -4456,17 +4725,8 @@ msgstr "No s'han pogut carregar els canals" msgid "Failed to load feeds preferences" msgstr "No s'han pogut carregar les preferències dels canals" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "No s'ha pogut carregar la configuració de notificacions." @@ -4493,16 +4753,15 @@ msgstr "No s'han pogut carregar els canals suggerits" msgid "Failed to load suggested follows" msgstr "No s'han pogut carregar els comptes suggerits" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "No s'ha pogut bloquejar el xat de grup" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "No s'han pogut marcar totes les sol·licituds com a llegides" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "No s'ha pogut silenciar el xat de grup" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "No s'ha pogut fixar la publicació" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "No s'ha pogut reconnectar Germ DM. Error: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "No s'han pogut eliminar les dades a causa d'un error de xarxa. Comprova la connexió a Internet." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "No s'han pogut eliminar les dades. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "No s'ha pogut eliminar la reacció d'emoji" @@ -4534,7 +4793,8 @@ msgstr "No s'ha pogut eliminar la reacció d'emoji" msgid "Failed to remove from starter pack" msgstr "No s'ha pogut eliminar de l'starter pack" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "No s'ha pogut eliminar el membre del xat de grup" @@ -4542,15 +4802,20 @@ msgstr "No s'ha pogut eliminar el membre del xat de grup" msgid "Failed to remove verification" msgstr "No s'ha pogut eliminar la verificació" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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 "La ubicació ha fallat. Torna-ho a provar." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Error en desar l'esborrany" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Error en desar la imatge" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "No s'han pogut desar els teus interessos." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "No s'ha pogut enviar el correu. Torna-ho a provar." @@ -4580,16 +4845,16 @@ msgstr "No s'ha pogut enviar l'informe" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "No s'ha pogut desbloquejar el xat de grup" @@ -4597,12 +4862,12 @@ msgstr "No s'ha pogut desbloquejar el xat de grup" msgid "Failed to unpin list" msgstr "No s'ha pogut desfixar la llista" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "No s'ha pogut actualitzar la configuració del doble factor per correu" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "No s'ha pogut actualitzar el correu. Torna-ho a provar." @@ -4614,7 +4879,7 @@ msgstr "No s'han pogut actualitzar els canals" msgid "Failed to update notification declaration" msgstr "No s'ha pogut actualitzar la declaració de notificació" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "No s'ha pogut actualitzar la configuració" @@ -4641,7 +4906,7 @@ msgstr "Compte fals o bot" msgid "False information about elections" msgstr "Informació falsa sobre les eleccions" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Canal" @@ -4649,7 +4914,7 @@ msgstr "Canal" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Canal per {0}" @@ -4662,7 +4927,7 @@ msgstr "Creador del canal" msgid "Feed identifier" msgstr "Identificador del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menú del canal" @@ -4676,25 +4941,25 @@ msgstr "Canal no disponible" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Comentaris" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentaris enviats a l'operador del canal" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Canals" @@ -4739,7 +5004,7 @@ msgstr "Filtra la cerca per idioma (actualment: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtra de qui reps notificacions" @@ -4747,11 +5012,11 @@ msgstr "Filtra de qui reps notificacions" msgid "Finalizing" msgstr "Finalitzant" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Per fi!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Per fi! Tingues a mà les publicacions que t'interessen. Desa-les per a tornar-les a consultar en qualsevol moment." @@ -4768,19 +5033,17 @@ msgstr "Finances" msgid "Find accounts to follow" msgstr "Troba comptes per a seguir" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Troba contactes" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Troba amics" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Troba amics a partir dels contactes" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Troba contactes" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Troba els meus amics" msgid "Find people to follow" msgstr "Troba gent per seguir" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Troba publicacions, usuaris i canals a Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Troba els teus amics" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "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ó" @@ -4847,22 +5114,22 @@ msgstr "Centra el camp de cerca" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Segueix" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Segueix {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Segueix {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Segueix el compte" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Segueix tots els comptes" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Segueix" @@ -4916,7 +5183,7 @@ msgstr "Segueix" msgid "Followed all accounts!" msgstr "Has seguit tots els comptes!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Has seguit totes les coincidències" @@ -4944,8 +5211,12 @@ msgstr "Seguit per <0>{0} i <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguit per <0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que coneixes" @@ -4960,10 +5231,10 @@ msgstr "Seguidors que coneixes" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Seguint" @@ -4977,12 +5248,12 @@ msgstr "Seguint" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Seguint {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Seguint {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Seguint {handle}" msgid "Following feed preferences" msgstr "Preferències del canal Seguint" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferències del canal Seguint" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Et segueix" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Et segueix" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Tipus de lletra" @@ -5065,11 +5333,16 @@ msgstr "Has oblidat la contrasenya?" msgid "Forgot?" msgstr "Oblidada?" +#. 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:12 msgid "Free your feed" msgstr "Allibera el teu canal" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "De" @@ -5086,82 +5359,86 @@ msgstr "De <0/>" msgid "Generate a starter pack" msgstr "Genera un starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Genera un enllaç d'invitació" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Genera un nou enllaç d'invitació" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Genera un nou enllaç" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM desconnectat" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Enllaç Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM reconnectat" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Aconsegueix ajuda" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "Rep notificacions quan la gent et segueixi." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Rep notificacions quan a la gent li agradin les publicacions que has republicat." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Rep notificacions quan a la gent li agradin les teves publicacions." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Rep notificacions quan la gent et mencioni." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Rep notificacions quan la gent citi les teves publicacions." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Rep notificacions quan la gent respongui a les teves publicacions." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Rep notificacions quan la gent republiqui publicacions que has republicat." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Rep notificacions quan la gent republiqui les teves publicacions." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Rep notificacions sobre noves publicacions" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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}" @@ -5174,27 +5451,27 @@ msgstr "Rep notificacions de l'activitat d'aquest compte" msgid "Get notified when {name} posts" msgstr "Rep una notificació quan {name} publiqui" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Rep notificacions quan algú publiqui" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Comença" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "S'ha penjat el GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Posa una cara al teu perfil" @@ -5213,20 +5490,20 @@ msgstr "Glorificació de la violència" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Ves enrere" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Ves enrere" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Ves al pas anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ves a l'inici" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ves a l'inici" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ves a l'inici" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Emet en directe (deshabilitat)" msgid "Go live for" msgstr "Emet en directe durant" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Vés al perfil de {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Ves a la configuració del compte" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ves a la conversa amb {0}" @@ -5296,23 +5571,23 @@ msgstr "Ves al canal" msgid "Go to next" msgstr "Ves al següent" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ves al perfil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Ves al xat de grup anomenat \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ves al perfil de l'usuari" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "L'emissió en directe està deshabilitada pel teu compte" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Ho he entès" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Contingut gràficament violent" msgid "Grooming or predatory behavior" msgstr "Comportament depredador o de manipulació grooming" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Diàleg d'enllaç d'invitació al xat de grup" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Xat de grup bloquejat" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Xat de grup silenciat" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "S'ha actualitzar el nom del grup de xat" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Paràmetres del xat de grup" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Xat de grup desbloquejat" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Xat de grup no silenciat" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Els xats de grup encara no estan disponibles" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Els xats de grup encara ja estan disponibles" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "El grup està bloquejat" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Nom del grup" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "Hacking o atacs al sistema" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "L'identificador és massa llarg. Si us plau, prova'n un de més curt." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Està passant ara" @@ -5446,7 +5744,7 @@ msgstr "Activitats nocives o d'alt risc" msgid "Harming or endangering minors" msgstr "Perjudicar o posar en perill els menors" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Etiqueta" @@ -5458,8 +5756,8 @@ msgstr "Etiqueta: {tag}" msgid "Hate speech" msgstr "Discurs d'odi" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Tens un codi?<0>Clica aquí." @@ -5479,11 +5777,11 @@ msgstr "Retingut per Bluesky durant 7 dies per evitar abusos, i després elimina #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Llista amagada" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Llista amagada" msgid "Hide" msgstr "Amaga" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Amaga" @@ -5553,18 +5851,18 @@ msgstr "Amaga les actualitzacions de grups de xat" msgid "Hide lists" msgstr "Amaga les llistes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Amaga'm aquesta publicació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Amaga la resposta per a tothom" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Amaga'm la resposta" @@ -5577,19 +5875,19 @@ msgstr "Amaga aquesta targeta" msgid "Hide this event" msgstr "Amaga aquest esdeveniment" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Vols amagar aquesta resposta?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Amaga la traducció" @@ -5606,7 +5904,7 @@ msgstr "Vols amagar els temes del moment?" msgid "Hide trending videos?" msgstr "Vols amagar els vídeos populars?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Amaga la llista d'usuaris" @@ -5620,6 +5918,10 @@ msgstr "Amaga les insígnies de verificació" msgid "Hides the content" msgstr "Amaga el contingut" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, sembla que has iniciat la sessió amb una <0>contrasenya d'aplicació. Per definir la teva data de naixement, hauràs d'iniciar la sessió amb la contrasenya del teu compte principal o demanar a qui controli aquest compte que ho faci." @@ -5652,19 +5954,15 @@ msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a msgid "Hmmmm, we couldn't load that moderation service." msgstr "No podem carregar el servei de moderació." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espera! A poc a poc estem donant accés al vídeo i encara estàs a la cua. Torna més tard!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Aguanta! Aquesta funció encara no està disponible. Torna-ho a comprovar més tard." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Inici" @@ -5721,7 +6019,7 @@ msgstr "Ho entenc" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Estic a Bluesky com a {0}. Vine a trobar-me! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Si el text alternatiu és llarg, canvia l'estat expandit del text alternatiu" @@ -5757,15 +6055,15 @@ msgstr "Si esborres aquesta llista no la podràs recuperar." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tens el teu propi domini, pots utilitzar-lo com a identificador. Això et permet autoverificar la teva identitat – <0>més informació." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Si necessites actualitzar el teu correu, <0>clica aquí." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Si esborres aquesta publicació no la podràs recuperar." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Si actualitzes el teu correu, es deshabilitarà la verificació en dos passos per correu." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Si vols restringir qui pot rebre notificacions de l'activitat del teu compte, pots canviar-ho a <0>Configuració → Privacitat i seguretat." @@ -5786,23 +6083,23 @@ msgstr "Si ets desenvolupador, pots allotjar el teu propi servidor." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Si vols canviar el teu identificador o el correu fes-ho abans de desactivar el compte." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imatge" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Imatge {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Imatge {0} de {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Imatge {0} de {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "S'ha esborrat la memòria cau d'imatges, s'ha alliberat {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Galeria d'imatges, {0} imatges" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "La imatge està oculta a causa de la teva configuració de moderació." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "La imatge no està disponible." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Opcions del la imatge" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Suplantació d'identitat" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importa contactes" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importa contactes" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importa contactes per trobar els teus amics" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importats el {0}" @@ -5881,40 +6182,40 @@ msgstr "Importats el {0}" 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 "Per tal d'oferir una experiència adequada a l'edat, necessitem saber la teva data de naixement. Només cal fer-ho un sol cop i les teves dades es mantindran privades." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Integrades a l'aplicació" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notificacions integrades a l'aplicació" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Integrades a l'aplicació, tothom" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Integrades a l'aplicació, gent a qui segueixes" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Integrades a l'aplicació, push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Integrades a l'aplicació, push, tothom" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Integrades a l'aplicació, push, gent a qui segueixes" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Safata d'entrada buida" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "La safata està buida" @@ -5954,6 +6255,10 @@ msgstr "Presentant els esborranys" msgid "Introducing finding friends via contacts" msgstr "Com pots trobar amics a través dels contactes" +#: 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 "Presentem les publicacions desades, més conegudes com a marcadors" @@ -5963,11 +6268,15 @@ msgstr "Presentem les publicacions desades, més conegudes com a marcadors" msgid "Invalid 2FA confirmation code." msgstr "El codi de confirmació 2FA no és vàlid." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Identificador no vàlid. Si us plau, prova'n un altre." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Configuració de les interaccions invàlida." @@ -5977,10 +6286,15 @@ msgstr "Configuració de les interaccions invàlida." msgid "Invalid phone number" msgstr "Número de telèfon no vàlid" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "El tema de l'informe no és vàlid" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Codi de verificació invàlid" @@ -6001,8 +6315,15 @@ msgstr "Codi d'invitació" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Convida amics" @@ -6010,21 +6331,31 @@ msgstr "Convida amics" msgid "Invite friends <0/>" msgstr "Convida amics <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Enllaç d'invitació" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Enllaç d'invitació" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "S'ha creat l'enllaç d'invitació" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "S'ha desactivat l'enllaç d'invitació" @@ -6040,11 +6371,16 @@ msgstr "S'ha activat l'enllaç d'invitació" msgid "Invite people to this starter pack!" msgstr "Convida a gent a aquest starter pack!" +#: 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 "Convida els teus amics a seguir els teus canals i persones preferides" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Convidat" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Identificador de la tasca: {0}" @@ -6083,6 +6419,11 @@ msgstr "Identificador de la tasca: {0}" msgid "Jobs" msgstr "Tasques" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Tasques" msgid "Join Bluesky" msgstr "Uneix-te a Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Uneix-te a la conversa" msgid "Journalism" msgstr "Periodisme" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continua editant" @@ -6109,6 +6460,11 @@ msgstr "Continua editant" msgid "Keep me posted" msgstr "Mantingueu-me informat/da" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Lloc web de KWS" @@ -6143,7 +6499,7 @@ msgstr "Etiquetes al teu compte" msgid "Labels on your content" msgstr "Etiquetes al teu contingut" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Configuració d'idioma" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "El més recent" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Més informació sobre com funciona convidar amics" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Més informació sobre la importació de contactes" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Més informació d'aquesta advertència" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Més informació sobre la verificació a Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Més informació sobre la verificació a Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Més informació sobre què és públic a Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Més informació sobre el teu enllaç de missatge directe de Germ" @@ -6252,31 +6608,33 @@ msgstr "Més informació a la <0>configuració del compte." msgid "Learn more." msgstr "Més informació." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Surt" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Surt del xat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Surt de la conversa" @@ -6284,13 +6642,14 @@ msgstr "Surt de la conversa" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Surt de la conversa" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Abandona el xat de grup" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Abandona aquest grup de xat" @@ -6299,6 +6658,14 @@ msgstr "Abandona aquest grup de xat" msgid "Leaving Bluesky" msgstr "Sortint de Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "queda." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "M'agrada" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "M'agrada ({0, plural, one {# m'agrada} other {# m'agrades}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notificacions de \"M'agrada\"" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" @@ -6358,8 +6721,8 @@ msgstr "Fes m'agrada a aquest canal" msgid "Like this labeler" msgstr "Fes m'agrada a aquest etiquetador" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Li ha agradat a" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Li ha agradat a {0, plural, one {# usuari} other {# usuaris}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "M'agrades" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "M'agrades de les teves republicacions" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notificacions de m'agrades de les teves republicacions" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" @@ -6409,11 +6768,11 @@ msgstr "M'agrades a aquesta publicació" msgid "Linear" msgstr "Lineal" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "S'ha copiat l'enllaç en memòria" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Llista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Llistes" @@ -6545,7 +6904,7 @@ msgstr "Esdeveniment en directe mostrat" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Els esdeveniments en directe apareixen ocasionalment quan passa alguna cosa interessant. Si voleu, podeu amagar aquest esdeveniment en particular o tots els esdeveniments d'aquesta ubicació a la interfície de l'aplicació." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "La funció en directe està en fase beta" @@ -6595,27 +6954,27 @@ msgstr "Carregant la configuració d'interaccions de la publicació..." msgid "Loading..." msgstr "Carregant…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Tanca" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Tanca el xat de grup" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Vols tancar el grup de xat?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Tanca aquest xat de grup" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Tancat" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Registre" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo per @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo per <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Sembla que et falta el canal dels Seguits. <0>Clica aquí per a afegir-n msgid "Love GIFs" msgstr "GIFs d'amor" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Fes ajustaments a la configuració del correu del teu compte" @@ -6687,24 +7046,22 @@ msgstr "Gestiona la configuració de verificació" msgid "Manage your muted words and tags" msgstr "Gestiona les teves etiquetes i paraules silenciades" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Marca-ho tot com a llegit" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marca com a llegit" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "S'ha marcat tot com a llegit" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Potser més tard" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Membres" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Els membres encara poden llegir l'historial del xat, però no poden enviar missatges nous." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notificacions de mencions" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "usuaris mencionats" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencions" @@ -6761,7 +7118,7 @@ msgstr "Missatge" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Missatge" @@ -6771,26 +7128,26 @@ msgstr "Missatge" msgid "Message {0}" msgstr "Missatge {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Missatge {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Missatge esborrat" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Missatge esborrat" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "No s'ha pogut enviar el missatge." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Missatge de @ {0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "El missatge és massa llarg" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "El missatge és massa llarg ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Opcions del missatge" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Missatges" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Mitjanit" msgid "Minor harassment or bullying" msgstr "Assetjament o intimidació lleu" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notificacions diverses" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Enganyós" @@ -6850,7 +7203,7 @@ msgstr "Enganyós" msgid "Missing media" msgstr "No es troba la imatge" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderació" @@ -6894,7 +7247,7 @@ msgstr "S'ha actualitzat la llista de moderació" msgid "Moderation lists" msgstr "Llistes de moderació" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Llistes de moderació" @@ -6903,7 +7256,7 @@ msgstr "Llistes de moderació" msgid "moderation settings" msgstr "preferències de moderació" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Estats de moderació" @@ -6928,8 +7281,8 @@ msgstr "Més idiomes..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Més opcions" @@ -6949,7 +7302,7 @@ msgstr "Pel·lícules" msgid "Music" msgstr "Música" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silencia" @@ -6965,8 +7318,8 @@ msgstr "Silencia" msgid "Mute {0}" msgstr "Silencia {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Silencia el compte" msgid "Mute accounts" msgstr "Silencia els comptes" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silencia la conversa" @@ -6994,7 +7347,7 @@ msgstr "Silencia la llista" msgid "Mute these accounts?" msgstr "Vols silenciar aquests comptes?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Silencia aquest xat de grup" @@ -7022,17 +7375,21 @@ msgstr "Silencia aquesta paraula només a les etiquetes" msgid "Mute this word until you unmute it" msgstr "Silencia aquesta paraula fins que digui prou" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silencia el fil de debat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silencia paraules i etiquetes" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "Silenciat" @@ -7040,7 +7397,7 @@ msgstr "Silenciat" msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Comptes silenciats" @@ -7062,6 +7419,10 @@ msgstr "Paraules i etiquetes silenciades" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar és privat. Els comptes silenciats poden interactuar amb tu, però tu no veuràs les seves publicacions ni rebràs notificacions seves." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Ves a l'starter pack" msgid "Navigates to the next screen" msgstr "Navega a la pantalla següent" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navega al teu perfil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Has d'informar d'una infracció dels drets d'autor, una sol·licitud legal o un problema de compliment normatiu?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nova" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "Nou {postsCount, plural, one {publicació} other{publicacions}} de {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "Nou {postsCount, plural, one {publicació} other{publicacions}} de {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Xat nou" @@ -7163,7 +7525,7 @@ msgstr "Nou xat amb {0} i {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Nou xat amb {0}, {1} i {memberCount, plural, one {{memberCount} més} other {{memberCount} més}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Adreça de correu nova" @@ -7171,32 +7533,30 @@ msgstr "Adreça de correu nova" #: 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 "Funció nova" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notificacions de nou seguidor" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Nous seguidors" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Nou xat de grup" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Nou xat de grup amb:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nova publicació" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nova publicació" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Noves publicacions de {firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Noves publicacions de {firstAuthorName} i{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altre} other {{formattedAuthorsCount} altres}}" @@ -7262,8 +7622,8 @@ msgstr "Notícies" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Següent" msgid "Next image" msgstr "Següent imatge" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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ó." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Encara no hi ha seguidors" @@ -7335,7 +7699,7 @@ msgstr "No s'han trobat GIFs per \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "No hi ha GIFs per mostrar ara, prova-ho més tard." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Sense imatge" @@ -7353,8 +7717,8 @@ msgstr "No hi ha llistes" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" @@ -7362,7 +7726,7 @@ msgstr "Ja no segueixes a {0}" msgid "No media yet" msgstr "Encara no hi ha imatges" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Encara no tens cap missatge" @@ -7378,12 +7742,12 @@ msgstr "Sense nom" msgid "No notifications yet!" msgstr "Encara no tens cap notificació" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Ningú" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Ningú" @@ -7399,7 +7763,7 @@ msgstr "Ningú" msgid "No one but the author can quote this post." msgstr "Ningú més que l'autor pot citar aquesta publicació." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Ningú pot enviar missatges" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Cap resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Cap resultat" @@ -7446,8 +7810,8 @@ msgstr "Cap resultat" msgid "No results for \"{0}\"." msgstr "No s'han trobat resultats per \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "No s'han trobat resultats" @@ -7509,12 +7873,12 @@ msgstr "Imatges íntimes no consentides" msgid "Non-sexual Nudity" msgstr "Nuesa no sexual" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Cap" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "No disponible en aquesta plataforma." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "No s'ha trobat" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "No estàs a punt per publicar? Guarda les teves millors idees a Esborranys fins que sigui el moment adequat." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -7548,44 +7912,31 @@ msgstr "Nota: Aquesta publicació només és visible per als usuaris que han ini msgid "Nothing saved yet" msgstr "Encara no hi ha res desat" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Configuració de les notificacions" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificacions" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notificacions per a tota la resta, com ara quan algú s'uneix a través d'un dels teus Starter Packs." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ara" @@ -7601,7 +7952,7 @@ msgstr "El número ha de ser un número de mòbil" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Apagat" @@ -7623,9 +7974,10 @@ msgstr "D'acord" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "D'acord" @@ -7648,35 +8000,35 @@ msgstr "en<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Restableix la incorporació" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o més imatges." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Un o més dels fitxers seleccionats no són compatibles." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Un o més dels fitxers seleccionats són massa grans. La mida màxima és de 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Falta el text alternatiu a un o més videos." @@ -7685,6 +8037,26 @@ msgstr "Falta el text alternatiu a un o més videos." msgid "Only {0} can reply." msgstr "Només {0} poden respondre." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Només seguidors que segueixo" msgid "Only image files are supported" msgstr "Només s'admeten fitxers d'imatge" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Només s'admeten fitxers WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Només s'admeten fitxers WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Ostres, alguna cosa ha anat malament!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ostres, alguna cosa ha anat malament!" msgid "Oops!" msgstr "Ostres!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Obre el creador d'avatars" @@ -7720,12 +8106,17 @@ msgstr "Obre el creador d'avatars" msgid "Open camera" msgstr "Obre la càmera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Obre les opcions dels membres del xat per a {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Obre les opcions de les converses" @@ -7739,16 +8130,16 @@ msgstr "Obre el menú del calaix" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Obre el selector d'emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Obre el menú de les opcions del canal" @@ -7760,13 +8151,22 @@ msgstr "Obre la llista completa d'emojis" msgid "Open Germ DM" msgstr "Obre Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Paràmetres del xat de grup" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Obre l'enllaç a {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Obre el pack" msgid "Open post options menu" msgstr "Obre el menú de les opcions de publicació" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Obre el perfil" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Obre la pàgina d'historial" msgid "Open system log" msgstr "Obre el registre del sistema" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Obre un diàleg per afegir un avís de contingut a la teva publicació" msgid "Opens a dialog to choose who can interact with this post" msgstr "Obre un quadre de diàleg per triar qui pot interactuar amb aquesta publicació" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Obre detalls addicionals per una entrada de depuració" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Obre la càmera del dispositiu" @@ -7858,22 +8270,24 @@ msgstr "Obre el compositor" msgid "Opens device camera" msgstr "Obre la càmera del dispositiu" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Obre la galeria del dispositiu per seleccionar fins a {MAX_IMAGES, plural, other{# imatges}} o un sol vídeo o GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Obre la imatge completa" @@ -7890,7 +8304,7 @@ msgstr "Obre el selector d'imatges" msgid "Opens link {0}" msgstr "Obre l'enllaç {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Obre el quadre de diàleg d'estat en directe" @@ -7902,15 +8316,23 @@ msgstr "Obre el formulari de restabliment de la contrasenya" msgid "Opens post language settings" msgstr "Obre la configuració d'idioma de la publicació" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Obre el perfil" +#: 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 "Obre el diàleg de selector de GIF" +#: 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 "Obre el compositor de publicacions" @@ -7919,9 +8341,8 @@ msgstr "Obre el compositor de publicacions" msgid "Opens this draft in the composer" msgstr "Obre aquest esborrany a l'editor" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Obre aquest perfil" @@ -7997,12 +8418,12 @@ msgstr "La nostra entrada de blog" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "L'equip de moderació ha rebut la denúncia." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "L'equip de moderació ha revisat els informes i ha decidit desactivar-te l'accés als xats a Bluesky." @@ -8010,14 +8431,15 @@ msgstr "L'equip de moderació ha revisat els informes i ha decidit desactivar-te msgid "Owner" msgstr "Propietari" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Pàgina no trobada" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Pàgina no trobada" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Posa en pausa el vídeo" msgid "People" msgstr "Gent" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Les persones que segueixen {ownerName} es poden unir al moment" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Persones seguint a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Gent que segueixo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Les persones que segueixo es poden unir al moment" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Les persones que segueixo poden sol·licitar unir-se" @@ -8136,13 +8558,17 @@ msgstr "Número de telèfon verificat" msgid "Photography" msgstr "Fotografia" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixa el canal" @@ -8152,12 +8578,12 @@ msgstr "Fixa el canal" msgid "Pin to home" msgstr "Fixa a l'inici" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fixa a l'Inici" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fixa-ho al teu perfil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fixat" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} fixat a l'inici" @@ -8236,7 +8662,7 @@ msgstr "Tria el teu identificador." msgid "Please choose your password." msgstr "Tria la teva contrasenya." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Fes clic a l'enllaç del correu que us acabem d'enviar per verificar la msgid "Please complete the verification captcha." msgstr "Completa el captcha de verificació." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Confirma la teva adreça de correu per penjar vídeos." @@ -8265,14 +8691,14 @@ msgstr "Introdueix una contrasenya. Ha de tenir almenys 8 caràcters." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Introdueix un nom únic per aquesta contrasenya d'aplicació o fes servir un nom generat aleatòriament." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Introdueix un codi vàlid." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Introdueix una adreça de correu vàlida." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Introdueix una adreça electrònica vàlida i no temporal. És possible que hagis d'accedir a aquesta adreça electrònica en el futur." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Introdueix el codi que t'hem enviat a <0>{0} a continuació." @@ -8293,7 +8719,7 @@ msgstr "Introdueix el codi que t'hem enviat a <0>{0} a continuació." msgid "Please enter the code you received and the new password you would like to use." msgstr "Introdueix el codi que has rebut i la nova contrasenya que vols utilitzar." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Introdueix el teu correu." msgid "Please enter your invite code." msgstr "Entra el teu codi d'invitació." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Introdueix la teva nova adreça de correu." @@ -8323,7 +8749,7 @@ msgstr "Introdueix el nom d'usuari" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Explica per què creieu que aquesta etiqueta ha estat aplicada incorrectament per {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Expliqueu per què creus que els teus xats s'han desactivat incorrectament" @@ -8358,7 +8784,11 @@ msgstr "Selecciona un motiu per a aquest informe" msgid "Please sign in as @{0}" msgstr "Inicia sessió com a @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Fes servir l'aplicació nativa per a importar els teus contactes." @@ -8366,7 +8796,7 @@ msgstr "Fes servir l'aplicació nativa per a importar els teus contactes." msgid "Please use the native app to sync your contacts." msgstr "Fes servir l'aplicació nativa per sincronitzar els teus contactes." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Verifica el teu correu" @@ -8383,7 +8813,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Publica" @@ -8403,12 +8833,12 @@ msgstr "Publica una foto" msgid "Post a video" msgstr "Publica un vídeo" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publica-ho tot" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Publica de totes maneres" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Publicació bloquejada" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Publicació per @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Publicació eliminada" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "No s'ha pogut penjar la publicació. Comprova la tevaa connexió a Internet i torna-ho a provar." @@ -8454,18 +8884,22 @@ msgstr "Publicació amagada per tu" msgid "Post interaction settings" msgstr "Configuració de les interaccions de la publicació" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Configuració de les interaccions de la publicació" +#: 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 "Tria l'idioma de la publicació" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Publica l'enllaç" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Publicacions, Respostes" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Enllaç potencialment enganyós" @@ -8525,9 +8954,10 @@ msgstr "Idioma preferit" msgid "Press to attempt reconnection" msgstr "Prem per provar de connectar de nou" -#: src/components/Error.tsx:61 +#: 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 "Prem per a tornar-ho a provar" @@ -8536,7 +8966,7 @@ msgstr "Prem per a tornar-ho a provar" msgid "Press to view followers of this account that you also follow" msgstr "Prem per veure els seguidors d'aquest compte que també segueixes" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Previsualitza" @@ -8559,26 +8989,25 @@ msgstr "Privacitat" msgid "Privacy and security" msgstr "Privadesa i seguretat" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Política de privacitat" @@ -8586,15 +9015,15 @@ 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:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Processant el GIF..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Processant el vídeo..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Processant…" @@ -8602,10 +9031,10 @@ msgstr "Processant…" msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Perfil" @@ -8613,6 +9042,7 @@ msgstr "Perfil" msgid "Profile banner placeholder" msgstr "Marcador de posició del bàner de perfil" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "No s'ha trobat el perfil" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publica la publicació" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publica les publicacions" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publica les respostes" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publica la resposta" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notificacions push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, tothom" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, gent a qui segueixes" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Codi QR copiat en memòria!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Codi QR descarregat!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Codi QR desat a la teva galeria" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notificacions de citacions" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notificacions de citacions" msgid "Quote post" msgstr "Cita la publicació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "La publicació citada s'ha tornat a enganxar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "La publicació citada s'ha desenganxat amb èxit" @@ -8711,12 +9138,12 @@ msgstr "S'han deshabilitat les citacions" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citacions" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citacions d'aquesta publicació" @@ -8728,16 +9155,16 @@ msgstr "Has superat el límit – has intentat canviar l'identificador massa veg msgid "Rate limit exceeded. Please try again later." msgstr "S'ha superat el límit de velocitat. Torna-ho a provar més tard." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Torna a enganxar la citació" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Torna a activar l'enllaç d'invitació" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Torna a activar l'enllaç" @@ -8745,8 +9172,8 @@ msgstr "Torna a activar l'enllaç" msgid "React with {emoji}" msgstr "Reacciona amb {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reaccions" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "consulta com utilitzar els filtres de cerca" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Llegeix la publicació del blog" @@ -8812,11 +9239,11 @@ msgstr "Persones reals." msgid "Reason for appeal" msgstr "Motiu de l'apel·lació" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Rebre notificacions integrades a l'aplicació" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Rebre notificacions push" @@ -8841,17 +9268,31 @@ msgstr "Recomanats" msgid "Reconnect" msgstr "Torna a connectar" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Rebutja" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Rebutja" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Rebutja la sol·licitud de xat" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Carrega les converses de nou" @@ -8863,6 +9304,8 @@ msgstr "Carrega les converses de nou" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Elimina a {displayName} del xat de grup" msgid "Remove {displayName} from starter pack" msgstr "Elimina a {displayName} de l'starter pack" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Elimina a {displayName} d'aquest xat de grup" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Elimina {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Elimina {historyItem}" msgid "Remove account" msgstr "Elimina el compte" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Elimina tots els contactes" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Elimina l'adjunt" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Elimina l'avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Elimina el bàner" @@ -8914,8 +9362,9 @@ msgstr "Elimina el bàner" msgid "Remove caption file" msgstr "Eliminar el fitxer de subtítols" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Elimina l'incrustat" @@ -8929,12 +9378,12 @@ msgstr "Elimina el canal" msgid "Remove feed?" msgstr "Vols eliminar el canal?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Elimina del xat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Elimina de les publicacions desades" msgid "Remove from your feeds?" msgstr "Vols eliminar-lo dels teus canals?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Elimina la imatge" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Elimina la republicació" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Elimina el suggeriment" @@ -9009,11 +9458,11 @@ msgstr "Elimina la verificació" msgid "Remove your verification for this account?" msgstr "Vols eliminar la teva verificació d'aquest compte?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Eliminat per l'autor" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Tu l'has eliminat" @@ -9035,7 +9484,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:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "T'ha respost" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Respostes" @@ -9104,14 +9552,14 @@ msgstr "Respostes deshabilitades" msgid "Replies to this post are disabled." msgstr "Les respostes a aquesta publicació estan deshabilitades." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Respon" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Respostes ({0, plural, one {# resposta} other {# respostes}})" @@ -9125,10 +9573,6 @@ msgstr "Aquesta resposta ha estat amagada per l'autor del fil de debat" msgid "Reply Hidden by You" msgstr "Has amagat aquesta resposta" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notificacions de respostes" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "La configuració de les respostes la tria l'autor del fil de debat" @@ -9137,18 +9581,18 @@ msgstr "La configuració de les respostes la tria l'autor del fil de debat" msgid "Reply sorting" msgstr "Ordenació de respostes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "S'ha actualitzat la visibilitat de la resposta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "La resposta s'ha amagat amb èxit" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Informa" @@ -9157,20 +9601,20 @@ msgstr "Informa" msgid "Report account" msgstr "Informa del compte" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Informa d'aquesta conversa" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Diàleg de l'informe" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Informa del canal" @@ -9179,12 +9623,12 @@ msgstr "Informa del canal" msgid "Report list" msgstr "Denuncia la llista" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Informa del missatge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Informa de la publicació" @@ -9199,8 +9643,8 @@ msgstr "Informa sobre l'starter pack" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "S'ha enviat la denúncia" @@ -9213,7 +9657,7 @@ msgstr "Informa sobre aquesta conversa" msgid "Report this feed" msgstr "Informa d'aquest canal" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Informa d'aquest xat de grup" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Informa d'aquesta llista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Informa d'aquesta emissió en directe" @@ -9256,10 +9700,6 @@ msgstr "Republica" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republica ({0, plural, one {# republicació} other {# republicacions}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notificacions de republicacions" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Republicat per tu" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Republicacions" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Republicacions d'aquesta publicació" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Republicacions de les teves republicacions" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notificacions de les republicacions de les teves republicacions" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 "Demana un codi" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Sol·licituds" +#: src/Navigation.tsx:501 +#: 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 "Requereix un text alternatiu abans de publicar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Sol·licita el codi de correu per a iniciar sessió al teu compte." @@ -9328,7 +9791,17 @@ msgstr "Requerit per aquest proveïdor" msgid "Required in your region" msgstr "Obligatori a la teva regió" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Torna'l a enviar" @@ -9373,8 +9846,8 @@ msgstr "Restableix l'estat de la incorporació" msgid "Reset password" msgstr "Restableix la contrasenya" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Resincronitza els contactes" @@ -9391,17 +9864,18 @@ msgstr "Torna a intentar l'última acció, que ha donat error" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Torna a intentar l'última acció, que ha donat error" msgid "Retry" msgstr "Torna-ho a provar" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Torna a provar de carregar les opcions d'informe" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Torna a la pàgina anterior" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Torna a la pàgina anterior" @@ -9451,10 +9925,10 @@ msgstr "GIFs tristos" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Desa els canvis" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Vols desar els canvis?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Desa l'esborrany" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Vols desar l'esborrany?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Desa la imatge" msgid "Save new handle" msgstr "Desa el nou identificador" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Desa el codi QR" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Desa-ho als meus canals" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Desats" @@ -9534,25 +10010,25 @@ msgstr "Desats" msgid "Saved Feeds" msgstr "Canals desats" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Publicacions desades" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "S'ha desat als teus canals." #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Digues hola!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Saluda a algú" @@ -9560,6 +10036,16 @@ msgstr "Saluda a algú" msgid "Scam" msgstr "Estafa" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Ciència" @@ -9576,18 +10062,18 @@ msgstr "Desplaça't a la dreta" msgid "Scroll to top" msgstr "Desplaça't cap a dalt" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Cerca" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca a les publicacions de @{0}" @@ -9662,12 +10148,12 @@ msgstr "Idiomes de cerca" msgid "Search my posts" msgstr "Cerca a les meves publicacions" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Cerca publicacions" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Cerca perfils" msgid "Search..." msgstr "Cerca..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Cerca perfils" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Es requereix un pas de seguretat" @@ -9759,7 +10245,7 @@ msgstr "Selecciona {langName}" msgid "Select a color" msgstr "Selecciona un color" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Tria un motiu" @@ -9828,7 +10314,7 @@ msgstr "Selecciona GIF" msgid "Select GIF \"{0}\"" msgstr "Selecciona GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Selecciona els membres del grup del xat" @@ -9850,7 +10336,7 @@ msgstr "Selecciona l'idioma..." msgid "Select languages" msgstr "Selecciona els idiomes" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Selecciona un servei de moderació" @@ -9904,11 +10390,11 @@ msgstr "Selecciona els teus interessos d'entre aquestes opcions" msgid "Select your preferred language for translations in your feed." msgstr "Selecciona el teu idioma preferit per a les traduccions al teu canal." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Selecciona els teus canals de notificació preferits" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "No es permet seleccionar diversos tipus de suports." @@ -9921,9 +10407,9 @@ msgstr "Autolesions o comportaments perillosos" msgid "Send code" msgstr "Envia el codi" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Envia correu" @@ -9935,11 +10421,11 @@ msgstr "Envia correu" msgid "Send error report" msgstr "Envia informe d'error" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Envia comentari" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Envia el missatge" @@ -9952,7 +10438,7 @@ msgstr "Envia la publicació a {name}" msgid "Send post to..." msgstr "Envia el missatge a..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Envia l'informe a {title}" @@ -9960,7 +10446,7 @@ msgstr "Envia l'informe a {title}" msgid "Send the message from your phone" msgstr "Envia el missatge des del teu telèfon" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Envia per missatge directe" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Enviat a {0}" @@ -10015,14 +10501,14 @@ msgstr "Estableix la teva data de naixement a continuació i et permetrem tornar msgid "Sets email for password reset" msgstr "Estableix un correu per a restablir la contrasenya" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configuració" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Configuració de l'activitat d'altres persones" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Configuració de les notificacions de \"m'agrada\"" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Configuració de les notificacions de mencions" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Configuració de les notificacions de nou seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Configuració de les notificacions de tota la resta" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Configuració de les notificacions de m'agrades a les teves republicacions" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Configuració de les notificacions de citacions" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Configuració de les notificacions de respostes" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Configuració de les notificacions de republicacions" @@ -10079,16 +10565,19 @@ msgstr "Activitat sexual o nu eròtic." msgid "Sexually Suggestive" msgstr "Suggerent sexualment" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Comparteix" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Comparteix de totes maneres" @@ -10097,16 +10586,21 @@ msgstr "Comparteix de totes maneres" msgid "Share author DID" msgstr "Comparteix el DID de l'autor" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Comparteix la imatge" +#: 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 "Comparteix l'enllaç" @@ -10114,6 +10608,11 @@ msgstr "Comparteix l'enllaç" msgid "Share link dialog" msgstr "Diàleg de compartició de l'enllaç" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Comparteix l'URI at:// de la publicació" msgid "Share QR code" msgstr "Comparteix el codi QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Comparteix aquest canal" @@ -10142,8 +10641,8 @@ msgstr "Comparteix aquest starter pack i ajuda la gent de la teva comunitat a un #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Comparteix a través de..." @@ -10151,7 +10650,7 @@ msgstr "Comparteix a través de..." msgid "Share your contacts to find friends" msgstr "Comparteix els teus contactes per trobar amics" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Comprovador de preferències compartides" @@ -10167,16 +10666,16 @@ msgstr "Mostra el text alternatiu" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Mostra igualment" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Mostra l'etiqueta d'automatització" @@ -10197,8 +10696,8 @@ msgstr "Mostra les opcions de personalització" msgid "Show group chat updates" msgstr "Mostra les actualitzacions de grups de xat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Mostra'n menys com aquest" @@ -10219,8 +10718,8 @@ msgstr "Mostra esdeveniments en directe al teu canal de Discover" msgid "Show More" msgstr "Mostra més" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mostra'n més com aquest" @@ -10246,8 +10745,8 @@ msgstr "Mostra les respostes" msgid "Show replies as" msgstr "Mostra les respostes com a" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Mostra la resposta a tothom" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Mostra l'advertiment i filtra-ho dels canals" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Mostra quan estàs en directe" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Mostra informació sobre quan es va crear aquesta publicació" @@ -10297,15 +10796,17 @@ msgstr "Mostra el contingut" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Inicia sessió o crea un compte" msgid "Sign in or create your account to join the conversation!" msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Inicia sessió a un compte que no està llistat" @@ -10337,8 +10842,12 @@ msgstr "Inicia sessió a un compte que no està llistat" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sessió o crea el teu compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Inicia la sessió per veure la publicació" @@ -10348,9 +10857,9 @@ msgstr "Inicia la sessió per veure la publicació" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Tanca sessió" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Tanca la sessió" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Tancar la sessió?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Vols ometre les publicacions buides?" @@ -10405,7 +10914,7 @@ msgstr "Omet la introducció i comença a utilitzar el teu compte" msgid "Skip to next step" msgstr "Salta al pas següent" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "llisca" @@ -10413,7 +10922,7 @@ msgstr "llisca" msgid "Smaller" msgstr "Més petit" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Posposa el recordatori" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Algú ha deixat el grup" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Algú ha reaccionat amb {0}" @@ -10487,17 +10996,22 @@ msgstr "Algú ha estat eliminat" msgid "Someone was removed from the group" msgstr "Algú ha estat eliminat del grup" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Hi ha alguna cosa que no va bé amb les dades que intenteu informar. Contacteu amb suport." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Alguna cosa ha fallat" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Alguna cosa ha fallat." msgid "Something went wrong. Please try again in a moment." msgstr "Alguna cosa ha fallat, torna-ho a provar d'aquí una estona." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Alguna cosa no va a l'hora? Fes-nos-ho saber." @@ -10564,11 +11078,16 @@ msgstr "Correu brossa o altres comportaments no autèntics o enganys" msgid "Sports" msgstr "Esports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Enceta una conversa i apareixerà aquí." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Comença un nou xat" @@ -10582,17 +11101,17 @@ msgstr "Comença a afegir gent" msgid "Start adding people!" msgstr "Comença a afegir gent" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Inicia un xat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Comença un xat amb {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter pack" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Historial" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Estàs reproduint en directe a Twitch? Defineix el teu estat en directe a Bluesky per afegir una insígnia al teu avatar. Si hi toques, els usuaris aniran directament a la teva transmissió." @@ -10671,8 +11190,8 @@ msgstr "Estàs reproduint en directe a Twitch? Defineix el teu estat en directe #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Envia" @@ -10684,9 +11203,9 @@ msgstr "Envia l'apel·lació" msgid "Submit Appeal" msgstr "Envia l'apel·lació" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Envia l'informe" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Subscriure's" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Verificat" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Verificat" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificat correctament" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Suggerit" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ocàs" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Suport" msgid "Support for this feature in your country has not been enabled yet! Please check back later." 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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Canvia el compte" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Canvia de compte" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Canvia a {0}" @@ -10824,11 +11347,15 @@ msgstr "Registres del sistema" msgid "Tags only" msgstr "Només etiquetes" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "Toca per reconèixer que entens i acceptes aquestes actualitzacions i co msgid "Tap to close context menu" msgstr "Toca per a tancar el menú contextual" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Toca per a ignorar" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "Toca per eliminar" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Toca per eliminar la teva reacció {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "Toca per tornar-ho a provar" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Toca per mostrar {0} reaccions" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Toca per mostrar totes les reaccions" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Toca per veure les reaccions" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Condicions del servei" @@ -10939,7 +11484,7 @@ msgstr "Text i etiquetes" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Camp d'introducció de text" @@ -10981,9 +11526,9 @@ msgstr "Això és tot, amics!" msgid "That's everything!" msgstr "Això és tot!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "El compte podrà interactuar amb tu després del desbloqueig." @@ -11049,6 +11594,11 @@ msgstr "La configuració serà la que s'aplicarà per defecte quan facis noves p msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "La legislació de la teva regió exigeix que verifiquis que ets adult per accedir a certes funcionalitats. Toca per obtenir més informació." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "L'autor ha marcat la publicació a la qual respons com a escrita en {suggestedLanguageName}. Vols respondre en <0>{suggestedLanguageName}?" @@ -11057,9 +11607,9 @@ msgstr "L'autor ha marcat la publicació a la qual respons com a escrita en {sug msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacitat ha estat traslladada a <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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 "Hi ha un límit de freqüència amb què pots canviar la teva data de naixement. Potser hauràs d'esperar un dia o dos abans d'actualitzar-la de nou." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "No hi ha cap enllaç d'invitació per a aquest xat de grup." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "No s'han pogut carregar els GIFs. Comprova la teva connexió i torna-ho a provar." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "S'ha produït un problema actualitzant els teus canals. Comprova la teva connexió a Internet i torna-ho a provar." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Hi ha hagut un problema! {0}" @@ -11221,6 +11774,14 @@ msgstr "Aquesta és la teva configuració predeterminada" msgid "These settings only apply to the Following feed." msgstr "Aquests paràmetres només s'apliquen al canal Seguint." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Aquesta {screenDescription} ha estat etiquetada:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Aquesta apel·lació s'enviarà a <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Aquesta apel·lació s'enviarà al servei de moderació de Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Aquesta apel·lació s'enviarà al servei de moderació de Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Aquest autor ha triat que les seves publicacions només siguin visibles per a les persones que han iniciat la sessió." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Aquest botó permet que altres persones obrin l'aplicació Germ DM per enviar-te un missatge. Pots gestionar-ne la visibilitat des de l'aplicació Germ DM o pots desconnectar completament el teu compte de Bluesky de Germ DM fent clic al botó següent." @@ -11271,11 +11832,21 @@ msgstr "Aquest botó permet que altres persones obrin l'aplicació Germ DM per e msgid "This chat has ended" msgstr "Aquest xat s'ha acabat" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Aquest xat està bloquejat" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Aquest xat s'ha desconnectat" @@ -11310,7 +11881,11 @@ msgstr "Aquest contingut no està disponible per culpa que un dels usuaris invol msgid "This content is not viewable without a Bluesky account." msgstr "Aquest contingut no es pot veure sense un compte de Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obtenir opcions" @@ -11318,7 +11893,7 @@ msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obten msgid "This draft will be permanently deleted." msgstr "Aquest esborrany s'eliminarà permanentment." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Aquest correu ja està associat amb el teu compte." @@ -11356,11 +11931,15 @@ msgstr "Aquest canal és buit." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Aquest canal ja no està en línia. En el seu lloc et mostrem <0>Discover." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Aquest identificador està reservat. Si us plau, provi un altre." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "No s'ha pogut utilitzar aquesta imatge. Prova un format diferent com ara msgid "This information is private and not shared with other users." msgstr "Aquesta informació és privada i no es comparteix amb altres usuaris." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Aquest és un estat buit" @@ -11377,7 +11964,7 @@ msgstr "Aquest és un estat buit" msgid "This is not a valid link" msgstr "Aquest enllaç no és vàlid" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Aquesta etiqueta permet que el món sàpiga que aquest compte està automatitzat. Si està activada, aquesta etiqueta apareixerà al costat del nom del compte al seu perfil i a les seves publicacions. Es pot activar o desactivar en qualsevol moment." @@ -11410,13 +11997,17 @@ msgstr "Aquesta llista - creada per tu - conté possibles infraccions de les dir msgid "This list is empty." msgstr "Aquesta llista està buida." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Aquesta publicació afirma haver estat creada el <0>{0}, però va ser vista per primera vegada per Bluesky el <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Aquesta publicació només és visible per als usuaris que han iniciat l msgid "This post was deleted by its author" msgstr "L'autor ha eliminat la publicació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "L'autor d'aquesta publicació ha deshabilitat les citacions." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Aquest perfil només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Aquesta resposta s'ordenarà en una secció oculta a la part inferior del fil i silenciarà les notificacions de les respostes posteriors, tant per a tu com per als altres." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Aquesta pantalla només està disponible per a converses en grup." @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Aquest usuari no té cap seguidor." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "Això eliminarà irreversiblement el teu compte de Bluesky <0>{currentHa msgid "This will remove @{0} from the quick access list." msgstr "Això eliminarà @{0} de la llista d'accés ràpid." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Això eliminarà la teva publicació d'aquesta citació per a tots els usuaris i la substituirà per un marcador de posició." @@ -11574,7 +12166,7 @@ msgstr "Preferències dels fils de debat" msgid "Threaded" msgstr "En mode fils de debat" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferències dels fils de debat" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "per a desactivar el mètode 2FA de correu, verifica el teu accés a l'adreça de correu." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Per a desactivar el mètode 2FA de correu, verifica el teu accés a <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Superior" msgid "Top replies first" msgstr "Primer les respostes principals" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Tradueix" @@ -11667,8 +12259,8 @@ msgstr "Traduït" msgid "Translating" msgstr "Traduint" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Traduint…" @@ -11702,7 +12294,7 @@ msgstr "Vídeos populars" msgid "Trolling" msgstr "Trolejar" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confiança sorgeix de les relacions, les comunitats i el context compartit, de manera que també estem habilitant <0>verificadors de confiança: organitzacions que poden emetre directament la verificació." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Prova un terme de cerca diferent o <0>consulta com utilitzar els filtres de cerca." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Torna-ho a provar" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Torna-ho a provar" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Prova el traductor de Google" +#: 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 "Televisió" @@ -11763,11 +12369,15 @@ msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a inte msgid "Unable to delete" msgstr "No s'ha pogut eliminar" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "No disponible" msgid "Unavailable feed information" msgstr "Informació del canal no disponible" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Desbloqueja" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Desbloqueja" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Desbloqueja {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desbloqueja el compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Vols desbloquejar el compte?" @@ -11837,8 +12452,8 @@ msgstr "Desbloqueja la llista" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Desfés" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desfés republicacions ({0, plural, one {# republicació} other {# republicacions}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Deixa de seguir el compte" @@ -11872,7 +12487,7 @@ msgstr "Deixa de seguir el compte" msgid "Unfollows the user" msgstr "Deixa de seguir l'usuari" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Malauradament, cap dels vostres etiquetadora subscrits admet aquest tipus d'informe." @@ -11884,14 +12499,6 @@ msgstr "Malauradament, la data de naixement que has desat al teu perfil et fa ma msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Malauradament, l'edat que has declarat indica que no tens l'edat suficient per accedir a Bluesky a la teva regió." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Desconvida" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Desconvida a {displayName} d'aquest xat de grup" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Verificador desconegut" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Desfés el m'agrada" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Desfés els m'agrades ({0, plural, one {# m'agrada} other {# m'agrades}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Desbloqueja el xat" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Obre aquest xat de grup" @@ -11939,14 +12546,14 @@ msgstr "Deixa de silenciar" msgid "Unmute {0}" msgstr "Deixa de silenciar {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Deixa de silenciar el compte" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Deixa de silenciar la conversa" @@ -11955,12 +12562,12 @@ msgstr "Deixa de silenciar la conversa" msgid "Unmute list" msgstr "Deixa de silenciar la llista" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Deixa de silenciar aquest xat de grup" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Deixa de fixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Deixa de fixar el canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Deixa de fixar a l'inici" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "No fixis al perfil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Desancora la llista de moderació" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} ja no està fixat a l'inici" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Contingut del porta-retalls no compatible" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Tipus de vídeo no compatible: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Actualitza" msgid "Update <0>{displayName} in Lists" msgstr "Actualitza <0>{displayName} a les Llistes" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Actualitza el correu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Actualitza l'enllaç d'invitació" @@ -12065,11 +12680,15 @@ msgstr "Actualitza l'enllaç d'invitació" msgid "Update to {domain}" msgstr "Actualitza a {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Actualitza l'aplicació a l'última versió per unir-t'hi!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Actualitza el teu correu" @@ -12080,17 +12699,17 @@ msgstr "Actualitza el teu correu" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "No s'ha pogut actualitzar el fitxer adjunt de la citació" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "No s'ha pogut actualitzar la visibilitat de la resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Enlloc d'això, penja una foto" @@ -12098,39 +12717,40 @@ msgstr "Enlloc d'això, penja una foto" msgid "Upload a text file to:" msgstr "Puja un fitxer de text a:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Puja de la càmera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Puja dels Fitxers" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Puja de la biblioteca" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "S'està penjant el GIF..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "S'estan penjant imatges..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "S'està penjant la miniatura de l'enllaç..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "S'està penjant el vídeo..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "usuari" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Usuari bloquejat" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Llista d'usuaris per {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Llista d'usuaris per {0}" @@ -12255,12 +12875,12 @@ msgstr "usuaris seguits per <0>@{0}" msgid "users following <0>@{0}" msgstr "usuaris seguint <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Els usuaris als quals segueixo" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Els usuaris als quals segueixo" @@ -12277,7 +12897,7 @@ msgstr "La verificació ha fallat, torna-ho a provar." msgid "Verification settings" msgstr "Configuració de verificació" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Configuració de verificació" @@ -12304,8 +12924,8 @@ msgstr "Verifica de nou" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Verifica el codi" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verifica els registres de DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verifica el codi del correu" @@ -12349,7 +12969,7 @@ msgstr "Vols verificar aquest compte?" msgid "Verify your age" msgstr "Verifica la teva edat" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Versió {0}" msgid "Video" msgstr "Vídeo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "El vídeo no s'ha pogut processar" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Canal de vídeos" @@ -12419,7 +13039,7 @@ msgstr "No s'ha trobat el vídeo." msgid "Video settings" msgstr "Configuració de vídeo" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Vídeo penjat" @@ -12432,18 +13052,18 @@ msgstr "Vídeo: {0}" msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Veure" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Veure el perfil de {0}" @@ -12467,20 +13087,15 @@ msgstr "Veure el perfil de {0}" msgid "View {0}’s profile" msgstr "Mostra el perfil de {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Mostra el perfil de {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Veure el perfil de l'usuari bloquejat" @@ -12503,10 +13118,18 @@ msgstr "Veure els detalls" msgid "View full thread" msgstr "Veure el fil de debat complet" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Veure les sol·licituds de xat de grup entrants" +#: 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:56 msgid "View information about these labels" msgstr "Mostra informació sobre aquestes etiquetes" @@ -12522,7 +13145,7 @@ msgstr "Mostra'n més" msgid "View more trending videos" msgstr "Veure més vídeos del moment" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Veure la publicació" @@ -12539,10 +13162,10 @@ msgstr "Veure el perfil" msgid "View profile banner" msgstr "Mostra el bàner del perfil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Veure l'avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Mostra l'enllaç d'invitació per a aquest xat de grup" @@ -12563,7 +13186,7 @@ msgstr "Veure el servei d'etiquetatge proporcionat per @{0}" msgid "View this user's verifications" msgstr "Veure les verificacions d'aquest usuari" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" @@ -12596,8 +13219,8 @@ msgstr "Veure els teus comptes silenciats" msgid "View your verifications" msgstr "Veure les teves verificacions" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Veure la imatge completa" @@ -12640,8 +13263,8 @@ msgstr "Adverteix del contingut" msgid "Warn content and filter from feeds" msgstr "Adverteix del contingut i filtra-ho dels canals" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Mira ara" @@ -12665,11 +13288,15 @@ msgstr "No hem trobat cap resultat per a aquesta etiqueta." msgid "We couldn't find any results for that topic." msgstr "No hem trobat cap resultat per a aquest tema" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "No hem pogut carregar aquesta conversa" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "No hem pogut carregar la configuració d'aquesta conversa" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Et recomanem que triïs almenys dos interessos." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Hem enviat un correu a <0>{0} amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "No hem pogut determinar si tens permís per pujar vídeos. Torna-ho a provar." @@ -12744,12 +13371,12 @@ msgstr "No hem pogut rebre la verificació a causa d'un problema de connexió. P msgid "We will let you know when your account is ready." msgstr "T'informarem quan el teu compte estigui llest." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "T'avisarem quan trobem els teus amics." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Enviarem un correu a <0>{0} amb un enllaç. Fes-hi clic per completar el procés de verificació del correu electrònic." @@ -12779,12 +13406,12 @@ msgstr "Estem tenint problemes per inicialitzar el procés de garantia d'edat pe msgid "We're having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Ens sap greu! No podem trobar la pàgina que estàs cercant." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Com vols anomenar al teu starter pack?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Què hi ha de nou" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Quan toques un xec, veuràs quines organitzacions han concedit la verificació." @@ -12878,7 +13505,7 @@ msgstr "Quan toques un xec, veuràs quines organitzacions han concedit la verifi msgid "Who can interact with this post?" msgstr "Qui pot interactuar amb aquesta publicació?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Qui pot unir-se a aquest xat de grup i com" @@ -12887,13 +13514,13 @@ msgstr "Qui pot unir-se a aquest xat de grup i com" msgid "Who can reply" msgstr "Qui hi pot respondre" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Qui pot verrificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Vaja!" @@ -12939,7 +13566,7 @@ msgstr "Per què s'hauria de revisar aquest starter pack?" msgid "Why should this user be reviewed?" msgstr "Per què s'hauria de revisar aquest usuari?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Vols bloquejar aquest usuari i/o eliminar aquesta conversa?" @@ -12951,7 +13578,7 @@ msgstr "" 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Vols desar-ho com a esborrany per editar-ho més tard?" msgid "Write a post" msgstr "Escriu una publicació" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Escriu una publicació" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Escriu la teva resposta" @@ -12978,7 +13605,8 @@ msgstr "Escriptors" msgid "Wrong DID returned from server. Received: {0}" msgstr "L'identificador DID incorrecte ha estat retornat pel servidor. Rebut: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Tipus de conversa equivocat" @@ -13005,11 +13633,11 @@ msgstr "Sí, elimina el meu compte" msgid "Yes, delete this starter pack" msgstr "Sí, elimina aquest starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Sí, desenganxa'l" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Sí, amaga'l" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "Estàs emetent en directe" msgid "You are no longer live" msgstr "Ja no estàs emetent en directe" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "No t'és permès pujar vídeos." @@ -13117,21 +13745,30 @@ msgstr "Sempre pots optar per no participar i suprimir les teves dades" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Pots triar si les notificacions dels xats tenen so en la configuració del xat en l'aplicació" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Pots continuar les converses en curs independentment de la configuració que triïs." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Ara pots triar rebre notificacions quan publiquin persones específiques. Si hi ha algú de qui vols actualitzacions puntuals, vés al seu perfil i busca la nova icona de campana a prop del botó de seguir." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Ara pots iniciar sessió amb la nova contrasenya." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Només pots desar esborranys de fins a 1000 caràcters." @@ -13139,11 +13776,11 @@ msgstr "Només pots desar esborranys de fins a 1000 caràcters." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Només pots desar esborranys de fins a 1000 caràcters. Vols descartar aquesta publicació abans de veure els teus esborranys?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Només pots seleccionar un GIF alhora." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Només pots seleccionar un vídeo alhora." @@ -13155,10 +13792,10 @@ msgstr "Pots reactivar el teu compte per continuar iniciant la sessió. El teu p 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Pots seleccionar fins a {MAX_IMAGES, plural, other {# imatges}} en total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,7 +13803,12 @@ msgstr "Pots seleccionar fins a {MAX_IMAGES, plural, other {# imatges}} en total msgid "You can update this later from your settings." msgstr "Pots actualitzar-ho més tard des de la teva configuració." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "No tens cap canal desat." msgid "You got here first" msgstr "Vas arribar primer" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Has de tenir com a mínim 13 anys per utilitzar Bluesky. Llegeix les nostres <0>Condicions del servei per obtenir més informació." @@ -13332,11 +13982,12 @@ msgstr "Has de tenir com a mínim 13 anys per utilitzar Bluesky. Llegeix les nos msgid "You must be following at least seven other people to generate a starter pack." msgstr "Has de seguir almenys set persones més per generar un starter pack." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Has de concedir accés a la teva galeria per desar un codi QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Has de permetre l'accés a la teva biblioteca multimèdia." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Has reaccionat amb {0}" @@ -13368,8 +14023,13 @@ msgstr "Has reaccionat amb {0} a {target}" msgid "You recently changed your birthdate" msgstr "Has canviat la teva data de naixement fa poc" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Es tancarà la sessió de tots els teus comptes." @@ -13378,11 +14038,11 @@ msgstr "Es tancarà la sessió de tots els teus comptes." msgid "You will no longer receive notifications for {0}" msgstr "Ja no rebràs més notificacions per a {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Ja no rebràs més notificacions d'aquest debat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Ara rebràs notificacions d'aquest debat" @@ -13390,12 +14050,12 @@ msgstr "Ara rebràs notificacions d'aquest debat" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Rebràs un correu amb un \"codi de restabliment\". Introdueix aquí el codi i després la teva contrasenya nova." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "No podràs tornar a unir-te si no t'hi conviden." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Tu: {message}" @@ -13429,6 +14089,10 @@ msgstr "Començaràs a rebre notificacions per a {0}!" msgid "You'll stay updated with these feeds" msgstr "Estaràs al dia amb aquests canals" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Estàs a la cua" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Has arribat al nombre màxim d'esborranys" @@ -13475,11 +14139,11 @@ msgstr "Has arribat al nombre màxim de sol·licituds permeses. Torna-ho a prova msgid "You've reached the start of the active content." msgstr "Has arribat a l'inici del contingut actiu." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Has assolit el teu límit diari de pujades de vídeos (massa bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has assolit el teu límit diari de pujades de vídeos (massa vídeos)" @@ -13499,10 +14163,18 @@ msgstr "El teu compte s'ha eliminat, fins aviat! ✌️" msgid "Your account has been suspended" msgstr "S'ha suspès el teu compte" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "El teu compte encara no té l'edat suficient per penjar vídeos. Torna-ho a provar més tard." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "El repositori del teu compte, que conté tots els registres de dades públiques, es pot baixar com a fitxer \"CAR\". Aquest fitxer no inclou incrustacions multimèdia, com ara imatges, ni les teves dades privades, que s'han d'obtenir per separat." @@ -13519,7 +14191,7 @@ msgstr "S'ha enviat l'apel·lació. Si s'accepta l'apel·lació, rebràs un corr msgid "Your birth date" msgstr "La teva data de naixement" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Els teus xats s'han desactivat" @@ -13527,11 +14199,11 @@ msgstr "Els teus xats s'han desactivat" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "La teva elecció es recordarà per a futurs enllaços. Pots canviar-la en qualsevol moment a la configuració." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "El teu contacte {firstAuthorLink} està a Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "El teu contacte {firstAuthorName} està a Bluesky" @@ -13561,7 +14233,7 @@ msgstr "El teu correu" msgid "Your email appears to be invalid." msgstr "El teu correu no sembla vàlid." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "El teu correu encara no s'ha verificat. Verifica'l per gaudir de totes les funcions de Bluesky." @@ -13582,7 +14254,7 @@ msgstr "El teu canal de seguint està buit! Segueix a més usuaris per a saber q msgid "Your full handle will be <0>@{0}" msgstr "El teu identificador complet serà <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "S'ha actualitzat la teva ubicació." msgid "Your muted words" msgstr "Les teves paraules silenciades" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "El teu nom, avatar i el nom del xat de grup seran visibles per a tothom." +#: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "La teva publicació s'ha enviat" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Les teves publicacions s'han enviat" @@ -13635,7 +14307,7 @@ msgstr "Les teves publicacions s'han enviat" msgid "Your preferred language" msgstr "El teu idioma preferent" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "La teva foto de perfil" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "La teva resposta s'ha enviat" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "El teu informe s'enviarà a <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "El teu informe s'enviarà a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Seleccionar els teus interessos ens ajuda a mostrar-te el contingut que t'importa." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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." diff --git a/src/locale/locales/cs/messages.po b/src/locale/locales/cs/messages.po new file mode 100644 index 0000000000..1b646a9a9e --- /dev/null +++ b/src/locale/locales/cs/messages.po @@ -0,0 +1,14343 @@ +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: cs\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-06-10 21:06\n" +"Last-Translator: \n" +"Language-Team: Czech\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: cs\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:330 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 +msgid "(contains embedded content)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:76 +msgid "(no email)" +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/LabelsOnMe.tsx:63 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:72 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.members.length +#: src/components/dialogs/SearchablePeopleList.tsx:555 +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:225 +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:269 +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:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:231 +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:311 +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:100 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +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:614 +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:186 +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:264 +msgid "{0} reacted {1}" +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 "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +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:427 +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:35 +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 "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/InboxRequests.tsx:56 +msgid "{count}+" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/InboxRequests.tsx:31 +msgid "{count}+ requests" +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/view/com/notifications/NotificationFeedItem.tsx:355 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:389 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:298 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:494 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:467 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:322 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:518 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:413 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:442 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:367 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:344 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:401 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:310 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:506 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:479 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:334 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:530 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:425 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:454 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:348 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:382 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:291 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:487 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:315 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:511 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:406 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:435 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:353 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:343 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:387 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:296 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:492 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:465 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:320 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:516 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:411 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:440 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 +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:906 +msgid "{handle} can’t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:15 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:19 +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:220 +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:10 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:45 +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:57 +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" +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +msgid "{rank}." +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 "" + +#. 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 "" + +#: 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}: totalNumber - 3 +#: 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 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.likeCount) +#. placeholder {1}: post.likeCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 +msgid "<0>{0} {1, plural, one {like} other {likes}}" +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:473 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:226 +#: src/screens/Search/SearchResults.tsx:315 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/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:278 +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:17 +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:33 +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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 +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 "" + +#. 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 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 +#: src/screens/Settings/AboutSettings.tsx:78 +#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:258 +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:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:452 +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/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:233 +#: src/screens/Settings/Settings.tsx:236 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:388 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:404 +#: src/screens/Login/LoginForm.tsx:192 +#: src/screens/Settings/AccountSettings.tsx:56 +#: src/screens/Settings/Settings.tsx:173 +#: src/screens/Settings/Settings.tsx:176 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:206 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:34 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:37 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:160 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:637 +msgid "Account options" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +msgid "Account provider" +msgstr "" + +#: src/screens/Settings/Settings.tsx:671 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:221 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:216 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 +msgid "Activity from others" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +#: src/view/com/modals/UserAddRemoveLists.tsx:236 +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:108 +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:575 +#: src/screens/Settings/Settings.tsx:578 +#: 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:1505 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2168 +msgid "Add another post to thread" +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/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +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:505 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +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:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:83 +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:355 +#: src/view/com/profile/ProfileMenu.tsx:358 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:144 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:166 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:234 +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:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:163 +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:152 +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:131 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:383 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:207 +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:288 +#: 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:385 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:100 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:102 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +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:143 +#: src/screens/Messages/Settings.tsx:158 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 +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:180 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:192 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:46 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 +#: 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/Post/Embed/VideoEmbed/GifPresentationControls.tsx:100 +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:448 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:401 +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:374 +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:149 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +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:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 +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:453 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:445 +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:35 +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:190 +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:92 +msgid "An issue occurred creating the group chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +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/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:508 +#: src/components/ProfileCard.tsx:530 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 +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/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:165 +msgid "An unknown error occurred." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: 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:97 +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 "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 +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:458 +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:473 +#: 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, dashes, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:356 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:155 +#: src/components/moderation/LabelsOnMeDialog.tsx:158 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/LabelsOnMeDialog.tsx:282 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:272 +#: 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/Navigation.tsx:396 +#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/screens/Settings/Settings.tsx:225 +#: src/screens/Settings/Settings.tsx:228 +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:506 +#: src/screens/Settings/Settings.tsx:508 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +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:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 +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:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:63 +msgid "Automated account" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:157 +#: src/screens/Settings/AccountSettings.tsx:160 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:412 +#: 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 +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:73 +msgid "Available" +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/moderation/LabelsOnMeDialog.tsx:334 +#: src/components/moderation/LabelsOnMeDialog.tsx:335 +#: src/screens/Login/ChooseAccountForm.tsx:98 +#: src/screens/Login/ChooseAccountForm.tsx:102 +#: src/screens/Login/ForgotPasswordForm.tsx:127 +#: src/screens/Login/ForgotPasswordForm.tsx:132 +#: src/screens/Login/LoginForm.tsx:317 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:172 +#: src/screens/Login/SetNewPasswordForm.tsx:178 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 +#: 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:239 +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/components/ageAssurance/AgeAssuranceAccountCard.tsx:259 +msgid "Based on your device's location, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:264 +#: src/components/StarterPack/ProfileStarterPacks.tsx:274 +#: src/view/screens/Profile.tsx:350 +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:59 +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:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:147 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 +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:469 +#: src/view/com/profile/ProfileMenu.tsx:476 +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:216 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:192 +#: 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:203 +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:174 +msgid "Blog" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 +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 +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:117 +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:340 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:535 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:665 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:646 +#: src/components/FeedInterstitials.tsx:649 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:674 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:179 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:187 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:196 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:233 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks/index.tsx:302 +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:174 +#: src/screens/Search/components/StarterPackCard.tsx:107 +#: src/screens/Search/Explore.tsx:971 +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}: sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:106 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +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:367 +#: src/components/moderation/BlockDialog.tsx:202 +#: 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/liveEvents/components/LiveEventFeedOptionsMenu.tsx:152 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:157 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/Shell.tsx:405 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: 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:300 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 +#: 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/Search/Shell.tsx:396 +msgid "Cancel search" +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:275 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +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:40 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +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:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: 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:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:148 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:139 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 +#: src/screens/Messages/ChatList.tsx:83 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:134 +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:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:307 +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:349 +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:108 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 +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 +msgid "Choose your account 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:268 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:192 +msgid "Choose your username" +msgstr "" + +#: src/screens/Settings/Settings.tsx:498 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:500 +msgid "Clear all storage data (restart after this)" +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:127 +#: src/screens/Settings/AboutSettings.tsx:131 +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:126 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:129 +msgid "Click here to contact our support team" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:254 +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:109 +#: src/ageAssurance/components/NoAccessScreen.tsx:231 +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:141 +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:533 +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/dialogs/LanguageSelectDialog.tsx:359 +#: 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:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 +#: 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:217 +#: src/features/liveNow/components/EditLiveDialog.tsx:223 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 +#: 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:127 +#: src/components/Dialog/index.web.tsx:317 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +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:94 +#: src/components/moderation/BlockDialog.tsx:199 +#: 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:129 +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:84 +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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 +#: src/components/Menu/index.tsx:361 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:217 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:33 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1727 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:605 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:953 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:81 +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:346 +#: 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:194 +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:1603 +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:2565 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2567 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:37 +msgid "Configure live event banner" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:284 +#: 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:140 +#: src/screens/Login/LoginForm.tsx:340 +msgid "Connecting to service..." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:334 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:146 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:127 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:233 +#: src/screens/Signup/index.tsx:236 +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:205 +#: src/screens/Settings/Settings.tsx:208 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:449 +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/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 "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:86 +#: 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:54 +#: src/components/moderation/ScreenHider.tsx:100 +#: 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:91 +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/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: 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/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:493 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:162 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: 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:138 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:506 +#: src/view/com/profile/ProfileMenu.tsx:509 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +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:515 +#: src/view/com/profile/ProfileMenu.tsx:518 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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:142 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:169 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +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:181 +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:351 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +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:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +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:284 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:73 +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:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:66 +msgid "Could not process your video" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +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 "" + +#. 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 +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:166 +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:542 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:562 +#: src/view/screens/Profile.tsx:563 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:158 +#: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 +#: src/screens/Signup/index.tsx:135 +#: src/view/com/auth/SplashScreen.tsx:107 +#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 +#: 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:235 +#: src/screens/Search/SearchResults.tsx:321 +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:317 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:501 +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:301 +#: src/view/com/auth/SplashScreen.tsx:100 +#: src/view/com/auth/SplashScreen.web.tsx:108 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:547 +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:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 +#: 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/components/moderation/BlockDialog.tsx:378 +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:93 +#: src/screens/Settings/AppearanceSettings.tsx:114 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:106 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:296 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:179 +#: src/screens/Settings/AccountSettings.tsx:184 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:75 +msgid "Debug panel" +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:156 +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:189 +#: src/screens/Settings/AccountSettings.tsx:194 +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:470 +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:180 +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:177 +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:1615 +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:209 +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:151 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:282 +#: src/screens/Settings/Settings.tsx:285 +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/Settings/AppearanceSettings.tsx:110 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 +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:414 +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:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 +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:455 +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:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 +#: 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:1396 +#: 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:1413 +#: src/view/com/composer/Composer.tsx:1640 +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/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 "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:413 +#: 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:2486 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:82 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:90 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:349 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Don’t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:98 +#: 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:104 +#: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 +#: src/lib/media/picker.tsx:37 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: 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/view/com/modals/UserAddRemoveLists.tsx:114 +#: src/view/com/modals/UserAddRemoveLists.tsx:117 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:437 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:414 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1107 +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:366 +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:30 +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:150 +#: 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:188 +#: src/view/com/lists/ListMembers.tsx:194 +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:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 +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:99 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +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:369 +#: src/view/com/profile/ProfileMenu.tsx:389 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:361 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Edit name" +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:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 +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:547 +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:71 +#: src/screens/Signup/StepInfo/index.tsx:220 +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:95 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +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:57 +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/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +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/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 +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:131 +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:149 +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:433 +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:115 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:218 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:240 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:243 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:141 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2585 +#: 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:154 +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:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:80 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:65 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 +msgid "Everything else" +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:432 +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:606 +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:33 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:983 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:491 +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:204 +#: src/components/moderation/ModerationDetailsDialog.tsx:224 +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:132 +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:751 +#: src/screens/Search/Shell.tsx:362 +#: 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 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:170 +#: src/screens/Settings/AccountSettings.tsx:174 +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:380 +#: 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:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +msgid "Failed to add members" +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:126 +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:101 +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:124 +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:369 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 +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/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:530 +#: src/screens/Search/Explore.tsx:575 +#: src/screens/Search/Explore.tsx:621 +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 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 +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:482 +#: src/screens/Search/Explore.tsx:537 +#: src/screens/Search/Explore.tsx:582 +#: src/screens/Search/Explore.tsx:628 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:391 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:420 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:311 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:383 +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/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:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 +msgid "Failed to remove emoji reaction" +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:73 +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:158 +#: 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:648 +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/LabelsOnMeDialog.tsx:266 +#: 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:429 +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:97 +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:291 +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:353 +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:527 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:80 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:239 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:66 +msgid "Feeds we think you might like." +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/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:98 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:71 +msgid "Filter search by language (currently: {currentLanguageLabel})" +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:166 +msgid "Filter who you receive notifications from" +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:216 +#: src/screens/Settings/Settings.tsx:219 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +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:537 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +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:546 +#: 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:425 +#: src/screens/VideoFeed/index.tsx:866 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:845 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:75 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:116 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:325 +#: src/view/com/profile/ProfileMenu.tsx:336 +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:542 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:245 +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:537 +#: 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:421 +#: src/screens/VideoFeed/index.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 +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:498 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:844 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:367 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:175 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:148 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:96 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, we’ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:130 +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 +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:30 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:172 +#: src/screens/Login/index.tsx:188 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:258 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:269 +msgid "Forgot?" +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:12 +msgid "Free your feed" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 +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/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:261 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:94 +msgid "Get notified about new posts" +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:87 +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:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2590 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +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:133 +#: src/components/moderation/ScreenHider.tsx:161 +#: src/components/moderation/ScreenHider.tsx:170 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:75 +#: 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:1168 +#: src/screens/VideoFeed/index.tsx:1172 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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/index.tsx:303 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/screens/Bookmarks/components/EmptyState.tsx:44 +#: src/screens/Bookmarks/components/EmptyState.tsx:52 +msgctxt "Button to go back to the home timeline" +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:370 +#: src/view/com/profile/ProfileMenu.tsx:391 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:100 +#: src/features/liveNow/components/GoLiveDialog.tsx:105 +#: src/features/liveNow/components/GoLiveDialog.tsx:233 +#: src/features/liveNow/components/GoLiveDialog.tsx:242 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:367 +#: src/view/com/profile/ProfileMenu.tsx:387 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:175 +msgid "Go live for" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:250 +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:174 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 +#: 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:212 +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:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:412 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:364 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:378 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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:135 +#: src/screens/Settings/AccountSettings.tsx:140 +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:480 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:320 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:231 +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:247 +#: src/screens/Settings/Settings.tsx:251 +#: 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:262 +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:173 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:462 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:643 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:131 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:960 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:139 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:146 +msgid "Hide all events" +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/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:111 +msgid "Hide this card" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:127 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:134 +msgid "Hide this event" +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:115 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:131 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:137 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:951 +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:171 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/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:415 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: 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/screens/Login/ForgotPasswordForm.tsx:85 +#: src/screens/Login/LoginForm.tsx:182 +msgid "Hosting provider" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 +msgid "Hot" +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:121 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:337 +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:125 +msgid "If you believe your birthdate is incorrect, please <0>contact our support team." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:118 +msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:96 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:459 +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:444 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:67 +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:53 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:276 +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:216 +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/index.tsx:387 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:226 +msgid "Inbox zero!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:162 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:135 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:161 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:299 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:138 +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:153 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:165 +#: 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:190 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:347 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:321 +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:152 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:394 +msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " +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:370 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2505 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +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:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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:1446 +#: src/view/com/composer/Composer.tsx:1456 +#: 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/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:251 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:249 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:232 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:194 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:77 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 +msgid "Labels on your content" +msgstr "" + +#: src/Navigation.tsx:218 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:239 +#: src/screens/Settings/Settings.tsx:242 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:160 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:377 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:375 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:99 +#: src/screens/Search/SearchResults.tsx:64 +#: src/screens/Topic.tsx:65 +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:147 +msgid "Learn More" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:167 +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 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/ContentHider.tsx:235 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:134 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:259 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 +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:384 +#: src/components/moderation/BlockDialog.tsx:391 +#: src/screens/Messages/components/ChatEnded.tsx:67 +#: src/screens/Messages/components/ChatLocked.tsx:113 +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:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:584 +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:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:173 +#: src/screens/Login/index.tsx:189 +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:89 +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:509 +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:110 +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:497 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:148 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 +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 "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:160 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +#: src/view/screens/Profile.tsx:238 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:202 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +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:251 +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:172 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:233 +#: src/view/screens/Profile.tsx:241 +#: 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:51 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:106 +msgid "Live event options" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:110 +msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:149 +#: src/features/liveNow/components/EditLiveDialog.tsx:153 +#: src/features/liveNow/components/GoLiveDialog.tsx:131 +#: src/features/liveNow/components/GoLiveDialog.tsx:135 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:90 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:519 +#: src/screens/Search/Explore.tsx:610 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:206 +#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:217 +#: src/screens/Messages/components/MessageInput.tsx:234 +#: src/screens/Messages/components/MessageInput.web.tsx:202 +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:564 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:562 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:564 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:326 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +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/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 +msgid "Mark all 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:306 +msgid "Marked all as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/view/screens/Profile.tsx:236 +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:302 +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:98 +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:181 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#: src/components/Menu/index.tsx:113 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:178 +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:218 +#: src/screens/Messages/components/MessageInput.tsx:235 +#: src/screens/Messages/components/MessageInput.web.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 +msgctxt "action" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 +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:527 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:142 +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:214 +#: src/screens/Messages/components/MessageInput.tsx:176 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:86 +#: src/screens/Messages/components/MessageInput.web.tsx:55 +msgid "Message is too long" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:89 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:141 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:761 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:626 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:621 +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:177 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:189 +#: src/screens/Settings/Settings.tsx:192 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:142 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/ListCard.tsx:152 +#: src/view/com/modals/UserAddRemoveLists.tsx:223 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:221 +#: 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:182 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:311 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:56 +#: 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:259 +#: src/view/com/profile/ProfileMenu.tsx:266 +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:526 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:171 +#: 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:448 +#: src/view/com/profile/ProfileMenu.tsx:455 +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:524 +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:526 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:187 +#: 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:150 +#: src/screens/Login/ForgotPasswordForm.tsx:175 +#: src/screens/Login/LoginForm.tsx:351 +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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:403 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:563 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:546 +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:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 +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:195 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 +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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 +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/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: 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 +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:552 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:537 +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/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:226 +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/screens/Login/ForgotPasswordForm.tsx:149 +#: src/screens/Login/ForgotPasswordForm.tsx:156 +#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:192 +#: 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:31 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +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/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:141 +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:202 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the user’s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:525 +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:521 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 +msgid "No longer following {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:471 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +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:91 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:73 +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:74 +msgid "No one can send messages" +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 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:107 +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:456 +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:376 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:828 +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:178 +msgid "No results found for “<0>{query}”." +msgstr "" + +#: src/screens/Search/Explore.tsx:832 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:557 +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:498 +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:109 +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/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:167 +#: src/view/screens/Profile.tsx:132 +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:545 +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:135 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks/components/EmptyState.tsx:36 +#: src/screens/Bookmarks/index.tsx:299 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:104 +#: src/screens/Settings/Settings.tsx:197 +#: src/screens/Settings/Settings.tsx:200 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: 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:164 +#: src/screens/Settings/NotificationSettings/index.tsx:394 +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:226 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: 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:733 +#: src/components/dms/MessageItem.tsx:633 +#: src/screens/Login/PasswordUpdatedForm.tsx:37 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +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:164 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:396 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:861 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:417 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:659 +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:871 +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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +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:363 +#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:132 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:311 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:167 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:176 +#: src/screens/Messages/components/MessageInput.web.tsx:148 +#: src/view/com/composer/Composer.tsx:2145 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +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:408 +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:141 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:43 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:461 +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:120 +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:454 +#: src/screens/Settings/Settings.tsx:468 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:447 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:409 +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/view/com/composer/threadgate/ThreadgateBtn.tsx:154 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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:70 +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:136 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:203 +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:511 +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:302 +#: src/view/com/auth/SplashScreen.tsx:102 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:288 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:124 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:460 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:248 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:225 +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/screens/Login/LoginForm.tsx:259 +msgid "Opens password reset form" +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/notifications/NotificationFeedItem.tsx:1131 +#: 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:228 +#: src/screens/Settings/AccountSettings.tsx:126 +#: src/screens/Settings/AccountSettings.tsx:130 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:255 +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:202 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:24 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:36 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:238 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:231 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 +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:37 +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:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: 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:337 +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:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +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:155 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +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:36 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:130 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:37 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:294 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/StepInfo/index.tsx:150 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:309 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:439 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:140 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:60 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:123 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:116 +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:96 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:90 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/LabelsOnMeDialog.tsx:309 +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:303 +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:220 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1793 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:553 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:475 +#: src/view/screens/Profile.tsx:476 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:502 +#: src/view/screens/Profile.tsx:503 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1791 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1455 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 +#: src/Navigation.tsx:271 +#: src/Navigation.tsx:278 +#: src/Navigation.tsx:285 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:190 +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:117 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:110 +#: src/screens/VideoFeed/index.tsx:547 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: 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:198 +#: 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:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:67 +msgid "Post saved" +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/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:234 +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/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:349 +#: 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:181 +#: src/screens/Settings/Settings.tsx:184 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: 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:336 +#: src/screens/Settings/AboutSettings.tsx:95 +#: src/screens/Settings/AboutSettings.tsx:98 +#: 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:2579 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2581 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:63 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: 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:40 +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:165 +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:1777 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1772 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1761 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1766 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:140 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:118 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 +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:188 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +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:413 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 +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:189 +msgctxt "english-only-resource" +msgid "read about how to use 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:984 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:984 +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:172 +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:149 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:147 +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:140 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 +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:49 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:55 +msgid "Recommended" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +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:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:181 +#: 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/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:673 +#: src/view/com/modals/UserAddRemoveLists.tsx:236 +#: 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:231 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:105 +msgid "Remove {historyItem}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:654 +#: src/screens/Settings/Settings.tsx:657 +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 "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: 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:667 +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:143 +#: src/screens/Bookmarks/index.tsx:259 +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:228 +#: src/features/liveNow/components/EditLiveDialog.tsx:235 +msgid "Remove live status" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +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:167 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:421 +#: src/view/com/profile/ProfileMenu.tsx:424 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:244 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:242 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:124 +#: src/view/com/modals/UserAddRemoveLists.tsx:171 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/screens/Bookmarks/index.tsx:217 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:174 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 +#: src/view/screens/Profile.tsx:235 +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/view/com/composer/Composer.tsx:1789 +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:120 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:119 +#: 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:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:488 +#: src/view/com/profile/ProfileMenu.tsx:491 +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:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +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:186 +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:576 +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:167 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:209 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +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:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:26 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:204 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:490 +#: src/screens/Settings/Settings.tsx:492 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:118 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:475 +#: src/screens/Settings/Settings.tsx:477 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:82 +msgid "Reset password" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:330 +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:377 +#: src/screens/Login/LoginForm.tsx:329 +#: src/screens/Login/LoginForm.tsx:335 +#: src/screens/Messages/ChatList.tsx:412 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 +#: 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:1169 +#: 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 "" + +#. 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:207 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/features/liveNow/components/EditLiveDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 +#: 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:1436 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1408 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1436 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1410 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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:199 +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:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +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:561 +#: src/screens/Bookmarks/index.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 +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:316 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:255 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:289 +msgid "Scroll right" +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/Shell.tsx:362 +#: src/screens/Search/Shell.tsx:525 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:257 +#: 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:54 +msgid "Search for \"{searchText}\"" +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:378 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:456 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#: src/screens/Search/Shell.tsx:388 +msgid "Search for posts, users, or feeds" +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:224 +#: src/screens/Search/SearchResults.tsx:313 +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:306 +#: src/view/com/profile/ProfileMenu.tsx:309 +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/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:177 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:491 +#: src/components/FeedInterstitials.tsx:549 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:472 +msgid "See more suggested profiles" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:190 +#: src/view/com/profile/ProfileFollows.tsx:191 +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:337 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:43 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:81 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:61 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +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:60 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +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:180 +msgid "Select duration" +msgstr "" + +#: src/screens/Login/index.tsx:162 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIF’s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:725 +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:69 +#: src/components/LanguageSelect.tsx:37 +#: src/components/LanguageSelect.tsx:38 +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:84 +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:297 +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:118 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:420 +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:118 +#: src/screens/Settings/AboutSettings.tsx:121 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:288 +#: src/screens/Messages/components/MessageInput.web.tsx:225 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +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: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 "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:150 +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 +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:108 +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:223 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:213 +#: src/screens/Settings/Settings.tsx:98 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:199 +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:133 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:166 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:144 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:238 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:212 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:177 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:155 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:188 +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:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:90 +msgid "Share" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:548 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +msgid "Share author DID" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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:167 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +msgid "Share post at:// URI" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +msgid "Share this feed" +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:132 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: 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:285 +#: src/view/com/profile/ProfileMenu.tsx:297 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/Navigation.tsx:321 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:86 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:179 +#: src/components/moderation/ScreenHider.tsx:182 +#: 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:646 +#: src/screens/VideoFeed/index.tsx:652 +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/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:28 +#: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:38 +msgid "Show live events in your Discover Feed" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:52 +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:604 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:123 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:172 +#: 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/screens/Hashtag.tsx:228 +#: src/screens/Login/index.tsx:140 +#: src/screens/Login/index.tsx:161 +#: src/screens/Login/LoginForm.tsx:179 +#: src/screens/Login/LoginForm.tsx:350 +#: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 +#: src/screens/Search/SearchResults.tsx:316 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 +#: 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:86 +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:213 +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:212 +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:265 +#: src/screens/Settings/Settings.tsx:267 +#: src/screens/Settings/Settings.tsx:299 +#: 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:296 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:98 +#: 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:56 +msgid "Signed in as @{0}" +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:1453 +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:443 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:152 +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:151 +msgid "Social media you control." +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:628 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:266 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:47 +msgid "Someone reacted {0} to {target}" +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/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:132 +#: src/screens/Messages/JoinRequests.tsx:87 +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:184 +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:532 +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.native.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:183 +#: src/components/moderation/ModerationDetailsDialog.tsx:202 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +msgid "Sports" +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:191 +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:726 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:874 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 +#: 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/Explore.tsx:665 +#: src/view/screens/Profile.tsx:240 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +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:555 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:103 +#: src/screens/Settings/AboutSettings.tsx:106 +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:180 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:401 +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:306 +#: src/screens/Settings/Settings.tsx:456 +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/LabelsOnMeDialog.tsx:343 +#: src/components/moderation/LabelsOnMeDialog.tsx:344 +#: 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 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +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:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:231 +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:347 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:313 +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:108 +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:350 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:375 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:469 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/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:331 +#: 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 +#: src/screens/Settings/Settings.tsx:134 +#: src/screens/Settings/Settings.tsx:615 +#: 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:85 +#: src/screens/Settings/AppearanceSettings.tsx:135 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +#: src/screens/Settings/Settings.tsx:449 +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:572 +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/screens/Signup/StepInfo/index.tsx:323 +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:163 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:212 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:358 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:357 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:289 +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:111 +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:341 +#: src/screens/Settings/AboutSettings.tsx:87 +#: src/screens/Settings/AboutSettings.tsx:90 +#: 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/LabelsOnMeDialog.tsx:307 +#: 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/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:423 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:247 +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:81 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:135 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1141 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 +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:123 +#: 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 your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:65 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:162 +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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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:19 +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:500 +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:139 +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:499 +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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:177 +#: 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:416 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 +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:1027 +#: src/view/com/posts/PostFeed.tsx:777 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:159 +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:136 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 +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 "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:118 +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:113 +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/LabelsOnMeDialog.tsx:285 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:49 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +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:88 +#: 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:128 +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/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:31 +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:171 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:142 +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:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + +#: src/view/screens/Debug.tsx:327 +msgid "This is an empty state" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:178 +#: src/features/liveNow/components/GoLiveDialog.tsx:155 +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:184 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:170 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:218 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:569 +#: src/components/dms/MessageItem.tsx:595 +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/moderation/ModerationDetailsDialog.tsx:161 +msgid "This moderation was applied to the entire user account and will appear on all posts." +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:644 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks/index.tsx:255 +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:1043 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +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:151 +#: src/screens/Messages/JoinRequests.tsx:110 +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:203 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: 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 +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:63 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:95 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:182 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +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/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:668 +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:374 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:251 +msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:173 +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:88 +#: src/screens/Search/SearchResults.tsx:54 +#: src/screens/Topic.tsx:59 +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:485 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 +#: 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/view/shell/desktop/SidebarTrendingTopics.tsx:50 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:57 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:87 +msgid "Trending Videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:186 +msgctxt "english-only-resource" +msgid "Try a different search term, or <0>read about how to use search filters." +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:167 +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/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:177 +msgid "Type your message here" +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:12 +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:70 +#: src/screens/Login/index.tsx:96 +#: src/screens/Login/LoginForm.tsx:167 +#: src/screens/Login/SetNewPasswordForm.tsx:83 +#: src/screens/Signup/index.tsx:87 +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:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:43 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:517 +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:637 +#: 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/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:468 +#: src/view/com/profile/ProfileMenu.tsx:474 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 +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:58 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:73 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 +#: 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:412 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:325 +#: src/view/com/profile/ProfileMenu.tsx:334 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:848 +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:200 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:185 +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:509 +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:92 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:561 +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:170 +#: 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:447 +#: src/view/com/profile/ProfileMenu.tsx:453 +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:523 +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:344 +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:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +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:162 +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:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:345 +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:312 +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:128 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1542 +msgid "Unsupported video type: {mimeType}" +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 "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:83 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:120 +msgid "Update email" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 +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/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:397 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:278 +#: 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:315 +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:2572 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2574 +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:383 +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:75 +#: 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:61 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/view/com/modals/UserAddRemoveLists.tsx:215 +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/view/com/modals/UserAddRemoveLists.tsx:213 +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:231 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:215 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:200 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:84 +msgctxt "allow group chat invites from" +msgid "Users I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:69 +msgctxt "allow messages from" +msgid "Users I follow" +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:206 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:431 +#: src/view/com/profile/ProfileMenu.tsx:434 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:360 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:184 +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/components/NoAccessScreen.tsx:348 +#: src/ageAssurance/components/NoAccessScreen.tsx:362 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:172 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:186 +msgid "Verify now" +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:86 +#: src/screens/Settings/AccountSettings.tsx:106 +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:137 +#: src/screens/Settings/AboutSettings.tsx:166 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:87 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:149 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:359 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:553 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1103 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1102 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1102 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2592 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:87 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:237 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:434 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1136 +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:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:257 +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:454 +#: src/screens/Search/components/SearchProfileCard.tsx:36 +#: src/screens/VideoFeed/index.tsx:809 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:149 +msgid "View {0}’s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +msgid "View {displayName}’s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 +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:674 +#: src/screens/VideoFeed/index.tsx:692 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:64 +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:56 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:200 +#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:228 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1131 +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:119 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:548 +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:93 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:401 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:59 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +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:92 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Hashtag.tsx:259 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:167 +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:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 +msgid "We couldn’t load this conversation’s settings" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you won’t need to do it again. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:419 +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 "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 +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:136 +msgid "We’re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:416 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +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:339 +#: src/screens/Search/SearchResults.tsx:472 +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:1041 +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:219 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:1506 +#: src/view/com/feeds/ComposerPrompt.tsx:193 +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:239 +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:392 +#: src/screens/Messages/Inbox.tsx:198 +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:1424 +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 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1602 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1504 +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:150 +#: src/screens/Messages/JoinRequests.tsx:109 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:154 +#: src/features/liveNow/components/GoLiveDialog.tsx:136 +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:176 +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:610 +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:330 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:142 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:120 +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +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:412 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:181 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:135 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 +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:203 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 +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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 +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:437 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:431 +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:423 +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:130 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:28 +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:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:51 +#: src/screens/Login/SetNewPasswordForm.tsx:97 +#: 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:115 +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:108 +#: 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/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:1419 +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:292 +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:122 +#: 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:84 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:89 +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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:466 +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:352 +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:412 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:259 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:43 +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 "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:297 +#: 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:110 +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:121 +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:50 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:152 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:157 +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/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/LabelsOnMeDialog.tsx:262 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:112 +#: 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:646 +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/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1150 +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:190 +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:431 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:284 +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:374 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:53 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:130 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/Navigation.tsx:457 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: 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:95 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:69 +msgid "Your live event preferences have been updated." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:353 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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:157 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1124 +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:53 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +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:1126 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1454 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/cy/messages.po b/src/locale/locales/cy/messages.po index fc13a39237..02b31e3671 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categori \"{interestsDisplayName}\" (gweithredol)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(yn cynnwys cynnwys wedi'i fewnosod)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# yn hoffi} other {# yn hoffi}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# aelod} other {# aelod}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# munud} other {# munud}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mis} other {# mis}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 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}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# eiliad} other {# eiliad}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# eitem heb ei ddarllen} other {# eitem heb ei ddarllen}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>yn <1>testun a thagiau" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "Yn dilyn {0}" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} allan 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "Ymatebodd {0} i {1}" @@ -290,7 +299,7 @@ msgstr "Cafodd {0} ei dynnu o'r grŵp" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,15 +318,40 @@ msgstr "{0}, rhestr gan {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "afatar {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Afatar {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}e" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, zero {}one {# cais} two {# gais} few {# cais} many {# cais} other {# cais}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# eitem heb ei ddarllen} other {# eitemau heb eu darllen}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ cais" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {awr} other {awr}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {munud} other {munud}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other{{formattedAuthorsCount} arall}} wedi'ch dilyn chi" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich llif cyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Mae {firstAuthorLink} ad <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ailbostio eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "Mae {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Mae {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ymuno â'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "Mae {firstAuthorLink} and <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi'ch dilysu" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "Mae {firstAuthorLink} wedi eich dilyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "Mae {firstAuthorLink} wedi eich dilyn yn ôl" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "Hoffodd {firstAuthorLink} eich ffrwd gyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "Hoffodd {firstAuthorLink} eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "Mae {firstAuthorLink} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "Mae {firstAuthorLink} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "Mae {firstAuthorLink} wedi ailbostio'ch postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "Mae {firstAuthorLink} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Mae {firstAuthorLink} wedi cofrestru gyda'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "Mae {firstAuthorLink} wedi'ch dilysu" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi eich dilyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich ffrwd gyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ail bostio eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, one {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi ymuno â'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "Mae {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} wedi'ch dilysu chi" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "Mae {firstAuthorName} wedi eich dilyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "Mae {firstAuthorName} wedi eich dilyn yn ôl" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "Hoffodd {firstAuthorName} eich ffrwd gyfaddas" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "Hoffodd {firstAuthorName} eich postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "Mae {firstAuthorName} wedi hoffi eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "Mae {firstAuthorName} wedi tynnu eu dilysiad o'ch cyfrif" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "Mae {firstAuthorName} wedi ailbostio'ch postiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "Mae {firstAuthorName} wedi ail bostio eich ail bostiad" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Mae {firstAuthorName} wedi ymuno â'ch pecyn cychwyn" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "Mae {firstAuthorName} wedi'ch gwirio" @@ -538,8 +597,8 @@ msgstr "Mae {firstAuthorName} wedi'ch gwirio" msgid "{following} following" msgstr "{following} yn dilyn" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Does dim modd anfon neges at {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "Does dim modd negesu {handle}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, zero {}one {# awr {minutesString}} two {# awr {minutesSt msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, zero {}one {# awr} two {# awr} few {# awr} many {# hours} other {# awr}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "{MAX_DESCRIPTION, plural, zero {} one {Mae'r disgrifiad yn rhy hir. Ucha msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, zero {} one {Mae'r enw dangos yn rhy hir. Uchafswm y nifer o nodau yw #.} two {Mae'r enw dangos yn rhy hir. Uchafswm y nifer o nodau yw #.} few {Mae'r enw dangos yn rhy hir. Uchafswm y nifer o nodau yw #.} many {Mae'r enw dangos yn rhy hir. Uchafswm y nifer o nodau yw #.}other {Mae'r enw dangos yn rhy hir. Uchafswm y nifer o nodau yw #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, zero {} one {Gallwch guddio hyd at # ateb.} two {Gallwch guddio hyd at # ateb.} few {Gallwch guddio hyd at # ateb.} many {Gallwch guddio hyd at # ateb.} other {Gallwch guddio hyd at # ateb.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "Ymatebodd {name} {0} i {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Hoff ffrydiau a phobl {name} - ymunwch â mi!" msgid "{name}'s starter pack" msgstr "Pecyn cychwyn {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# eitem heb ei darllen} other {# eitem heb eu darllen}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 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}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, zero {}one {# cais} two {# gais} few {# cais} many {# cais} other {# cais}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ cais" @@ -656,6 +725,12 @@ msgstr "Mae {userName} wedi'i ddilysu" msgid "{userName}'s verifications" msgstr "Dilysiadau {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "Mae <0>{0}, <1>{1}, a {2, plural, one {# arall} other {# arall} #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {dilynwr} other {dilynwyr}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {yn dilyn} other {yn dilyn}}Crybwyll" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, zero {}one {yn hoffi} two {yn hoffi} few {yn hoffi} many {yn hoffi} other {yn hoffi}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, zero {}one {yn dyfynnu} two {yn dyfynnu} few {yn dyfynnu} many {yn dyfynnu} other {yn dyfynnu}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, zero {}one {yn ailbostio} two {yn ailbostio} few {yn ailbostio} many {yn ailbostio} other {yn ailbostio}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, zero {}one {yn cadw} two {yn cadw} few {yn cadw} many {yn cadw} other {yn cadw}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} aelod" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith." @@ -804,7 +884,7 @@ msgstr "Digwyddodd gwall rhwydwith. Gwiriwch eich cysylltiad rhwydwaith." msgid "A new code has been sent" msgstr "Mae cod newydd wedi'i anfon" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Math newydd o ddilysu" @@ -827,11 +907,11 @@ msgstr "Llun sgrin o dudalen proffil gydag eicon cloch wrth ymyl y botwm dilyn, 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Ymddygiad bygythiol a gwahaniaethol eraill" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Derbyn" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Derbyn" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Derbyn cais am sgwrs" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Derbyn y cais" @@ -860,17 +950,26 @@ msgstr "Derbyn y cais" msgid "Accept this language suggestion" msgstr "Derbyn awgrym yr iaith hon" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Hygyrchedd" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Gosodiadau Hygyrchedd" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Gosodiadau Hygyrchedd" msgid "Account" msgstr "Cyfrif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Cyfrif wedi'i rwystro" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Cyfrif yn cael ei ddilyn" @@ -899,7 +998,7 @@ msgstr "Mae'r cyfrif wedi'i atal" msgid "Account is deactivated" msgstr "Mae'r cyfrif wedi'i gau" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Darparwr cyfrif" msgid "Account removed from quick access" msgstr "Cyfrif wedi'i dynnu o fynediad cyflym" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Cyfrif wedi'i ddadrwystro" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Peidio dilyn y cyfrif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Dad-dewi cyfrif" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Mae cyfrifon gyda marc siec glas cregynog <0><1/> yn gallu dilysu eraill. Mae'r dilyswyr dibynadwy hyn yn cael eu dewis gan Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Gweithgaredd gan eraill" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Hysbysiadau gweithgareddau" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Ychwanegu" @@ -999,8 +1094,8 @@ msgstr "Ychwanegu cyfrif" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Ychwanegu testun amgen (dewisol)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Ychwanegu cyfrif arall" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Ychwanegu postiad arall" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Ychwanegu postiad arall i edefyn" @@ -1035,7 +1130,7 @@ msgstr "Ychwanegu cyfrinair apiau" msgid "Add App Password" msgstr "Ychwanegu Cyfrinair Apiau" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Ychwanegu label awtomatiaeth i'r cyfrif" @@ -1043,7 +1138,7 @@ msgstr "Ychwanegu label awtomatiaeth i'r cyfrif" msgid "Add emoji reaction" msgstr "Ychwanegu adwaith emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Ychwanegu aelodau grŵp sgwrsio" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Ychwanegwch lun" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Ychwanegu cyfrwng i bostiad" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Ychwanegu aelodau" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Ychwanegu rhagor o fanylion (dewisol)" @@ -1091,6 +1186,10 @@ msgstr "Ychwanegu pobl" msgid "Add people to list" msgstr "Ychwanegu pobl at y rhestr" +#: 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 "Ychwanegu Ymateb" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Ychwanegwch ddyddiad geni" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Ychwanegwyd gan {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Ychwanegwyd i'r r rhestr gwahodd" @@ -1165,12 +1264,12 @@ msgstr "Yn ychwanegu aelodau i restr..." msgid "Additional details (limit 1000 characters)" msgstr "Manylion ychwanegol (terfyn o 1000 nod)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Manylion ychwanegol (terfyn o 300 nod)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Gwein" @@ -1228,12 +1327,12 @@ msgstr "Wedi cyflwyno ymholiad sicrwydd oed" msgid "Age assurance only takes a few minutes" msgstr "Dim ond ychydig funudau fydd yr ymholiad Sicrwydd Oed yn ei gymryd" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Y Cyfan" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Y cyfan {0}" @@ -1278,13 +1377,13 @@ msgstr "Caniatáu mynediad i'ch negeseuon uniongyrchol" msgid "Allow anyone to reply" msgstr "Caniatáu i unrhyw un ateb" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "Oes gennych chi gyfrif yn barod?" msgid "Already signed in as @{0}" msgstr "Eisoes wedi mewngofnodi fel @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "AMGEN" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Testun Amgen" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Mae testun amgan yn disgrifio delweddau ar gyfer defnyddwyr dall a rhai â golwg gwan, ac yn helpu i roi cyd-destun i bawb." @@ -1387,7 +1486,7 @@ msgstr "Digwyddodd gwall" msgid "An error occurred" msgstr "Digwyddodd gwall" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Digwyddodd gwall wrth gywasgu'r fideo." @@ -1421,7 +1520,8 @@ msgstr "Digwyddodd gwall wrth lwytho'r fideo. Ceisiwch eto." msgid "An error occurred while loading your lists :/" msgstr "Digwyddodd gwall wrth lwytho eich rhestrau :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Digwyddodd gwall wrth gadw'r cod QR!" @@ -1432,11 +1532,11 @@ msgstr "Digwyddodd gwall wrth gadw'r cod QR!" msgid "An error occurred while trying to follow all" msgstr "Digwyddodd gwall wrth geisio dilyn pob un" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Digwyddodd gwall wrth lwytho'r fideo i fyny. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Bu anhawster wrth ddileu'r llwytho'r fideo. Gwiriwch eich cysylltiad rhyngwyd a cheisio eto." @@ -1456,24 +1556,28 @@ msgstr "Darlun yn dangos afatarau defnyddwyr yn llifo o lyfr cysylltiadau i'r ap 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" +#: 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 "Darlun yn dangos bod Bluesky yn dewis dilyswyr dibynadwy, a dilyswyr dibynadwy yn eu tro yn gwirio cyfrifon defnyddwyr unigol." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Mae gwahoddiad yn caniatáu i bobl ymuno â'r grŵp sgwrsio hwn heb gael eu hychwanegu'n uniongyrchol. Chi sy'n rheoli pwy sy'n gallu defnyddio'r ddolen ac a ydyn nhw angen eich caniatâd. Gallwch analluogi'r ddolen ar unrhyw adeg." +#: 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 "Mater nad yw wedi'i gynnwys yn yr opsiynau hyn" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Digwyddodd mater wrth geisio agor y sgwrs" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Digwyddodd mater, ceisiwch eto." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Darlun bras o iPhone yn dangos ap Bluesky ar agor i broffil defnyddiwr dilys gyda marc ticio nesaf at eu henw dangos." @@ -1539,13 +1643,17 @@ msgstr "Unrhyw un" msgid "Anyone can interact" msgstr "Gall unrhyw un ryngweithio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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 "Gall unrhyw un ymuno'n syth" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Gall unrhyw un ofyn i gael ymuno" @@ -1555,11 +1663,11 @@ msgstr "Gall unrhyw un ofyn i gael ymuno" msgid "Anyone who follows me" msgstr "Unrhyw un sy'n fy nilyn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Rhaid i enwau cyfrinair ap fod o leiaf 4 nod" msgid "App passwords" msgstr "Cyfrineiriau apiau" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Cyfrineiriau Apiau" @@ -1618,7 +1726,7 @@ msgstr "Apelio gwaharddiad ffrydio byw" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Apêl wedi'i chyflwyno" @@ -1632,14 +1740,14 @@ msgstr "Apelio yn erbyn yr atal" msgid "Appeal Suspension" msgstr "Apelio yn erbyn yr Atal" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apelio'r penderfyniad hwn" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Gosod Cais Tynnu" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Wedi'i archifo o {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Post wedi'i archifo" @@ -1675,7 +1783,7 @@ msgstr "Ydych chi wir yn siŵr?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ydych chi'n siŵr eich bod am ddileu cyfrinair ap \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Ydych chi'n siŵr eich bod am ddileu'r neges hon? Bydd y neges yn cael ei dileu i chi, ond nid ar gyfer y cyfranogwyr eraill." @@ -1688,23 +1796,29 @@ msgstr "Ydych chi'n siŵr eich bod am ddileu'r pecyn cychwyn hwn?" msgid "Are you sure you want to discard your changes?" msgstr "Ydych chi'n siŵr eich bod am ddileu eich newidiadau?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Ydych chi'n siŵr eich bod eisiau gadael {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Ydych chi'n siŵr eich bod eisiau gadael y sgwrs hon?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Ydych chi'n siŵr eich bod am adael y sgwrs hon? Bydd eich negeseuon yn cael eu dileu i chi, ond nid ar gyfer y cyfranogwr arall." +#: src/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 "Ydych chi'n siŵr eich bod am dynnu hwn o'ch ffrydiau?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 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?" @@ -1724,8 +1838,8 @@ msgstr "Celf" msgid "Artistic or non-erotic nudity." msgstr "Noethni artistig neu anerotig." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Neilltuo pwnc ar gyfer algo" @@ -1752,7 +1866,7 @@ msgstr "Cyfrif Awtomataidd" msgid "Automation label" msgstr "Label awtomatiaeth" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Label Awtomatiaeth" @@ -1767,12 +1881,12 @@ msgstr "Awtochwarae fideos a GIFs" msgid "Available" msgstr "Ar gael" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Ar gael" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Ar gael" msgid "Back" msgstr "Nôl" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Nôl i Sgyrsiau" @@ -1832,7 +1948,7 @@ msgstr "Cyn creu postiad neu ateb, rhaid i chi ddilysu'ch e-bost yn gyntaf." 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Cyn y gallwch dderbyn y cais sgwrsio hwn, rhaid i chi ddilysu'ch e-bost yn gyntaf." @@ -1840,13 +1956,14 @@ msgstr "Cyn y gallwch dderbyn y cais sgwrsio hwn, rhaid i chi ddilysu'ch e-bost msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Cyn i chi dderbyn hysbysiadau am bostiadau {name}, rhaid i chi yn gyntaf ddilysu eich e-bost." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Cyn y gallwch anfon neges at ddefnyddiwr arall, rhaid i chi ddilysu'ch cyfeiriad e-bost yn gyntaf." @@ -1874,45 +1991,39 @@ msgstr "Dyddiad geni" msgid "Birthday" msgstr "Penblwydd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Rhwystro" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Rhwystro {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Rhwystro cyfrif" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Rhwystro cyfrif?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Rhwystro Cyfrif?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Rhwystro cyfrifon" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Rhestr rhwystro" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Rhwystro neu adrodd" @@ -1936,9 +2047,9 @@ msgstr "Rhwystro'r cyfrifon hyn?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Rhwystro defnyddiwr" @@ -1946,9 +2057,9 @@ msgstr "Rhwystro defnyddiwr" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Rhwystro defnyddiwr" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Rhwystro'r defnyddiwr a/neu ddileu'r sgwrs hon" @@ -1956,7 +2067,7 @@ msgstr "Rhwystro'r defnyddiwr a/neu ddileu'r sgwrs hon" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Ddim ar gael" @@ -1964,14 +2075,12 @@ msgstr "Ddim ar gael" msgid "Blocked accounts" msgstr "Cyfrifon wedi'u rhwystro" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cyfrifon wedi'u Rhwystro" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Does dim modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwyllidau, na rhyngweithio â chi fel arall." @@ -1987,7 +2096,7 @@ msgstr "Dyw rhwystro ddim yn atal y labelwr hwn rhag gosod labeli ar eich cyfrif msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Mae rhwystro'n beth cyhoeddus. Nid oes modd i gyfrifon sydd wedi'u rhwystro ymateb yn eich trywyddau, eich crybwylliadau, na rhyngweithio â chi fel arall." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Fydd rhwystro ddim yn atal labeli rhag cael eu gosod ar eich cyfrif, ond bydd yn atal y cyfrif hwn rhag ateb yn eich trywyddau neu ryngweithio â chi." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Dyw Bluesky ddim yn gallu cadarnhau dilysrwydd y dyddiad honedig." @@ -2029,7 +2138,7 @@ msgstr "Mae Bluesky yn well gyda ffrindiau!" msgid "Bluesky is more fun with friends" msgstr "Mae Bluesky yn fwy hwyl gyda ffrindiau" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Mae Bluesky yn fwy hwyl gyda ffrindiau! Mewnforiwch eich cysylltiadau i weld pwy sydd yma'n barod." @@ -2037,11 +2146,15 @@ msgstr "Mae Bluesky yn fwy hwyl gyda ffrindiau! Mewnforiwch eich cysylltiadau i msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Mae Bluesky yn fwy hwyl gyda ffrindiau! Hoffech chi wahodd rhai o'ch rhai chi? <0/>" +#: 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 "Telerau Gwasanaeth Cymdeithasol Bluesky" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bydd Bluesky yn dewis set o gyfrifon wedi'u hargymhell gan bobl yn eich 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 "Fydd Bluesky ddim yn dangos eich proffil na'ch postiadau i ddefnyddwyr sydd wedi allgofnodi. Mae'n bosibl na fydd apiau eraill yn parchu'r gofyniad hwn. Dyw hyn ddim yn gwneud eich cyfrif yn breifat." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bydd Bluesky yn rhagweithiol yn dilysu cyfrifon nodedig a dilys." @@ -2081,6 +2194,10 @@ msgstr "Llyfrau" msgid "Breaking site rules" msgstr "Torri rheolau gwefan" +#: 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" @@ -2137,24 +2254,34 @@ msgstr "Busnes" msgid "Button to go back to the home timeline" msgstr "Botwm i fynd nôl i'r llinell amser cartref" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Gan {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Gan <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Trwy greu cyfrif rydych yn cytuno i'r <0>Telerau Gwasanaeth." msgid "By you" msgstr "Gennych chi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Camera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Camera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Camera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Camera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Nôl" @@ -2248,9 +2384,9 @@ msgstr "Diddymu'r ailweithredu ac allgofnodi" msgid "Cancel search" msgstr "Diddymu'r chwilio" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Methu rhyngweithio â defnyddiwr sydd wedi'i rwystro" @@ -2264,7 +2400,7 @@ msgstr "Capsiynau (.vtt)" msgid "Captions & alt text" msgstr "Capsiynau a thestun amgen" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carwsél" @@ -2297,7 +2433,7 @@ msgstr "Newid iaith yr ap" msgid "Change Handle" msgstr "Newid Enw Dangos" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Newid y gwasanaeth cymedroli" @@ -2310,11 +2446,11 @@ msgstr "Newid cyfrinair" msgid "Change password dialog" msgstr "Newid deialog cyfrinair" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Newid categori adrodd" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Newid y rheswm am adrodd" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Sgyrsiau" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Wedi dileu'r sgwrs" @@ -2361,6 +2497,12 @@ msgstr "Wedi dileu'r sgwrs" msgid "Chat ended" msgstr "Gorffennodd y sgwrs" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Sgwrs wedi'i chloi" @@ -2373,35 +2515,44 @@ msgstr "Negeseuon sgyrsiau - tawel" msgid "Chat messages - sound" msgstr "Negeseuon sgyrsiau - sain" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Sgwrs wedi'i thewi" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Dewch derbyn cais am sgwrs" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Ceisiadau am sgyrsiau" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Gosodiadau sgyrsiau" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Gosodiadau Sgyrsiau" @@ -2418,14 +2569,14 @@ msgstr "Teitl y sgwrs wedi newid i {0}" msgid "Chat unlocked" msgstr "Sgwrs wedi'i datgloi" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Dad-dewi sgyrsiau" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Sgyrsiau" @@ -2479,7 +2630,7 @@ msgstr "Dewis ieithoedd postiadau" msgid "Choose this color as your avatar" msgstr "Dewiswch y lliw hwn fel eich afatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Dewiswch pwy sy'n gallu ymuno â'r grŵp yma a sut." @@ -2558,7 +2709,7 @@ msgstr "Cliciwch yma i allgofnodi" msgid "Click here to resend the email" msgstr "Cliciwch yma i ail anfon yr e-bost" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Cliciwch yma i ailgychwyn y broses ddilysu." @@ -2567,7 +2718,7 @@ msgstr "Cliciwch yma i ailgychwyn y broses ddilysu." msgid "Click here to update your birthdate" msgstr "Cliciwch yma i ddiweddaru eich dyddiad geni" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Cliciwch yma i ddiweddaru eich e-bost" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" @@ -2594,28 +2745,30 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Cliciwch i roi cynnig arall ar y neges a fethwyd" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Cau" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Cau'r deialog gweithredol" @@ -2647,6 +2800,10 @@ msgstr "Cau'r deialog gweithredol" msgid "Close alert" msgstr "Rhybudd cau" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Cau'r y drôr gwaelod" @@ -2657,8 +2814,10 @@ msgstr "Cau'r y drôr gwaelod" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Cau'r ddeialog" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Cau'r ddelwedd" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Caewch y ddewislen" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Cau'r ddeialog hon" @@ -2695,18 +2866,22 @@ msgstr "Cau'r modal croeso" msgid "Closes password update alert" msgstr "Yn cau'r rhybudd diweddaru cyfrinair" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Yn cau cyfansoddwr postiad ac yn dileu postiad drafft" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Lleihau'r rhestr o ddefnyddwyr" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Yn lleihau'r rhestr o ddefnyddwyr hysbysiad penodol" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Canllawiau Cymunedol" @@ -2740,12 +2915,12 @@ msgstr "Cwblhewch yr her" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Cyfansoddi postiad newydd" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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}}" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Yn cywasgu GIF..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Yn cywasgu fideo..." @@ -2780,7 +2955,7 @@ msgstr "Wedi'i ffurfweddu yn y <0>gosodiadau cymedroli." msgid "Confirm" msgstr "Cadarnhau" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Cysylltu â'n chefnogaeth" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Dyw cydweddu cysylltiadau ddim ar gael ar y ddyfais hon, gan nad yw'r ap yn gallu cael mynediad i'ch cysylltiadau." @@ -2825,11 +3000,11 @@ msgstr "Dyw cydweddu cysylltiadau ddim ar gael ar y ddyfais hon, gan nad yw'r ap msgid "Contact us" msgstr "Cysylltwch â ni" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Cysylltiadau wedi'u Mewnforio" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Tynnwyd y cysylltiadau" @@ -2842,7 +3017,7 @@ msgstr "Cynnwys a Chyfryngau" msgid "Content and media" msgstr "Cynnwys a chyfryngau" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Cynnwys a Chyfryngau" @@ -2889,7 +3064,7 @@ msgstr "Cefndir ddewislen cyd-destun, cliciwch i gau'r ddewislen." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Parhau'r edefyn" msgid "Continue thread..." msgstr "Parhau â'r trywydd..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 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:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Ymlaen i'r cam nesaf" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Sgwrs" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Sgwrs wedi'i dileu" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Sgwrs wedi'i dileu" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Fersiwn adeiladu wedi'i gopïo i'r clipfwrdd" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Wedi'i gopïo!" msgid "Copies build version to clipboard" msgstr "Copïau adeiladu fersiwn i'r clipfwrdd" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copïo" @@ -2997,6 +3184,11 @@ msgstr "Copïo DID" msgid "Copy host" msgstr "Copïo gwesteiwr" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Copïo dolen i'r rhestr" msgid "Copy link to post" msgstr "Copïo dolen i'r postiad" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copïo'r ddolen i'r proffil" @@ -3027,8 +3219,8 @@ msgstr "Copïo'r ddolen i'r proffil" msgid "Copy link to starter pack" msgstr "Copïo'r ddolen i'r pecyn cychwyn" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copïo testun neges" @@ -3037,12 +3229,12 @@ msgstr "Copïo testun neges" msgid "Copy post at:// URI" msgstr "Copïo postiad yn: // URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copïo testun postiad" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copïo cod QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polisi Hawlfraint" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Methu cysylltu i ffrwd gyfaddas" @@ -3065,7 +3261,15 @@ msgstr "Methu cysylltu i ffrwd gyfaddas" msgid "Could not connect to feed service" msgstr "Methu cysylltu i wasanaeth ffrydio" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "Methu canfod proffil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Methu dilyn pob cyfatebiaeth - gwiriwch eich cysylltiad rhwydwaith." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Methu dilyn pob cyfatebiaeth. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Methu gadael y sgwrs" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Methu llwytho ffrwd" @@ -3100,7 +3308,11 @@ msgstr "Methu llwytho ffrwd" msgid "Could not load list" msgstr "Methu llwytho rhestr" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Methu tewi sgwrs" @@ -3108,11 +3320,19 @@ msgstr "Methu tewi sgwrs" msgid "Could not process your video" msgstr "Methu prosesu eich fideo" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Methu cadw'r newidiadau: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Wedi methu diweddaru gosodiadau hysbysu" @@ -3139,7 +3359,7 @@ msgstr "Cod gwlad" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Creu" @@ -3153,13 +3373,13 @@ msgstr "Crëwch restr" msgid "Create a list from this starter pack" msgstr "Crëwch restr o'r pecyn cychwyn hwn" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Creu pecyn cychwyn" @@ -3174,13 +3394,14 @@ msgstr "Creu pecyn cychwyn i mi" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Creu afatar yn lle hynny" @@ -3206,7 +3427,7 @@ msgstr "Creu afatar yn lle hynny" msgid "Create another" msgstr "Creu un arall" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Creu grŵp sgwrsio" @@ -3228,19 +3449,20 @@ msgstr "Crëwch restr o'r pecyn cychwyn" msgid "Create moderation list" msgstr "Creu rhestr cymedroli" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Creu cyfrif newydd" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Crëwch neu addasu dolen gwahodd ar gyfer y grŵp sgwrsio yma" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Creu adroddiad ar gyfer {0}" @@ -3256,8 +3478,8 @@ msgstr "Creu rhestr defnyddwyr" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Wedi creu {0}" @@ -3270,6 +3492,10 @@ msgstr "Mae'r crëwr wedi'i rwystro" msgid "Culture" msgstr "Diwylliant" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Thema dywyll" msgid "Date of birth" msgstr "Dyddiad geni" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Rhagosodiad" msgid "Default icons" msgstr "Eiconau rhagosodedig" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Dileu cyfrinair ap" msgid "Delete app password?" msgstr "Dileu cyfrinair ap?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Dileu sgwrs" @@ -3378,19 +3612,19 @@ msgstr "Dileu sgwrs" msgid "Delete chat declaration record" msgstr "Dileu cofnod datganiad sgwrs" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Dileu cysylltiadau" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Dileu sgwrs" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Dileu i mi" @@ -3399,11 +3633,11 @@ msgstr "Dileu i mi" msgid "Delete list" msgstr "Dileu rhestr" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Dileu neges" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Dileu neges i mi" @@ -3411,9 +3645,9 @@ msgstr "Dileu neges i mi" msgid "Delete my account" msgstr "Dileu fy ngyfrif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Dileu postiad" @@ -3430,17 +3664,17 @@ msgstr "Dileu pecyn cychwyn?" msgid "Delete this list?" msgstr "Dileu'r rhestr hon?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Dileu'r postiad hwn?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Dilëwyd" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Cyfrif wedi'i ddileu" @@ -3471,12 +3705,12 @@ msgstr "Disgrifiad (uchafswm 1000 nod)" msgid "Descriptive alt text" msgstr "Testun amgen disgrifiadol" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Datgysylltu dyfyniad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Datgysylltu postiad dyfyniad?" @@ -3507,13 +3741,13 @@ msgstr "Deialog: addaswch pwy all ryngweithio â'r postiad hwn" msgid "Dim" msgstr "Tywyllu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Analluogi" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Analluogi 2FA" @@ -3521,7 +3755,7 @@ msgstr "Analluogi 2FA" msgid "Disable captions" msgstr "Analluogi capsiynau" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Analluogi e-bost 2FA" @@ -3534,8 +3768,8 @@ msgstr "Analluogi E-bost 2FA" msgid "Disable haptic feedback" msgstr "Analluogi adborth haptig" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "Analluogi postiadau dyfynu'r postiad hwn" msgid "Disable replies entirely" msgstr "Analluogi atebion yn llwyr" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Analluogwyd" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Dileu" msgid "Discard changes?" msgstr "Dileu'r newidiadau?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Dileu'r postiad?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Datgysylltwch Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Darganfod ffrydiau newydd" msgid "Discover New Feeds" msgstr "Darganfod Ffrydiau Newydd" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Cau" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Cau'r faner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Cau'r gwall" @@ -3642,6 +3877,10 @@ msgstr "Cau'r adran hon" msgid "Dismiss this suggestion" msgstr "Cau'r awgrym hwn" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Nid yw'n cynnwys noethni." msgid "Domain verified!" msgstr "Parth wedi'i wirio!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Dim cod gennych chi neu angen un newydd? <0>Cliciwch yma." @@ -3681,7 +3920,7 @@ msgstr "Dim cod gennych chi neu angen un newydd? <0>Cliciwch yma." msgid "Don’t see a code? <0>Click here to resend." msgstr "Ddim yn gweld cod? <0>Cliciwch yma i'w ail-anfon." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Ddim yn gweld e-bost? <0>Cliciwch yma i'w ail-anfon." @@ -3700,16 +3939,21 @@ msgstr "Peidiwch â phoeni! Mae'r holl negeseuon a gosodiadau wedi'u cadw a bydd #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Gorffen" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Tapiwch ddwywaith i gau'r ddeialog" @@ -3737,19 +3981,14 @@ msgstr "Tapiwch ddwywaith i gau'r ddeialog" msgid "Double tap to like" msgstr "Tapio dwywaith i'w hoffi" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Llwythwch Bluesky i Lawr" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Llwythwch ffeil CAR i lawr" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Llwythwch ffeil CAR i lawr" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Llwytho data sgwrsio i lawr" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Llwytho data sgwrsio i lawr" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Llwytho delwedd i lawr" +#: 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 "Docsio" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Oherwydd cyfreithiau yn eich ardal, mae rhai nodweddion o Bluetooth yn c msgid "Duration:" msgstr "Hyd:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "e.e. alys" @@ -3823,9 +4079,8 @@ msgstr "e.e. Defnyddwyr sy'n ateb dro ar ôl tro gyda hysbysebion." msgid "Eating disorders" msgstr "Anhwylderau bwyta" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Golygu" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Golygu afatar" @@ -3847,19 +4102,19 @@ msgstr "Golygu afatar" msgid "Edit Feeds" msgstr "Golygu Ffrydiau" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Golygu enw grŵp" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Golygu delwedd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Golygu gosodiadau rhyngweithio" @@ -3868,7 +4123,16 @@ msgstr "Golygu gosodiadau rhyngweithio" msgid "Edit interests" msgstr "Golygu diddordebau" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "Golygu gosodiadau dolen" @@ -3886,20 +4150,15 @@ msgstr "Golygu statws byw" msgid "Edit moderation list" msgstr "Golygu rhestr cymedroli" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Golygu Fy Ffrydiau" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Golygu enw" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Golygu hysbysiadau gan {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Golygu Pobl" @@ -3912,12 +4171,12 @@ msgstr "Golygu gosodiadau rhyngweithio postiad" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Golygu proffil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Golygu Proffil" @@ -3925,7 +4184,8 @@ msgstr "Golygu Proffil" msgid "Edit starter pack" msgstr "Golygu pecyn cychwyn" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Golygu enw'r grwp sgwrsio" @@ -3937,7 +4197,7 @@ msgstr "Golygu rhestr defnyddwyr" msgid "Edit who can reply" msgstr "Golygu pwy all ateb" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Golygu eich pecyn cychwyn" @@ -3971,7 +4231,7 @@ msgstr "Cyfeiriad e-bost" msgid "Email Resent" msgstr "E-bost wedi'i ail-anfon" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Anfonwyd yr e-bost!" @@ -4006,8 +4266,8 @@ msgstr "Mewnblanwch y postiad hon yn eich gwefan. Copïwch y pwt canlynol a'i gl msgid "Embedded video player" msgstr "Chwaraewr fideo wedi'i fewnblannu" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Galluogi" @@ -4025,7 +4285,7 @@ msgstr "Galluogi cynnwys oedolion" msgid "Enable captions" msgstr "Galluogi capsiynau" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Galluogi e-bost 2FA" @@ -4038,13 +4298,12 @@ msgstr "Galluogi cyfryngau allanol" msgid "Enable media players for" msgstr "Galluogi chwaraewyr cyfryngau ar gyfer" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Galluogwch hysbysiadau am gyfrif drwy fynd i'w proffil a phwyso'r <0>eicon cloch <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Galluogi gwthio hysbysiadau" @@ -4091,8 +4350,8 @@ msgstr "Rhowch gyfrinair" msgid "Enter a word or tag" msgstr "Rhowch air neu dag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Rhowch y cod" @@ -4143,12 +4402,12 @@ msgstr "Yn mynd i'r sgrin lawn" msgid "Entertainment" msgstr "Adloniant" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Gwall" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Gwall wrth gael y data diweddaraf." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Pawb" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Pawb" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Pawb" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Popeth arall" @@ -4217,16 +4476,16 @@ msgstr "Yn eithrio defnyddwyr rydych yn eu dilyn" msgid "Exit fullscreen" msgstr "Gadael y sgrin lawn" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Ehangu testun amgen" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Ehangu rhestr o ddefnyddwyr" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Ehangu neu leihau'r postiad llawn rydych yn ateb iddo" @@ -4238,7 +4497,7 @@ msgstr "Estyn testun postiad" msgid "Expands or collapses post text" msgstr "Yn ehangu neu'n lleihau testun postiad" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Yr uri disgwyliedig i ddatrys i gofnod" @@ -4277,10 +4536,10 @@ msgstr "Cyfryngau di-noethol neu a allai beri gofid." msgid "Explicit sexual images." msgstr "Delweddau di-noethol amlwg." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Darganfod" @@ -4289,11 +4548,8 @@ msgstr "Darganfod" msgid "Explore the app" msgstr "Archwilio'r ap" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Allforio fy nata sgwrsio" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Dewisiadau Cyfryngau Allanol" @@ -4331,18 +4587,22 @@ msgstr "Dewisiadau Cyfryngau Allanol" msgid "Extremist content" msgstr "Cynnwys eithafwyr" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Wedi methu derbyn y sgwrs" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Wedi methu ychwanegu emoji ymateb" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Wedi methu ychwanegu aelodau" @@ -4354,7 +4614,8 @@ msgstr "Wedi methu ychwanegu at becyn cychwyn" msgid "Failed to change handle. Please try again." msgstr "Wedi methu newid enw dangos. Ceisiwch eto." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Methu copïo dolen" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Wedi methu creu cyfrinair ap. Ceisiwch eto." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Wedi methu creu sgwrs" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Wedi methu creu dolen gwahodd" @@ -4376,17 +4637,17 @@ msgstr "Wedi methu creu dolen gwahodd" msgid "Failed to create starter pack" msgstr "Wedi methu creu pecyn cychwyn" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Wedi methu dileu'r sgwrs" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Wedi methu dileu'r neges" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Wedi methu dileu postiad, ceisiwch eto" @@ -4394,24 +4655,24 @@ msgstr "Wedi methu dileu postiad, ceisiwch eto" msgid "Failed to delete starter pack" msgstr "Wedi methu dileu'r pecyn cychwyn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Wedi methu analluogi dolen gwahodd" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Wedi methu datgysylltu Germ DM. Gwall {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Wedi methu golygu enw'r grŵp sgwrsio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Wedi methu golygu dolen gwahodd" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Wedi methu galluogi dolen gwahodd" @@ -4427,19 +4688,27 @@ msgstr "Wedi methu dilyn eich holl ffrindiau, ceisiwch eto" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Wedi methu cuddio awgrymiadau, gwiriwch eich cysylltiad rhyngrwyd" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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 "Wedi methu agor eich ap SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Wedi methu gadael grŵp sgwrsio" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Wedi methu llwytho sgyrsiau" @@ -4456,17 +4725,8 @@ msgstr "Wedi methu llwytho ffrydiau" msgid "Failed to load feeds preferences" msgstr "Wedi methu llwytho dewisiadau ffrydiau" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Wedi methu llwytho gosodiadau hysbysu." @@ -4493,16 +4753,15 @@ msgstr "Wedi methu llwytho'r ffrydiau awgrymwyd" msgid "Failed to load suggested follows" msgstr "Wedi methu llwytho'r awgrymiadau dilyn" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Wedi methu cloi grŵp sgwrsio" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Wedi methu nodi pob cais wedi'i ddarllen" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Wedi methu tewi grŵp sgwrsio" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Wedi methu pinio post" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Wedi methu datgysylltu Germ DM. Gwall: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Wedi methu tynnu data oherwydd gwall rhwydwaith, gwiriwch eich cysylltiad rhyngrwyd." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Wedi methu tynnu data. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Wedi methu dileu emoji ymateb" @@ -4534,7 +4793,8 @@ msgstr "Wedi methu dileu emoji ymateb" msgid "Failed to remove from starter pack" msgstr "Wedi methu tynnu o becyn cychwyn" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Wedi methu tynnu aelod o'r grŵp sgwrsio" @@ -4542,15 +4802,20 @@ msgstr "Wedi methu tynnu aelod o'r grŵp sgwrsio" msgid "Failed to remove verification" msgstr "Wedi methu dileu'r dilysiad" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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 "Wedi methu canfod y lleoliad. Ceisiwch eto." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Wedi methu cadw drafft" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Wedi methu cadw delwedd" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Wedi methu cadw'ch diddordebau." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Wedi methu anfon e-bost, ceisiwch eto." @@ -4580,16 +4845,16 @@ msgstr "Methu anfon adroddiad" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Wedi methu cyflwyno apêl, ceisiwch eto." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Wedi methu toglo tewi'r edefyn, ceisiwch eto" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Wedi methu datgloi grŵp sgwrsio" @@ -4597,12 +4862,12 @@ msgstr "Wedi methu datgloi grŵp sgwrsio" msgid "Failed to unpin list" msgstr "Wedi methu dadbinio rhestr" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Wedi methu diweddaru gosodiadau 2FA e-bost" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Wedi methu diweddaru'r e-bost, ceisiwch eto." @@ -4614,7 +4879,7 @@ msgstr "Wedi methu diweddaru ffrydiau" msgid "Failed to update notification declaration" msgstr "Methu diweddaru datganiad hysbysiad" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Wedi methu diweddaru gosodiadau" @@ -4641,7 +4906,7 @@ msgstr "Cyfrif ffug neu fot" msgid "False information about elections" msgstr "Gwybodaeth ffug am etholiadau" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Ffrwd" @@ -4649,7 +4914,7 @@ msgstr "Ffrwd" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Ffrwd gan {0}" @@ -4662,7 +4927,7 @@ msgstr "Crëwr ffrwd" msgid "Feed identifier" msgstr "Dynodydd ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Dewislen ffrwd" @@ -4676,25 +4941,25 @@ msgstr "Dyw'r ffrwd ddim ar gael" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Adborth" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Adborth wedi'i anfon at weithredwr ffrwd" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Ffrydiau" @@ -4739,7 +5004,7 @@ msgstr "Hidlo chwiliad yn ôl iaith ( {currentLanguageLabel} - ar hyn o bryd)" 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:166 msgid "Filter who you receive notifications from" msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau" @@ -4747,11 +5012,11 @@ msgstr "Hidlo gan bwy rydych yn derbyn hysbysiadau" msgid "Finalizing" msgstr "Yn cwblhau" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "O'r diwedd!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "O'r diwedd! Cadwch drefn ar bostiadau sy'n bwysig i chi. Cadwch nhw i'w hail ddarllen unrhyw bryd." @@ -4768,19 +5033,17 @@ msgstr "Cyllid" msgid "Find accounts to follow" msgstr "Chwilio am gyfrifon i'w dilyn" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Chwilio am Gysylltiadau" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Chwilio am Ffrindiau" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Chwilio am ffrindiau drwy'r cysylltiadau" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Chwilio am Gysylltiadau" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Chwilio am fy ffrindiau" msgid "Find people to follow" msgstr "Chwilio am bobl i'w dilyn" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Canfod postiadau, defnyddwyr a ffrydiau ar Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Chwilio am eich ffrindiau" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Chwiliwch am eich ffrindiau ar Bluesky drwy wirio eich rif ffôn a'u cyfateb â'ch ffrindiau. Rydym yn diogelu eich manylion chi a chi sy'n rheoli beth sy'n digwydd nesaf. <0>Dysgu rhagor" @@ -4847,22 +5114,22 @@ msgstr "Canolbwyntio'r maes chwilio" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Dilyn" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Dilynwch {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Dilynwch y cyfrif" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Dilynwch bob cyfrif" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Dilynwch Nôl" @@ -4916,7 +5183,7 @@ msgstr "Dilynwch Nôl" msgid "Followed all accounts!" msgstr "Yn dilyn pob cyfrif!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Wedi dilyn pob cyfatebiaeth" @@ -4944,8 +5211,12 @@ msgstr "Yn cael ei ddilyn gan <0>{0} a <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Yn cael ei ddilyn gan <0>{0}, <1>{1}, and {2, plural, one {# arall} other {# arall}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Dilynwyr @{0} rydych chi'n eu hadnabod" @@ -4960,10 +5231,10 @@ msgstr "Dilynwyr rydych chi'n eu hadnabod" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Yn dilyn" @@ -4977,12 +5248,12 @@ msgstr "Yn dilyn" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Yn dilyn {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Yn dilyn {handle}" msgid "Following feed preferences" msgstr "Dewisiadau ffrydio Yn dilyn" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Dewisiadau Ffrydio Yn Dilyn" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Yn eich dilyn chi" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Yn Eich Dilyn Chi" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Ffont" @@ -5065,11 +5333,16 @@ msgstr "Wedi anghofio'ch cyfrinair?" msgid "Forgot?" msgstr "Wedi anghofio?" +#. 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:12 msgid "Free your feed" msgstr "Ryddhewch eich ffrwd" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Oddi wrth" @@ -5086,82 +5359,86 @@ msgstr "Oddi wrth <0/>" msgid "Generate a starter pack" msgstr "Creu pecyn cychwyn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Cynhyrchu dolen gwahodd" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Cynhyrchu dolen gwahodd newydd" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Cynhyrchu dolen newydd" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM wedi'i ddatgysylltu" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Dolen Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM wedi'i ail gysylltu" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Cael cymorth" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "Cael hysbysiadau pan fydd pobl yn eich dilyn." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Cael hysbysiadau pan fydd pobl yn hoffi postiadau rydych wedi'u hail bostio." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Cael hysbysiadau pan fydd pobl yn hoffi'ch postiadau." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Cael hysbysiadau pan fydd pobl yn eich crybwyll chi." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Cael hysbysiadau pan fydd pobl yn dyfynnu eich postiadau." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Cael hysbysiadau pan fydd pobl yn ateb i'ch postiadau." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Cael hysbysiadau pan fydd pobl yn ail bostio postiadau rydych wedi'u hail bostio." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 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:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Cael gwybod am bostiadau newydd" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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}" @@ -5174,27 +5451,27 @@ msgstr "Cael gwybod am weithgaredd y cyfrif hwn" msgid "Get notified when {name} posts" msgstr "Cael gwybod pan fydd {name} yn postio" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Cael gwybod pan fydd rhywun yn postio" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Cychwyn arni" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF wedi'i lwytho i fyny" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Rhowch wyneb i'ch proffil" @@ -5213,20 +5490,20 @@ msgstr "Gogoneddu trais" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Mynd nôl" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Nôl" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Ewch nôl i'r cam blaenorol" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ewch adref" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ewch adref" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ewch Adref" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Mynd yn fyw (analluogwyd)" msgid "Go live for" msgstr "Ewch yn fyw am" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Ewch i broffil {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Ewch i'r gosodiadau cyfrif" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ewch i sgwrs gyda {0}" @@ -5296,23 +5571,23 @@ msgstr "Ewch i'r ffrwd" msgid "Go to next" msgstr "Ewch i'r nesaf" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ewch i'r proffil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Ewch i'r grŵp sgwrsio \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ewch i broffil y defnyddiwr" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "Mae mynd yn fyw wedi ei analluogi ar eich cyfrif ar hyn o bryd" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Iawn" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Cynnwys treisiol graffig" msgid "Grooming or predatory behavior" msgstr "Ymddygiad rheibus neu ddenu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Deialog dolen gwahodd grŵp sgwrsio" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Grŵp sgwrsio wedi'i gloi" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Grŵp sgwrsio wedi'i dewi" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Diweddarwyd enw grŵp sgwrsio" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gosodiadau grwpiau sgwrsio" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Grŵp sgwrsio wedi'i ddatgloi" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Wedi dad-dewi grŵp sgwrsio" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Dyw sgyrsiau grwp ddim ar gael eto" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Mae grwpiau sgwrsio ar gael bellach" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "Mae'r grŵp wedi'i gloi" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Enw grŵp" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "Hacio neu ymosodiadau systemau" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Mae'r enw dangos yn rhy hir. Rhowch gynnig ar un byrrach." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Yn digwydd nawr" @@ -5446,7 +5744,7 @@ msgstr "Gweithgareddau niweidiol neu risg uchel" msgid "Harming or endangering minors" msgstr "Niweidio neu beryglu plant dan oed" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashnod" @@ -5458,8 +5756,8 @@ msgstr "Hashnod {tag}" msgid "Hate speech" msgstr "Siarad casineb" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Oes gennych chi god? <0>Cliciwch yma." @@ -5479,11 +5777,11 @@ msgstr "Wedi ei gadw gan Bluesky am 7 diwrnod i osgoi camddefnydd, yna ei ddileu #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Cymorth" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Rhestr gudd" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Rhestr gudd" msgid "Hide" msgstr "Cuddio" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Cuddio" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "Cuddio rhestrau" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Cuddio postiad drosof fi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Cuddio ateb i bawb" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Cuddio ateb i mi" @@ -5577,19 +5875,19 @@ msgstr "Cuddio'r cerdyn hwn" msgid "Hide this event" msgstr "Cuddio'r digwyddiad hwn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Cuddio'r postiad hwn?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Cuddio'r ateb hwn?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Cuddio'r cyfieithiad" @@ -5606,7 +5904,7 @@ msgstr "Cuddio pynciau sy'n trendio?" msgid "Hide trending videos?" msgstr "Cuddio fideos sy'n trendio?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Cuddio rhestr defnyddwyr" @@ -5620,6 +5918,10 @@ msgstr "Cuddio bathodynnau dilysu" msgid "Hides the content" msgstr "Yn cuddio'r cynnwys" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, mae'n edrych fel eich bod wedi mewngofnodi gyda <0>Chyfrinair Ap. Er mwyn gosod eich dyddiad geni, rhaid i chi fewngofnodi gyda phrif gyfrinair eich cyfrif, neu ofyn i bwy bynnag sy'n rheoli'r cyfrif i wneud hynny." @@ -5652,19 +5954,15 @@ msgstr "Hmmm, mae'n ymddangos ein bod yn cael trafferth llwytho'r data hwn. Gwel msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, dydyn ni ddim wedi gallu llwytho'r gwasanaeth cymedroli hwnnw." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Daliwch ati! Rydyn ni'n rhoi mynediad i fideo yn raddol, ac rydych chi'n dal i aros yn unol. Dewch nôl cyn hir!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Daliwch arni! Dyw'r nodwedd hon ddim ar gael eto. Dewch nôl rhywbryd arall." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Cartref" @@ -5721,7 +6019,7 @@ msgstr "Rwy'n deall" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Rwy ar Bluesky fel {0} - dewch i chwilio amdana i! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Os yw'r testun amgen yn hir, bydd y testun amgen yn toglo'r cyflwr estynedig" @@ -5757,15 +6055,15 @@ msgstr "Os byddwch yn dileu'r rhestr hon, fyddwch chi ddim yn gallu ei hadfer." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Os oes gennych chi'ch parth eich hun, gallwch chi ei ddefnyddio fel eich handlen. Mae hyn yn gadael i chi hunan-wirio eich hunaniaeth. <0> Dysgwch ragor yma." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Os oes angen i chi ddiweddaru eich e-bost, <0>cliciwch yma." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Os byddwch yn dileu'r postiad hwn, fyddwch chi ddim yn gallu ei gael yn ôl." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Os byddwch chi'n diweddaru eich cyfeiriad e-bost, bydd 2FA e-bost yn cael ei analluogi." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Os ydych chi eisiau cyfyngu ar bwy sy'n gallu derbyn hysbysiadau am weithgaredd eich cyfrif, gallwch ei newid yn <0>Gosodiadau → Preifatrwydd a Diogelwch." @@ -5786,23 +6083,23 @@ msgstr "Os ydych chi'n ddatblygwr, gallwch chi gynnal eich gweinydd eich hun." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Os ydych chi'n ceisio newid eich enw dangos neu'ch e-bost, gwnewch hynny cyn i chi ei ei gau." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Delwedd" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "{0} delwedd" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Delwedd {0} o {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "{0} delwedd o {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Wedi gwagio'r storfa delweddau, rhyddhawyd {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Oriel delweddau, {0} delwedd" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Mae delwedd wedi ei chuddio oherwydd eich gosodiadau cymedroli." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Dyw'r ddelwedd ddim ar gael." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Dewisiadau delweddau" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Personadu" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Mewnforio cysylltiadau" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Mewnforio Cysylltiadau" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Mewnforio cysylltiadau i chwilio am eich ffrindiau" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Mewnforiwyd ar {0}" @@ -5881,40 +6182,40 @@ msgstr "Mewnforiwyd ar {0}" 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 "Er mwyn darparu profiad addas i oed, mae'n rhaid i ni gael gwybod am eich dyddiad geni. Mae hyn yn ddigwyddiad untro a bydd eich data'n cael ei gadw'n breifat." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "O fewn yr ap" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Hysbysiadau o fewn yr ap" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "O fewn yr ap, Pawb" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "O fewn yr ap, Pobl rydych yn eu dilyn" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "O fewn yr ap, Gwthio" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "O fewn yr ap, Gwthio, Pawb" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "O fewn yr ap, Gwthio, Pobl rydych yn eu dilyn" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Dim yn y blwch derbyn!" @@ -5954,6 +6255,10 @@ msgstr "Yn cyflwyno drafftiau" msgid "Introducing finding friends via contacts" msgstr "Chwilio am ffrindiau drwy eich cysylltiadau" +#: 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 "Yn cyflwyno postiadau wedi'u cadw, hynny yw, nodau tudalen" @@ -5963,11 +6268,15 @@ msgstr "Yn cyflwyno postiadau wedi'u cadw, hynny yw, nodau tudalen" msgid "Invalid 2FA confirmation code." msgstr "Cod cadarnhau 2FA annilys." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Enw dangos annilys. Rhowch gynnig ar un arall." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Gosodiadau rhyngweithio annilys." @@ -5977,10 +6286,15 @@ msgstr "Gosodiadau rhyngweithio annilys." msgid "Invalid phone number" msgstr "Rhif ffôn annilys" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Pwnc adrodd annilys" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Cod Dilysu Annilys" @@ -6001,8 +6315,15 @@ msgstr "Cod gwahodd" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Gwahodd Ffrindiau" @@ -6010,21 +6331,31 @@ msgstr "Gwahodd Ffrindiau" msgid "Invite friends <0/>" msgstr "Gwahodd ffrindiau <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Dolen gwahodd" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Dolen gwahodd" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Dolen gwahodd wedi'i chreu" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Dolen gwahodd wedi'i hanalluogi" @@ -6040,11 +6371,16 @@ msgstr "Dolen gwahodd wedi'i galluogi" msgid "Invite people to this starter pack!" msgstr "Gwahoddwch bobl i'r pecyn cychwyn hwn!" +#: 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 "Gwahoddwch eich ffrindiau i ddilyn eich hoff ffrydiau a phobl" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Wedi'i wahodd" @@ -6054,7 +6390,7 @@ msgstr "Gwahoddiadau, ond personol" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "A yw eich lleoliad yn anghywir? <0>Tapiwch yma i ddiweddaru eich lleoliad gyda GPS. " #: 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." @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID gwaith: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID gwaith: {0}" msgid "Jobs" msgstr "Swyddi" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Swyddi" msgid "Join Bluesky" msgstr "Ymunwch â Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Ymunwch â'r sgwrs" msgid "Journalism" msgstr "Newyddiaduraeth" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Cadwch i olygu" @@ -6109,6 +6460,11 @@ msgstr "Cadwch i olygu" msgid "Keep me posted" msgstr "Cadw fi'n gyfredol" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Gwefan KWS" @@ -6143,7 +6499,7 @@ msgstr "Labeli ar eich cyfrif" msgid "Labels on your content" msgstr "Labeli ar eich cynnwys" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Gosodiadau Iaith" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Diweddaraf" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Dysgu rhagor am sut mae gwahodd ffrindiau'n gweithio" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Dysgu rhagor am fewnforio cysylltiadau" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Dysgwch ragor am y rhybudd hwn" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Dysgu rhagor am ddilysu ar Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Dysgu rhagor am ddilysu ar Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Dysgu rhagor am yr hyn sy'n gyhoeddus ar Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Dysgu rhagor am eich dolen Germ DM" @@ -6252,31 +6608,33 @@ msgstr "Mae rhagor o wybodaeth yn eich <0>gosodiadau cyfrif" msgid "Learn more." msgstr "Dysgu rhagor." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Gadael" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Gadael sgwrsio" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Gadael y sgwrs" @@ -6284,13 +6642,14 @@ msgstr "Gadael y sgwrs" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Gadael y sgwrs" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Gadael grŵp sgwrsio" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Gadael grŵp sgwrsio hwn" @@ -6299,6 +6658,14 @@ msgstr "Gadael grŵp sgwrsio hwn" msgid "Leaving Bluesky" msgstr "Gadael Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "chwith i fynd." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Golau" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Hoffi" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Yn hoffi ({0, plural, one {# yn hoffi} other {# yn hoffi}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Hysbysiadau hoffi" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Yn hoffi'r ffrwd hon" @@ -6358,8 +6721,8 @@ msgstr "Yn hoffi'r ffrwd hon" msgid "Like this labeler" msgstr "Yn hoffi'r labelwr hwn" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Wedi'i hoffi gan" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Wedi'i hoffi gan {0, plural, one {# defnyddiwr} other {# defnyddiwr}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Yn hoffi" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Yn hoffi eich ail bostiadau" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Yn hoffi eich hysbysiadau ail bostio" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Yn hoffi'r postiad hwn" @@ -6409,11 +6768,11 @@ msgstr "Yn hoffi'r postiad hwn" msgid "Linear" msgstr "Llinol" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Dolen wedi'i chopïo i'r clipfwrdd" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Rhestr" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Rhestr heb ei thewi" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Rhestrau" @@ -6545,7 +6904,7 @@ msgstr "Amlygu digwyddiad cudd" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Mae digwyddiadau byw'n ymddangos o bryd i'w gilydd pan fydd rhywbeth cyffroes yn digwydd. Os hoffech chi, gallwch guddio'r digwyddiad hwn neu bob digwyddiad ar gyfer y lleoliad yn rhyngwyneb eich ap." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Mae nodwedd byw yn y cyflwr beta" @@ -6595,27 +6954,27 @@ msgstr "Yn llwytho gosodiadau rhyngweithio postiadau..." msgid "Loading..." msgstr "Yn llwytho..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Cloi" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Cloi grŵp sgwrsio" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Cloi grŵp sgwrsio?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Cloi'r grŵp sgwrsio hwn" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Wedi cloi" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Cofnod" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo gan @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo gan <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Mae'n ymddangos eich bod chi'n colli'r ffrwd canlynol. <0>Cliciwch yma i msgid "Love GIFs" msgstr "GIF caru" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Gwnewch addasiadau i osodiadau e-bost eich cyfrif" @@ -6687,24 +7046,22 @@ msgstr "Rheoli gosodiadau dilysu" msgid "Manage your muted words and tags" msgstr "Rheoli eich geiriau a thagiau wedi'u tewi" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Nodi'r cyfan fel wedi'u darllen" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcio fel weedi darllen" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Wedi marcio'r cyfan fel wedi'u darllen" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Efallai yn nes ymlaen" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Aelodau" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Gall aelodau dal ddarllen hanes sgwrsio ond ddim anfon negeseuon newydd." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Hysbysiadau crybwyll" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "defnyddwyr wedi'u crybwyll" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Crybwylliadau" @@ -6761,7 +7118,7 @@ msgstr "Neges" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Neges" @@ -6771,26 +7128,26 @@ msgstr "Neges" msgid "Message {0}" msgstr "Neges {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Neges {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Neges wedi'i dileu" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Neges wedi'i dileu" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Methodd y neges a mynd." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Neges gan @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Mae'r neges yn rhy hir" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Neges yn rhy hir ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Dewisiadau negeseuon" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Negeseuon" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Canol Nos" msgid "Minor harassment or bullying" msgstr "Aflonyddu neu fwlio plant dan oed" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Hysbysiadau amrywiol" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Camarweiniol" @@ -6850,7 +7203,7 @@ msgstr "Camarweiniol" msgid "Missing media" msgstr "Cyfryngau coll" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Cymedroli" @@ -6894,7 +7247,7 @@ msgstr "Rhestr cymedroli wedi'i diweddaru" msgid "Moderation lists" msgstr "Rhestrau cymedroli" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Rhestrau Cymedroli" @@ -6903,7 +7256,7 @@ msgstr "Rhestrau Cymedroli" msgid "moderation settings" msgstr "gosodiadau cymedroli" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Cyflyrau cymedroli" @@ -6928,8 +7281,8 @@ msgstr "Rhagor o ieithoedd..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Rhagor o ddewisiadau" @@ -6949,7 +7302,7 @@ msgstr "Ffilmiau" msgid "Music" msgstr "Cerddoriaeth" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Tewi" @@ -6965,8 +7318,8 @@ msgstr "Tewi" msgid "Mute {0}" msgstr "Tewi {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Tewi cyfrif" msgid "Mute accounts" msgstr "Tewi cyfrifon" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Tewi sgwrs" @@ -6994,7 +7347,7 @@ msgstr "Tewi rhestr" msgid "Mute these accounts?" msgstr "Tewi'r cyfrifon hyn?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Tewi'r grŵp sgwrsio hwn" @@ -7022,17 +7375,21 @@ msgstr "Dim ond tewi'r gair hwn mewn tagiau" msgid "Mute this word until you unmute it" msgstr "Tewi'r gair hwn nes i chi ei ddad-dewi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Tewi edefyn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Tewi geiriau a thagiau" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "Wedi'i dewi" @@ -7040,7 +7397,7 @@ msgstr "Wedi'i dewi" msgid "Muted accounts" msgstr "Cyfrifon wedi'u tewi" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cyfrifon Wedi'u Tewi" @@ -7062,6 +7419,10 @@ msgstr "Geiriau a thagiau wedi'u tewi" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Mae tewi'n breifat. Gall cyfrifon wedi'u tewi rhyngweithio â chi, ond fyddwch chi ddim yn gweld eu postiadau nac yn derbyn hysbysiadau ganddyn nhw." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Ewch i'r pecyn cychwyn" msgid "Navigates to the next screen" msgstr "Yn llywio i'r sgrin nesaf" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Yn llywio i'ch proffil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Angen adrodd ar fater torri hawlfraint, cais cyfreithiol, neu gydymffurfiad rheolaethol?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Newydd" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {postiad} other {postiad}} newydd gan {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Sgwrs newydd" @@ -7163,7 +7525,7 @@ msgstr "Sgwrs newydd gyda {0} a {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Sgwrs newydd gyda {0}, {1}, a {memberCount, plural, one {{memberCount} rhagor} other {{memberCount} rhagor}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Cyfeiriad e-bost newydd" @@ -7171,32 +7533,30 @@ msgstr "Cyfeiriad e-bost newydd" #: 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 "Nodwedd Newydd" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Hysbysiadau dilynwr newydd" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Dilynwyr newydd" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Grŵp sgwrsio newydd" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Grŵp sgwrsio newydd gyda:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Postiad newydd" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Postiad newydd" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Postiadau newydd gan {firstAuthorLink} a <0>{additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Postiadau newydd gan {firstAuthorName} a {additionalAuthorsCount, plural, zero {}one {{formattedAuthorsCount} arall} two {{formattedAuthorsCount} arall} few {{formattedAuthorsCount} arall} many {{formattedAuthorsCount} arall} other {{formattedAuthorsCount} arall}}" @@ -7262,8 +7622,8 @@ msgstr "Newyddion" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Nesaf" msgid "Next image" msgstr "Delwedd nesaf" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Dim dilynwyr eto" @@ -7335,7 +7699,7 @@ msgstr "Heb ganfod Gifau ar gyfer \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "Dim GIF i'w ddangos ar hyn o bryd. Ceisiwch eto." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Dim delwedd" @@ -7353,8 +7717,8 @@ msgstr "Dim rhestrau" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Dim yn dilyn {0} bellach" @@ -7362,7 +7726,7 @@ msgstr "Dim yn dilyn {0} bellach" msgid "No media yet" msgstr "Dim cyfryngau eto" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Dim negeseuon eto" @@ -7378,12 +7742,12 @@ msgstr "Dim enw" msgid "No notifications yet!" msgstr "Dim hysbysiadau eto!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Neb" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Neb" @@ -7399,7 +7763,7 @@ msgstr "Neb" msgid "No one but the author can quote this post." msgstr "Gall neb ond yr awdur ddyfynnu'r postiad hon." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Gall neb anfon negeseuon" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Dim canlyniad" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Dim canlyniadau" @@ -7446,8 +7810,8 @@ msgstr "Dim canlyniadau" msgid "No results for \"{0}\"." msgstr "Dim canlyniadau ar gyfer \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Heb ganfod canlyniad" @@ -7509,12 +7873,12 @@ msgstr "Delweddau personol heb gydsyniad" msgid "Non-sexual Nudity" msgstr "Noethni nad yw'n rhywiol" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Dim" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Nid yw ar gael ar y platfform yma." @@ -7522,16 +7886,16 @@ msgstr "Nid yw ar gael ar y platfform yma." msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Heb ei Ganfod" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Dim yn barod i bostio eto? Cadwch eich syniadau gorau yn y Drafftiau nes bod yr amser wedi dod." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nodyn am rannu" @@ -7548,44 +7912,31 @@ msgstr "Sylw: Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn y msgid "Nothing saved yet" msgstr "Dim wedi'i gadw eto" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Gosodiadau hysbysu" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Seiniau hysbysu" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Hysbysiadau" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Hysbysiadau am bopeth arall, fel pan fydd rhywun yn ymuno drwy un o'r pecynnau cychwyn." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nawr" @@ -7601,7 +7952,7 @@ msgstr "Dylai'r rhif fod yn un ffôn symudol" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Wedi'i ddiffodd" @@ -7623,9 +7974,10 @@ msgstr "Iawn" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Iawn" @@ -7648,35 +8000,35 @@ msgstr "ar <0><1/><2><3/>" msgid "Onboarding reset" msgstr "Ailosod cyflwyno" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Dyw un neu fwy o'r ffeiliau hyn ddim yn cael eu cynnal." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Mae un neu fwy o'r ffeiliau hyn yn rhy fawr. Uchafswm maint yw 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Does dim testun amgen ar un neu fwy o fideos." @@ -7685,6 +8037,26 @@ msgstr "Does dim testun amgen ar un neu fwy o fideos." msgid "Only {0} can reply." msgstr "Dim ond {0} all ateb." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Dim ond dilynwyr rwy'n eu dilyn" msgid "Only image files are supported" msgstr "Dim ond ffeiliau delwedd sy'n cael eu cefnogi" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Dim ond ffeiliau WebVTT (.vtt) sy'n cael eu cefnogi" @@ -7703,6 +8085,10 @@ msgstr "Dim ond ffeiliau WebVTT (.vtt) sy'n cael eu cefnogi" msgid "Oops, something went wrong!" msgstr "Wps, aeth rhywbeth o'i le!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Wps, aeth rhywbeth o'i le!" msgid "Oops!" msgstr "Wps!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Agor y crëwr avatar" @@ -7720,12 +8106,17 @@ msgstr "Agor y crëwr avatar" msgid "Open camera" msgstr "Agor camera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Dewisiadau aelodau sgwrsio agored ar gyfer {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Agor dewisiadau sgyrsiau" @@ -7739,16 +8130,16 @@ msgstr "Agor dewislen drôr" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Agor y dewisydd emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Agor dewislen dewisiadau ffrwd" @@ -7760,13 +8151,22 @@ msgstr "Agor rhestr emoji lawn" msgid "Open Germ DM" msgstr "Agor Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Agor gosodiadau grŵp sgwrsio" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Agor dolen i {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Agor pecyn" msgid "Open post options menu" msgstr "Agor dewislen dewisiadau ffrydiau" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Agor proffil" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Agor tudalen llyfr stori" msgid "Open system log" msgstr "Agor cofnod system" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Yn agor deialog i ychwanegu rhybudd cynnwys at eich postiad" msgid "Opens a dialog to choose who can interact with this post" msgstr "Yn agor deialog i ddewis pwy all ryngweithio gyda'r postiad hwn" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Yn agor manylion ychwanegol cofnod dadfygio" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Yn agor camera ar ddyfais" @@ -7858,22 +8270,24 @@ msgstr "Yn agor y cyfansoddwr" msgid "Opens device camera" msgstr "Yn agor camera dyfais" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Yn agor oriel dyfais i ddewis hyd at {MAX_IMAGES, plural, other {# delwedd}}, neu un fideo neu GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Yn agor llif i greu cyfrif Bluesky newydd" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Yn agor llif i fewngofnodi i'ch cyfrif Bluesky presennol" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Yn agor y ddelwedd yn llawn" @@ -7890,7 +8304,7 @@ msgstr "Yn agor dewisydd lluniau" msgid "Opens link {0}" msgstr "Yn agor y ddolen {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Yn agor deialog statws byw" @@ -7902,15 +8316,23 @@ msgstr "Yn agor ffurflen ailosod cyfrinair" msgid "Opens post language settings" msgstr "Yn agor gosodiadau ieithoedd postiadau" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "Yn agor y deialog dewis GIFau" +#: 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 "Yn agor maes ysgrifennu postiad" @@ -7919,9 +8341,8 @@ msgstr "Yn agor maes ysgrifennu postiad" msgid "Opens this draft in the composer" msgstr "Yn agor y drafft hwn yn y cyfansoddwr" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Yn agor y proffil hwn" @@ -7997,12 +8418,12 @@ msgstr "Ein cofnod blog" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Mae'n tîm cymedroli wedi derbyn eich adroddiad." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Mae'n cymedrolwyr wedi adolygu adroddiadau ac wedi penderfynu analluogi eich mynediad at sgyrsiau ar Bluesky." @@ -8010,16 +8431,17 @@ msgstr "Mae'n cymedrolwyr wedi adolygu adroddiadau ac wedi penderfynu analluogi msgid "Owner" msgstr "Perchennog" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: 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 "Heb ganfod y dudalen" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Tudalen Heb ei Chanfod" - #. 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" @@ -8068,34 +8490,34 @@ msgstr "Oedi fideo" msgid "People" msgstr "Pobl" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Mae'r rhai mae {ownerName} yn eu dilyn yn gallu ymuno'n syth" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Pobl yn cael eu dilyn gan @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Pobl yn dilyn @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Pobl rwy'n eu dilyn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Mae'r rhai rwy'n eu dilyn yn gallu ymuno'n syth" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Mae'r rhai rwy'n eu dilyn yn gallu gofyn i gael ymuno" @@ -8136,13 +8558,17 @@ msgstr "Gwiriwyd y rhif ffôn" msgid "Photography" msgstr "Ffotograffiaeth" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Lluniau ar gyfer oedolion." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Pinio'r frwd" @@ -8152,12 +8578,12 @@ msgstr "Pinio'r frwd" msgid "Pin to home" msgstr "Pinio i cartref" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Pinio i Cartref" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Pinio i'ch proffil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Piniwyd" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Wedi'i binio {0} i Cartref" @@ -8236,7 +8662,7 @@ msgstr "Dewiswch eich enw dangos." msgid "Please choose your password." msgstr "Dewiswch eich cyfrinair." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Cliciwch ar y ddolen yn yr e-bost a anfonwyd atoch i wirio'ch cyfeiriad msgid "Please complete the verification captcha." msgstr "Cwblhewch y captcha dilysu." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Cadarnhewch eich cyfeiriad e-bost i lwytho fideos." @@ -8265,14 +8691,14 @@ msgstr "Rhowch gyfrinair. Rhaid iddo fod o leiaf 8 nod." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Rhowch enw unigryw ar gyfer y cyfrinair apiau hwn neu defnyddiwch un gynhyrchwyd ar hap gennym ni." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Rhowch god dilys." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Rhowch gyfeiriad e-bost dilys." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Rhowch gyfeiriad e-bost dilys, parhaol. Efallai y bydd angen i chi gael mynediad ato yn y dyfodol." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Rhowch y cod a anfonwyd gennym at <0>{0} isod." @@ -8293,7 +8719,7 @@ msgstr "Rhowch y cod a anfonwyd gennym at <0>{0} isod." msgid "Please enter the code you received and the new password you would like to use." msgstr "Rhowch y cod rydych wedi'i dderbyn a'r cyfrinair hoffech chi ei ddefnyddio." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Rhowch eich e-bost." msgid "Please enter your invite code." msgstr "Rhowch eich cod gwahodd." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Rhowch eich cyfeiriad e-bost newydd." @@ -8323,7 +8749,7 @@ msgstr "Rhowch eich enw defnyddiwr" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Eglurwch pam rydych chi'n meddwl bod y label hwn wedi'i osod yn anghywir gan {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Eglurwch pam rydych chi'n meddwl bod eich sgyrsiau wedi'u hanalluogi'n anghywir" @@ -8358,7 +8784,11 @@ msgstr "Dewiswch reswm am yr adroddiad hwn" msgid "Please sign in as @{0}" msgstr "Mewngofnodwch fel @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Defnyddiwch yr ap cynhenid er mwyn mewnforio eich cysylltiadau." @@ -8366,7 +8796,7 @@ msgstr "Defnyddiwch yr ap cynhenid er mwyn mewnforio eich cysylltiadau." msgid "Please use the native app to sync your contacts." msgstr "Defnyddiwch yr ap cynhenid i gydweddu eich cysylltiadau." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Dilyswch eich e-bost" @@ -8383,7 +8813,7 @@ msgstr "Gwleidyddiaeth" msgid "Porn" msgstr "Pornograffi" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Postio" @@ -8403,12 +8833,12 @@ msgstr "Postiwch lun" msgid "Post a video" msgstr "Postiwch fideo" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Postio'r Cyfan" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Postio beth bynnag" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Postiad wedi'i rwystro" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Postiad gan @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Dilëwyd y postiad" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Methodd y postiad a llwytho i fyny. Gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." @@ -8454,18 +8884,22 @@ msgstr "Postiad Wedi'i Guddio Gennych Chi" msgid "Post interaction settings" msgstr "Gosodiadau rhyngweithio postiadau" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Gosodiadau Rhyngweithio Postiadau" +#: 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 "Dewis ieithoedd postiadau" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Postio dolen" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Postiadau, Atebion" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Dolen camarweiniol posib" @@ -8525,9 +8954,10 @@ msgstr "Dewis iaith" msgid "Press to attempt reconnection" msgstr "Pwyswch i geisio ailgysylltu" -#: src/components/Error.tsx:61 +#: 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 "Pwyswch i ail gynnig" @@ -8536,7 +8966,7 @@ msgstr "Pwyswch i ail gynnig" msgid "Press to view followers of this account that you also follow" msgstr "Pwyswch i weld dilynwyr y cyfrif hwn rydych chi'n ei ddilyn hefyd" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Rhagolwg" @@ -8559,26 +8989,25 @@ msgstr "Preifatrwydd" msgid "Privacy and security" msgstr "Preifatrwydd a diogelwch" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Polisi Preifatwydd" @@ -8586,15 +9015,15 @@ msgstr "Polisi Preifatwydd" msgid "Privacy violation of a minor" msgstr "Torri ar breifatrwydd plentyn dan oed" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Yn prosesu GIF..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Yn prosesu fideo..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Wrthi’n prosesu..." @@ -8602,10 +9031,10 @@ msgstr "Wrthi’n prosesu..." msgid "profile" msgstr "proffil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Proffil" @@ -8613,6 +9042,7 @@ msgstr "Proffil" msgid "Profile banner placeholder" msgstr "Deilydd lle baner proffil" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Heb ganfod proffil" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Cyhoeddi postiad" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Cyhoeddi postiadau" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Cyhoeddi atebion" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Cyhoeddi ateb" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Gwthio" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Hysbysiadau gwthio" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Gwthio, Pawb" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Gwthio, Pobl rydych yn eu dilyn" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Mae'r cod QR wedi'i gopïo i'ch clipfwrdd!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Mae'r cod QR wedi'i lwytho i lawr!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Mae'r cod QR wedi'i gadw ar rolyn eich ffolder lluniau!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Hysbysiadau dyfynnu" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Hysbysiadau dyfynnu" msgid "Quote post" msgstr "Dyfyniad postiad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Ail-atodwyd postiad dyfyniad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Datgysylltwyd post dyfyniad yn llwyddiannus" @@ -8711,12 +9138,12 @@ msgstr "Analluogwyd postiadau dyfyniad" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Dyfyniadau" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Dyfyniadau'r postiad hwn" @@ -8728,16 +9155,16 @@ msgstr "Wedi mynd y tu hwnt i derfyn y gyfradd – rydych wedi ceisio newid eich msgid "Rate limit exceeded. Please try again later." msgstr "Wedi mynd dros derfyn y raddfa. Ceisiwch eto." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Ail-atodi dyfyniad" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Ail alluogi'r ddolen gwahodd" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Ail alluogi'r ddolen" @@ -8745,8 +9172,8 @@ msgstr "Ail alluogi'r ddolen" msgid "React with {emoji}" msgstr "Ymateb gyda {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Ymatebion" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "darllenwch am sut i ddefnyddio'r hidlyddion chwilio" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Darllen postiad blog" @@ -8812,11 +9239,11 @@ msgstr "Pobl go-iawn." msgid "Reason for appeal" msgstr "Rheswm dros apelio" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Derbyn hysbysiadau o fewn yr ap" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Derbyn gwthio hysbysiadau" @@ -8841,17 +9268,31 @@ msgstr "Argymhellwyd" msgid "Reconnect" msgstr "Ailgysylltu" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Gwrthod" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Gwrthod" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Gwrthod cais am sgwrs" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Ail-lwytho sgyrsiau" @@ -8863,6 +9304,8 @@ msgstr "Ail-lwytho sgyrsiau" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Tynnu {displayName} o'r grŵp sgwrsio" msgid "Remove {displayName} from starter pack" msgstr "Tynnu {displayName} o'r pecyn cychwyn" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Tynnu {displayName} o'r sgwrsio grŵp hwn" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Tynnu {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Tynnu {historyItem}" msgid "Remove account" msgstr "Tynnu cyfrif" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Tynnu pob cysylltiad" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Tynnu atodiad" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Tynnu Afatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Tynnu Baner" @@ -8914,8 +9362,9 @@ msgstr "Tynnu Baner" msgid "Remove caption file" msgstr "Tynnu ffeil capsiynau" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Tynnu mewblaniad" @@ -8929,12 +9378,12 @@ msgstr "Tynnu ffrwd" msgid "Remove feed?" msgstr "Tynnu ffrwd?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Tynnu o'r sgwrs" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Tynnu o'r postiadau wedi'u cadw" msgid "Remove from your feeds?" msgstr "Tynnu o'ch ffrydiau?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Tynnu delwedd" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Tynnu'r ailbostio" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Tynnu awgrymiadau" @@ -9009,11 +9458,11 @@ msgstr "Dileu dilysu" msgid "Remove your verification for this account?" msgstr "Dileu eich dilysiad ar gyfer y cyfrif hwn?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Wedi'i dynnu gan yr awdur" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Wedi'i ddileu gennych chi" @@ -9035,7 +9484,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:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Mewn ymateb i chi" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Atebion" @@ -9104,14 +9552,14 @@ msgstr "Analluogwyd atebion" msgid "Replies to this post are disabled." msgstr "Mae atebion i'r postiad hwn wedi'u hanalluogi." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Ateb" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Ateb ({0, plural, one {# ateb} other {# ateb}})" @@ -9125,10 +9573,6 @@ msgstr "Ateb Wedi'i Guddio gan Awdur yr Edefyn" msgid "Reply Hidden by You" msgstr "Ateb Wedi'i Guddio Gennych Chi" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Hysbysiadau ateb" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Mae gosodiadau ateb yn cael eu dewis gan awdur yr edefyn" @@ -9137,18 +9581,18 @@ msgstr "Mae gosodiadau ateb yn cael eu dewis gan awdur yr edefyn" msgid "Reply sorting" msgstr "Didoli atebion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Gwelededd ateb wedi'i ddiweddaru" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Cafodd yr ateb ei guddio'n llwyddiannus" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Adroddiadau" @@ -9157,20 +9601,20 @@ msgstr "Adroddiadau" msgid "Report account" msgstr "Adrodd ar gyfrif" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Adrodd ar sgwrs" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Deialog adrodd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Adrodd ar ffrwd" @@ -9179,12 +9623,12 @@ msgstr "Adrodd ar ffrwd" msgid "Report list" msgstr "Rhestr adrodd" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Adrodd ar neges" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Adrodd ar bostiad" @@ -9199,8 +9643,8 @@ msgstr "Adrodd ar becyn cychwyn" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Adroddiad wedi ei gyflwyno" @@ -9213,7 +9657,7 @@ msgstr "Adrodd am y sgwrs" msgid "Report this feed" msgstr "Adrodd ar y ffrwd hwn" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Adrodd am y grŵp sgwrsio hwn" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Adrodd ar y rhestr hon" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Adrodd am y ffrwd byw yma" @@ -9256,10 +9700,6 @@ msgstr "Ail-bostio" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Hysbysiadau ail bostio" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Wedi'i ail-bostio gennych chi" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Ail bostiadau" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Ail-bostiadau'r postiad hwn" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Ail bostiadau eich ail bostiadau" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Ail bostiadau eich hysbysiadau ail bostiadau" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 "Gofyn am god" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Mae angen testun amgen cyn postio" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Mae angen cod e-bost i fewngofnodi i'ch cyfrif." @@ -9328,7 +9791,17 @@ msgstr "Yn ofynnol ar gyfer y darparwr hwn" msgid "Required in your region" msgstr "Yn ofynnol yn eich ardal" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Ail-anfon" @@ -9373,8 +9846,8 @@ msgstr "Ailosod cyflwr cyflwyno" msgid "Reset password" msgstr "Ailosod cyfrinair" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Ail gydweddu cysylltiadau" @@ -9391,17 +9864,18 @@ msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Yn ceisio'r weithred olaf eto, oedd yn wallus" msgid "Retry" msgstr "Ceisio eto" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Ceisio llwytho dewisiadau adrodd eto" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Nôl i'r dudalen flaenorol" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Yn mynd nôl i'r dudalen flaenorol" @@ -9451,10 +9925,10 @@ msgstr "GIFau trist" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Cadw'r newidiadau" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Cadw newidiadau?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Cadw drafft" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Cadw drafft?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Cadw delwedd" msgid "Save new handle" msgstr "Gadw'r enw dangos newydd" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Cadw cod QR" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Cadw i fy ffrydiau" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Wedi cadw" @@ -9534,25 +10010,25 @@ msgstr "Wedi cadw" msgid "Saved Feeds" msgstr "Ffrydiau wedi'u Cadw" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Postiadau Wedi'u Cadw" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Wedi'i gadw i'ch ffrydiau" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Dywedwch helo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" msgid "Scam" msgstr "Sgam" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Gwyddoniaeth" @@ -9576,18 +10062,18 @@ msgstr "Sgrolio i'r dde" msgid "Scroll to top" msgstr "Sgrolio i'r brig" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Chwilio" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Chwilio postiadau @{0}" @@ -9662,12 +10148,12 @@ msgstr "Chwilio'r ieithoedd" msgid "Search my posts" msgstr "Chwiliwch fy mhostiadau" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Chwiliwch am bostiadau" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Chwilio proffiliau" msgid "Search..." msgstr "Chwilio..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Chwilio am broffiliau" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Mae angen cam diogelwch" @@ -9759,7 +10245,7 @@ msgstr "Dewis {langName}" msgid "Select a color" msgstr "Dewiswch liw" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Dewis rheswm" @@ -9828,7 +10314,7 @@ msgstr "Dewiswch GIF" msgid "Select GIF \"{0}\"" msgstr "Dewiswch GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Dewis aelodau o grŵp sgwrsio" @@ -9850,7 +10336,7 @@ msgstr "Dewiswch iaith..." msgid "Select languages" msgstr "Dewiswch ieithoedd" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Dewis gwasanaeth cymedroli" @@ -9904,11 +10390,11 @@ msgstr "Dewiswch eich diddordebau o'r dewisiadau isod" msgid "Select your preferred language for translations in your feed." msgstr "Dewiswch eich dewis iaith cyfieithu'ch ffrydiau." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Dewiswch eich hoff sianeli hysbysu" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Dyw dewis mathau lluosog o gyfryngau ddim yn cael ei gynnal." @@ -9921,9 +10407,9 @@ msgstr "Ymddygiadau hunan niweidiol neu beryglus" msgid "Send code" msgstr "Anfon cod" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Anfon e-bost" @@ -9935,11 +10421,11 @@ msgstr "Anfon e-bost" msgid "Send error report" msgstr "Anfon adroddiad gwall" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Anfonwch adborth" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Anfonwch neges" @@ -9952,7 +10438,7 @@ msgstr "Anfon postiad at {name}" msgid "Send post to..." msgstr "Anfonwch bostiad i..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Anfon adroddiad at {title}" @@ -9960,7 +10446,7 @@ msgstr "Anfon adroddiad at {title}" msgid "Send the message from your phone" msgstr "Anfon y neges o'ch ffôn" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Anfonwch trwy neges uniongyrchol" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Anfonwyd ar {0}" @@ -10015,14 +10501,14 @@ msgstr "Rhowch eich dyddiad geni isod a byddwn yn eich cael yn ôl i bostio a da msgid "Sets email for password reset" msgstr "Yn gosod e-bost ar gyfer ailosod cyfrinair" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Gosodiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Gosodiadau gweithgareddau gan eraill" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Gosodiadau hysbysiadau hoffi" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Gosodiadau hysbysiadau crybwyll" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Gosodiadau hysbysiadau dilynwr newydd" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Gosodiadau hysbysiadau popeth arall" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Gosodiadau hysbysiadau hoffi eich ail bostiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Gosodiadau hysbysiadau ail bostiadau eich ail bostiadau" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Gosodiadau hysbysiadau dyfynnu" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Gosodiadau hysbysiadau ateb" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Gosodiadau hysbysiadau ail bostio" @@ -10079,16 +10565,19 @@ msgstr "Gweithgaredd rhywiol neu noethni erotig." msgid "Sexually Suggestive" msgstr "Rhywiol Awgrymiadol" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Rhannu" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Rhannwch beth bynnag" @@ -10097,16 +10586,21 @@ msgstr "Rhannwch beth bynnag" msgid "Share author DID" msgstr "Rhanwch DID awdur" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Rhannu delwedd" +#: 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 "Rhannwch ddolen" @@ -10114,6 +10608,11 @@ msgstr "Rhannwch ddolen" msgid "Share link dialog" msgstr "Deialog rhannu dolen" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Rhannu postiad i:// URI" msgid "Share QR code" msgstr "Rhannwch god QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Rhannwch y ffrwd hon" @@ -10142,8 +10641,8 @@ msgstr "Rhannwch y pecyn cychwynnol hwn a helpwch bobl i ymuno â'ch cymuned ar #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Rhannu drwy..." @@ -10151,7 +10650,7 @@ msgstr "Rhannu drwy..." msgid "Share your contacts to find friends" msgstr "Rhannwch eich cysylltiadau er mwyn darganfod ffrindiau" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Profwr Dewisiadau Rhannu" @@ -10167,16 +10666,16 @@ msgstr "Dangos testun amgen" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Dangos beth bynnag" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Dangos label awtomatiaeth" @@ -10197,8 +10696,8 @@ msgstr "Dangos dewisiadau cyfaddasu" msgid "Show group chat updates" msgstr "Dangos diweddariadau grŵp sgwrsio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Dangos llai fel hyn" @@ -10219,8 +10718,8 @@ msgstr "Dangos digwyddiadau byw yn eich Ffrwd Darganfod" msgid "Show More" msgstr "Dangos Rhagor" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Dangos rhagor fel hyn" @@ -10246,8 +10745,8 @@ msgstr "Dangos atebion" msgid "Show replies as" msgstr "Dangos atebion fel" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Dangos ateb i bawb" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Dangos rhybudd a hidlo o ffrydiau" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Dangos pan fyddwch yn fyw" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Yn dangos manylion pryd cafodd y postiad hwn ei chreu" @@ -10297,15 +10796,17 @@ msgstr "Yn dangos y cynnwys" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Mewngofnodi neu greu cyfrif" msgid "Sign in or create your account to join the conversation!" msgstr "Mewngofnodwch neu crëwch eich cyfrif i ymuno â'r sgwrs!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Mewngofnodwch i gyfrif nad yw wedi'i restru" @@ -10337,8 +10842,12 @@ msgstr "Mewngofnodwch i gyfrif nad yw wedi'i restru" msgid "Sign in to Bluesky or create a new account" msgstr "Mewngofnodwch i Bluesky neu crëwch gyfrif newydd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Mewngofnodwch i weld y postiad" @@ -10348,9 +10857,9 @@ msgstr "Mewngofnodwch i weld y postiad" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Allgofnodi" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Allgofnodi" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Allgofnodi?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Hepgor postiadau gwag?" @@ -10405,7 +10914,7 @@ msgstr "Hepgor y cyflwyniad a chychwyn defnyddio'ch cyfrif" msgid "Skip to next step" msgstr "Mynd i'r cam nesaf" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "sleid" @@ -10413,7 +10922,7 @@ msgstr "sleid" msgid "Smaller" msgstr "Llai" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Yn tewi'r nodyn atgoffa" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Gadawodd rhywun y grŵp" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Ymateb rhywun oedd {0}" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "Mae rhywun wedi'i dynnu o'r grŵp" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Doedd rhywbeth ddim yn hollol iawn gyda'r data rydych yn ceisio'i adrodd. Cysylltwch â'n cefnogaeth." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Aeth rhywbeth o'i le" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Aeth rhywbeth o'i le!" msgid "Something went wrong. Please try again in a moment." msgstr "Aeth rhywbeth o'i le. Ceisiwch eto cyn bo hir." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Aeth rhywbeth o'i le. Ceisiwch eto." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Rhywbeth o'i le? Rhowch wybod i ni." @@ -10564,11 +11078,16 @@ msgstr "Sbam neu ymddygiad annilys neu dwyllodrus" msgid "Sports" msgstr "Chwaraeon" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Dechreuwch sgwrs, a bydd yn ymddangos yma." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Cychwyn sgwrs newydd" @@ -10582,17 +11101,17 @@ msgstr "Dechreuwch ychwanegu pobl" msgid "Start adding people!" msgstr "Dechreuwch ychwanegu pobl!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Cychwyn sgwrsio" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Dechreuwch sgwrs gyda {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pecyn Cychwyn" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Llyfr stori" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Ffrydio ar Twitch? Gosodwch eich statws ar Bluesky i ychwanegu bathodyn i'ch afatar. Bydd ei dapio'n anfon pobl i'ch ffrwd." @@ -10671,8 +11190,8 @@ msgstr "Ffrydio ar Twitch? Gosodwch eich statws ar Bluesky i ychwanegu bathodyn #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Cyflwyno" @@ -10684,9 +11203,9 @@ msgstr "Cyflwyno apêl" msgid "Submit Appeal" msgstr "Cyflwyno Apêl" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Cyflwyno adroddiad" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Tanysgrifio" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Llwyddiant" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Llwyddiant!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Wedi'i ddilysu'n llwyddiannus" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Awgrymwyd" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Machlud Haul" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Cymorth" msgid "Support for this feature in your country has not been enabled yet! Please check back later." 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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Newid cyfrif" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Newid cyfrifon" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Newid i {0}" @@ -10824,11 +11347,15 @@ msgstr "Cofnod system" msgid "Tags only" msgstr "Tagiau'n unig" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "Tapiwch i gydnabod eich bod yn deall ac yn cytuno i'r diweddariadau hyn msgid "Tap to close context menu" msgstr "Tapiwch i gau'r ddewislen cyd-destun" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tapiwch i gau" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "Tapio i dynnu" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Tapio i dynnu eich {0} ymateb" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "Tapio i geisio eto" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Tapio i ddangos {0} ymateb" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tapio i ddangos pob ymateb" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tapio i weld ymatebion" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Telerau Gwasanaeth" @@ -10939,7 +11484,7 @@ msgstr "Testun a thagiau" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Maes mewnbwn testun" @@ -10981,9 +11526,9 @@ msgstr "Dyna i gyd, bobl!" msgid "That's everything!" msgstr "Dyna bopeth!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Bydd y cyfrif yn gallu rhyngweithio â chi ar ôl ei ddadrwystro." @@ -11049,6 +11594,11 @@ msgstr "Bydd y gosodiadau canlynol yn cael eu defnyddio fel eich rhagosodiadau w msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Mae'r gyfraith yn eich ardal yn gofyn i chi ddilysu eich bod yn oedolyn er mwyn cael mynediad at rhai nodweddion. Tapiwch i ddarllen rhagor." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Mae'r postiad rydych yn ateb iddo wedi ei farcio fel wedi ei ysgrifennu yn {suggestedLanguageName} gan ei awdur. Hoffech chi ateb yn <0>{suggestedLanguageName}?" @@ -11057,9 +11607,9 @@ msgstr "Mae'r postiad rydych yn ateb iddo wedi ei farcio fel wedi ei ysgrifennu msgid "The Privacy Policy has been moved to <0/>" msgstr "Mae'r Polisi Preifatrwydd wedi'i symud i <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Thema" 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 "Mae yna derfyn ar ba mor aml fedrwch chi newid eich dyddiad geni. Bosib y bydd rhaid i chi aros am ddiwrnod neu ddau yn ei ddiweddaru eto." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Does dim dolen gwahodd ar gyfer y grŵp sgwrsio hwn." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Roedd problem llwytho GIFau. Gwiriwch eich cysylltiad â cheisio eto." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bu anhawster wrth nôl postiadau. Tapiwch yma i geisio eto." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Bu anhawster wrth ddiweddaru'ch ffrydiau, gwiriwch eich cysylltiad rhyngrwyd a rhowch gynnig arall arni." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Bu anhawster! {0}" @@ -11221,6 +11774,14 @@ msgstr "Dymach gosodiadau rhagosodedig" msgid "These settings only apply to the Following feed." msgstr "Dim ond i'r ffrwd Dilyn mae'r gosodiadau hyn yn berthnasol." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Mae {screenDescription} hwn wedi'i fflagio:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Bydd yr apêl hon yn cael ei hanfon at <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Bydd yr apêl hon yn cael ei hanfon at wasanaeth cymedroli Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Bydd yr apêl hon yn cael ei hanfon at wasanaeth cymedroli Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Mae'r awdur hwn wedi dewis gwneud ei bostiadau'n weladwy ddim ond i bobl sydd wedi mewngofnodi." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Mae'r botwm yma'n gadael i bobl eraill agor yr ap Germ DM i anfon neges atoch chi. Gallwch reoli ei welededd o'r ap Germ DM, neu ddatgysylltu eich cyfrif Bluesky o Germ DM yn llwyr drwy glicio'r botwm isod." @@ -11271,11 +11832,21 @@ msgstr "Mae'r botwm yma'n gadael i bobl eraill agor yr ap Germ DM i anfon neges msgid "This chat has ended" msgstr "Mae'r sgwrs yma wedi gorffen" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Mae'r sgwrs yma wedi'i chloi" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Cafodd y sgwrs hon ei datgysylltu" @@ -11310,7 +11881,11 @@ msgstr "Dyw'r cynnwys hwn ddim ar gael oherwydd bod un o'r defnyddwyr dan sylw w msgid "This content is not viewable without a Bluesky account." msgstr "Dyw'r cynnwys hwn ddim yn weladwy heb gyfrif Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Mae'r sgwrs hon gyda chyfrif sydd wedi'i ddileu neu wedi'i chau. Pwyswch am ddewisiadau" @@ -11318,7 +11893,7 @@ msgstr "Mae'r sgwrs hon gyda chyfrif sydd wedi'i ddileu neu wedi'i chau. Pwyswch msgid "This draft will be permanently deleted." msgstr "Bydd y drafft hwn yn cael ei ddileu'n barhaol." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Mae'r cyfeiriad e-bost hwn eisoes wedi'i gysylltu â'ch cyfrif." @@ -11356,11 +11931,15 @@ msgstr "Mae'r ffrwd hon yn wag." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Dyw'r ffrwd hon ddim ar-lein bellach. Rydym yn dangos <0>Discover yn ei lle." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Mae'r handlen hon wedi'i chadw. Rhowch gynnig ar un arall." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Doedd dim modd defnyddio'r ddelwedd hon. Rhowch gynnig ar fformar fel .j msgid "This information is private and not shared with other users." msgstr "Mae'r wybodaeth yma'n breifat ac nid yw'n cael ei rannu gyda defnyddwyr eraill." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Mae hyn yn gyflwr gwag" @@ -11377,7 +11964,7 @@ msgstr "Mae hyn yn gyflwr gwag" msgid "This is not a valid link" msgstr "Dyw hon ddim yn ddolen ddilys" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Mae'r label yma'n gadael i'r byd wybod fod y cyfrif yma'n un awtomatedig. Os wedi'i droi ymlaen, bydd y label hwn yn ymddangos nesaf at enw'r cyfrif hwn ar eu proffil a phostiadau. Mae modd ei droi ymlaen neu i ffwrdd ar unrhyw adeg." @@ -11410,13 +11997,17 @@ msgstr "Mae'r rhestr hon - a grëwyd gennych chi - yn cynnwys achosion posibl o msgid "This list is empty." msgstr "Mae'r rhestr hon yn wag." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Mae'r postiad hwn yn honni iddo gael ei greu ar <0>{0}, ond fe'i gwelwyd gyntaf gan Bluesky ar <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Dim ond ar gyfer aelodau sydd wedi mewngofnodi mae'r postiad hwn yn wela msgid "This post was deleted by its author" msgstr "Cafodd y postiad hwn ei ddileu gan yr awdur" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Mae awdur y postiad hwn wedi analluogi postiadau dyfyniadau." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Mae'r proffil hwn yn weladwy dim ond i ddefnyddwyr sydd wedi mewngofnodi. Ni fydd yn weladwy i bobl nad ydyn nhw wedi mewngofnodi." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Bydd yr ateb hwn yn cael ei drefnu mewn adran gudd ar waelod eich edefyn a bydd yn tewi hysbysiadau ar gyfer atebion dilynol - i chi'ch hun ac i eraill." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Dim ond ar gyfer sgyrsiau grŵp mae'r sgrin hon ar gael." @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Does gan y defnyddiwr hwn ddim dilynwyr." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "Bydd hyn yn dileu eich cyfrif Bluesky <0>{currentHandle} ac unrhyw d msgid "This will remove @{0} from the quick access list." msgstr "Bydd hyn yn tynnu @{0} o'r rhestr mynediad cyflym." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Bydd hyn yn tynnu'ch postiad o'r postiad dyfynnu hwn ar gyfer pob defnyddiwr, ac yn rhoi dalfan yn ei le." @@ -11574,7 +12166,7 @@ msgstr "Dewisiadau Edafedd" msgid "Threaded" msgstr "Edafwyd" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Dewisiadau Edafedd" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "I analluogi'r dull e-bost 2FA, dilyswch eich mynediad i'r cyfeiriad e-bost." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "I analluogi eich dull 2FA e-bost, dilyswch eich mynediad i <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Brig" msgid "Top replies first" msgstr "Prif atebion yn gyntaf" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Pwnc" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Cyfieithu" @@ -11667,8 +12259,8 @@ msgstr "Wedi cyfieithu" msgid "Translating" msgstr "Yn cyfieithu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Yn cyfieithu…" @@ -11702,7 +12294,7 @@ msgstr "Fideos yn Trendio" msgid "Trolling" msgstr "Trolio" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Mae ymddiriedaeth yn deillio o berthnasoedd, cymunedau, a chyd-destun sy'n cael eu rhannu, felly rydym hefyd yn galluogi <0>dilyswyr dibynadwy: sefydliadau sy'n gallu cyhoeddi dilysiad yn uniongyrchol." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Rhowch gynnig ar derm chwilio gwahanol, neu <0>ddarllen am sut i ddefnyddio hidlau chwilio." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Ceisia eto" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Ceisia eto" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Rhowch gynnig ar Google Translate" +#: 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 "Teledu" @@ -11763,13 +12369,17 @@ msgstr "Methu cysylltu â'ch gwasanaeth. Gwiriwch eich cysylltiad rhyngrwyd." msgid "Unable to delete" msgstr "Methu dileu" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Methu canfod y derbynnydd rwyf wedi ei ddewis." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Dim ar gael" msgid "Unavailable feed information" msgstr "Manylion ffrwd anhysbys" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Dadflocio" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Dadflocio" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Dadrwystro {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Dadrwystro cyfrif" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Dadrwystro Cyfrif?" @@ -11837,8 +12452,8 @@ msgstr "Rhestr ddadrwystro" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Dadwneud" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Dad-wneud ail-bostio ({0, plural, one {# ail-bostio} other {# ail-bostio}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Dad-ddilyn {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Dad-ddilyn y cyfrif" @@ -11872,7 +12487,7 @@ msgstr "Dad-ddilyn y cyfrif" msgid "Unfollows the user" msgstr "Dad-ddilyn defnyddiwr" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Yn anffodus, nid yw un o'ch labelwyr wedi'u tanysgrifio'n cefnogi'r math yma o adroddiad." @@ -11884,14 +12499,6 @@ msgstr "Yn anffodus, mae'r dyddiad geni rydych wedi ei gadw i'ch proffil yn eich msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Yn anffodus, mae'ch oed yn awgrymu nad ydych yn ddigon hen i gael mynediad ar Bluesky yn eich ardal chi." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Dadwahodd" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Dad wahodd {displayName} o'r grŵp sgwrsio yma" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Dilysydd anhysbys" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Dad-hoffi" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Dad-hoffi ({0, plural, one {# yn hoffi} other {# yn hoffi}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Datgloi sgwrs" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Datgloi'r grŵp sgwrsio yma" @@ -11939,14 +12546,14 @@ msgstr "Dad-dewi" msgid "Unmute {0}" msgstr "Dad-dewi {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Dad-dewi cyfrif" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Dad-dewi sgwrs" @@ -11955,12 +12562,12 @@ msgstr "Dad-dewi sgwrs" msgid "Unmute list" msgstr "Dad-dewi rhestr" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Dad-dewi'r grŵp sgwrsio hwn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Dad-dewi'r edefyn" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Dad-binio" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dad-binio ffrwd" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Dad-bioio o'r cartref" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Dad-binio o'r proffil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Dad-binio'r rhestr cymedroli" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Wedi'i ddad-binio {0} o'r Cartref" @@ -12030,14 +12637,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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Cynnwys clipfwrdd heb ei cefnogi" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Math o fideo sydd ddim yn cael ei gynnal: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Diweddaru" msgid "Update <0>{displayName} in Lists" msgstr "Diweddaru <0>{displayName} yn y Rhestrau" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Diweddaru e-bost" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Diweddaru dolen gwahodd" @@ -12065,11 +12680,15 @@ msgstr "Diweddaru dolen gwahodd" msgid "Update to {domain}" msgstr "Diweddaru i {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Diweddarwch eich ap i'r fersiwn diweddaraf er mwyn ymuno!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Diweddaru eich e-bost" @@ -12080,17 +12699,17 @@ msgstr "Diweddaru eich e-bost" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Wedi methu diweddaru atodiad dyfyniad" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Wedi methu diweddaru gwelededd ateb" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Llwytho lun i fyny yn lle hynny" @@ -12098,39 +12717,40 @@ msgstr "Llwytho lun i fyny yn lle hynny" msgid "Upload a text file to:" msgstr "Llwytho ffeil testun i fyny i:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Llwytho i fyny o'r Camera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Llwytho i fyny o'r Ffeiliau" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Llwytho i fyny o'r Llyfrgell" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Yn llwytho'r GIF..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Wrthi'n lwytho lluniau i fyny..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Wrthi'n lwytho dolen llun bach i fyny..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Wrthi'n llwytho fideo i fyny..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "defnyddiwr" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Rhwystro defnyddiwr" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Rhestr defnyddwyr gan {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Rhestr defnyddwyr gan {0}" @@ -12255,12 +12875,12 @@ msgstr "defnyddwyr yn cael eu dilyn gan <0>@{0}" msgid "users following <0>@{0}" msgstr "defnyddwyr yn dilyn <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Defnyddwyr rwy'n eu dilyn" @@ -12277,7 +12897,7 @@ msgstr "Methodd y dilysu, ceisiwch eto." msgid "Verification settings" msgstr "Gosodiadau dilysu" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Gosodiadau Dilysu" @@ -12304,8 +12924,8 @@ msgstr "Dilysu eto" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Dilysu cod" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Dilysu Cofnod DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Dilysu'r cod e-bost" @@ -12349,7 +12969,7 @@ msgstr "Dilysu'r cyfrif hwn?" msgid "Verify your age" msgstr "Dilyswch eich oed" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Fersiwn {0}" msgid "Video" msgstr "Fideo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Methodd y fideo â phrosesu" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Ffrwd Fideo" @@ -12419,7 +13039,7 @@ msgstr "Fideo heb ei ganfod." msgid "Video settings" msgstr "Gosodiadau fideo" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Fideo wedi'i lwytho i fyny" @@ -12432,18 +13052,18 @@ msgstr "Fideo: {0}" msgid "Videos" msgstr "Fideos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Edrych" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Gweld proffil {0}" @@ -12467,20 +13087,15 @@ msgstr "Gweld proffil {0}" msgid "View {0}’s profile" msgstr "Gweld proffil {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Gweld proffil {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Gweld proffil defnyddiwr sydd wedi'i rwystro" @@ -12503,10 +13118,18 @@ msgstr "Manylion" msgid "View full thread" msgstr "Gweld yr edefyn llawn" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Gweld ceisiadau sgwrsio newydd" +#: 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:56 msgid "View information about these labels" msgstr "Gweld gwybodaeth am y labeli hyn" @@ -12522,7 +13145,7 @@ msgstr "Gweld mwy" msgid "View more trending videos" msgstr "Edrychwch ar ragor o fideos sy'n trendio" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Edrych ar y postiad" @@ -12539,10 +13162,10 @@ msgstr "Gweld proffil" msgid "View profile banner" msgstr "Gweld baner proffil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Gweld yr afatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Gweld y ddolen gwahodd ar gyfer y grŵp sgwrsio hwn" @@ -12563,7 +13186,7 @@ msgstr "Gweld y gwasanaeth labelu sy'n cael ei ddarparu gan @{0}" msgid "View this user's verifications" msgstr "Gweld dilysiadau'r defnyddiwr hwn" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Gweld defnyddwyr sy'n hoffi'r ffrwd hon" @@ -12596,8 +13219,8 @@ msgstr "Gweld eich cyfrifon wedi tewi" msgid "View your verifications" msgstr "Gweld eich dilysiadau" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Yn gweld delwedd lawn" @@ -12640,8 +13263,8 @@ msgstr "Rhybudd cynnwys" msgid "Warn content and filter from feeds" msgstr "Rhybudd cynnwys a hidlydd o ffrydiau" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Gwyliwch nawr" @@ -12665,11 +13288,15 @@ msgstr "Methu canfod unrhyw ganlyniad ar gyfer y tag hwnnw." msgid "We couldn't find any results for that topic." msgstr "Methu ddod o hyd i ganlyniadau'r pwnc hwnnw." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Methu lwytho'r sgwrs hon" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "Wedi methu lwytho gosodiadau'r sgwrs hon" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Rydym yn argymell dewis o leiaf ddau ddiddordeb." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Anfonwyd e-bost at <0>{0} sy'n cynnwys dolen. Cliciwch arno i gwblhau'r broses dilysu e-bost." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Doedden ni ddim yn gallu penderfynu a ydych yn cael llwytho fideos i fyny. Ceisiwch eto." @@ -12744,12 +13371,12 @@ msgstr "Doedd dim modd i ni dderbyn y dilysiad oherwydd mater cysylltu. Gall gyr msgid "We will let you know when your account is ready." msgstr "Byddwn yn rhoi gwybod i chi pan fydd eich cyfrif yn barod." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Byddwn yn gadael i chi wybod pan fyddwn yn dod o hyd i'ch ffrindiau." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Byddwn yn anfon e-bost at <0>{0} sy'n cynnwys dolen. Cliciwch arno i gwblhau'r broses dilysu e-bost." @@ -12779,12 +13406,12 @@ msgstr "Rydym yn cael anawsterau cychwyn y broses sicrhau oed ar gyfer eich cyfr msgid "We're having network issues, try again" msgstr "Rydym yn cael problemau rhwydwaith, ceisiwch eto" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Rydym yn cael anawsterau rhwydwaith, ceisiwch eto" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Mae'n ddrwg gennym! Mae'r postiad rydych chi'n ymateb iddo wedi'i dileu." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Mae'n ddrwg gennym! Gallwn ni ddim dod o hyd i'r dudalen yr oeddech yn chwilio amdani." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Beth ydych chi am ei alw'ch pecyn cychwyn?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Beth sy'n digwydd?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Pan fyddwch chi'n tapio ar dic, gallwch weld pa sefydliadau sydd wedi rhoi dilysiad." @@ -12878,7 +13505,7 @@ msgstr "Pan fyddwch chi'n tapio ar dic, gallwch weld pa sefydliadau sydd wedi rh msgid "Who can interact with this post?" msgstr "Pwy all ryngweithio â'r postiad hwn?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Pwy sy'n gallu ymuno â'r grŵp hwn a sut" @@ -12887,13 +13514,13 @@ msgstr "Pwy sy'n gallu ymuno â'r grŵp hwn a sut" msgid "Who can reply" msgstr "Pwy all ateb" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Pwy sy'n gallu dilysu?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Wps!" @@ -12939,7 +13566,7 @@ msgstr "Pam dylai'r pecyn cychwyn hwn gael ei adolygu?" msgid "Why should this user be reviewed?" msgstr "Pam dylai'r defnyddiwr hwn gael ei adolygu?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Hoffech chi rwystro'r defnyddiwr hwn a/neu ddileu'r sgwrs hon?" @@ -12951,7 +13578,7 @@ msgstr "" 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Hoffech chi gadw hwn fel drafft i'w olygu'n nes ymlaen?" msgid "Write a post" msgstr "Ysgrifennu postiad" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Ysgrifennwch bostiad" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Ysgrifennwch eich ateb" @@ -12978,7 +13605,8 @@ msgstr "Awduron" msgid "Wrong DID returned from server. Received: {0}" msgstr "DID anghywir wedi'i ddychwelyd o'r gweinydd. Derbyniwyd: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Y math anghywir o sgwrs" @@ -13005,11 +13633,11 @@ msgstr "Iawn, dileu fy nghyfrif" msgid "Yes, delete this starter pack" msgstr "Iawn, dilëu'r pecyn cychwyn hwn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Iawn, datgysylltu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Iawn, cuddio" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "Rydych chi'n Fyw" msgid "You are no longer live" msgstr "Dydych chi ddim yn fyw mwyach" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Does dim caniatâd i chi lwytho fideos i fyny." @@ -13117,21 +13745,30 @@ msgstr "Gallwch beidio â bod yn rhan o hyn a dileu eich data" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Gallwch ddewis os oes gan hysbysiadau sgyrsiau sain yn y gosodiadau sgwrsio o fewn yr ap" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Gallwch barhau â sgyrsiau parhaus beth bynnag yw'r gosodiad rydych chi'n ei ddewis." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Gallwch nawr ddewis i gael gwybod pan fydd pobl benodol yn postio. Os oes 'na bobl rydych eisiau chi derbyn diweddariadau amserol ganddyn nhw, ewch i'w proffil a chwilio am yr eicon cloch wrth eu botwm dilyn." +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Gallwch nawr fewngofnodi gyda'ch cyfrinair newydd." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft." @@ -13139,11 +13776,11 @@ msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Dim ond 1000 nod y mae modd eu cadw mewn drafft. Hoffech chi ddileu'r postiad hwn cyn edrych ar eich drafftiau?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Dim ond un GIF ar y tro mai modd ei ddewis." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Dim ond un fideo ar y tro mai modd ei ddewis." @@ -13155,10 +13792,10 @@ msgstr "Gallwch ailagor eich cyfrif i barhau i fewngofnodi. Bydd defnyddwyr erai 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Gallwch ddewis hyd at {MAX_IMAGES, plural, other {# delwedd}} i gyd." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,10 +13803,15 @@ msgstr "Gallwch ddewis hyd at {MAX_IMAGES, plural, other {# delwedd}} i gyd." msgid "You can update this later from your settings." msgstr "Gallwch ddiweddaru hwn yn ddiweddarach o'ch gosodiadau." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 -msgid "You cannot create a group chat yet." +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "Does dim modd i chi greu sgwrs grŵp eto." + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13197,6 +13839,10 @@ msgstr "Nid oes gennych unrhyw ffrydiau wedi'u cadw." msgid "You got here first" msgstr "Chi sydd wedi cyrraedd yma gyntaf" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Rhaid eich bod yn o leiaf 13 oed i ddefnyddio Bluesky. Darllenwch ein <0>Amodau Gwasanaeth am ragor o wybodaeth." @@ -13332,11 +13982,12 @@ msgstr "Rhaid eich bod yn o leiaf 13 oed i ddefnyddio Bluesky. Darllenwch ein <0 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Rhaid i chi fod yn dilyn o leiaf saith o bobl eraill i gynhyrchu pecyn cychwyn." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell ffotograffau i gadw cod QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Rhaid i chi ganiatáu mynediad i'ch llyfrgell cyfryngau." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Eich ymateb yw {0}" @@ -13368,8 +14023,13 @@ msgstr "Eich ymateb i {0} yw {target}" msgid "You recently changed your birthdate" msgstr "Rydych wedi newid eich dyddiad geni'n ddiweddar" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Byddwch yn cael eich allgofnodi o'ch holl gyfrifon." @@ -13378,11 +14038,11 @@ msgstr "Byddwch yn cael eich allgofnodi o'ch holl gyfrifon." msgid "You will no longer receive notifications for {0}" msgstr "Byddwch chi ddim yn derbyn hysbysiad gan {0} eto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Fyddwch chi ddim yn derbyn hysbysiadau ar gyfer y trywydd hwn bellach" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Byddwch nawr yn derbyn hysbysiadau ar gyfer yr edefyn hwn" @@ -13390,12 +14050,12 @@ msgstr "Byddwch nawr yn derbyn hysbysiadau ar gyfer yr edefyn hwn" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Byddwch yn derbyn e-bost gyda \"cod ailosod.\" Rhowch y cod hwnnw yma, yna rhowch eich cyfrinair newydd." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Bydd dim modd ichi ail ymuno oni bai i chi gael eich gwahodd." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Chi: {message}" @@ -13429,6 +14089,10 @@ msgstr "Byddwch chi'n cychwyn derbyn hysbysiadau gan {0}!" msgid "You'll stay updated with these feeds" msgstr "Byddwch yn derbyn y diweddaraf am y ffrydiau hyn" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Chi fydd nesaf" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Rydych wedi cyrraedd uchafswm y nifer o ddrafftiau" @@ -13475,11 +14139,11 @@ msgstr "Rydych chi wedi cyrraedd y nifer uchaf o geisiadau sy'n cael eu caniatá msgid "You've reached the start of the active content." msgstr "Rydych wedi dod i ddechrau'r cynnwys gweithredol." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o feitiau)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Rydych wedi cyrraedd terfyn dyddiol llwytho fideos i fyny (gormod o fideos)" @@ -13499,10 +14163,18 @@ msgstr "Mae eich cyfrif wedi'i ddileu, hwyl! ✌️" msgid "Your account has been suspended" msgstr "Mae eich cyfrif wedi'i atal" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Nid yw eich cyfrif yn ddigon hen eto i lwytho fideos i fyny. Ceisiwch eto yn nes ymlaen." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Mae modd llwytho eich storfa cyfrif i lawr, sy'n cynnwys yr holl gofnodion data cyhoeddus, fel ffeil \"CAR\". Dyw'r ffeil hon ddim yn cynnwys mewnblaniadau cyfryngau, megis delweddau, na'ch data preifat, y mae'n rhaid eu nôl nhw ar wahân." @@ -13519,7 +14191,7 @@ msgstr "Mae eich apêl wedi'i chyflwyno. Os bydd eich apêl yn llwyddo, byddwch msgid "Your birth date" msgstr "Eich dyddiad geni" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Mae eich sgyrsiau wedi'u hanalluogi" @@ -13527,11 +14199,11 @@ msgstr "Mae eich sgyrsiau wedi'u hanalluogi" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Bydd eich dewis yn cael ei gofio ar gyfer dolenni yn y dyfodol. Gallwch ei newid ar unrhyw adeg yn y gosodiadau." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Mae eich cysylltiad {firstAuthorLink} ar Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Mae eich cysylltiad {firstAuthorName} ar Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Eich e-bost" msgid "Your email appears to be invalid." msgstr "Mae'n ymddangos bod eich e-bost yn annilys." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Dyw eich e-bost heb ei ddilysu eto. Dilyswch eich e-bost er mwyn mwynhau holl nodweddion Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Mae'r ffrwd ganlynol yn wag! Dilynwch ragor ddefnyddwyr i weld beth sy'n msgid "Your full handle will be <0>@{0}" msgstr "Eich enw dangos llawn fydd <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Mae eich lleoliad wedi'i ddiweddaru." msgid "Your muted words" msgstr "Eich geiriau wedi'u tewi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Bydd eich enw, afatar ac enw'r grŵp sgwrsio yn weladwy i bawb." +#: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Mae eich postiad wedi'i anfon" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Mae eich postiadau wedi'u hanfon" @@ -13635,7 +14307,7 @@ msgstr "Mae eich postiadau wedi'u hanfon" msgid "Your preferred language" msgstr "Eich dewis iaith" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Eich llun proffil" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Mae eich ateb wedi'i anfon" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Bydd eich adroddiad yn cael ei anfon at <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Mae'r diddordebau rydych wedi'u dewis yn ein helpu i ddarparu cynnwys sy'n bwysig i chi." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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." diff --git a/src/locale/locales/da/messages.po b/src/locale/locales/da/messages.po index fef879af13..7e740df995 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorien \"{interestsDisplayName}\" (aktiv)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(indeholder indlejret indhold)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# like} other {# likes}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# medlem} other {# medlemmer}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minut} other {# minutter}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# måned} other {# måneder}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# ny anmodning om deltagelse} other {# nye anmodninger om deltagelse}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# personer}} reagerede – {1}" @@ -109,17 +118,17 @@ msgstr "{0, plural, one {# sekund} other {# sekunder}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# ulæst besked} other {# ulæste beskeder}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" -msgstr "" +msgstr "{0, plural, one {#m} other {#m}}" #. How many months have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>i <1>tekst og tags" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} føjet til chat" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} og {1} føjet til chat" @@ -206,9 +215,9 @@ msgid "{0} following" msgstr "{0} følger" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" -msgstr "" +msgstr "{0} blokerer dig" #. placeholder {0}: sanitizeHandle(profile.handle) #: src/features/liveNow/components/LiveStatusDialog.tsx:84 @@ -264,7 +273,7 @@ msgstr "{0} ud af 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reagerede med {1}" @@ -290,7 +299,7 @@ msgstr "{0} blev fjernet fra gruppen" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, en liste af {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0}s profilbillede" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}s profilbillede" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: 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 "{count, plural, one {# chatopdatering} other {# chatopdateringer}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# anmodning} other {# anmodninger}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# ulæst besked} other {# ulæste beskeder}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ anmodninger" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {time} other {timer}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minutter}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fjernede deres verifikationer fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} tilmeldte sig via din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} verificerede dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} fulgte dig tilbage" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} fjernede sin verifikation fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} oprettede sig via din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verificerede dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} fjernede deres verifikationer fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} oprettede sig med din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} verificerede dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} fulgte dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} fulgte dig tilbage" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} likede dit specialbyggede feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} likede dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} likede din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} fjernede sin verifikation fra din konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} videredelte dit opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} videredelte din videredeling" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} oprettede sig via din startpakke" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verificerede dig" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} verificerede dig" msgid "{following} following" msgstr "{following} følger" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} kan ikke tilføjes" @@ -547,7 +606,7 @@ msgstr "{handle} kan ikke tilføjes" msgid "{handle} can't be messaged" msgstr "{handle} kan ikke modtage beskeder" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} kan ikke modtage beskeder" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# time {minutesString}} other {# timer {minutesStri msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# time} other {# timer}}" +#. 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:220 +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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, one {}other {Beskrivelse er for lang. Den maks msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, one {}other {Profilnavn er for langt. Den maksimale længde er # tegn.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Du kan skjule højst # svar.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} reagerede med {0} på {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name}s foretrukne feeds and brugere – kom og vær med!" msgid "{name}'s starter pack" msgstr "{name}s startpakke" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# ulæst besked} other {# ulæste beskeder}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakt fundet} other {# kontakter fundet}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# anmodning} other {# anmodninger}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ anmodninger" @@ -656,6 +725,12 @@ msgstr "{userName} er verificeret" msgid "{userName}'s verifications" msgstr "{userName}s verifikationer" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} og {2, plural, one {# anden} other {# andre}} er #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {følger} other {følgere}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {følger} other {følger}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {like} other {likes}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} other {citater}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {deling} other {delinger}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {gemt} other {gemte}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} medlemmer" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> tilføjede dig" @@ -747,7 +822,7 @@ msgstr "<0>Log ind<1> eller <2>opret en konto<3> <4>for at søge #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 msgid "<0>Tap here to update your location with GPS." -msgstr "" +msgstr "<0>Tryk her for at opdatere din lokalitet med GPS." #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #: src/screens/StarterPack/Wizard/index.tsx:494 @@ -795,8 +870,13 @@ msgstr "Der opstod en netværksfejl. Tjek din internetforbindelse" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Der opstod en netværksfejl. Tjek din internetforbindelse." @@ -804,7 +884,7 @@ msgstr "Der opstod en netværksfejl. Tjek din internetforbindelse." msgid "A new code has been sent" msgstr "En ny kode blev sendt" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "En ny form for verifikation" @@ -827,11 +907,11 @@ msgstr "Et screenshot af en profilside med et klokkeikon ved siden af Følg-knap 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "En valgt modtager følges ikke af afsenderen." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Grov eller diskriminerende adfærd" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Accepter" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Accepter" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Accepter chatanmodning" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Accepter anmodning" @@ -860,17 +950,26 @@ msgstr "Accepter anmodning" msgid "Accept this language suggestion" msgstr "Accepter foreslået sprog" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Accepterede samtaler" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Tilgængelighed" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Tilgængelighedsindstillinger" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Tilgængelighedsindstillinger" msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Konto blokeret" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Konto fulgt" @@ -899,7 +998,7 @@ msgstr "Konto blev suspenderet" msgid "Account is deactivated" msgstr "Konto er deaktiveret" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Kontoudbyder" msgid "Account removed from quick access" msgstr "Konto fjernet fra kvikadgang" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Blokering af konto fjernet" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Konto følges ikke længere" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Konto skjules ikke længere" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Konti med et amøbeformet blåt flueben <0><1/> kan verificere andre. De autoriserede verifikatorer er udvalgt af Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Aktivitet fra andre" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Aktivitetsnotifikationer" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Tilføj" @@ -999,8 +1094,8 @@ msgstr "Tilføj konto" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Tilføj alt-tekst (valgfrit)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Tilføj endnu en konto" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Tilføj endnu et opslag" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Tilføj endnu et opslag til tråd" @@ -1035,7 +1130,7 @@ msgstr "Tilføj appadgangskode" msgid "Add App Password" msgstr "Tilføj appadgangskode" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Tilføj botmærkat til konto" @@ -1043,7 +1138,7 @@ msgstr "Tilføj botmærkat til konto" msgid "Add emoji reaction" msgstr "Tilføj emojireaktion" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Tilføj gruppechatmedlemmer" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Tilføj billede" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Føj medier til opslag" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Tilføj deltagere" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Tilføj yderligere oplysninger (valgfrit)" @@ -1091,6 +1186,10 @@ msgstr "Tilføj personer" msgid "Add people to list" msgstr "Tilføjer brugere til liste" +#: 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 "Tilføj reaktion" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Tilføj din fødselsdato" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Tilføjet af {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Tilføjet via invitationslink" @@ -1165,12 +1264,12 @@ msgstr "Tilføj medlemmer til liste ..." msgid "Additional details (limit 1000 characters)" msgstr "Yderligere oplysninger (maks. 1000 tegn)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Yderligere oplysninger (højst 300 tegn)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "Anmodning om alderstjek" msgid "Age assurance only takes a few minutes" msgstr "Alderstjek tager kun et øjeblik" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "mette@eksempel.dk" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Alle" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Alle {0}" @@ -1278,13 +1377,13 @@ msgstr "Tillad adgang til dine direkte beskeder" msgid "Allow anyone to reply" msgstr "Tillad svar fra svar" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Tillad direkte beskeder fra" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Tillad gruppechatinvitationer fra" @@ -1338,12 +1437,12 @@ msgstr "Har du allerede en konto?" msgid "Already signed in as @{0}" msgstr "Allerede logget ind som @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alt-tekst" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alt-tekst beskriver billeder for blinde og svagtseende brugere og bidrager med kontekst til glæde for alle." @@ -1387,7 +1486,7 @@ msgstr "Der opstod en fejl" msgid "An error occurred" msgstr "Der opstod en fejl" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Der opstod en fejl under komprimering af videoen." @@ -1421,7 +1520,8 @@ msgstr "Der opstod en fejl under indlæsning af videoen. Prøv igen senere." msgid "An error occurred while loading your lists :/" msgstr "Der opstod en fejl ved indlæsning af dine lister :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Der opstod en fejl under lagring af QR-koden!" @@ -1432,11 +1532,11 @@ msgstr "Der opstod en fejl under lagring af QR-koden!" msgid "An error occurred while trying to follow all" msgstr "Der opstod en fejl, da du forsøgte at følge alle" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Der opstod en fejl under upload af videoen. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Der opstod en fejl under upload af videoen. Tjek din internetforbindelse og prøv igen." @@ -1456,24 +1556,28 @@ msgstr "En tegning af profilbilleder, der flyder fra en adressebog ind i Bluesky 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" +#: 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 "Illustration som viser, hvordan Bluesky udvælger autoriserede verifikatorer, som herefter verificerer enkelte brugerkonti." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "En anden årsag, der ikke er omfattet af ovennævnte" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Der opstod en fejl ved oprettelse af gruppechat, prøv igen." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Der opstod en fejl ved åbning af chatten" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Der opstod en fejl. Prøv igen." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Et mockup af en iPhone, der viser Bluesky-appen åbnet på profilen for en verificeret bruger med et blåt flueben ved siden af profilnavnet." @@ -1539,13 +1643,17 @@ msgstr "Alle" msgid "Anyone can interact" msgstr "Alle kan interagere" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 -msgid "Anyone can join instantly" -msgstr "Alle kan melde sig ind direkte" +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +msgid "Anyone can join instantly" +msgstr "Alle kan melde sig ind med det samme" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Alle kan anmode om at blive medlem" @@ -1553,13 +1661,13 @@ msgstr "Alle kan anmode om at blive medlem" #: src/screens/Settings/ActivityPrivacySettings.tsx:117 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:163 msgid "Anyone who follows me" -msgstr "Alle, som følger mig" +msgstr "Alle som følger mig" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Navne på appadgangskoder skal bestå af mindst 4 tegn" msgid "App passwords" msgstr "Appadgangskoder" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Appadgangskoder" @@ -1618,7 +1726,7 @@ msgstr "Klag over livestreamblokering" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Klage afsendt" @@ -1632,14 +1740,14 @@ msgstr "Klag over suspendering" msgid "Appeal Suspension" msgstr "Klag over suspendering" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Klag over afgørelse" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Anvend pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arkiveret fra {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Arkiveret opslag" @@ -1675,7 +1783,7 @@ msgstr "Er du helt, helt sikker?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Er du sikker på, du vil slette appadgangskoden \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Er du sikker på, du vil slette denne besked? Beskeden vil blive slettet hos dig men ikke hos de andre deltagere." @@ -1688,23 +1796,29 @@ msgstr "Er du sikker på, du vil slette denne startpakke" msgid "Are you sure you want to discard your changes?" msgstr "Er du sikker på, du vil kassere dine ændringer?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Er du sikker på, du vil forlade {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Er du sikker på, at du vil forlade denne samtale?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Er du sikker på, du vil forlade denne samtale? Dine beskeder vil blive slettet hos dig men ikke hos modparten." +#: src/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 "Er du sikker på, du vil fjerne dette feed fra dine feeds?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Er du sikker på, du vil kassere dette opslag?" @@ -1724,8 +1838,8 @@ msgstr "Kunst" msgid "Artistic or non-erotic nudity." msgstr "Kunstnerisk og ikkeerotisk nøgenhed." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Vælg emne for algo" @@ -1752,7 +1866,7 @@ msgstr "Botkonto" msgid "Automation label" msgstr "Botmærkat" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Botmærkat" @@ -1767,12 +1881,12 @@ msgstr "Afspil videoer og GIF'er automatisk" msgid "Available" msgstr "Tilgængelig" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Tilgængelig" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Tilgængelig" msgid "Back" msgstr "Tilbage" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Tilbage til Chats" @@ -1832,7 +1948,7 @@ msgstr "Før du opretter eller besvarer et opslag, skal du bekræfte din e-mail. 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Før du kan acceptere denne chatanmodning, skal du først bekræfte din e-mail." @@ -1840,13 +1956,14 @@ msgstr "Før du kan acceptere denne chatanmodning, skal du først bekræfte din msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Før du kan modtage notifikationer om opslag fra {name}, skal du først bekræfte din e-mail." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Før du kan sende beskeder til andre brugere, skal du bekræfte din e-mail." @@ -1874,59 +1991,53 @@ msgstr "Fødselsdato" msgid "Birthday" msgstr "Fødselsdato" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloker" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Bloker {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloker konto" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Bloker konto?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Bloker konto?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloker konti" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Bloker og slet" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Bloker og forlad" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Bloker liste" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bloker eller anmeld" @@ -1936,9 +2047,9 @@ msgstr "Bloker disse konti?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloker bruger" @@ -1946,17 +2057,17 @@ msgstr "Bloker bruger" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloker bruger" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Bloker bruger og/eller slet denne samtale" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Bloker bruger og/eller forlad denne samtale" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blokeret" @@ -1964,14 +2075,12 @@ msgstr "Blokeret" msgid "Blocked accounts" msgstr "Blokerede konti" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokerede konti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig." @@ -1987,7 +2096,7 @@ msgstr "Blokering forhindrer ikke denne mærkningstjeneste fra at sætte mærkat msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokering er offentlig. Blokerede konti kan ikke svare i dine tråde, omtale dig eller på anden måde interagere med dig." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blokering vil ikke spærre for, at der bliver sat mærkater på din konto, men det vil forhindre denne konto fra at svare i dine tråde eller interagere med dig." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan ikke bekræfte den anførte datos gyldighed." @@ -2029,7 +2138,7 @@ msgstr "Bluesky virker bedre med venner!" msgid "Bluesky is more fun with friends" msgstr "Bluesky er sjovere med venner" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky er sjovere med venner! Importer dine kontakter for at se, hvem der allerede er her." @@ -2037,11 +2146,15 @@ msgstr "Bluesky er sjovere med venner! Importer dine kontakter for at se, hvem d msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky er sjovere med venner. Vil du invitere nogle af dine? <0/>" +#: 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 "Bluesky Socials tjenestevilkår" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky vil vælge et antal anbefalede konti fra personer i dit netværk msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky vil ikke vise din profil og dine opslag til udloggede brugere." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky vil løbende verificere populære konti." @@ -2081,6 +2194,10 @@ msgstr "Bøger" msgid "Breaking site rules" msgstr "Brud på fællesskabsregler" +#: 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" @@ -2137,24 +2254,34 @@ msgstr "Om Bluesky" msgid "Button to go back to the home timeline" msgstr "Knap, der går til din hjemmetidslinje" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Af {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Af <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Ved at oprette en konto accepterer du <0>tjenestevilkårene." msgid "By you" msgstr "Af dig" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Annuller" @@ -2248,9 +2384,9 @@ msgstr "Annuller genaktivering og log ud" msgid "Cancel search" msgstr "Annuller søgning" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Kan ikke interagere med en blokeret bruger" @@ -2264,7 +2400,7 @@ msgstr "Undertekster (.vtt)" msgid "Captions & alt text" msgstr "Undertekster og alt-tekst" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "karrusel" @@ -2297,7 +2433,7 @@ msgstr "Vælg appsprog" msgid "Change Handle" msgstr "Skift handle" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Skift moderationstjeneste" @@ -2310,11 +2446,11 @@ msgstr "Skift adgangskode" msgid "Change password dialog" msgstr "Skift adgangskode-dialog" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Skift anmeldelseskategori" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Skift årsag til anmeldelse" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chat slettet" @@ -2361,6 +2497,12 @@ msgstr "Chat slettet" msgid "Chat ended" msgstr "Chat afsluttet" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Chat låst" @@ -2373,59 +2515,68 @@ msgstr "Chatbeskeder – lydløs" msgid "Chat messages - sound" msgstr "Chatbeskeder – med lyd" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat skjult" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "Chatmodtager følges ikke af afsenderen." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Indbakke for chatanmodninger" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Chatanmodninger" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Chatindstillinger" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Chatindstillinger" #: src/components/dms/getSystemMessageInfo.ts:115 msgid "Chat title changed" -msgstr "" +msgstr "Chats titel ændret" #. placeholder {0}: data.newName #: src/components/dms/getSystemMessageInfo.ts:114 msgid "Chat title changed to {0}" -msgstr "" +msgstr "Chats titel ændret til {0}" #: src/components/dms/getSystemMessageInfo.ts:106 msgid "Chat unlocked" msgstr "Chat låst op" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat ikke længere skjult" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" @@ -2479,7 +2630,7 @@ msgstr "Vælg sprog for opslag" msgid "Choose this color as your avatar" msgstr "Vælg farve til din avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Vælg, hvem der kan blive medlem af denne gruppechat, og hvordan." @@ -2558,7 +2709,7 @@ msgstr "Klik her for at logge ud" msgid "Click here to resend the email" msgstr "Klik her for at gensende e-mailen" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Klik her for at starte bekræftelsesprocessen forfra." @@ -2567,20 +2718,20 @@ msgstr "Klik her for at starte bekræftelsesprocessen forfra." msgid "Click here to update your birthdate" msgstr "Klik her for at opdatere din fødselsdato" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Klik her for at opdatere din e-mail" #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 msgid "Click here to view the invite link for this group chat" -msgstr "" +msgstr "Klik her for at se invitationslinket for denne gruppechat" #. placeholder {0}: isCashtag ? tag : `#${tag}` #: src/components/RichTextTag.tsx:56 msgid "Click to open tag menu for {0}" msgstr "Klik for at åbne tagmenuen for {0}" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Klik for at prøve at sende beskeden igen" @@ -2594,28 +2745,30 @@ msgstr "Klik for at prøve at sende beskeden igen" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Klik for at prøve at sende beskeden igen" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Luk" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Luk aktiv dialog" @@ -2647,6 +2800,10 @@ msgstr "Luk aktiv dialog" msgid "Close alert" msgstr "Luk advarsel" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Luk bundpanel" @@ -2657,8 +2814,10 @@ msgstr "Luk bundpanel" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Luk dialog" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Luk billede" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Luk menu" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Luk dialog" @@ -2695,18 +2866,22 @@ msgstr "Luk velkomstdialog" msgid "Closes password update alert" msgstr "Lukker besked om opdatering af adganskode" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Lukker skrivefelt og kasserer udkast til opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Luk brugerliste" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Lukker liste over brugere for en given notifikation" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Tegneserier" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Fælleskabsregler" @@ -2740,12 +2915,12 @@ msgstr "Løs opgaven" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Skriv nyt opslag" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}" @@ -2753,11 +2928,11 @@ msgstr "Skriv opslag på op til {0, plural, one {}other {# tegn}}" msgid "Compose reply" msgstr "Skriv svar" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Komprimerer GIF ..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Komprimerer video..." @@ -2780,7 +2955,7 @@ msgstr "Konfigureres i <0>moderationsindstillinger" msgid "Confirm" msgstr "Bekræft" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Kontakt support" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Kontaktsynkronisering er ikke tilgængelig på denne enhed, da appen ikke har adgang til dine kontakter." @@ -2825,11 +3000,11 @@ msgstr "Kontaktsynkronisering er ikke tilgængelig på denne enhed, da appen ikk msgid "Contact us" msgstr "Kontakt os" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Kontakter importeret" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Kontakter fjernet" @@ -2842,7 +3017,7 @@ msgstr "Indhold og medier" msgid "Content and media" msgstr "Indhold og medier" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Indhold og medier" @@ -2889,7 +3064,7 @@ msgstr "Baggrund for kontekstmenu, klik for at lukke menuen." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Fortsæt tråd" msgid "Continue thread..." msgstr "Fortsæt tråd..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Fortsæt til gruppenavn" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Fortsæt til næste trin" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Samtale" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Samtale slettet" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Samtale slettet" @@ -2939,15 +3114,22 @@ msgstr "Samtale slettet" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" +msgstr "Samtale forladt" + +#: 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:162 msgid "Copied build version to clipboard" msgstr "Kopieret versionsnummer til udklipsholder" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopieret!" msgid "Copies build version to clipboard" msgstr "Kopierer versionsnummer til udklipsholder" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopier" @@ -2997,6 +3184,11 @@ msgstr "Kopier DID" msgid "Copy host" msgstr "Kopier værtsnavn" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Kopier link til liste" msgid "Copy link to post" msgstr "Kopier link til opslag" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Kopier link til profil" @@ -3027,8 +3219,8 @@ msgstr "Kopier link til profil" msgid "Copy link to starter pack" msgstr "Kopier link til startpakke" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Kopier beskedtekst" @@ -3037,12 +3229,12 @@ msgstr "Kopier beskedtekst" msgid "Copy post at:// URI" msgstr "Kopier opslagets at://-URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Kopier opslagets tekst" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Kopier QR-kode" @@ -3052,11 +3244,15 @@ msgstr "Kopier TXT-record" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Ophavsretspolitik" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Kunne ikke forbinde til tilpasset feed" @@ -3065,7 +3261,15 @@ msgstr "Kunne ikke forbinde til tilpasset feed" msgid "Could not connect to feed service" msgstr "Kunne ikke forbinde til feedtjeneste" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Kunne ikke hente opslag" @@ -3073,23 +3277,27 @@ msgstr "Kunne ikke hente opslag" msgid "Could not find profile" msgstr "Kunne ikke finde profil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Kunne ikke følge alle fundne venner – tjek din internetforbindelse." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Kunne ikke følge alle fundne venner. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Kunne ikke forlade chat" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Kunne ikke indlæse feed" @@ -3100,7 +3308,11 @@ msgstr "Kunne ikke indlæse feed" msgid "Could not load list" msgstr "Kunne ikke indlæse liste" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Kunne ikke skjule chat" @@ -3108,11 +3320,19 @@ msgstr "Kunne ikke skjule chat" msgid "Could not process your video" msgstr "Kunne ikke behandle din video" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Kunne ikke gemme ændringer: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Kunne ikke opdatere notifikationsindstillinger" @@ -3139,7 +3359,7 @@ msgstr "Landekode" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Opret" @@ -3153,13 +3373,13 @@ msgstr "Opret en liste" msgid "Create a list from this starter pack" msgstr "Opret en liste ud fra denne startpakke" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Opret en startpakke" @@ -3174,13 +3394,14 @@ msgstr "Opret en startpakke for mig" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Opret en avatar i stedet" @@ -3206,7 +3427,7 @@ msgstr "Opret en avatar i stedet" msgid "Create another" msgstr "Opret endnu en" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Opret gruppechat" @@ -3228,19 +3449,20 @@ msgstr "Opret liste ud fra startpakke" msgid "Create moderation list" msgstr "Opret moderationsliste" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Opret ny konto" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Opret anmeldelse for {0}" @@ -3256,8 +3478,8 @@ msgstr "Opret brugerliste" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Oprettet {0}" @@ -3270,6 +3492,10 @@ msgstr "Skaber er blokeret" msgid "Culture" msgstr "Kultur" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Mørk tilstand" msgid "Date of birth" msgstr "Fødselsdato" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Standard" msgid "Default icons" msgstr "Standardikoner" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Slet appadgangskode" msgid "Delete app password?" msgstr "Slet appadgangskode?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Slet chat" @@ -3378,19 +3612,19 @@ msgstr "Slet chat" msgid "Delete chat declaration record" msgstr "Slet chatdeklarationsregistrering" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Slet kontakter" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Slet samtale" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Slet for mig" @@ -3399,11 +3633,11 @@ msgstr "Slet for mig" msgid "Delete list" msgstr "Slet liste" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Slet besked" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Slet besked for mig" @@ -3411,9 +3645,9 @@ msgstr "Slet besked for mig" msgid "Delete my account" msgstr "Slet min konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Slet opslag" @@ -3430,17 +3664,17 @@ msgstr "Slet startpakke?" msgid "Delete this list?" msgstr "Slet denne liste?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Slet dette opslag?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Slettet" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Slettet konto" @@ -3471,12 +3705,12 @@ msgstr "Beskrivelse (maks. 1000 tegn)" msgid "Descriptive alt text" msgstr "Beskrivende alt-tekst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Afkobl citat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Afkobl citeret opslag?" @@ -3507,13 +3741,13 @@ msgstr "Dialog: Tilpas, hvem der kan interagere med dette opslag." msgid "Dim" msgstr "Dæmpet" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Deaktiver" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Deaktiver 2FA" @@ -3521,7 +3755,7 @@ msgstr "Deaktiver 2FA" msgid "Disable captions" msgstr "Deaktiver undertekster" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Deaktiver 2FA via e-mail" @@ -3534,8 +3768,8 @@ msgstr "Deaktiver tofaktorgodkendelse via e-mail" msgid "Disable haptic feedback" msgstr "Deaktiver haptisk feedback" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Deaktiver link" @@ -3547,7 +3781,7 @@ msgstr "Deaktiver citatopslag af dette opslag" msgid "Disable replies entirely" msgstr "Deaktiver svar fuldstændigt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Deaktiver dette invitationslink?" @@ -3560,9 +3794,9 @@ msgstr "Deaktiveret" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Kasser" msgid "Discard changes?" msgstr "Deaktiver ændringer?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Kasser opslag?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Frakobl Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Opdag nye feeds" msgid "Discover New Feeds" msgstr "Find nye feeds" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Luk" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Fjern banner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Luk fejlbesked" @@ -3642,6 +3877,10 @@ msgstr "Luk denne sektion" msgid "Dismiss this suggestion" msgstr "Fjern dette forslag" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Omfatter ikke nøgenhed." msgid "Domain verified!" msgstr "Domæne bekræftet!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Har du ingen kode, eller har du brug for en ny? <0>Klik her." @@ -3681,7 +3920,7 @@ msgstr "Har du ingen kode, eller har du brug for en ny? <0>Klik her." msgid "Don’t see a code? <0>Click here to resend." msgstr "Har du ikke modtaget en kode? <0>Klik her for at gensende." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Har du ikke modtaget nogen e-mail? <0>Klik her for at sende en ny." @@ -3700,16 +3939,21 @@ msgstr "Bare rolig! Alle eksisterende beskeder og indstillinger er gemt og vi bl #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Udført" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Tryk dobbelt for at lukke dialogen" @@ -3737,19 +3981,14 @@ msgstr "Tryk dobbelt for at lukke dialogen" msgid "Double tap to like" msgstr "Tryk dobbelt for at like" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Download Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Download CAR-fil" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Download CAR-fil" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Download chatdata" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Download chatdata" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Download billede" +#: 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 "Download profildata" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Download profildata" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Privatlivskrænkelse" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Pga. love i dit område er adgang til visse funktioner i Bluesky begræn msgid "Duration:" msgstr "Varighed:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "fx anne" @@ -3823,9 +4079,8 @@ msgstr "fx Brugere, der laver for mange reklameopslag." msgid "Eating disorders" msgstr "Spiseforstyrrelser" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Rediger" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Rediger avatar" @@ -3847,19 +4102,19 @@ msgstr "Rediger avatar" msgid "Edit Feeds" msgstr "Rediger feeds" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Rediger gruppenavn" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Rediger billede" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Rediger interaktionsindstillinger" @@ -3868,7 +4123,16 @@ msgstr "Rediger interaktionsindstillinger" msgid "Edit interests" msgstr "Rediger interesser" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "Rediger linkindstillinger" @@ -3886,20 +4150,15 @@ msgstr "Rediger livetilstand" msgid "Edit moderation list" msgstr "Rediger moderationsliste" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Rediger mine feeds" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Rediger navn" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Rediger notifikationer fra {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Rediger personer" @@ -3912,12 +4171,12 @@ msgstr "Rediger interaktionsindstillinger" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Rediger profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Rediger profil" @@ -3925,7 +4184,8 @@ msgstr "Rediger profil" msgid "Edit starter pack" msgstr "Rediger startpakke" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Rediger gruppechattens navn" @@ -3937,7 +4197,7 @@ msgstr "Rediger brugerliste" msgid "Edit who can reply" msgstr "Rediger, hvem der kan svare" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Rediger din startpakke" @@ -3971,7 +4231,7 @@ msgstr "E-mailadresse" msgid "Email Resent" msgstr "E-mail gensendt" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-mail afsendt!" @@ -4006,8 +4266,8 @@ msgstr "Indlejr dette opslag på dit website. Kopier blot følgende kodestump og msgid "Embedded video player" msgstr "Indlejret videoafspiller" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Aktiver" @@ -4025,7 +4285,7 @@ msgstr "Aktiver voksenindhold" msgid "Enable captions" msgstr "Aktiver undertekster" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Aktiver 2FA via e-mail" @@ -4038,13 +4298,12 @@ msgstr "Aktiver eksterne medier" msgid "Enable media players for" msgstr "Aktiver medieafspillere for" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktiver notifikationer for en konto ved at besøge dens profil og trykke på <0>klokkeikonet <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Aktiver push-notifikationer" @@ -4091,8 +4350,8 @@ msgstr "Indtast en adgangskode" msgid "Enter a word or tag" msgstr "Indtast et ord eller tag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Indtast kode" @@ -4143,12 +4402,12 @@ msgstr "Åbner i fuld skærm" msgid "Entertainment" msgstr "Underholdning" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fejl" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Kunne ikke hente seneste data." @@ -4185,23 +4444,23 @@ msgstr "Alle kan svare" msgid "Everybody can reply to this post." msgstr "Alle kan besvare dette opslag." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Alle" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Alle" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Alle" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Alt andet" @@ -4217,16 +4476,16 @@ msgstr "Anvendes ikke på brugere, du følger" msgid "Exit fullscreen" msgstr "Forlad fuld skærm" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Udvid alt-tekst" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Udvid brugerliste" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Udvid eller sammenklap det fulde opslag, du besvarer" @@ -4238,7 +4497,7 @@ msgstr "Udvid opslagets tekst" msgid "Expands or collapses post text" msgstr "Udvider eller sammenklapper opslagets tekst" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Forventede, at URI henviste til et dataelement" @@ -4277,10 +4536,10 @@ msgstr "Voldsomme eller stødende medier." msgid "Explicit sexual images." msgstr "Pornografiske billeder." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Udforsk" @@ -4289,11 +4548,8 @@ msgstr "Udforsk" msgid "Explore the app" msgstr "Udforsk appen," -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Eksporter chatdata" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Eksporter mine chatdata" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Indstillinger for eksterne medier" @@ -4331,18 +4587,22 @@ msgstr "Indstillinger for eksterne medier" msgid "Extremist content" msgstr "Ekstremistisk indhold" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Kunne ikke acceptere chat" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Kunne ikke tilføje emojireaktion" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Kunne ikke tilføje medlemmer" @@ -4354,7 +4614,8 @@ msgstr "Kunne ikke føje til startpakke" msgid "Failed to change handle. Please try again." msgstr "Ændring af handle fejlede. Prøv igen." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Kunne ikke kopiere link" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Oprettelse af appadgangskode fejlede. Prøv igen." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Kunne ikke starte samtale" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Kunne ikke oprette invitationslink" @@ -4376,17 +4637,17 @@ msgstr "Kunne ikke oprette invitationslink" msgid "Failed to create starter pack" msgstr "Oprettelse af startpakke fejlede" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Kunne ikke slette chat" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Sletning af besked fejlede" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Sletning af opslag fejlede, prøv igen" @@ -4394,24 +4655,24 @@ msgstr "Sletning af opslag fejlede, prøv igen" msgid "Failed to delete starter pack" msgstr "Sletning af startpakke fejlede" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Kunne ikke deaktivere invitationslink" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Kunne ikke frakoble Germ DM. Fejl: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Kunne ikke redigere gruppechattens navn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Kunne ikke redigere invitationslink" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Kunne ikke aktivere invitationslink" @@ -4427,19 +4688,27 @@ msgstr "Kunne ikke følge alle dine venner, prøv igen" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Kunne ikke skjule forslag, tjek din internetforbindelse" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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 "Kunne ikke åbne sms-app" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Kunne ikke forlade gruppechat" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Kunne ikke indlæse samtaler" @@ -4456,17 +4725,8 @@ msgstr "Kunne ikke indlæse feeds" msgid "Failed to load feeds preferences" msgstr "Indlæsning af indstillinger for feeds fejlede" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Kunne ikke indlæse notifikationsindstillinger." @@ -4493,16 +4753,15 @@ msgstr "Indlæsning af foreslåede feeds fejlede" msgid "Failed to load suggested follows" msgstr "Indlæsning af foreslåede konti fejlede" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Kunne ikke låse gruppechat" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Kunne ikke markere alle anmodninger som læst" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Kunne ikke skjule gruppechat" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Fastgørelse af opslag fejlede" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Kunne ikke genforbinde Germ DM. Fejl: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Kunne ikke fjerne data pga. en netværksfejl, tjek din internetforbindelse." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Kunne ikke fjerne data. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Kunne ikke fjerne emojireaktion" @@ -4534,7 +4793,8 @@ msgstr "Kunne ikke fjerne emojireaktion" msgid "Failed to remove from starter pack" msgstr "Kunne ikke fjerne fra startpakke" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Kunne ikke fjerne medlem af gruppechat" @@ -4542,15 +4802,20 @@ msgstr "Kunne ikke fjerne medlem af gruppechat" msgid "Failed to remove verification" msgstr "Kunne ikke fjerne verifikation" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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 "Kunne ikke bestemme din lokalitet. Prøv igen senere." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Kunne ikke gemme kladde" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Kunne ikke gemme billede" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Kunne ikke gemme dine interesser." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Kunne ikke sende e-mail, prøv igen." @@ -4580,29 +4845,29 @@ msgstr "Kunne ikke sende fejlmelding" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Afsendelse af klage fejlede, prøv igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Kunne ikke ændre, om tråden skjules, prøv igen" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" -msgstr "" +msgstr "Kunne ikke låse gruppechat op" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 msgid "Failed to unpin list" msgstr "Kunne ikke frigøre liste" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Kunne ikke opdaterere 2FA-indstillinger" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Kunne ikke opdatere e-mail, prøv igen." @@ -4614,7 +4879,7 @@ msgstr "Opdatering af feeds fejlede" msgid "Failed to update notification declaration" msgstr "Kunne ikke opdatere notifikationsbeskrivelse" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Opdatering af indstillinger fejlede" @@ -4641,7 +4906,7 @@ msgstr "Falsk konto eller bot" msgid "False information about elections" msgstr "Misinformation om valg" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed af {0}" @@ -4662,7 +4927,7 @@ msgstr "Feedskaber" msgid "Feed identifier" msgstr "Feedidentifikator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Feedmenu" @@ -4676,25 +4941,25 @@ msgstr "Feed utilgængeligt" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Kontakt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback blev sendt feedets ejer" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,7 @@ msgstr "Filtrer efter sprog (pt. {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Begræns, hvem du kan modtage notifikationer fra" @@ -4747,11 +5012,11 @@ msgstr "Begræns, hvem du kan modtage notifikationer fra" msgid "Finalizing" msgstr "Afslutter" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Endelig!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Endelig! Hold styr på opslag, der er relevante for dig. Gem dem og find dem let igen senere." @@ -4768,19 +5033,17 @@ msgstr "Økonomi" msgid "Find accounts to follow" msgstr "Find konti, du kan følge" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Find kontakter" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Find venner" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Find venner fra kontakter" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Find kontakter" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Find mine venner" msgid "Find people to follow" msgstr "Find personer, du kan følge" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Find opslag, brugere og feeds på Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Find dine venner" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Find dine venner på Bluesky ved at bekræfte dit telefonnummer og sammenligne med dine kontakter. Vi passer på dine oplysninger, og du har selv kontrol over dem. <0>Læs mere" @@ -4847,22 +5114,22 @@ msgstr "Fokuser søgefeltet" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Følg" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Følg {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Følg {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Følg konto" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Følg alle konti" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Følg tilbage" @@ -4916,7 +5183,7 @@ msgstr "Følg tilbage" msgid "Followed all accounts!" msgstr "Fulgte alle konti!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Fulgte alle fundne venner" @@ -4944,8 +5211,12 @@ msgstr "Følges af <0>{0} og <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Følges af <0>{0}, <1>{1} og {2, plural, one {# anden} other {# andre}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Følgere af @{0}, som du måske kender" @@ -4960,10 +5231,10 @@ msgstr "Følgere, du kender" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Følger" @@ -4977,12 +5248,12 @@ msgstr "Følger" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Følger {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Følger {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Følger {handle}" msgid "Following feed preferences" msgstr "Indstillinger for følgerfeed" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Indstillinger for følgerfeed" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Følger dig" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Følger dig" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Skrifttype" @@ -5065,11 +5333,16 @@ msgstr "Glemt adgangskode?" msgid "Forgot?" msgstr "Glemt?" +#. 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:12 msgid "Free your feed" msgstr "Slip dit feed fri" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Fra" @@ -5086,82 +5359,86 @@ msgstr "Fra <0/>" msgid "Generate a starter pack" msgstr "Generer en startpakke" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Opret invitationslink" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Opret nyt invitationslink" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Opret nyt link" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM frakoblet" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM-link" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM forbundet" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Få hjælp" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Få notifikationer, når nogen følger dig." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Få notifikationer, når nogen liker de opslag, du har videredelt." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Få notifikationer, når nogen liker dine opslag." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "Få notifikationer, når nogen liker dine videredelinger." + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Få notifikationer, når nogen nævner dig." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Få notifikationer, når nogen citerer dine opslag." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Få notifikationer, når nogen besvarer dine opslag." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Få notifikationer, når nogen videredeler opslag, du har videredelt." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Få notifikationer, når nogen videredeler dine opslag." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Få notifikationer, når nogen deler dine videredelinger." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "Få notifikationer, når der er aktivitet på de opslag, du abonnerer på." + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Bliv notificeret om nye opslag" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Bliv notificeret om opslag og svar fra konti, du vælger." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Bliv notificeret om nye opslag fra {name}" @@ -5174,27 +5451,27 @@ msgstr "Bliv notificeret om denne kontos aktivitet" msgid "Get notified when {name} posts" msgstr "Bliv notificeret, når {name} laver opslag" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Bliv notificeret, når nogen laver opslag" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Kom i gang" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF uploadet" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Sæt ansigt på din profil" @@ -5213,20 +5490,20 @@ msgstr "Forherligelse af vold" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Gå tilbage" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Gå tilbage" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Gå tilbage til forrige trin" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Gå til forside" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Gå til forsiden" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Gå til forside" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Gå live (deaktiveret)" msgid "Go live for" msgstr "Gå live i" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Gå til {firstAuthorName}s profil" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Gå til kontoindstillinger" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Gå til samtale med {0}" @@ -5296,35 +5571,42 @@ msgstr "Gå til feed" msgid "Go to next" msgstr "Gå til næste" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Gå til profil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Gå til gruppechatten \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Gå til brugers profil" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" -msgstr "" +msgstr "Gå til brugers profil" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 msgid "Going live is currently disabled for your account" msgstr "Din konto er i øjeblikket spærret for at gå live" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Forstået" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Udpenslet voldeligt indhold" msgid "Grooming or predatory behavior" msgstr "Grooming eller kontrollerende adfærd" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 -msgid "Group chat invite link dialog" +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 +msgid "Group chat invite link dialog" +msgstr "Invitationslinkdialog for gruppechat" + +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Gruppehat låst" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Gruppechat skjult" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" -msgstr "" +msgstr "Gruppechatnavn opdateret" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gruppechatindstillinger" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Gruppechat låst op" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Gruppechat skjules ikke længere" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Gruppechat er endnu ikke tilgængelig" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Gruppechat er nu tilgængelig" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "Gruppe er låst" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Gruppenavn" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "Hacking eller systemangreb" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Handle er for langt. Prøv med et kortere." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Sker lige nu" @@ -5446,7 +5744,7 @@ msgstr "Skadelige eller risikable aktiviteter" msgid "Harming or endangering minors" msgstr "Udsættelse af mindreårige for skade eller fare" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,14 +5756,14 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "Hadtale" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Har du en kode? <0>Klik her." #: src/screens/Signup/StepInfo/index.tsx:320 msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." -msgstr "" +msgstr "Er din lokalitet forkert? <0>Tryk her for at opdatere din lokalitet med GPS." #: src/screens/Signup/index.tsx:231 msgid "Having trouble?" @@ -5479,11 +5777,11 @@ msgstr "Gemmes af Bluesky i 7 dage for at forhindre misbrug og slettes herefter" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Hjælp" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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" @@ -5522,7 +5820,7 @@ msgstr "Skjult liste" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Skjult liste" msgid "Hide" msgstr "Skjul" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Skjul" @@ -5553,18 +5851,18 @@ msgstr "Skjul gruppechatopdateringer" msgid "Hide lists" msgstr "Skjul lister" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Skjul opslag for mig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Skjul svar for alle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Skjul svar for mig" @@ -5577,19 +5875,19 @@ msgstr "Skjul dette kort" msgid "Hide this event" msgstr "Skjul denne begivenhed" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Skjul dette opslag?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Skjul dette svar?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Skjul oversættelse" @@ -5606,7 +5904,7 @@ msgstr "Skjul populære emner?" msgid "Hide trending videos?" msgstr "Skjul populære videoer?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Skjul brugerliste" @@ -5620,6 +5918,10 @@ msgstr "Vis verifikationsskilte" msgid "Hides the content" msgstr "Skjuler indholdet" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, det ser ud til, at du er logget ind med en <0>appadgangskode. For at angive din fødselsdato, skal du logge ind med din primære adgangskode, eller bede den, der administrerer denne konto, om at gøre det." @@ -5652,19 +5954,15 @@ msgstr "Hmm, vi oplever problemer med at indlæse denne data. Se yderligere oply msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, vi kunne ikke indlæse moderationstjenesten." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Vent lidt! Vi udruller gradvist adgang til video, og du er stadig i kø. Prøv igen senere!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Hold lige hesten! Denne funktion er ikke tilgængelig for dig endnu. Kig forbi senere." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Forside" @@ -5721,7 +6019,7 @@ msgstr "Jeg forstår" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Jeg er på Bluesky som {0} – kom og find mig! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Hvis alt-tekst er for lang, slår dette udvidet tilstand til/fra" @@ -5757,15 +6055,15 @@ msgstr "Hvis du sletter denne liste, kan den ikke genskabes." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Hvis du har dit eget domæne, kan du bruge det som handle. Dette giver dig mulighed for at bekræfte din identitet. <0>Læs mere her." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Hvis du har brug for at opdatere din e-mail, <0>klik her." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Hvis du sletter dette opslag, kan det ikke genskabes." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Hvis du opdaterer din e-mailadresse, vil 2FA via e-mail blive deaktiveret." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Hvis du vil begrænse, hvem der kan modtage notifikationer om din egen kontos aktivitet, kan du ændre dette under <0>Indstillinger → Privatliv og sikkerhed." @@ -5786,23 +6083,23 @@ msgstr "Hvis du er udvikler, kan du køre din egen server." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Hvis du vil skifte dit handle eller din e-mail, skal du gøre det, før du deaktiverer kontoen." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Billede" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Billede {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Billede {0} af {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Billede {0} af {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Billedcache tømt, frigjorde {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Billedgalleri, {0} billeder" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Billede skjult pga. dine moderationsindstillinger." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Billede er utilgængeligt." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Billedindstillinger" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Falsk identitet" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importer kontakter" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importer kontakter" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importer kontakter for at finde venner" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importeret {0}" @@ -5881,40 +6182,40 @@ msgstr "Importeret {0}" 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 "For at kunne tilbyde en alderssvarende oplevelse har vi brug for at kende din fødselsdato. Det er hurtigt klaret, og vi passer godt på dine oplysninger." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "I appen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notifikationer i appen" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "I appen, Alle" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "I appen, alle" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "I appen, Personer, du følger" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "I appen, personer du følger" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "I appen, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "I appen, push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "I appen, Push, Alle" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "I appen, push, alle" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "I appen, Push, Personer, du følger" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "I appen, push, personer du følger" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Indbakke er tom" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Tom indbakke!" @@ -5954,6 +6255,10 @@ msgstr "Vi præsenterer: Kladder" msgid "Introducing finding friends via contacts" msgstr "Ny feature: Find venner via kontakter" +#: 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 "Vi præsenterer: Gemte opslag, også kendt som bogmærker" @@ -5963,11 +6268,15 @@ msgstr "Vi præsenterer: Gemte opslag, også kendt som bogmærker" msgid "Invalid 2FA confirmation code." msgstr "Ugyldig 2FA-bekræftelseskode" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Ugyldigt handle. Prøv et andet." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Ugyldige interaktionsindstillinger." @@ -5977,10 +6286,15 @@ msgstr "Ugyldige interaktionsindstillinger." msgid "Invalid phone number" msgstr "Ugyldigt telefonnummer" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Ugyldigt emne for anmeldelse" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Ugyldig bekræftelseskode" @@ -6001,8 +6315,15 @@ msgstr "Invitationskode" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Inviter venner" @@ -6010,21 +6331,31 @@ msgstr "Inviter venner" msgid "Invite friends <0/>" msgstr "Inviter venner <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Invitationslink" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Invitationslink" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Invitationslink oprettet" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Invitationslink deaktiveret" @@ -6040,11 +6371,16 @@ msgstr "Invitationslink aktiveret" msgid "Invite people to this starter pack!" msgstr "Inviter folk til denne startpakke!" +#: 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 "Inviter dine venner til at følge dine foretrukne feeds og konti" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Inviteret" @@ -6054,7 +6390,7 @@ msgstr "Invitationer, men personlige" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "Er din lokalitet ikke præcis? <0>Tryk her for at opdatere din lokalitet med GPS. " #: 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." @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Job-ID: {0}" msgid "Jobs" msgstr "Jobs" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Jobs" msgid "Join Bluesky" msgstr "Opret dig på Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Deltag i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Fortsæt med at redigere" @@ -6109,6 +6460,11 @@ msgstr "Fortsæt med at redigere" msgid "Keep me posted" msgstr "Hold mig opdateret" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS hjemmeside" @@ -6143,7 +6499,7 @@ msgstr "Mærkater på din konto" msgid "Labels on your content" msgstr "Mærkater på dit indhold" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Sprogindstillinger" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Seneste" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Læs mere om, hvordan du inviterer venner" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Læs mere om at importere kontakter" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Læs mere om denne advarsel" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Læs mere om verifikation på Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Læs mere om verifikation på Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Læs mere om, hvad der er offentligt på Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Læs mere om dit Germ DM-link" @@ -6252,31 +6608,33 @@ msgstr "Læs mere under <0>kontoindstillinger." msgid "Learn more." msgstr "Læs mere." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Forlad" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Forlad chat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Forlad samtale" @@ -6284,13 +6642,14 @@ msgstr "Forlad samtale" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Forlad samtale" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Forlad gruppechat" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Forlad denne gruppechat" @@ -6299,6 +6658,14 @@ msgstr "Forlad denne gruppechat" msgid "Leaving Bluesky" msgstr "Forlader Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "foran dig i køen." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Lys" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Like" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notifikationer ved likes" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Like dette feed" @@ -6358,8 +6721,8 @@ msgstr "Like dette feed" msgid "Like this labeler" msgstr "Like denne mærkningstjeneste" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Liket af" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liket af {0, plural, one {# bruger} other {# brugere}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liket af {likeCount, plural, one {# bruger} other {# brugere}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Likes" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Likes af dine videredelinger" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notifikationer ved videredeling af videredelinger" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Likes af dette opslag" @@ -6409,11 +6768,11 @@ msgstr "Likes af dette opslag" msgid "Linear" msgstr "Lineært" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Link kopieret til udklipsholder" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Liste" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste ikke længere skjult" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Lister" @@ -6545,7 +6904,7 @@ msgstr "Livebegivenhed ikke længere skjult" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Livebegivenheder vises indimellem, når der sker noget spændende. Hvis du ønsker det, kan du skjule enten denne ene begivenhed eller alle begivenheder fra dette sted i appen." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Livefunktion er i beta" @@ -6581,7 +6940,7 @@ msgstr "Indlæs nye opslag" #: src/screens/Messages/components/MessageInput.web.tsx:202 msgctxt "placeholder" msgid "Loading chat…" -msgstr "" +msgstr "Indlæser chat…" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 msgid "Loading lists..." @@ -6595,27 +6954,27 @@ msgstr "Indlæser opslagsinteraktionsindstillinger..." msgid "Loading..." msgstr "Indlæser..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Lås" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Lås gruppechat" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Lås gruppechat?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Låser denne gruppechat" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Låst" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Log" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo af @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo af <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Det ser ud til, at du mangler et følgerfeed <0>Klik her for at tilføje msgid "Love GIFs" msgstr "Kærligheds-GIF’er" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Tilpas e-mailindstillinger for din konto" @@ -6687,24 +7046,22 @@ msgstr "Administrer verifikationsindstillinger" msgid "Manage your muted words and tags" msgstr "Administrer dine skjulte ord og tags" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Marker alle læst" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marker som læst" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Marker alle som læst" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Måske senere" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Medlemmer" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." -msgstr "" - -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Omtalenotifikationer" +msgstr "Medlemmer kan fortsat læse chathistorikken men ikke sende nye beskeder." #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "omtalte brugere" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Omtaler" @@ -6761,7 +7118,7 @@ msgstr "Besked" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Send besked" @@ -6771,26 +7128,26 @@ msgstr "Send besked" msgid "Message {0}" msgstr "Send besked til {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Send besked til {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Besked slettet" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Besked slettet" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Besked kunne ikke sendes." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Besked fra @{0}: {1}" @@ -6813,21 +7170,21 @@ msgstr "Beskeden er for lang" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Besked for lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Beskedindstillinger" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Beskeder" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." -msgstr "" +msgstr "Beskeder fra denne person er skjult, fordi du er blokeret." -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." -msgstr "" +msgstr "Beskeder fra denne person er skjult, fordi du har blokeret vedkommende." #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" @@ -6838,10 +7195,6 @@ msgstr "Midnat" msgid "Minor harassment or bullying" msgstr "Mild chikane eller mobning" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Diverse notifikationer" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Misvisende" @@ -6850,7 +7203,7 @@ msgstr "Misvisende" msgid "Missing media" msgstr "Medier mangler" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -6894,7 +7247,7 @@ msgstr "Moderationsliste opdateret" msgid "Moderation lists" msgstr "Moderationslister" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderationslister" @@ -6903,7 +7256,7 @@ msgstr "Moderationslister" msgid "moderation settings" msgstr "moderationsindstillinger" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderationstilstande" @@ -6928,8 +7281,8 @@ msgstr "Flere sprog..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Flere valgmuligheder" @@ -6949,7 +7302,7 @@ msgstr "Film" msgid "Music" msgstr "Musik" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Lydløs" @@ -6965,8 +7318,8 @@ msgstr "Lydløs" msgid "Mute {0}" msgstr "Skjul {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Skjul konto" msgid "Mute accounts" msgstr "Skjul konti" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Skjul samtale" @@ -6994,7 +7347,7 @@ msgstr "Skjul liste" msgid "Mute these accounts?" msgstr "Skjul disse konti?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Skjul denne gruppechat" @@ -7022,17 +7375,21 @@ msgstr "Skjul kun dette ord i tags" msgid "Mute this word until you unmute it" msgstr "Skjul dette ord, indtil du selv fjerner det fra listen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Skjul tråd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Skjul ord og tags" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "Skjult" @@ -7040,7 +7397,7 @@ msgstr "Skjult" msgid "Muted accounts" msgstr "Skjulte konti" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Skjulte konti" @@ -7062,6 +7419,10 @@ msgstr "Skjulte ord og tags" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Ingen kan se, hvem du skjuler. Skjulte konti kan interagere med dig, men du vil ikke se deres opslag eller modtage notifikationer fra dem." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Gå til startpakke" msgid "Navigates to the next screen" msgstr "Går til næste skærmbillede" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Går til din profil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Vil du kontakte os om en ophavsretskrænkelse eller et juridisk eller regulatorisk spørgsmål?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Ny" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Nyt} other {Nye}} opslag fra {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Ny chat" @@ -7163,7 +7525,7 @@ msgstr "Ny chat med {0} og {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Ny chat med {0}, {1} og {memberCount, plural, one {{memberCount} anden} other {{memberCount} andre}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Ny e-mailadresse" @@ -7171,32 +7533,30 @@ msgstr "Ny e-mailadresse" #: 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 "Ny feature" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notifikationer ved nye følgere" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Nye følgere" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Ny gruppechat" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Ny gruppechat med:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nyt opslag" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nyt opslag" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Nye opslag fra {firstAuthorLink} og <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Nye opslag fra {firstAuthorName} og {additionalAuthorsCount, plural, one {{formattedAuthorsCount} anden} other {{formattedAuthorsCount} andre}}" @@ -7262,8 +7622,8 @@ msgstr "Nyheder" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Næste" msgid "Next image" msgstr "Næste billede" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Ingen følgere endnu" @@ -7335,7 +7699,7 @@ msgstr "Ingen GIF’er fundet for \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "Ingen GIF’er at vise lige nu. Prøv igen om lidt." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Intet billede" @@ -7353,8 +7717,8 @@ msgstr "Ingen lister" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Følger ikke længere {0}" @@ -7362,7 +7726,7 @@ msgstr "Følger ikke længere {0}" msgid "No media yet" msgstr "Ingen medier endnu" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Ingen beskeder endnu" @@ -7378,12 +7742,12 @@ msgstr "Intet navn" msgid "No notifications yet!" msgstr "Ingen notifikationer endnu!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Ingen" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Ingen" @@ -7399,7 +7763,7 @@ msgstr "Ingen" msgid "No one but the author can quote this post." msgstr "Kun forfatteren selv kan citere dette opslag." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Ingen kan skrive beskeder" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Intet resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ingen resultater" @@ -7446,8 +7810,8 @@ msgstr "Ingen resultater" msgid "No results for \"{0}\"." msgstr "Ingen resultater for \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Ingen resultater fundet" @@ -7509,29 +7873,29 @@ msgstr "Intime billeder uden samtykke" msgid "Non-sexual Nudity" msgstr "Ikkeseksuel nøgenhed" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Ingen" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Ikke tilgængelig på denne på denne platform." #: src/components/KnownFollowers.tsx:254 msgid "Not followed by anyone you’re following" -msgstr "Følges ikke af nogen, du følger" +msgstr "Følges ikke af nogen du følger" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Ikke fundet" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Ikke klar til at trykke Slå op? Gem dine bedste idéer i Kladder indtil tiden er inde." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Note vedr. deling" @@ -7548,44 +7912,31 @@ msgstr "OBS: Dette opslag er kun synligt for indloggede brugere." msgid "Nothing saved yet" msgstr "Endnu ingen gemte" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notifikationindstillinger" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Notifikationslyde" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notifikationer" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notifikationer for alt andet, fx når nogen opretter sig via en af dine startpakker." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nu" @@ -7601,7 +7952,7 @@ msgstr "Telefonnummer skal være et mobilnummer" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Deaktiveret" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Okay" @@ -7648,35 +8000,35 @@ msgstr "på<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Nulstil velkomst" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "En af de valgte modtagere tillader ikke gruppechats." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "En af de valgte modtagere har blokeret dig og kan ikke kontaktes." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "En eller flere GIF'er mangler alt-tekst." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "En eller flere billeder mangler alt-tekst." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "En eller flere af de valgte filer er ikke understøttet." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "En eller flere af de valgte filer er for stor. Den maksimale størrelse er 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Et eller flere videoer mangler alt-tekst." @@ -7685,6 +8037,26 @@ msgstr "Et eller flere videoer mangler alt-tekst." msgid "Only {0} can reply." msgstr "Kun {0} kan svare." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Kun følgere, jeg følger" msgid "Only image files are supported" msgstr "Kun billedfiler er understøttet" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Kun WebVTT-filer (.vtt) er understøttet" @@ -7703,6 +8085,10 @@ msgstr "Kun WebVTT-filer (.vtt) er understøttet" msgid "Oops, something went wrong!" msgstr "Ups, noget gik galt!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ups, noget gik galt!" msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Åbn avatarbygger" @@ -7720,12 +8106,17 @@ msgstr "Åbn avatarbygger" msgid "Open camera" msgstr "Åbn kamera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 -msgid "Open chat member options for {displayName}" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "Åbn chatmedlemindstillinger for {displayName}" + +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Åbn samtaleindstillinger" @@ -7739,16 +8130,16 @@ msgstr "Åbn navigation" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Åbn emojivælger" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Åbn feedindstillingsmenu" @@ -7760,13 +8151,22 @@ msgstr "Åbn hele emojilisten" msgid "Open Germ DM" msgstr "Åbn Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Åbn gruppechatindstillinger" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Åbn link til {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Åbn pakke" msgid "Open post options menu" msgstr "Åbn opslagsindstillingsmenu" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Åbn profil" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Åbn storybook" msgid "Open system log" msgstr "Åbn systemlog" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Åbner en dialog, hvor du kan tilføje en indholdsadvarsel til dit opsla msgid "Opens a dialog to choose who can interact with this post" msgstr "Åbner en dialog, hvor du kan angive, hvem der kan interagere med dette opslag" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Åbner yderligere oplysninger om en loghændelse" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Åbner enhedens kamera" @@ -7858,22 +8270,24 @@ msgstr "Åbner skrivefelt til nyt opslag" msgid "Opens device camera" msgstr "Åbner enhedens kamera" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Åbner enhedens mediabibliotek for valg af op til {MAX_IMAGES, plural, one {}other {# billeder}}, eller en enkelt video eller GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Åbner formular til oprettelse af en ny Bluesky-konto" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Åbner formular til at logge ind på din eksisterende Bluesky-konto" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Viser hele billedet" @@ -7890,7 +8304,7 @@ msgstr "Åbner billedvælger" msgid "Opens link {0}" msgstr "Åbner linket {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Åbner livetilstandsdialog" @@ -7902,15 +8316,23 @@ msgstr "Åbner formular til nulstilling af adgangskode" msgid "Opens post language settings" msgstr "Åbner opslagets sprogindstillinger" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Åbner profil" +#: 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 "Åbner GIF-vælgerdialogboksen" +#: 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 "Åbner skrivefelt for nyt opslag" @@ -7919,9 +8341,8 @@ msgstr "Åbner skrivefelt for nyt opslag" msgid "Opens this draft in the composer" msgstr "Åbner denne kladde i skrivefeltet" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Åbner denne profil" @@ -7997,12 +8418,12 @@ msgstr "Vores blogindlæg" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Vores moderatorteam har modtaget din anmeldelse." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Vores moderatorer har gennemgået anmeldelser og besluttet at spærre din adgang til chats på Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Vores moderatorer har gennemgået anmeldelser og besluttet at spærre di msgid "Owner" msgstr "Ejer" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Side ikke fundet" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Side ikke fundet" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,44 +8490,44 @@ msgstr "Stop afspilning" msgid "People" msgstr "Personer" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" -msgstr "" +msgstr "Personer {ownerName} følger, kan melde sig ind med det samme" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" -msgstr "" - -#. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 -msgid "People followed by @{0}" -msgstr "Personer, som følges af @{0}" +msgstr "Personer {ownerName} følger, kan anmode om at deltage" #. placeholder {0}: route.params.name #: src/Navigation.tsx:238 -msgid "People following @{0}" -msgstr "Personer, som @{0} følger" +msgid "People followed by @{0}" +msgstr "Personer som følges af @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:231 +msgid "People following @{0}" +msgstr "Personer som @{0} følger" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Personer jeg følger" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Brugere jeg følger, kan melde sig ind direkte" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 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 msgid "People you follow" -msgstr "Personer, du følger" +msgstr "Personer du følger" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 msgid "People you mention" -msgstr "Personer, du omtaler" +msgstr "Personer du omtaler" #: src/lib/media/save-image.ts:59 msgid "Permission to access your photo library was denied. Please enable it in your system settings." @@ -8136,13 +8558,17 @@ msgstr "Telefonnummer bekræftet" msgid "Photography" msgstr "Fotografi" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Billeder for voksne." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fastgør feed" @@ -8152,12 +8578,12 @@ msgstr "Fastgør feed" msgid "Pin to home" msgstr "Fastgør til forside" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fastgør til forside" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fastgør til din profil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fastgjort" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Fastgjorde {0} til forside" @@ -8236,7 +8662,7 @@ msgstr "Vælg dit handle." msgid "Please choose your password." msgstr "Vælg din adgangskode." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Klik på linket i den e-mail, vi lige har sendt dig, for at bekræfte di msgid "Please complete the verification captcha." msgstr "Løs verifikationsopgaven" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Bekræft din e-mailadresse for at uploade videoer." @@ -8265,14 +8691,14 @@ msgstr "Indtast en adgangskode. Den skal bestå af mindst 8 tegn." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Vælg et unikt navn til denne appadgangskode eller brug et autogenereret navn." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Indtast en gyldig kode." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Indtast en gyldig e-mailadresse." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Indtast en gyldig, permanent e-mailadresse. Du kan få brug for at tilgå denne adresse i fremtiden." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Indtast den kode, vi har sendt til <0>{0}, nedenfor." @@ -8293,7 +8719,7 @@ msgstr "Indtast den kode, vi har sendt til <0>{0}, nedenfor." msgid "Please enter the code you received and the new password you would like to use." msgstr "Indtast den kode, du har modtaget, samt den nye adgangskode, du ønsker at bruge." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Indtast din e-mail." msgid "Please enter your invite code." msgstr "Indtast din invitationskode." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Indtast din nye e-mailadresse." @@ -8323,7 +8749,7 @@ msgstr "Indtast dit brugernavn" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Forklar, hvorfor du mener, at denne mærkat er anvendt fejlagtigt af {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Forklar, hvorfor du mener, at dine chats er deaktiveret fejlagtigt" @@ -8358,7 +8784,11 @@ msgstr "Vælg årsagen til denne anmeldelse" msgid "Please sign in as @{0}" msgstr "Log ind som @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Brug vores mobilapp for at importere dine kontakter." @@ -8366,7 +8796,7 @@ msgstr "Brug vores mobilapp for at importere dine kontakter." msgid "Please use the native app to sync your contacts." msgstr "Brug mobilappen for at synkronisere dine kontakter." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Indtast din e-mail" @@ -8383,7 +8813,7 @@ msgstr "Politik" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Slå op" @@ -8403,12 +8833,12 @@ msgstr "Lav et fotoopslag" msgid "Post a video" msgstr "Lav et videoopslag" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Slå alle op" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Opret alligevel" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Opslag blokeret" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Opslag af @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Opslag slettet" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Opslag kunne ikke publiceres. Tjek din internetforbindelse og prøv igen." @@ -8454,18 +8884,22 @@ msgstr "Opslag skjult af dig" msgid "Post interaction settings" msgstr "Interaktionsindstillinger" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interaktionsindstillinger" +#: 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 "Sprogvalg for opslag" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Send link" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Opslag, svar" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentielt misvisende link" @@ -8525,9 +8954,10 @@ msgstr "Foretrukkent sprog" msgid "Press to attempt reconnection" msgstr "Tryk for at forsøge at forbinde igen" -#: src/components/Error.tsx:61 +#: 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 "Tryk for at prøve igen" @@ -8536,7 +8966,7 @@ msgstr "Tryk for at prøve igen" msgid "Press to view followers of this account that you also follow" msgstr "Tryk for at vise følgere af denne konto, som du også følger" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Forhåndsvisning" @@ -8559,26 +8989,25 @@ msgstr "Privatliv" msgid "Privacy and security" msgstr "Privatliv og sikkerhed" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Privatlivspolitik" @@ -8586,15 +9015,15 @@ msgstr "Privatlivspolitik" msgid "Privacy violation of a minor" msgstr "Privatlivskrænkelse af en mindreårig" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Behandler GIF ..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Behandler video..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Behandler..." @@ -8602,10 +9031,10 @@ msgstr "Behandler..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "Pladsholder for profilbanner" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profil ikke fundet" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Udgiv opslag" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Udgiv svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Udgiv svar" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Push-notifikationer" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "Push, alle" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, Personer du følger" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "Push, personer du følger" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-kode kopieret til udklipsholder!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-kode blev downloadet!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-kode blev gemt til din kamerarulle!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notifikationer ved citater" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notifikationer ved citater" msgid "Quote post" msgstr "Citer opslag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Citatopslag blev tilkoblet igen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Citatopslag blev afkoblet" @@ -8711,12 +9138,12 @@ msgstr "Citatopslag ikke tilladt" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citater" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citater af dette opslag" @@ -8728,16 +9155,16 @@ msgstr "Aktivitetsgrænse overskredet – du har prøvet at ændre dit handle fo msgid "Rate limit exceeded. Please try again later." msgstr "Brugsgrænse overskredet. Prøv igen senere." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Gentilkobl citat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Genaktiver invitationslink" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Genaktiver link" @@ -8745,8 +9172,8 @@ msgstr "Genaktiver link" msgid "React with {emoji}" msgstr "Reager med {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reaktioner" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "læs om, hvordan du bruger søgefiltre" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Læs blogindlæg" @@ -8812,11 +9239,11 @@ msgstr "Ægte mennesker." msgid "Reason for appeal" msgstr "Begrundelse for klage" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Modtag notifikationer i appen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Modtag push-notifikationer" @@ -8841,17 +9268,31 @@ msgstr "Anbefalet" msgid "Reconnect" msgstr "Forbind igen" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Afvis" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Afvis" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Afvis chatanmodning" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Genindlæs samtaler" @@ -8863,6 +9304,8 @@ msgstr "Genindlæs samtaler" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Fjern {displayName} fra gruppechat" msgid "Remove {displayName} from starter pack" msgstr "Fjern {displayName} fra startpakke" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Fjern {displayName} fra denne gruppechat" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Fjern {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Fjern {historyItem}" msgid "Remove account" msgstr "Fjern konto" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Fjern alle kontakter" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Fjern vedhæftning" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Fjern profilbillede" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Fjern banner" @@ -8914,8 +9362,9 @@ msgstr "Fjern banner" msgid "Remove caption file" msgstr "Fjern undertekstfil" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Fjern indlejring" @@ -8929,12 +9378,12 @@ msgstr "Fjern feed" msgid "Remove feed?" msgstr "Fjern feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Fjern fra chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Fjern fra gemte opslag" msgid "Remove from your feeds?" msgstr "Fjern fra dine feeds?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Fjern billede" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Fjern deling" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Fjern forslag" @@ -9009,11 +9458,11 @@ msgstr "Fjern verifikation" msgid "Remove your verification for this account?" msgstr "Fjern verifikation fra denne konto?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Fjernet af forfatter" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Fjernet af dig" @@ -9035,7 +9484,7 @@ msgstr "Fjernet fra gemte opslag" msgid "Removed from starter pack" msgstr "Fjernet fra startpakke" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Svarede dig" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Svar" @@ -9104,14 +9552,14 @@ msgstr "Svar ikke tilladt" msgid "Replies to this post are disabled." msgstr "Svar til dette opslag er ikke tilladt." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Besvar" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Svar ({0, plural, one {# svar} other {# svar}})" @@ -9125,10 +9573,6 @@ msgstr "Svar skjult af trådens forfatter" msgid "Reply Hidden by You" msgstr "Svar skjult af dig" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notifikationer ved svar" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Svarindstillinger er bestemt af trådens forfatter" @@ -9137,18 +9581,18 @@ msgstr "Svarindstillinger er bestemt af trådens forfatter" msgid "Reply sorting" msgstr "Rækkefølge for svar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Svarets synlighed blev opdateret" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Svar blev skjult" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Anmeld" @@ -9157,20 +9601,20 @@ msgstr "Anmeld" msgid "Report account" msgstr "Anmeld konto" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Anmeld samtale" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Anmeld dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Anmeld feed" @@ -9179,12 +9623,12 @@ msgstr "Anmeld feed" msgid "Report list" msgstr "Anmeld liste" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Anmeld besked" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Anmeld opslag" @@ -9199,8 +9643,8 @@ msgstr "Anmeld startpakke" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Anmeldelse afsendt" @@ -9213,7 +9657,7 @@ msgstr "Anmeld denne samtale" msgid "Report this feed" msgstr "Anmeld dette feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Anmeld denne gruppechat" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Anmeld denne liste" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Anmeld denne livestream" @@ -9256,10 +9700,6 @@ msgstr "Videredel" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Videredel ({0, plural, one {# deling} other {# delinger}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notifikationer ved videredeling" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Videredelt af dig" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Videredelinger" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Videredelinger af dette opslag" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Videredeling af dine videredelinger" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notifikationer ved videredeling af videredelinger" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 "Anmod om kode" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Anmodninger" +#: src/Navigation.tsx:501 +#: 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 "Gør alt-tekst obligatorisk i dine egne opslag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Kræv en bekræftelseskode via e-mail for at logge ind på din konto." @@ -9328,7 +9791,17 @@ msgstr "Obligatorisk for denne udbyder" msgid "Required in your region" msgstr "Obligatorisk i din region" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Send igen" @@ -9373,8 +9846,8 @@ msgstr "Nulstil velkomsttilstand" msgid "Reset password" msgstr "Nulstil adgangskode" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Synkroniser kontakter" @@ -9391,17 +9864,18 @@ msgstr "Prøver at gentage den seneste handling, der fejlede" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Prøver at gentage den seneste handling, der fejlede" msgid "Retry" msgstr "Prøv igen" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Prøv at genindlæse mulige årsager" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Gå til forrige side" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Vender tilbage til forsiden" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Går til forrige side" @@ -9451,10 +9925,10 @@ msgstr "Triste GIF’er" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gem ændringer" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Gem ændringer?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Gem kladde" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Gem kladde?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Gem billede" msgid "Save new handle" msgstr "Gem nyt handle" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Gem QR-kode" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Føj til mine feeds" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Gemte" @@ -9534,25 +10010,25 @@ msgstr "Gemte" msgid "Saved Feeds" msgstr "Gemte feeds" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Gemte opslag" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Tilføjet dine feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Sig hej!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Sig hej til nogen" @@ -9560,6 +10036,16 @@ msgstr "Sig hej til nogen" msgid "Scam" msgstr "Svindel" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Videnskab" @@ -9576,18 +10062,18 @@ msgstr "Rul til højre" msgid "Scroll to top" msgstr "Rul til toppen" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Søg" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Søg i opslag fra @{0}" @@ -9662,12 +10148,12 @@ msgstr "Søg efter sprog" msgid "Search my posts" msgstr "Søg i mine opslag" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Søg opslag" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Søg efter profiler" msgid "Search..." msgstr "Søg..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Søg efter profiler" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Sikkerhedstjek krævet" @@ -9759,7 +10245,7 @@ msgstr "Vælg {langName}" msgid "Select a color" msgstr "Vælg en farve" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Vælg en årsag" @@ -9828,7 +10314,7 @@ msgstr "Vælg GIF" msgid "Select GIF \"{0}\"" msgstr "Vælg GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Vælg gruppechatmedlemmer" @@ -9850,7 +10336,7 @@ msgstr "Vælg sprog..." msgid "Select languages" msgstr "Vælg sprog" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Vælg moderationstjeneste" @@ -9904,11 +10390,11 @@ msgstr "Angiv dine interesser herunder" msgid "Select your preferred language for translations in your feed." msgstr "Vælg dit foretrukne sprog for oversættelser i dit feed" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Vælg dine foretrukne notifikationskanaler" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Valg af flere medietyper er ikke understøttet." @@ -9921,9 +10407,9 @@ msgstr "Selvskade eller farlig adfærd" msgid "Send code" msgstr "Send kode" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Send e-mail" @@ -9935,11 +10421,11 @@ msgstr "Send e-mail" msgid "Send error report" msgstr "Send fejlmelding" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Send feedback" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Send besked" @@ -9952,7 +10438,7 @@ msgstr "Send opslag til {name}" msgid "Send post to..." msgstr "Send opslag til..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Send anmeldelse til {title}" @@ -9960,7 +10446,7 @@ msgstr "Send anmeldelse til {title}" msgid "Send the message from your phone" msgstr "Send beskeden fra din telefon" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Send som direkte besked" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Sendt kl. {0}" @@ -10015,14 +10501,14 @@ msgstr "Angiv din fødselsdato herunder, så du kan fortsætte med at bruge Blue msgid "Sets email for password reset" msgstr "Angiver e-mail til nulstilling af adgangskode" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Indstillinger" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Indstillinger for aktivitet fra andre" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Notifikationsindstillinger for likes" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Notifikationsindstillinger for omtaler" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Notifikationsindstillinger for nye følgere" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Notifikationsindstillinger for alt andet" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Notifikationsindstillinger for likes af dine videredelinger" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Notifikationsindstillinger for videredeling af dine videredelinger" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Notifikationsindstillinger for citater" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Notifikationsindstillinger for svar" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Notifikationsindstillinger for videredelinger" @@ -10079,16 +10565,19 @@ msgstr "Seksuel aktivitet eller erotisk nøgenhed" msgid "Sexually Suggestive" msgstr "Erotik" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Del" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Del alligevel" @@ -10097,16 +10586,21 @@ msgstr "Del alligevel" msgid "Share author DID" msgstr "Del forfatter-DID" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Del billede" +#: 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 "Del link" @@ -10114,6 +10608,11 @@ msgstr "Del link" msgid "Share link dialog" msgstr "Del link-dialog" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Del opslagets at://-URI" msgid "Share QR code" msgstr "Del QR-kode" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Del dette feed" @@ -10142,8 +10641,8 @@ msgstr "Del denne startpakke og hjælp andre med at blive en del af fællesskabe #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Del via..." @@ -10151,7 +10650,7 @@ msgstr "Del via..." msgid "Share your contacts to find friends" msgstr "Del dine kontakter for at finde venner" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Test af delte indstillinger" @@ -10167,16 +10666,16 @@ msgstr "Vis alt-tekst" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Vis alligevel" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Vis botmærkat" @@ -10197,8 +10696,8 @@ msgstr "Vis tilpasningsindstillinger" msgid "Show group chat updates" msgstr "Vis gruppechatopdateringer" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Vis mindre som dette" @@ -10219,8 +10718,8 @@ msgstr "Vis livebegivenheder i dit Discover-feed" msgid "Show More" msgstr "Vis mere" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Vis mere som dette" @@ -10246,8 +10745,8 @@ msgstr "Vis svar" msgid "Show replies as" msgstr "Vis svar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Vis svar til alle" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Vis advarsel og filtrer fra feeds" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Vis, når nu er live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Viser, hvornår dette opslag blev oprettet" @@ -10297,15 +10796,17 @@ msgstr "Viser indholdet" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Log ind eller opret en konto" msgid "Sign in or create your account to join the conversation!" msgstr "Log ind eller opret en konto for at deltage i samtalen!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Log på konto, der ikke er anført" @@ -10337,8 +10842,12 @@ msgstr "Log på konto, der ikke er anført" msgid "Sign in to Bluesky or create a new account" msgstr "Log på Bluesky eller opret en ny konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Log ind for at se opslag" @@ -10348,9 +10857,9 @@ msgstr "Log ind for at se opslag" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Log ud" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Log ud" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Log ud?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Spring tomme opslag over?" @@ -10405,15 +10914,15 @@ msgstr "Spring introduktionen over og kom i gang med din konto" msgid "Skip to next step" msgstr "Spring til næste trin" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" -msgstr "" +msgstr "swipe" #: src/screens/Settings/AppearanceSettings.tsx:152 msgid "Smaller" msgstr "Mindre" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Udsætter påmindelen" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Et medlem forlod gruppen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Nogen reagerede med {0}" @@ -10487,17 +10996,22 @@ msgstr "Nogen blev fjernet" msgid "Someone was removed from the group" msgstr "Nogen blev fjernet fra gruppen" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Der er noget i vejen med din anmeldelse. Kontakt venligst support." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Noget gik galt" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Noget gik galt!" msgid "Something went wrong. Please try again in a moment." msgstr "Noget gik galt. Prøv igen om lidt." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Noget gik galt. Prøv igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Noget galt? Fortæl os om det." @@ -10564,11 +11078,16 @@ msgstr "Spam, snyd eller bedrag" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Start en samtale, og den vil blive vist her." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Start en ny chat" @@ -10582,17 +11101,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:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Start chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Start chat med {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakke" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Streamer du på Twitch? Aktiver livetilstand på Bluesky for at tilføje en markering til din avatar. Når man trykker på den, kommer man direkte til din stream." @@ -10671,8 +11190,8 @@ msgstr "Streamer du på Twitch? Aktiver livetilstand på Bluesky for at tilføje #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Gem" @@ -10684,9 +11203,9 @@ msgstr "Afsend klage" msgid "Submit Appeal" msgstr "Afsend klage" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Send anmeldelse" @@ -10695,15 +11214,15 @@ msgid "Subscribe" msgstr "Abonner" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" -msgstr "" +msgstr "Abonner via {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" -msgstr "" +msgstr "Abonner på {publicationTitle} via {0}" #. placeholder {0}: labelerInfo.creator.handle #: src/screens/Profile/Sections/Labels.tsx:231 @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Succes" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Bekræftet!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificering lykkedes" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Foreslået" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgang" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Support" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Denne funktion er endnu ikke lanceret i dit land! Kom igen senere." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Spærrede konti kan ikke deltage i en gruppechat." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Spærrede konti kan ikke deltage i en chat." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Skift konto" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Skift konti" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Skift til {0}" @@ -10824,13 +11347,17 @@ msgstr "Systemlog" msgid "Tags only" msgstr "Kun tags" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" -msgstr "" +msgstr "Tryk for flere oplysninger" #: src/view/com/feeds/MissingFeed.tsx:90 msgid "Tap for information" @@ -10842,7 +11369,7 @@ msgstr "Tryk for mere info" #: src/screens/Signup/StepInfo/index.tsx:323 msgid "Tap here to update your location with GPS." -msgstr "" +msgstr "Tryk her for at opdatere din lokalitet med GPS." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" @@ -10854,33 +11381,51 @@ msgstr "Tryk for at bekræfte, at du forstår og accepterer disse ændringer, og msgid "Tap to close context menu" msgstr "Tryk for at lukke kontekstmenu" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tryk for lukke" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "Tryk for at fjerne" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Tryk for at fjerne din reaktion med {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "Tryk for at prøve igen" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Tryk for at vise reaktioner med {0}" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tryk for at se alle reaktioner" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tryk for at se reaktioner" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Tjenestevilkår" @@ -10939,7 +11484,7 @@ msgstr "Tekst og tags" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Tekstfelt" @@ -10981,9 +11526,9 @@ msgstr "Det var alt, folkens!" msgid "That's everything!" msgstr "Det var alt" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Kontoen vil være i stand til at interagere med dig, når du fjerner blokering." @@ -11049,6 +11594,11 @@ msgstr "Følgende indstillinger vil blive brugt som standard, når du opretter n msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Lovgivningen i dit område kræver, at du skal bekræfte, at du er voksen for at benytte visse funktioner. Tryk for at læse mere." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Privatlivspolitikken er flyttet til <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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 "Der er en grænse for, hvor tit du kan ændre din fødselsdato. Du skal måske vente en dag eller to, før du opdaterer igen." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Der er ikke noget invitationslink for denne gruppechat." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Der opstod en fejl under indlæsning af GIF’er. Tjek din forbindelse og prøv igen." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Dine feeds kunne ikke opdateres. Tjek din internetforbindelse og prøv igen." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Der opstod en fejl! {0}" @@ -11221,6 +11774,14 @@ msgstr "Dette er dine standardindstillinger" msgid "These settings only apply to the Following feed." msgstr "Disse indstillinger gælder kun dit følgerfeed." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Denne {screenDescription} er blevet flaget:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Denne klage vil blive sendt til <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Denne klage vil blive sendt til Blueskys moderationstjeneste." @@ -11263,7 +11824,7 @@ msgstr "Denne klage vil blive sendt til Blueskys moderationstjeneste." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Denne forfatter har valgt kun at gøre sine opslag synlige for personer, der er logget ind." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Denne knap lader andre åbne Germ DM-appen for at sende dig en besked. Du kan styre dens synlighed fra Germ DM-appen, eller du kan helt frakoble din Bluesky-konto fra Germ DM ved at klikke på knappen herunder." @@ -11271,11 +11832,21 @@ msgstr "Denne knap lader andre åbne Germ DM-appen for at sende dig en besked. D msgid "This chat has ended" msgstr "Denne chat er afsluttet" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Denne chat er låst" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Forbindelsen til chatten blev afbrudt" @@ -11310,7 +11881,11 @@ msgstr "Dette indhold er ikke tilgængeligt, fordi nogle af de involverede bruge msgid "This content is not viewable without a Bluesky account." msgstr "Denne indhold kan ikke ses uden en Bluesky-konto." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Denne samtale er med en slettet eller deaktiveret konto. Tryk for valgmuligheder" @@ -11318,7 +11893,7 @@ msgstr "Denne samtale er med en slettet eller deaktiveret konto. Tryk for valgmu msgid "This draft will be permanently deleted." msgstr "Denne kladde vil blive slettet permanent." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Denne e-mail er allerede tilknyttet din konto." @@ -11356,11 +11931,15 @@ msgstr "Dette feed er tomt." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Dette feed er ikke længere online. Vi viser i stedet <0>Discover." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Dette handle er reserveret. Prøv et andet." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Dette billede kunne ikke bruges. Prøv et andet format som .jpg eller .p msgid "This information is private and not shared with other users." msgstr "Denne oplysning er privat og vil ikke blive delt med andre brugere." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Dette er en tom tilstand" @@ -11377,7 +11964,7 @@ msgstr "Dette er en tom tilstand" msgid "This is not a valid link" msgstr "Dette er ikke et gyldigt link" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Denne mærkat oplyser om, at denne konto er en bot. Når funktionen er aktiveret, vil denne mærkat blive vist ved siden af kontoens navn på dens profilside og opslag. Funktionen kan aktiveres og deaktiveres når som helst." @@ -11410,15 +11997,19 @@ msgstr "Denne liste – oprettet dig – overtræder muligvis Blueskys fællessk msgid "This list is empty." msgstr "Denne liste er tom." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 -msgid "This message is hidden because this user is blocking you." +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" msgstr "" +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." -msgstr "" +msgstr "Denne besked er skjult, fordi du blokerer denne bruger." #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." @@ -11430,11 +12021,11 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "This person is blocking you" -msgstr "" +msgstr "Denne person blokerer dig" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dette opslag er dateret <0>{0}, men det blev først oprettet på Bluesky <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Dette opslag er kun synligt for indloggede brugere." msgid "This post was deleted by its author" msgstr "Dette opslag er blevet slettet af dets forfatter" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Dette opslags forfatter har ikke tilladt citatopslag." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Denne profil er kun synlig for indloggede brugere. Den kan ikke ses af personer, der ikke er logget ind." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Dette svar vil blive vist i en skjult sektion nederst i din tråd og vil skjule notifikationer for yderligere svar - både for dig og andre" -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Dette skærmbillede er kun tilgængeligt for gruppechats." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Denne bruger har ikke nogen følgere." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Denne bruger har blokeret dig og kan ikke kontaktes." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Denne bruger har deaktiveret chat og kan ikke kontaktes." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Dette vil uigenkaldeligt slette din Bluesky-konto <0>{currentHandle} msgid "This will remove @{0} from the quick access list." msgstr "Dette vil fjerne @{0} fra din kvikadgangsliste." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Dette vil fjerne dit opslag fra dette citatopslag for alle brugere og erstatte det med en pladsholder." @@ -11574,7 +12166,7 @@ msgstr "Indstillinger for tråde" msgid "Threaded" msgstr "Trådet" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Trådindstillinger" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "For at deaktivere 2FA via e-mail, skal du bekræfte, at du har adgang til e-mailadressen." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "For at deaktivere 2FA via e-mail, skal du bekræfte din adgang til <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Top" msgid "Top replies first" msgstr "Mest populære svar først" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Emne" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Oversæt" @@ -11667,8 +12259,8 @@ msgstr "Oversat" msgid "Translating" msgstr "Oversætter" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Oversætter …" @@ -11702,7 +12294,7 @@ msgstr "Populære videoer" msgid "Trolling" msgstr "Trolling" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Tillid opstår gennem forbindelser, fællesskaber og delt indhold, så vi åbner nu for <0>autoriserede verifikatorer, dvs. organisationer, som kan verificere brugerkonto." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Prøv et andet søgeord eller <0>læs om, hvordan du bruger søgefiltre." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Prøv igen" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Prøv igen" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Prøv Google Translate" +#: 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 "Tv" @@ -11763,13 +12369,17 @@ msgstr "Kan ikke kontakte din udbyder. Tjek din internetforbindelse." msgid "Unable to delete" msgstr "Kan ikke slette" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Kunne ikke finde en valgt modtager." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Kunne ikke finde den valgte modtager." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Utilgængelig" msgid "Unavailable feed information" msgstr "Utilgængelig feedinformation" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Bloker ikke længere" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Bloker ikke længere" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Bloker ikke længere {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Bloker ikke længere konto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Bloker ikke længere konto?" @@ -11837,8 +12452,8 @@ msgstr "Bloker ikke længere liste" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Fortryd" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Fortryd deling ({0, plural, one {# deling} other {# delinger}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Følg ikke længer {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Følg ikke længere konto" @@ -11872,7 +12487,7 @@ msgstr "Følg ikke længere konto" msgid "Unfollows the user" msgstr "Ophører med at følge brugeren" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Ingen af de moderationstjenester, du abonnerer på, understøtter denne anmeldelsestype." @@ -11884,14 +12499,6 @@ msgstr "Desværre, ifølge fødselsdatoen på din profil, er du for ung til at f msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Desværre, ifølge din oplyste alder er du ikke gammel nok til at bruge Bluesky i dit område." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Fjern invitation" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Fjern {displayName}s invitiation til denne gruppechat" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Ukendt verifikator" @@ -11904,23 +12511,23 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Fjern like" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Fjern ({0, plural, one {# like} other {# likes}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" -msgstr "" +msgstr "Lås chat op" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" -msgstr "" +msgstr "Lås denne gruppechat op" #: src/screens/ProfileList/components/Header.tsx:180 #: src/screens/ProfileList/components/Header.tsx:187 @@ -11939,14 +12546,14 @@ msgstr "Skjul ikke længere" msgid "Unmute {0}" msgstr "Skjul ikke længere {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Skjul ikke længere konto" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Skjul ikke længere samtale" @@ -11955,12 +12562,12 @@ msgstr "Skjul ikke længere samtale" msgid "Unmute list" msgstr "Skjul ikke længere liste" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Skjul ikke længere denne gruppechat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Skjul ikke længere tråd" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Frigør" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Frigør feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Frigør fra forside" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Frigør fra profil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Frigør moderationsliste" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Frigjorde {0} fra forside" @@ -12030,14 +12637,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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Ikkeunderstøttet indhold i udklipsholder" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Ikkeunderstøttet videotype: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Opdater" msgid "Update <0>{displayName} in Lists" msgstr "Opdater <0>{displayName} i lister" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Opdater e-mail" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Opdater invitationslink" @@ -12065,11 +12680,15 @@ msgstr "Opdater invitationslink" msgid "Update to {domain}" msgstr "Skift til {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Opdater din app til den nyeste version for at melde dig ind!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Opdater din e-mail" @@ -12078,19 +12697,19 @@ msgstr "Opdater din e-mail" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 msgid "Update your location" -msgstr "" +msgstr "Opdater din lokalitet" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Opdatering af tilkobling til citat fejlede" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Opdatering af synlighed for svar fejlede" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Upload et foto i stedet" @@ -12098,39 +12717,40 @@ msgstr "Upload et foto i stedet" msgid "Upload a text file to:" msgstr "Upload en tekstfil til:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Upload fra kamera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Upload fra filer" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Upload fra bibliotek" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Uploader GIF ..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Uploader billeder..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Uploader forhåndsvisning af link..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Uploader video..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "bruger" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Bruger blokeret" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Brugerliste af {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Brugerliste af {0}" @@ -12255,12 +12875,12 @@ msgstr "brugere, der følges af <0>@{0}" msgid "users following <0>@{0}" msgstr "brugere, der følger <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Brugere, jeg følger" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Brugere, jeg følger" @@ -12277,7 +12897,7 @@ msgstr "Verificering fejlede, prøv igen." msgid "Verification settings" msgstr "Verifikationsindstillinger" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifikationsindstillinger" @@ -12304,8 +12924,8 @@ msgstr "Bekræft igen" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Bekræft kode" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Bekræft DNS-record" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Bekræft e-mailkode" @@ -12349,7 +12969,7 @@ msgstr "Verificer denne konto?" msgid "Verify your age" msgstr "Bekræft din alder" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Version {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Videobehandling fejlede" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Videofeed" @@ -12419,7 +13039,7 @@ msgstr "Video ikke fundet." msgid "Video settings" msgstr "Videoindstillinger" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video uploadet" @@ -12432,20 +13052,20 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videoer" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vis" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" -msgstr "" +msgstr "Se {0}" #. placeholder {0}: profile.handle #: src/screens/Profile/Header/Shell.tsx:257 @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Se {0}s profil" @@ -12467,19 +13087,14 @@ msgstr "Se {0}s profil" msgid "View {0}’s profile" msgstr "Se {0}s profil" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Se {displayName}s profil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" -msgstr "" - -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" +msgstr "Se {publicationTitle}" #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" @@ -12503,10 +13118,18 @@ msgstr "Læs mere" msgid "View full thread" msgstr "Vis hele tråden" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Se modtagne gruppechatanmodninger" +#: 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:56 msgid "View information about these labels" msgstr "Vis information om disse mærkater" @@ -12522,7 +13145,7 @@ msgstr "Se flere" msgid "View more trending videos" msgstr "Se flere populære videoer" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Vis opslag" @@ -12539,18 +13162,18 @@ msgstr "Vis profil" msgid "View profile banner" msgstr "Se profilbanner" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" -msgstr "" +msgstr "Vis udgivelse" #: src/view/com/profile/ProfileSubpageHeader.tsx:108 msgid "View the avatar" msgstr "Vis profilbilledet" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Vis invitationslink for denne gruppechat" @@ -12563,7 +13186,7 @@ msgstr "Vis mærkningstjenesten drevet af @{0}" msgid "View this user's verifications" msgstr "Se denne brugers verifikationer" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Vis brugere, der likede dette feed" @@ -12596,8 +13219,8 @@ msgstr "Vis dine skjulte konti" msgid "View your verifications" msgstr "Se dine verifikationer" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Viser hele billedet" @@ -12640,8 +13263,8 @@ msgstr "Advar om indhold" msgid "Warn content and filter from feeds" msgstr "Advar om indhold og filtrer fra feeds" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Se nu" @@ -12665,11 +13288,15 @@ msgstr "Vi kunne ikke finde nogen resultater for dette tag." msgid "We couldn't find any results for that topic." msgstr "Vi kunne ikke finde nogen resultater for dette emne." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Vi kunne ikke indlæse denne samtale" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "Vi kunne ikke indlæse indstillingerne for denne samtale" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Vi anbefaler at vælge mindst to interesser." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi har sendt en e-mail til <0>{0} med et link. Klik på det for at afslutte bekræftelsesforløbet." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Vi kunne ikke afgøre, om du har lov til at uploade videoer. Prøv igen." @@ -12744,12 +13371,12 @@ msgstr "Vi kunne ikke modtage godkendelsen pga. en forbindelsesfejl. Hvis vi mod msgid "We will let you know when your account is ready." msgstr "Vi giver dig besked, når din konto er klar." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Vi giver dig besked, når vi finder dine venner." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi vil sende en e-mail til <0>{0} med et link. Klik på det for at afslutte bekræftelsesforløbet." @@ -12779,12 +13406,12 @@ msgstr "Vi kan desværre ikke starte alderstjek for din konto. <0>Kontakt suppor msgid "We're having network issues, try again" msgstr "Vi har netværksproblemer, prøv igen." -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Vi har netværksproblemer, prøv igen" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Beklager! Det opslag, du svarer på, er blevet slettet." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Beklager! Vi kan ikke finde den side, du leder efter." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Hvad vil du kalde din startpakke?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Hvad sker der?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Når du trykker på et flueben, kan du se, hvilken organisation der har foretaget verificeringen." @@ -12878,7 +13505,7 @@ msgstr "Når du trykker på et flueben, kan du se, hvilken organisation der har msgid "Who can interact with this post?" msgstr "Hvem kan interagere med dette opslag?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Hvem kan melde sig ind i denne gruppechat, og hvordan" @@ -12887,13 +13514,13 @@ msgstr "Hvem kan melde sig ind i denne gruppechat, og hvordan" msgid "Who can reply" msgstr "Hvem kan svare" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Hvem kan verificere?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ups!" @@ -12939,19 +13566,19 @@ msgstr "Hvorfor skal denne startpakke gennemgås?" msgid "Why should this user be reviewed?" msgstr "Hvorfor skal denne bruger gennemgås?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Vil du blokere denne bruger og/eller slette denne samtale?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Vil du blokere denne bruger og/eller forlade samtalen?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Vil du gemme dette opslag som kladde, du kan redigere senere?" msgid "Write a post" msgstr "Skriv et opslag" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Skriv dit opslag" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Skriv dit svar" @@ -12978,7 +13605,8 @@ msgstr "Forfattere" msgid "Wrong DID returned from server. Received: {0}" msgstr "Forkert DID returneret fra server. Modtog: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Forkert samtaletype" @@ -13005,11 +13633,11 @@ msgstr "Ja, slet min konto" msgid "Yes, delete this starter pack" msgstr "Ja, slet denne startpakke" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Ja, afkobl" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Ja, skjul" @@ -13030,17 +13658,17 @@ 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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" -msgstr "" +msgstr "Du blokerer {0}" #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "You are blocking the chat owner" -msgstr "" +msgstr "Du blokerer chattens ejer" #: src/components/dms/MessagesListBlockedFooter.tsx:83 msgid "You are blocking this person" -msgstr "" +msgstr "Du blokerer denne person" #: src/components/forms/HostingProvider.tsx:46 msgid "You are creating an account on" @@ -13068,7 +13696,7 @@ msgstr "Du er live" msgid "You are no longer live" msgstr "Du er ikke længere live" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Du har ikke adgang til at uploade videoer." @@ -13117,21 +13745,30 @@ msgstr "Du kan altid sige stop og slette dine data" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "I appen kan du kan vælge, om chatnotifikationer skal være med lyd" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Du kan fortsætte igangværende samtaler, uanset hvilken indstilling du vælger." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Du kan nu vælge at blive notificeret om opslag fra udvalgte personer. Hvis du ønsker at modtage opdateringer fra en bruger, så gå til deres profil og find det nye klokkeikon nær Følg-knappen." +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Du kan nu logge ind med din nye adgangskode." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Du kan kun gemme kladder på maks. 1000 tegn." @@ -13139,11 +13776,11 @@ msgstr "Du kan kun gemme kladder på maks. 1000 tegn." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Du kan kun gemme kladder på maks. 1000 tegn. Vil du kassere dette opslag, før du ser dine kladder?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Du kan kun vælge én GIF ad gangen." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Du kan kun vælge én video ad gangen." @@ -13153,12 +13790,12 @@ msgstr "Du kan genaktivere din konto ved at logge ind. Andre brugere vil igen ku #: src/components/dms/MessagesListBlockedFooter.tsx:93 msgid "You can read chat history but can’t send new messages." -msgstr "" +msgstr "Du kan læse chathistorikken men ikke sende nye beskeder." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Du kan vælge op til {MAX_IMAGES, plural, one {}other {# billeder}} i alt." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,10 +13803,15 @@ msgstr "Du kan vælge op til {MAX_IMAGES, plural, one {}other {# billeder}} i al msgid "You can update this later from your settings." msgstr "Du kan opdatere dette senere under Indstillinger." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 -msgid "You cannot create a group chat yet." +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "Du kan endnu oprette en gruppechat endnu." + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13197,6 +13839,10 @@ msgstr "Du har ikke nogen gemte feeds." msgid "You got here first" msgstr "Du kom først" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du skal være mindst 13 år gammel for at bruge Bluesky. Læs mere i vores <0>tjenestevilkår." @@ -13332,11 +13982,12 @@ msgstr "Du skal være mindst 13 år gammel for at bruge Bluesky. Læs mere i vor msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du skal følge mindst syv andre konti for at oprette en startpakke." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Du skal give adgang til dit fotobibliotek for at gemme en QR-kode" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Du skal give adgang til dit mediebibliotek." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Du reagerede med {0}" @@ -13368,8 +14023,13 @@ msgstr "Du reagerede med {0} på {target}" msgid "You recently changed your birthdate" msgstr "Du har for nylig opdateret din fødselsdato" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Du vil blive logget ud af alle dine konti." @@ -13378,11 +14038,11 @@ msgstr "Du vil blive logget ud af alle dine konti." msgid "You will no longer receive notifications for {0}" msgstr "Du vil ikke længere modtage notifikationer om {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Du vil ikke længere modtage notifikationer for denne tråd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Du vil nu modtage notifikationer for denne tråd" @@ -13390,12 +14050,12 @@ msgstr "Du vil nu modtage notifikationer for denne tråd" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Du vil modtage en e-mail med en nulstillingskode. Indtast koden her, og indtast så din nye adgangskode." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Du kan melde dig ind igen uden være blive inviteret." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Dig: {message}" @@ -13429,6 +14089,10 @@ msgstr "Du vil nu modtager notifikationer om {0}!" msgid "You'll stay updated with these feeds" msgstr "Du vil holde dig ajour med disse feeds" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Du er i kø" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Du har nået det maksimale antal kladder" @@ -13475,11 +14139,11 @@ msgstr "Du har nået det maksimalt tilladte antal forespørgsler. Prøv igen sen msgid "You've reached the start of the active content." msgstr "Du er nået begyndelsen af det aktive indhold." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Du har nået din daglige grænse for videouploads (for mange bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nået din daglige grænse for videouploads (for mange videoer)" @@ -13499,10 +14163,18 @@ msgstr "Din konto blev slettet. Vi ses! ✌️" msgid "Your account has been suspended" msgstr "Din konto er suspenderet" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Din konto er ikke gammel nok til videoupload. Prøv igen senere." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Din konto er for ny" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Dit kontoarkiv, som indeholder al din offentlige data, kan downloades som en CAR-fil. Denne fil indeholder ikke vedhæftede medier, fx billeder, eller dine private oplysninger, som skal downloades separat." @@ -13519,7 +14191,7 @@ msgstr "Din klage er blevet afsendt. Hvis du får medhold i din klage, vil du f msgid "Your birth date" msgstr "Din fødselsdato" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Din adgang til chats er blevet deaktiveret" @@ -13527,11 +14199,11 @@ msgstr "Din adgang til chats er blevet deaktiveret" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Dit valg vil blive anvendt for links fremover. Du kan når som helst ændre det under indstillinger." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Din kontakt {firstAuthorLink} er på Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Din kontakt {firstAuthorName} er på Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Din e-mail" msgid "Your email appears to be invalid." msgstr "Din e-mail ser ud til at være ugyldig." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Din e-mail er endnu ikke bekræftet. Bekræft din e-mail for at få glæde af alle Blueskys muligheder." @@ -13582,7 +14254,7 @@ msgstr "Dit følgerfeed er tomt! Følg flere brugere for at se, hvad der foregå msgid "Your full handle will be <0>@{0}" msgstr "Dit fulde handle bliver <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Din lokalitet blev opdateret." msgid "Your muted words" msgstr "Dine skjulte ord" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Dit navn og profilbillede samt gruppechattens navn vil være synlige for alle." +#: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Dit opslag blev sendt" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Dine opslag blev sendt" @@ -13635,7 +14307,7 @@ msgstr "Dine opslag blev sendt" msgid "Your preferred language" msgstr "Dit foretrukne sprog" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Dit profilbillede" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Dit svar blev sendt" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Din anmeldelse vil blive sendt til <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Din anmeldelse vil blive sendt til <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Dine valgte interesser hjælper os med at vise dig relevant indhold." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "Din tråd har tomme opslag, som vil blive sprunget over. De resterende opslag vil blive oprettet som en tråd." diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index a804061b2d..1a1b12f1a2 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorie „{interestsDisplayName}“ (aktiv)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(enthält eingebettete Inhalte)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# Gefällt mir} other {# Gefällt mir}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# Mitglied} other {# Mitglieder}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# Minute} other {# Minuten}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# Monat} other {# Monate}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# neue Beitrittsanfrage} other {# neue Beitrittsanfragen}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# Person hat reagiert} other {# Personen haben reagiert}} – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# Sekunde} other {# Sekunden}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {# Min.} other {# Min.}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>Text & Tags" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} zum Chat hinzugefügt" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} und {1} zum Chat hinzugefügt" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} Folge ich" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} blockiert dich" @@ -264,7 +273,7 @@ msgstr "{0} von 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} hat mit {1} reagiert" @@ -290,7 +299,7 @@ msgstr "{0} wurde aus der Gruppe entfernt" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, eine Liste von {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Profilbild von {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Profilbild von {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {Mitglied} other {Mitglieder}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} Mitglieder" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} Min." msgid "{0}s" msgstr "{0} Sek." +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Keine Beitrittsanfragen} one {# Beitrittsanfrage} other {# Beitrittsanfragen}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# Chat-Update} other {# Chat-Updates}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# neue Beitrittsanfrage} other {# neue Beitrittsanfragen}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# Anfrage} other {# Anfragen}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Aktualisiere die Seite, um es zu sehen.} other {Aktualisiere die Seite, um sie alle zu sehen.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Dieser Post enthält # Foto.} other {Dieser Post enthält # Fotos.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Aktualisiere deine App, um es zu sehen.} other {Aktualisiere deine App, um sie alle zu sehen.}}" + +#. 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 "{count, plural, other {#+ Beitrittsanfragen}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ Anfragen" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {Stunde} other {Stunden}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {Minute} other {Minuten}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} folgen dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren Person} other {{formattedAuthorsCount} weiteren Personen}} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren Person} other {{formattedAuthorsCount} weiteren Personen}} gefällt dein Repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben ihre Verifizierungen von deinem Account entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben deinen Repost repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben sich mit deinem Startpaket registriert" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben dich verifiziert" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} folgt dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} folgt dir zurück" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} gefällt dein Repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} hat die Verifizierung deines Accounts entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} hat deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} hat deinen Repost repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} hat sich mit deinem Startpaket registriert" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} hat dich verifiziert" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} folgen dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren Person} other {{formattedAuthorsCount} weiteren Personen}} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiteren Person} other {{formattedAuthorsCount} weiteren Personen}} gefällt dein Repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben ihre Verifizierungen von deinem Account entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben deinen Repost repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben sich mit deinem Startpaket registriert" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weitere Person} other {{formattedAuthorsCount} weitere Personen}} haben dich verifiziert" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} folgt dir" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} folgt dir zurück" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} gefällt dein benutzerdefinierter Feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gefällt dein Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} gefällt dein Repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} hat die Verifizierung deines Accounts entfernt" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} hat deinen Post repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} hat deinen Repost repostet" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} hat sich mit deinem Starterpaket registriert" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} hat dich verifiziert" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} hat dich verifiziert" msgid "{following} following" msgstr "{following} Folge ich" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} kann nicht hinzugefügt werden" @@ -547,7 +606,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:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} kann nicht angeschrieben werden" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# Stunde {minutesString}} other {# Stunden {minutes msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# Stunde} other {# Stunden}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}+ neue Beitrittsanfragen" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ neue Beitrittsanfragen" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {Beschreibung ist zu lang. Die maximale msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Anzeigename ist zu lang. Die maximale Zeichenanzahl beträgt #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Du kannst maximal # Antworten ausblenden.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} hat mit {0} auf {target} reagiert" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Die liebsten Feeds und Personen von {name} – sei dabei!" msgid "{name}'s starter pack" msgstr "Startpaket von {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# ungelesenes Element} other {# ungelesene Elemente}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# Kontakt gefunden} other {# Kontakte gefunden}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# Anfrage} other {# Anfragen}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ Anfragen" @@ -656,6 +725,12 @@ msgstr "{userName} ist verifiziert" msgid "{userName}'s verifications" msgstr "Verifizierungen von {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} und {2, plural, one {# weitere Person} other {# w #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {Follower} other {Follower}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {Folge ich} other {Folge ich}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {Gefällt mir} other {Gefällt mir}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {Zitat} other {Zitate}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {Repost} other {Reposts}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {Speicherung} other {Speicherungen}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} Mitglieder" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> hat dich hinzugefügt" @@ -795,8 +870,13 @@ msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte überprüfe deine Internetverb #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte überprüfe deine Internetverbindung." @@ -804,7 +884,7 @@ msgstr "Ein Netzwerkfehler ist aufgetreten. Bitte überprüfe deine Internetverb msgid "A new code has been sent" msgstr "Ein neuer Code wurde gesendet" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Eine neue Form der Verifizierung" @@ -827,11 +907,11 @@ msgstr "Ein Screenshot einer Profilseite mit einem Glocken-Symbol neben dem Folg 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Der Absender folgt einem ausgewählten Empfänger nicht." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Missbräuchliches oder diskriminierendes Verhalten" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Annehmen" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Annehmen" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Chat-Anfrage annehmen" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Beitrittsanfrage annehmen" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Anfrage annehmen" @@ -860,17 +950,26 @@ msgstr "Anfrage annehmen" msgid "Accept this language suggestion" msgstr "Diesen Sprachvorschlag akzeptieren" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Akzeptierte Konversationen" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Zugang angefragt! Der Gruppeninhaber wird deine Anfrage prüfen." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Barrierefreiheitseinstellungen" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Barrierefreiheitseinstellungen" msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Account blockiert" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Account gefolgt" @@ -899,7 +998,7 @@ msgstr "Account wurde gesperrt" msgid "Account is deactivated" msgstr "Account ist deaktiviert" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Account-Anbieter" msgid "Account removed from quick access" msgstr "Account aus dem Schnellzugriff entfernt" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Account entblockt" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Account entfolgt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Account nicht mehr stummgeschaltet" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Accounts mit einem gewellten blauen Häkchen <0><1/> können andere verifizieren. Diese vertrauenswürdigen Verifizierer werden von Bluesky ausgewählt." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Aktivität von anderen" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Aktivitätsmitteilungen" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Hinzufügen" @@ -999,8 +1094,8 @@ msgstr "Account hinzufügen" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Alt-Text hinzufügen (optional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Weiteren Account hinzufügen" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Einen weiteren Post hinzufügen" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Einen weiteren Post zum Thread hinzufügen" @@ -1035,7 +1130,7 @@ msgstr "App-Passwort hinzufügen" msgid "Add App Password" msgstr "App-Passwort hinzufügen" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Automatisierungskennzeichnung zum Account hinzufügen" @@ -1043,7 +1138,7 @@ msgstr "Automatisierungskennzeichnung zum Account hinzufügen" msgid "Add emoji reaction" msgstr "Emoji-Reaktion hinzufügen" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Mitglieder zum Gruppenchat hinzufügen" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Bild hinzufügen" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Medien zum Post hinzufügen" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Mitglieder hinzufügen" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Weitere Details hinzufügen (optional)" @@ -1091,6 +1186,10 @@ msgstr "Personen hinzufügen" msgid "Add people to list" msgstr "Personen zur Liste hinzufügen" +#: 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 "Reaktion hinzufügen" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Geburtsdatum hinzufügen" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Hinzugefügt von {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Über Einladungslink hinzugefügt" @@ -1165,12 +1264,12 @@ msgstr "Mitglieder zur Liste hinzufügen..." msgid "Additional details (limit 1000 characters)" msgstr "Zusätzliche Angaben (max. 1000 Zeichen)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Zusätzliche Details (max. 300 Zeichen)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "Anfrage zur Altersverifikation wurde übermittelt" msgid "Age assurance only takes a few minutes" msgstr "Die Altersverifikation dauert nur wenige Minuten" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Alle" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Alle {0}" @@ -1278,13 +1377,13 @@ msgstr "Erlaube den Zugriff auf deine Direktnachrichten" msgid "Allow anyone to reply" msgstr "Jedem erlauben zu antworten" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Direktnachrichten erlauben von" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Gruppenchat-Einladungen erlauben von" @@ -1338,12 +1437,12 @@ msgstr "Hast du bereits einen Account?" msgid "Already signed in as @{0}" msgstr "Bereits als @{0} eingeloggt" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alt-Text" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alt-Text beschreibt Bilder für blinde und sehbehinderte Leser und hilft, den Kontext für alle zu vermitteln." @@ -1387,7 +1486,7 @@ msgstr "Ein Fehler ist aufgetreten" msgid "An error occurred" msgstr "Ein Fehler ist aufgetreten" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Beim Komprimieren des Videos ist ein Fehler aufgetreten." @@ -1421,7 +1520,8 @@ msgstr "Beim Laden des Videos ist ein Fehler aufgetreten. Bitte versuche es erne msgid "An error occurred while loading your lists :/" msgstr "Beim Laden deiner Listen ist ein Fehler aufgetreten :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Beim Speichern des QR-Codes ist ein Fehler aufgetreten!" @@ -1432,11 +1532,11 @@ msgstr "Beim Speichern des QR-Codes ist ein Fehler aufgetreten!" msgid "An error occurred while trying to follow all" msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten." -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Beim Hochladen des Videos ist ein Fehler aufgetreten. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Beim Hochladen des Videos ist ein Fehler aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." @@ -1456,26 +1556,30 @@ msgstr "Eine Illustration, die zeigt, wie Profilbilder von Nutzern aus einem Kon 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" +#: 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 "Eine Illustration, die zeigt, dass Bluesky vertrauenswürdige Verifizierer auswählt und diese wiederum einzelne Nutzeraccounts verifizieren." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Über einen Einladungslink können Personen diesem Gruppenchat beitreten, ohne direkt hinzugefügt zu werden. Du bestimmst, wer den Link nutzen darf und ob deine Zustimmung erforderlich ist. Du kannst den Link jederzeit deaktivieren." +#: 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 "Über einen Einladungslink können Personen diesem Gruppenchat beitreten, ohne direkt hinzugefügt zu werden. Du bestimmst, wer dem Chat beitreten kann. Du kannst den Link jederzeit deaktivieren." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "Ein Problem, das hier nicht aufgelistet ist" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Beim Erstellen des Gruppenchats ist ein Problem aufgetreten. Bitte versuche es erneut." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Beim Öffnen des Chats ist ein Problem aufgetreten" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Ein Mockup eines iPhones, auf dem die Bluesky-App mit dem Profil eines verifizierten Nutzers geöffnet ist, dessen Anzeigename mit einem blauen Häkchen versehen ist." @@ -1539,13 +1643,17 @@ msgstr "Jeder" msgid "Anyone can interact" msgstr "Jeder kann interagieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Jeder kann beitreten" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Jeder kann sofort beitreten" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Jeder kann eine Beitrittsanfrage stellen" @@ -1555,11 +1663,11 @@ msgstr "Jeder kann eine Beitrittsanfrage stellen" msgid "Anyone who follows me" msgstr "Jeden, der mir folgt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "Jeder, der ihn hat, kann damit nicht mehr beitreten oder eine Beitrittsanfrage stellen. Du kannst jederzeit einen neuen erstellen." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Namen von App-Passwörtern müssen mindestens 4 Zeichen enthalten" msgid "App passwords" msgstr "App-Passwörter" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-Passwörter" @@ -1618,7 +1726,7 @@ msgstr "Einspruch gegen die Sperrung des Livestreams einlegen" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Einspruch eingereicht" @@ -1632,14 +1740,14 @@ msgstr "Suspendierung anfechten" msgid "Appeal Suspension" msgstr "Suspendierung anfechten" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Einspruch gegen diese Entscheidung" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Pull Request anwenden" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archiviert von {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Archivierter Post" @@ -1675,7 +1783,7 @@ msgstr "Bist du dir wirklich, wirklich sicher?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Bist du sicher, dass du das App-Passwort „{0}“ löschen möchtest?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Möchtest du diese Nachricht wirklich löschen? Die Nachricht wird nur für dich gelöscht, nicht für die anderen Teilnehmer." @@ -1688,23 +1796,29 @@ msgstr "Möchtest du dieses Startpaket wirklich löschen?" msgid "Are you sure you want to discard your changes?" msgstr "Bist du sicher, dass du deine Änderungen verwerfen möchtest?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Möchtest du {groupName} wirklich verlassen?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Bist du sicher, dass du diese Konversation verlassen möchtest?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, nicht jedoch für den anderen Teilnehmer." +#: src/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 "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, jedoch nicht für die anderen Teilnehmer." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen möchtest?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Bist du sicher, dass du diesen Post verwerfen möchtest?" @@ -1724,8 +1838,8 @@ msgstr "Kunst" msgid "Artistic or non-erotic nudity." msgstr "Künstlerische oder nicht-erotische Nacktheit." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Thema für den Algorithmus festlegen" @@ -1752,7 +1866,7 @@ msgstr "Automatisierter Account" msgid "Automation label" msgstr "Automatisierungskennzeichnung" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatisierungskennzeichnung" @@ -1767,12 +1881,12 @@ msgstr "Videos und GIFs automatisch abspielen" msgid "Available" msgstr "Verfügbar" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Verfügbar" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Verfügbar" msgid "Back" msgstr "Zurück" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Zurück zu Chats" @@ -1832,7 +1948,7 @@ msgstr "Bevor du einen Post erstellen oder antworten kannst, musst du zuerst dei 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Bevor du diese Chat-Anfrage annehmen kannst, musst du zuerst deine E-Mail verifizieren." @@ -1840,13 +1956,14 @@ msgstr "Bevor du diese Chat-Anfrage annehmen kannst, musst du zuerst deine E-Mai msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Bevor du Mitteilungen zu den Posts von {name} erhalten kannst, musst du zuerst deine E-Mail verifizieren." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Bevor du einem anderen Nutzer eine Nachricht senden kannst, musst du zuerst deine E-Mail verifizieren." @@ -1874,59 +1991,53 @@ msgstr "Geburtsdatum" msgid "Birthday" msgstr "Geburtstag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blockieren" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "{displayName} blockieren" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Account blockieren" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Account blockieren?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Account blockieren?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Accounts blockieren" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Blockieren und löschen" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Blockieren und verlassen" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Blockliste" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blockieren oder melden" @@ -1936,9 +2047,9 @@ msgstr "Diese Accounts blockieren?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Nutzer blockieren" @@ -1946,17 +2057,17 @@ msgstr "Nutzer blockieren" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Nutzer blockieren" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Nutzer blockieren und/oder diese Konversation löschen" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Nutzer blockieren und/oder diese Konversation verlassen" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blockiert" @@ -1964,14 +2075,12 @@ msgstr "Blockiert" msgid "Blocked accounts" msgstr "Blockierte Accounts" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blockierte Accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren." @@ -1987,7 +2096,7 @@ msgstr "Blockieren hindert diesen Kennzeichnungsdienst nicht daran, Kennzeichnun msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Die Blockierung ist öffentlich. Blockierte Accounts können nicht in deinen Threads antworten, dich erwähnen oder anderweitig mit dir interagieren." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blockieren verhindert nicht, dass Kennzeichnungen zu deinem Account hinzugefügt werden, verhindert aber, dass dieser Account in deinen Threads antworten oder interagieren kann." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kann die Echtheit des angegebenen Datums nicht bestätigen." @@ -2029,7 +2138,7 @@ msgstr "Mit Freunden ist Bluesky besser!" msgid "Bluesky is more fun with friends" msgstr "Bluesky macht mit Freunden mehr Spaß" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky macht mit Freunden mehr Spaß! Importiere deine Kontakte, um zu sehen, wer schon hier ist." @@ -2037,11 +2146,15 @@ msgstr "Bluesky macht mit Freunden mehr Spaß! Importiere deine Kontakte, um zu msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky macht mit Freunden mehr Spaß. Möchtest du einige deiner Freunde einladen? <0/>" +#: 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 "Bluesky Social Nutzungsbedingungen" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky wählt eine Reihe von empfohlenen Accounts von Personen in deine msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky zeigt dein Profil und deine Posts nicht für ausgeloggte Nutzer an. Andere Apps kommen dieser Aufforderung möglicherweise nicht nach." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky wird proaktiv bekannte und authentische Accounts verifizieren." @@ -2081,6 +2194,10 @@ msgstr "Bücher" msgid "Breaking site rules" msgstr "Verstoß gegen die Regeln der Website" +#: 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" @@ -2137,25 +2254,35 @@ msgstr "Unternehmen" msgid "Button to go back to the home timeline" msgstr "Button, um zur Startseite zurückzukehren" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Von {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Von <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "von <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Von <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Mit der Erstellung eines Accounts stimmst du den <0>Nutzungsbedingungen< msgid "By you" msgstr "Von dir" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Abbrechen" @@ -2248,9 +2384,9 @@ msgstr "Reaktivierung abbrechen und ausloggen" msgid "Cancel search" msgstr "Suche abbrechen" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Kann nicht mit einem blockierten Nutzer interagieren" @@ -2264,7 +2400,7 @@ msgstr "Untertitel (.vtt)" msgid "Captions & alt text" msgstr "Untertitel und Alt-Text" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "Bildergalerie" @@ -2297,7 +2433,7 @@ msgstr "App-Sprache ändern" msgid "Change Handle" msgstr "Handle ändern" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Moderationsdienst ändern" @@ -2310,11 +2446,11 @@ msgstr "Passwort ändern" msgid "Change password dialog" msgstr "Passwort ändern Dialog" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Kategorie der Meldung ändern" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Grund für Meldung ändern" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chat gelöscht" @@ -2361,6 +2497,12 @@ msgstr "Chat gelöscht" msgid "Chat ended" msgstr "Chat beendet" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Dieser Chat-Einladungslink ist nicht mehr verfügbar" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Chat gesperrt" @@ -2373,35 +2515,44 @@ msgstr "Chatnachrichten – stumm" msgid "Chat messages - sound" msgstr "Chatnachrichten – Ton" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat stummgeschaltet" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "Der Absender folgt dem Empfänger des Chats nicht." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Posteingang für Chat-Anfragen" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Chat-Anfragen" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Chat-Einstellungen" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Chat-Einstellungen" @@ -2418,14 +2569,14 @@ msgstr "Chatname wurde zu {0} geändert" msgid "Chat unlocked" msgstr "Chat entsperrt" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat nicht mehr stummgeschaltet" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" @@ -2479,7 +2630,7 @@ msgstr "Post-Sprachen auswählen" msgid "Choose this color as your avatar" msgstr "Diese Farbe als dein Profilbild verwenden" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Lege fest, wer diesem Gruppenchat beitreten kann und wie." @@ -2558,7 +2709,7 @@ msgstr "Klicke hier, um dich auszuloggen" msgid "Click here to resend the email" msgstr "Hier klicken, um die E-Mail erneut zu senden" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Klicke hier, um den Verifizierungsprozess neu zu starten." @@ -2567,7 +2718,7 @@ msgstr "Klicke hier, um den Verifizierungsprozess neu zu starten." msgid "Click here to update your birthdate" msgstr "Klicke hier, um dein Geburtsdatum zu aktualisieren" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Klicke hier, um deine E-Mail zu aktualisieren" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" @@ -2594,28 +2745,30 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Schließen" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Aktiven Dialog schließen" @@ -2647,6 +2800,10 @@ msgstr "Aktiven Dialog schließen" msgid "Close alert" msgstr "Meldung schließen" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Banner schließen" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Untere Schublade schließen" @@ -2657,8 +2814,10 @@ msgstr "Untere Schublade schließen" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Dialog schließen" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Bild schließen" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Menü schließen" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Banner mit eingehenden Anfragen schließen" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Diesen Dialog schließen" @@ -2695,18 +2866,22 @@ msgstr "Willkommensfenster schließen" msgid "Closes password update alert" msgstr "Schließt die Passwort-Update-Benachrichtigung" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Schließt den Post-Editor und verwirft den Post-Entwurf" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Nutzerliste einklappen" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Klappt die Liste der Nutzer für eine bestimmte Meldung zusammen" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Community-Richtlinien" @@ -2740,12 +2915,12 @@ msgstr "Schließe die Herausforderung ab" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Neuen Post verfassen" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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}}" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "GIF wird komprimiert..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Video wird komprimiert..." @@ -2780,7 +2955,7 @@ msgstr "Konfiguriert in <0>Moderationseinstellungen" msgid "Confirm" msgstr "Bestätigen" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Support kontaktieren" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Die Kontaktsynchronisierung ist auf diesem Gerät nicht verfügbar, da die App keinen Zugriff auf deine Kontakte hat." @@ -2825,11 +3000,11 @@ msgstr "Die Kontaktsynchronisierung ist auf diesem Gerät nicht verfügbar, da d msgid "Contact us" msgstr "Kontaktiere uns" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Kontakte importiert" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Kontakte entfernt" @@ -2842,7 +3017,7 @@ msgstr "Inhalte und Medien" msgid "Content and media" msgstr "Inhalte und Medien" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Inhalte und Medien" @@ -2889,7 +3064,7 @@ msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Thread fortsetzen" msgid "Continue thread..." msgstr "Thread fortsetzen…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Weiter zum Gruppennamen" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Weiter zum nächsten Schritt" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Konversation" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Konversation gelöscht" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Konversation gelöscht" @@ -2939,15 +3114,22 @@ msgstr "Konversation gelöscht" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Konversation verlassen" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Konversation nicht gefunden." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopiert!" msgid "Copies build version to clipboard" msgstr "Kopiert die Build-Version in die Zwischenablage" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopieren" @@ -2997,6 +3184,11 @@ msgstr "DID kopieren" msgid "Copy host" msgstr "Host kopieren" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Link zur Liste kopieren" msgid "Copy link to post" msgstr "Link zum Post kopieren" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Link zum Profil kopieren" @@ -3027,8 +3219,8 @@ msgstr "Link zum Profil kopieren" msgid "Copy link to starter pack" msgstr "Link zum Startpaket kopieren" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Nachrichtentext kopieren" @@ -3037,12 +3229,12 @@ msgstr "Nachrichtentext kopieren" msgid "Copy post at:// URI" msgstr "at://-URI des Posts kopieren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Post-Text kopieren" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR-Code kopieren" @@ -3052,11 +3244,15 @@ msgstr "TXT-Eintragswert kopieren" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Urheberrechtsrichtlinie" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Verbindung zum benutzerdefinierten Feed konnte nicht hergestellt werden" @@ -3065,7 +3261,15 @@ msgstr "Verbindung zum benutzerdefinierten Feed konnte nicht hergestellt werden" msgid "Could not connect to feed service" msgstr "Verbindung zum Feed-Dienst konnte nicht hergestellt werden" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Post konnte nicht abgerufen werden" @@ -3073,23 +3277,27 @@ msgstr "Post konnte nicht abgerufen werden" msgid "Could not find profile" msgstr "Profil konnte nicht gefunden werden" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Nicht alle Übereinstimmungen konnten gefolgt werden. Bitte überprüfe deine Netzwerkverbindung." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Nicht alle Übereinstimmungen konnten gefolgt werden. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Du konntest den Chat nicht verlassen" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Feed konnte nicht geladen werden" @@ -3100,7 +3308,11 @@ msgstr "Feed konnte nicht geladen werden" msgid "Could not load list" msgstr "Liste konnte nicht geladen werden" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Chat konnte nicht stummgeschaltet werden" @@ -3108,11 +3320,19 @@ msgstr "Chat konnte nicht stummgeschaltet werden" msgid "Could not process your video" msgstr "Video konnte nicht verarbeitet werden" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Änderungen konnten nicht gespeichert werden: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Mitteilungseinstellungen konnten nicht aktualisiert werden" @@ -3139,7 +3359,7 @@ msgstr "Landesvorwahl" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Erstellen" @@ -3153,13 +3373,13 @@ msgstr "Liste erstellen" msgid "Create a list from this starter pack" msgstr "Eine Liste aus diesem Startpaket erstellen" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Ein Startpaket erstellen" @@ -3174,13 +3394,14 @@ msgstr "Ein Startpaket für mich erstellen" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Stattdessen ein Profilbild erstellen" @@ -3206,7 +3427,7 @@ msgstr "Stattdessen ein Profilbild erstellen" msgid "Create another" msgstr "Ein weiteres erstellen" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Gruppenchat erstellen" @@ -3228,19 +3449,20 @@ msgstr "Liste aus Startpaket erstellen" msgid "Create moderation list" msgstr "Moderationsliste erstellen" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Neuen Account erstellen" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Einen Einladungslink für diesen Gruppenchat erstellen oder bearbeiten" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Meldung für {0} erstellen" @@ -3256,8 +3478,8 @@ msgstr "Nutzerliste erstellen" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Erstellt {0}" @@ -3270,6 +3492,10 @@ msgstr "Ersteller wurde blockiert" msgid "Culture" msgstr "Kultur" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Dunkles Farbschema" msgid "Date of birth" msgstr "Geburtsdatum" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Standard" msgid "Default icons" msgstr "Standardsymbole" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "App-Passwort löschen" msgid "Delete app password?" msgstr "App-Passwort löschen?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Chat löschen" @@ -3378,19 +3612,19 @@ msgstr "Chat löschen" msgid "Delete chat declaration record" msgstr "Datensatz für die Chat-Erklärung löschen" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Kontakte löschen" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Konversation löschen" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Für mich löschen" @@ -3399,11 +3633,11 @@ msgstr "Für mich löschen" msgid "Delete list" msgstr "Liste löschen" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Nachricht löschen" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Nachricht für mich löschen" @@ -3411,9 +3645,9 @@ msgstr "Nachricht für mich löschen" msgid "Delete my account" msgstr "Meinen Account löschen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Post löschen" @@ -3430,17 +3664,17 @@ msgstr "Startpaket löschen?" msgid "Delete this list?" msgstr "Diese Liste löschen?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Diesen Post löschen?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Gelöscht" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Gelöschter Account" @@ -3471,12 +3705,12 @@ msgstr "Beschreibung (max. 1000 Zeichen)" msgid "Descriptive alt text" msgstr "Beschreibender Alt-Text" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Zitat trennen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Zitat-Post trennen?" @@ -3507,13 +3741,13 @@ msgstr "Dialog: Anpassen, wer mit diesem Post interagieren kann" msgid "Dim" msgstr "Gedimmt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Deaktivieren" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "2FA deaktivieren" @@ -3521,7 +3755,7 @@ msgstr "2FA deaktivieren" msgid "Disable captions" msgstr "Untertitel deaktivieren" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktivieren" @@ -3534,8 +3768,8 @@ msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktivieren" msgid "Disable haptic feedback" msgstr "Haptische Rückmeldung deaktivieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Link deaktivieren" @@ -3547,7 +3781,7 @@ msgstr "Zitieren dieses Posts deaktivieren" msgid "Disable replies entirely" msgstr "Antworten vollständig deaktivieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Diesen Einladungslink deaktivieren?" @@ -3560,9 +3794,9 @@ msgstr "Deaktiviert" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Verwerfen" msgid "Discard changes?" msgstr "Änderungen verwerfen?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Post verwerfen?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Germ DM trennen" @@ -3609,15 +3843,16 @@ msgstr "Neue Feeds entdecken" msgid "Discover New Feeds" msgstr "Entdecke neue Feeds" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Verwerfen" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Banner schließen" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Fehler verwerfen" @@ -3642,6 +3877,10 @@ msgstr "Diesen Abschnitt verwerfen" msgid "Dismiss this suggestion" msgstr "Diesen Vorschlag verwerfen" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Beinhaltet keine Nacktheit." msgid "Domain verified!" msgstr "Domain verifiziert!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Du hast keinen Code oder benötigst einen neuen? <0>Hier klicken." @@ -3681,7 +3920,7 @@ msgstr "Du hast keinen Code oder benötigst einen neuen? <0>Hier klicken." msgid "Don’t see a code? <0>Click here to resend." msgstr "Keinen Code erhalten? <0>Klicke hier, um ihn erneut zu senden." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Du hast keine E-Mail erhalten? <0>Hier klicken, um sie erneut zu senden." @@ -3700,16 +3939,21 @@ msgstr "Keine Sorge! Alle vorhandenen Nachrichten und Einstellungen werden gespe #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Fertig" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Doppeltippen, um den Dialog zu schließen" @@ -3737,38 +3981,46 @@ msgstr "Doppeltippen, um den Dialog zu schließen" msgid "Double tap to like" msgstr "Doppelt tippen, um „Gefällt mir“ zu geben" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Bluesky herunterladen" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR-Datei herunterladen" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR-Datei herunterladen" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" -msgstr "Chat-Daten herunterladen" +msgstr "Chatdaten herunterladen" #: src/screens/Settings/components/ExportCarDialog.tsx:154 msgctxt "button" msgid "Download chat data" -msgstr "Chat-Daten herunterladen" +msgstr "Chatdaten herunterladen" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Bild herunterladen" +#: 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 "Profildaten herunterladen" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Profildaten herunterladen" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Doxxing" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Aufgrund der Gesetze in deiner Region sind bestimmte Funktionen auf Blue msgid "Duration:" msgstr "Dauer: " +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "z. B. alice" @@ -3823,9 +4079,8 @@ msgstr "z. B. Nutzer, die wiederholt mit Werbung antworten." msgid "Eating disorders" msgstr "Essstörungen" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Bearbeiten" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Profilbild bearbeiten" @@ -3847,19 +4102,19 @@ msgstr "Profilbild bearbeiten" msgid "Edit Feeds" msgstr "Feeds bearbeiten" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Gruppenname bearbeiten" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Bild bearbeiten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Interaktionseinstellungen bearbeiten" @@ -3868,7 +4123,16 @@ msgstr "Interaktionseinstellungen bearbeiten" msgid "Edit interests" msgstr "Interessen bearbeiten" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Einladungslink bearbeiten" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Einladungslink bearbeiten" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Link-Einstellungen bearbeiten" @@ -3886,20 +4150,15 @@ msgstr "Live-Status bearbeiten" msgid "Edit moderation list" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Name bearbeiten" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Mitteilungen von {0} bearbeiten" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Personen bearbeiten" @@ -3912,12 +4171,12 @@ msgstr "Post-Interaktionseinstellungen bearbeiten" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Profil bearbeiten" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -3925,7 +4184,8 @@ msgstr "Profil bearbeiten" msgid "Edit starter pack" msgstr "Startpaket bearbeiten" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Namen dieses Gruppenchats bearbeiten" @@ -3937,7 +4197,7 @@ msgstr "Nutzerliste bearbeiten" msgid "Edit who can reply" msgstr "Bearbeiten, wer antworten kann" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Dein Startpaket bearbeiten" @@ -3971,7 +4231,7 @@ msgstr "E-Mail-Adresse" msgid "Email Resent" msgstr "E-Mail erneut gesendet" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-Mail gesendet!" @@ -4006,8 +4266,8 @@ msgstr "Bette diesen Post in deine Website ein. Kopiere einfach den folgenden Co msgid "Embedded video player" msgstr "Eingebetteter Video-Player" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Aktivieren" @@ -4025,7 +4285,7 @@ msgstr "Inhalte für Erwachsene aktivieren" msgid "Enable captions" msgstr "Untertitel aktivieren" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "E-Mail-2FA (Zwei-Faktor-Authentisierung) aktivieren" @@ -4038,13 +4298,12 @@ msgstr "Externe Medien aktivieren" msgid "Enable media players for" msgstr "Medienplayer aktivieren für" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktiviere Mitteilungen für einen Account, indem du dessen Profil aufrufst und auf das <0>Glocken-Symbol <1/> klickst." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Push-Mitteilungen aktivieren" @@ -4091,8 +4350,8 @@ msgstr "Gib ein Passwort ein" msgid "Enter a word or tag" msgstr "Gib ein Wort oder einen Tag ein" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Code eingeben" @@ -4143,12 +4402,12 @@ msgstr "Vollbildmodus aktivieren" msgid "Entertainment" msgstr "Unterhaltung" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fehler" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Fehler beim Abrufen der neuesten Daten." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Jedem" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Jedem" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Jedem" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Alles andere" @@ -4217,16 +4476,16 @@ msgstr "Nutzer ausgeschlossen, denen du folgst" msgid "Exit fullscreen" msgstr "Vollbildmodus beenden" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Alt-Text erweitern" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Liste der Nutzer erweitern" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Erweitere oder reduziere den gesamten Post, auf den du antwortest" @@ -4238,7 +4497,7 @@ msgstr "Text des Posts ausklappen" msgid "Expands or collapses post text" msgstr "Text des Posts erweitern oder einklappen" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Erwartete uri, um einen Eintrag aufzulösen" @@ -4277,10 +4536,10 @@ msgstr "Explizite oder potenziell verstörende Medien." msgid "Explicit sexual images." msgstr "Explizite sexuelle Bilder." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Entdecken" @@ -4289,11 +4548,8 @@ msgstr "Entdecken" msgid "Explore the app" msgstr "Entdecke die App" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Chatdaten exportieren" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Meine Chatdaten exportieren" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Externe Medienpräferenzen" @@ -4331,18 +4587,22 @@ msgstr "Externe Medienpräferenzen" msgid "Extremist content" msgstr "Extremistische Inhalte" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Chat konnte nicht angenommen werden" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Beitrittsanfrage konnte nicht angenommen werden" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Fehler beim Hinzufügen der Emoji-Reaktion" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Mitglieder konnten nicht hinzugefügt werden" @@ -4354,7 +4614,8 @@ msgstr "Hinzufügen zum Startpaket fehlgeschlagen" msgid "Failed to change handle. Please try again." msgstr "Fehler beim Ändern des Handles. Bitte versuche es erneut." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Link konnte nicht kopiert werden" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Fehler beim Erstellen des App-Passworts. Bitte versuche es erneut." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Fehler beim Erstellen der Konversation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Einladungslink konnte nicht erstellt werden" @@ -4376,17 +4637,17 @@ msgstr "Einladungslink konnte nicht erstellt werden" msgid "Failed to create starter pack" msgstr "Startpaket konnte nicht erstellt werden" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Chat konnte nicht gelöscht werden" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Nachricht konnte nicht gelöscht werden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Post konnte nicht gelöscht werden, bitte versuche es erneut" @@ -4394,24 +4655,24 @@ msgstr "Post konnte nicht gelöscht werden, bitte versuche es erneut" msgid "Failed to delete starter pack" msgstr "Startpaket konnte nicht gelöscht werden" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Einladungslink konnte nicht deaktiviert werden" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Germ DM konnte nicht getrennt werden. Fehler: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Gruppenchat-Name konnte nicht bearbeitet werden" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Einladungslink konnte nicht bearbeitet werden" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Einladungslink konnte nicht aktiviert werden" @@ -4427,19 +4688,27 @@ msgstr "Fehler beim Folgen all deiner Freunde. Bitte versuche es erneut" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Vorschlag konnte nicht ausgeblendet werden. Bitte überprüfe deine Internetverbindung" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Beitrittsanfrage konnte nicht ignoriert werden" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Du konntest dem Gruppenchat nicht beitreten. Bitte versuche es erneut." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "SMS-App konnte nicht gestartet werden" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Gruppenchat konnte nicht verlassen werden" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Fehler beim Laden der Konversationen" @@ -4456,17 +4725,8 @@ msgstr "Feeds konnten nicht geladen werden" msgid "Failed to load feeds preferences" msgstr "Fehler beim Laden der Einstellungen für Feeds" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Mitteilungseinstellungen konnten nicht geladen werden." @@ -4493,16 +4753,15 @@ msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden." msgid "Failed to load suggested follows" msgstr "Die vorgeschlagenen Accounts, denen du folgen solltest, konnten nicht geladen werden" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Gruppenchat konnte nicht gesperrt werden" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Fehler beim Markieren aller Anfragen als gelesen" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Gruppenchat konnte nicht stummgeschaltet werden" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Post konnte nicht angeheftet werden" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Germ DM konnte nicht wieder verbunden werden. Fehler: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Daten konnten aufgrund eines Netzwerkfehlers nicht entfernt werden. Bitte überprüfe deine Internetverbindung." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Daten konnten nicht entfernt werden. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Fehler beim Entfernen der Emoji-Reaktion" @@ -4534,7 +4793,8 @@ msgstr "Fehler beim Entfernen der Emoji-Reaktion" msgid "Failed to remove from starter pack" msgstr "Fehler beim Entfernen aus dem Startpaket" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Gruppenmitglied konnte nicht entfernt werden" @@ -4542,15 +4802,20 @@ msgstr "Gruppenmitglied konnte nicht entfernt werden" msgid "Failed to remove verification" msgstr "Verifizierung konnte nicht entfernt werden" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Deine Anfrage konnte nicht zurückgezogen werden. Bitte versuche es erneut." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Standort konnte nicht ermittelt werden. Bitte versuche es erneut." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Fehler beim Speichern des Entwurfs" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Bild konnte nicht gespeichert werden" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Interessen konnten nicht gespeichert werden." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "E-Mail konnte nicht gesendet werden, bitte versuche es erneut." @@ -4580,16 +4845,16 @@ msgstr "Meldung konnte nicht gesendet werden" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Einspruch konnte nicht eingereicht werden. Bitte versuche es erneut." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Du konntest die Stummschaltung des Threads nicht aktivieren oder deaktivieren. Bitte versuche es erneut" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Gruppenchat konnte nicht entsperrt werden" @@ -4597,12 +4862,12 @@ msgstr "Gruppenchat konnte nicht entsperrt werden" msgid "Failed to unpin list" msgstr "Fehler beim Lösen der Liste" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Fehler beim Aktualisieren der E-Mail-2FA-Einstellungen" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "E-Mail konnte nicht aktualisiert werden, bitte versuche es erneut." @@ -4614,7 +4879,7 @@ msgstr "Aktualisierung der Feeds fehlgeschlagen" msgid "Failed to update notification declaration" msgstr "Aktualisierung der Mitteilungserklärung fehlgeschlagen" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Einstellungen konnten nicht aktualisiert werden" @@ -4641,7 +4906,7 @@ msgstr "Fake-Account oder Bot" msgid "False information about elections" msgstr "Falsche Informationen über Wahlen" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed von {0}" @@ -4662,7 +4927,7 @@ msgstr "Feed-Ersteller" msgid "Feed identifier" msgstr "Feed-Kennzeichen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Feed-Menü" @@ -4676,25 +4941,25 @@ msgstr "Feed nicht verfügbar" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback an Feed-Betreiber gesendet" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,7 @@ msgstr "Suche nach Sprache filtern (derzeit: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtere, von wem du Mitteilungen erhalten möchtest" @@ -4747,11 +5012,11 @@ msgstr "Filtere, von wem du Mitteilungen erhalten möchtest" msgid "Finalizing" msgstr "Abschließen" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Endlich!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Endlich! Behalte Posts, die dir wichtig sind, im Auge. Speichere sie, um sie jederzeit wieder ansehen zu können." @@ -4768,19 +5033,17 @@ msgstr "Finanzen" msgid "Find accounts to follow" msgstr "Accounts zum Folgen finden" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Kontakte finden" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Freunde finden" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Freunde aus Kontakten finden" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Kontakte finden" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Meine Freunde finden" msgid "Find people to follow" msgstr "Finde Leute zum Folgen" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Finde Posts, Nutzer und Feeds auf Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Finde deine Freunde" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "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)" @@ -4847,22 +5114,22 @@ msgstr "Suchfeld fokussieren" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Folgen" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} folgen" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "{displayName} folgen" @@ -4892,8 +5159,8 @@ msgstr "Account folgen" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Allen Accounts folgen" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Ebenfalls folgen" @@ -4916,7 +5183,7 @@ msgstr "Ebenfalls folgen" msgid "Followed all accounts!" msgstr "Allen Accounts gefolgt!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Allen Übereinstimmungen gefolgt" @@ -4944,8 +5211,12 @@ msgstr "Gefolgt von <0>{0} und <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Gefolgt von <0>{0}, <1>{1} und {2, plural, one {# anderer Person} other {# anderen}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Follower können beitreten" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Follower von @{0}, die du kennst" @@ -4960,10 +5231,10 @@ msgstr "Follower, die du kennst" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Folge ich" @@ -4977,12 +5248,12 @@ msgstr "Folge ich" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Du folgst jetzt {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "{displayName} Folge ich" @@ -4995,19 +5266,16 @@ msgstr "{handle} Folge ich" msgid "Following feed preferences" msgstr "Following-Feed-Einstellungen" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Following-Feed-Einstellungen" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Folgt dir" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Folgt dir" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Schriftart" @@ -5065,11 +5333,16 @@ msgstr "Passwort vergessen?" msgid "Forgot?" msgstr "Vergessen?" +#. 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:12 msgid "Free your feed" msgstr "Befreie deinen Feed" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Von" @@ -5086,82 +5359,86 @@ msgstr "Von <0/>" msgid "Generate a starter pack" msgstr "Ein Startpaket generieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Einladungslink generieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Neuen Einladungslink generieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Neuen Link generieren" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM getrennt" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM-Link" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM wieder verbunden" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Hilfe erhalten" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Mitteilungen erhalten, wenn dir jemand folgt." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Mitteilungen erhalten, wenn Personen Posts mit „Gefällt mir“ markieren, die du repostet hast." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Mitteilungen erhalten, wenn Personen deine Posts mit „Gefällt mir“ markieren." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +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:285 msgid "Get notifications when people mention you." msgstr "Mitteilungen erhalten, wenn dich jemand erwähnt." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Mitteilungen erhalten, wenn jemand deine Posts zitiert." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Mitteilungen erhalten, wenn jemand auf deine Posts antwortet." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Mitteilungen erhalten, wenn jemand Posts repostet, die du repostet hast." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Mitteilungen erhalten, wenn jemand deine Posts repostet." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Erhalte Mitteilungen, wenn Personen deine Reposts reposten." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Erhalte Mitteilungen über neue Posts" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Mitteilungen zu Posts und Antworten von ausgewählten Accounts erhalten." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Erhalte Mitteilungen über neue Posts von {name}" @@ -5174,27 +5451,27 @@ msgstr "Erhalte Mitteilungen über die Aktivitäten dieses Accounts" msgid "Get notified when {name} posts" msgstr "Mitteilungen erhalten, wenn {name} Posts veröffentlicht" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Mitteilungen erhalten, wenn jemand Posts veröffentlicht" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Los geht's" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF hochgeladen" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Gib deinem Profil ein Gesicht" @@ -5213,20 +5490,20 @@ msgstr "Verherrlichung von Gewalt" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Zurück" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Zurück" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Zum vorherigen Schritt zurückgehen" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Zur Startseite" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Zur Startseite" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Zur Startseite" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Live gehen (deaktiviert)" msgid "Go live for" msgstr "Live gehen für" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Zum Profil von {firstAuthorName} gehen" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Zu Account-Einstellungen gehen" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Zur Konversation mit {0} gehen" @@ -5296,23 +5571,23 @@ msgstr "Zum Feed gehen" msgid "Go to next" msgstr "Zum nächsten Schritt wechseln" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Zum Profil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Zum Gruppenchat „{chatName}“ wechseln" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Zum Profil des Nutzers gehen" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Zum Profil des Nutzers gehen" @@ -5320,11 +5595,18 @@ msgstr "Zum Profil des Nutzers gehen" msgid "Going live is currently disabled for your account" msgstr "Die Live-Funktion ist für deinen Account derzeit deaktiviert" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Verstanden" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Drastische Gewaltdarstellungen" msgid "Grooming or predatory behavior" msgstr "Grooming oder ausbeuterisches Verhalten" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Gruppenchat" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Dialog für Einladungslink des Gruppenchats" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Gruppenchat gesperrt" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Gruppenchat stummgeschaltet" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Name des Gruppenchats aktualisiert" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Gruppenchat-Einstellungen" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Gruppenchat entsperrt" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Gruppenchat nicht mehr stummgeschaltet" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Gruppenchats sind noch nicht verfügbar" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Gruppenchats sind jetzt verfügbar" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Gruppenchats können maximal {0, plural, other {# Personen}} umfassen." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Gruppe ist gesperrt" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Gruppenname" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 #.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Hacking oder Systemangriffe" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Handle zu lang. Bitte versuche einen kürzeren." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Jetzt gerade" @@ -5446,7 +5744,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:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "Hassrede" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Du hast einen Code? <0>Hier klicken." @@ -5479,11 +5777,11 @@ msgstr "Von Bluesky 7 Tage lang gespeichert, um Missbrauch zu verhindern, anschl #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Hilfe" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Ausgeblendete Liste" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Ausgeblendete Liste" msgid "Hide" msgstr "Ausblenden" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ausblenden" @@ -5553,18 +5851,18 @@ msgstr "Gruppenchat-Updates ausblenden" msgid "Hide lists" msgstr "Listen ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Post für mich ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Antwort für alle ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Antwort für mich ausblenden" @@ -5577,19 +5875,19 @@ msgstr "Diese Karte ausblenden" msgid "Hide this event" msgstr "Dieses Event ausblenden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Diesen Post ausblenden?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Diese Antwort ausblenden?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Übersetzung ausblenden" @@ -5606,7 +5904,7 @@ msgstr "Angesagte Themen ausblenden?" msgid "Hide trending videos?" msgstr "Angesagte Videos ausblenden?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Nutzerliste ausblenden" @@ -5620,6 +5918,10 @@ msgstr "Verifizierungsabzeichen ausblenden" msgid "Hides the content" msgstr "Blendet den Inhalt aus" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hm, du scheinst mit einem <0>App-Passwort eingeloggt zu sein. Um dein Geburtsdatum festlegen zu können, musst du dich mit deinem Hauptpasswort einloggen oder die Person, die diesen Account verwaltet, darum bitten, dies zu tun." @@ -5652,19 +5954,15 @@ msgstr "Hm, es scheint Probleme beim Laden dieser Daten zu geben. Weitere Detail msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hm, wir konnten diesen Moderationsdienst nicht laden." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Einen Moment! Wir gewähren nach und nach Zugriff auf dieses Video und du bist noch in der Warteschlange. Versuche es in Kürze erneut!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Moment! Diese Funktion ist für dich noch nicht verfügbar. Bitte schau später nochmal vorbei." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Startseite" @@ -5721,7 +6019,7 @@ msgstr "Verstanden" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Ich bin auf Bluesky als {0} - komm und finde mich! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Schaltet den erweiterten Status des Alt-Textes um, wenn dieser lang ist" @@ -5757,15 +6055,15 @@ msgstr "Wenn du diese Liste löschst, kannst du sie nicht wiederherstellen." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Wenn du eine eigene Domain hast, kannst du diese als deinen Handle verwenden. Dadurch kannst du deine Identität selbst verifizieren. <0>Hier erfährst du mehr (auf Englisch)." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Wenn du deine E-Mail aktualisieren musst, <0>klicke hier." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Wenn du diesen Post löschst, kannst du ihn nicht wiederherstellen." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Wenn du deine E-Mail aktualisierst, wird E-Mail-2FA (Zwei-Faktor-Authentisierung) deaktiviert." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Wenn du einschränken möchtest, wer Mitteilungen über die Aktivitäten deines Accounts erhalten kann, kannst du das unter <0>Einstellungen → Datenschutz und Sicherheit ändern." @@ -5786,23 +6083,23 @@ msgstr "Falls du ein Entwickler bist, kannst du deinen eigenen Server hosten." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Falls du versuchst, deinen Handle oder deine E-Mail zu ändern, tu dies, bevor du deinen Account deaktivierst." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Bild" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Bild {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Bild {0} von {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Bild {0} von {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Bildcache geleert, {0} freigegeben" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Bildergalerie, {0} Bilder" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Bild ist aufgrund deiner Moderationseinstellungen ausgeblendet." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Bild nicht verfügbar." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Bildoptionen" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Identitätsvortäuschung" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Kontakte importieren" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Kontakte importieren" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Kontakte importieren, um deine Freunde zu finden" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importiert am {0}" @@ -5881,40 +6182,40 @@ msgstr "Importiert am {0}" 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 "Um dir ein altersgerechtes Erlebnis bieten zu können, benötigen wir dein Geburtsdatum. Das ist einmalig und deine Daten werden vertraulich behandelt." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "In-App" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "In-App-Mitteilungen" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "In-App, alle" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "In-App, Personen, denen du folgst" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "In-App, Push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "In-App, Push, alle" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "In-App, Push, Personen, denen du folgst" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" -msgstr "Postfach leer" +msgstr "Posteingang leer" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Posteingang leer!" @@ -5954,6 +6255,10 @@ msgstr "Entwürfe sind jetzt verfügbar" msgid "Introducing finding friends via contacts" msgstr "Wir stellen vor, wie man über Kontakte Freunde findet" +#: 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 "Einführung gespeicherter Posts, auch bekannt als Lesezeichen" @@ -5963,11 +6268,15 @@ msgstr "Einführung gespeicherter Posts, auch bekannt als Lesezeichen" msgid "Invalid 2FA confirmation code." msgstr "Ungültiger 2FA-Bestätigungscode." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Ungültiger Gruppenchat-Code." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Ungültiger handle. Bitte versuche einen anderen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Ungültige Interaktionseinstellungen." @@ -5977,10 +6286,15 @@ msgstr "Ungültige Interaktionseinstellungen." msgid "Invalid phone number" msgstr "Ungültige Telefonnummer" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Ungültiges Meldethema" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Anfrage konnte nicht zurückgezogen werden." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Ungültiger Bestätigungscode" @@ -6001,8 +6315,15 @@ msgstr "Einladungscode" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Freunde einladen" @@ -6010,21 +6331,31 @@ msgstr "Freunde einladen" msgid "Invite friends <0/>" msgstr "Freunde einladen <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Einladungslink" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Einladungslink" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Einladungslink erstellt" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Einladungslink deaktiviert" @@ -6040,11 +6371,16 @@ msgstr "Einladungslink aktiviert" msgid "Invite people to this starter pack!" msgstr "Lade Leute zu diesem Startpaket ein!" +#: 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 "Lade deine Freunde ein, deinen liebsten Feeds und Personen zu folgen" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Eingeladen" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Job-ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Job-ID: {0}" msgid "Jobs" msgstr "Jobs" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Beitreten" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Jobs" msgid "Join Bluesky" msgstr "Tritt Bluesky bei" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Gruppenchat beitreten" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Beitrittsanfrage zurückgezogen." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "An der Konversation teilnehmen" msgid "Journalism" msgstr "Journalismus" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Weiter bearbeiten" @@ -6109,6 +6460,11 @@ msgstr "Weiter bearbeiten" msgid "Keep me posted" msgstr "Halte mich auf dem Laufenden" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS-Website" @@ -6143,7 +6499,7 @@ msgstr "Kennzeichnungen auf deinem Account" msgid "Labels on your content" msgstr "Kennzeichnungen zu deinen Inhalten" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Spracheinstellungen" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Neuste" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Erfahre mehr darüber, wie das Einladen von Freunden funktioniert" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Erfahre mehr über das Importieren von Kontakten (auf Englisch)" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Erfahre mehr über diese Warnung" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Mehr über die Verifizierung auf Bluesky erfahren (auf Englisch)" @@ -6239,7 +6595,7 @@ msgstr "Mehr über die Verifizierung auf Bluesky erfahren (auf Englisch)" msgid "Learn more about what is public on Bluesky." msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist (auf Englisch)." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Mehr über deinen Germ DM-Link erfahren" @@ -6252,31 +6608,33 @@ msgstr "Mehr dazu in deinen <0>Account-Einstellungen" msgid "Learn more." msgstr "Mehr erfahren." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Verlassen" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Chat verlassen" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Konversation verlassen" @@ -6284,13 +6642,14 @@ msgstr "Konversation verlassen" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Konversation verlassen" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Gruppenchat verlassen" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Diesen Gruppenchat verlassen" @@ -6299,6 +6658,14 @@ msgstr "Diesen Gruppenchat verlassen" msgid "Leaving Bluesky" msgstr "Bluesky verlassen" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "verbleibend." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Hell" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Gefällt mir" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gefällt mir ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "„Gefällt mir“-Mitteilungen" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Diesen Feed mit „Gefällt mir“ markieren" @@ -6358,8 +6721,8 @@ msgstr "Diesen Feed mit „Gefällt mir“ markieren" msgid "Like this labeler" msgstr "Diesen Kennzeichner mit „Gefällt mir“ markieren" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Mit „Gefällt mir“ markiert von" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gefällt {0, plural, one {# Nutzer} other {# Nutzern}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gefällt {likeCount, plural, one {# Nutzer} other {# Nutzern}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Gefällt mir" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "„Gefällt mir“ für deine Reposts" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Mitteilungen über „Gefällt mir“-Angaben zu deinen Reposts" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "„Gefällt mir“-Angaben für diesen Post" @@ -6409,11 +6768,11 @@ msgstr "„Gefällt mir“-Angaben für diesen Post" msgid "Linear" msgstr "Linear" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Link in die Zwischenablage kopiert" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Liste" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste nicht mehr stummgeschaltet" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listen" @@ -6545,7 +6904,7 @@ msgstr "Live-Event wieder eingeblendet" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Live-Events werden gelegentlich angezeigt, wenn etwas Spannendes passiert. Wenn du möchtest, kannst du dieses Event ausblenden oder alle Events an dieser Stelle in deiner App-Oberfläche ausblenden." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Die Live-Funktion befindet sich in der Beta-Phase" @@ -6595,27 +6954,27 @@ msgstr "Post-Interaktionseinstellungen werden geladen..." msgid "Loading..." msgstr "Wird geladen..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Sperren" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Gruppenchat sperren" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Gruppenchat sperren?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Diesen Gruppenchat sperren" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Gesperrt" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Log" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo von @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo von <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Es sieht so aus, als ob du einen Following-Feed vermisst. <0>Klicke hier msgid "Love GIFs" msgstr "Liebes-GIFs" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "E-Mail-Einstellungen für deinen Account anpassen" @@ -6687,24 +7046,22 @@ msgstr "Verifizierungseinstellungen verwalten" msgid "Manage your muted words and tags" msgstr "Verwalte deine stummgeschalteten Wörter und Tags" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Alle als gelesen markieren" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Als gelesen markieren" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Alle als gelesen markiert" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Vielleicht später" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Mitglieder" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Mitglieder können weiterhin den Chatverlauf lesen, aber keine neuen Nachrichten senden." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Erwähnungsmitteilungen" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "erwähnte Nutzer" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Erwähnungen" @@ -6761,7 +7118,7 @@ msgstr "Nachricht" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Nachricht senden" @@ -6771,26 +7128,26 @@ msgstr "Nachricht senden" msgid "Message {0}" msgstr "{0} anschreiben" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Nachricht an {displayName} senden" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Nachricht gelöscht" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Nachricht gelöscht" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Nachricht konnte nicht gesendet werden." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Nachricht von @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Nachricht ist zu lang" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Nachricht ist zu lang ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Nachrichtenoptionen" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Nachrichten" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "Nachrichten dieser Person sind ausgeblendet, solange du sie blockierst." @@ -6838,10 +7195,6 @@ msgstr "Mitternacht" msgid "Minor harassment or bullying" msgstr "Belästigung oder Mobbing von Minderjährigen" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Sonstige Mitteilungen" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Irreführend" @@ -6850,7 +7203,7 @@ msgstr "Irreführend" msgid "Missing media" msgstr "Fehlende Medien" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -6894,7 +7247,7 @@ msgstr "Moderationsliste aktualisiert" msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderationslisten" @@ -6903,7 +7256,7 @@ msgstr "Moderationslisten" msgid "moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderationsstatus" @@ -6928,8 +7281,8 @@ msgstr "Weitere Sprachen..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Mehr Optionen" @@ -6949,7 +7302,7 @@ msgstr "Filme" msgid "Music" msgstr "Musik" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Stummschalten" @@ -6965,8 +7318,8 @@ msgstr "Stummschalten" msgid "Mute {0}" msgstr "{0} stummschalten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Account stummschalten" msgid "Mute accounts" msgstr "Accounts stummschalten" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Konversation stummschalten" @@ -6994,7 +7347,7 @@ msgstr "Liste stummschalten" msgid "Mute these accounts?" msgstr "Diese Accounts stummschalten?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Diesen Gruppenchat stummschalten" @@ -7022,17 +7375,21 @@ msgstr "Dieses Wort nur in Tags stummschalten" msgid "Mute this word until you unmute it" msgstr "Dieses Wort stummschalten, bis du es wieder freigibst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Thread stummschalten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Wörter und Tags stummschalten" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "Stummgeschaltet" @@ -7040,7 +7397,7 @@ msgstr "Stummgeschaltet" msgid "Muted accounts" msgstr "Stummgeschaltete Accounts" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Stummgeschaltete Accounts" @@ -7062,6 +7419,10 @@ msgstr "Stummgeschaltete Wörter und Tags" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Stummschaltung ist privat. Stummgeschaltete Accounts können mit dir interagieren, aber du siehst ihre Posts nicht und erhältst keine Mitteilungen von ihnen." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Zum Startpaket navigieren" msgid "Navigates to the next screen" msgstr "Navigiert zum nächsten Bildschirm" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navigiert zu deinem Profil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Möchtest du eine Urheberrechtsverletzung, eine rechtliche Anfrage oder ein Problem mit der Einhaltung von Vorschriften melden?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Neu" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Neuer Post} other {Neue Posts}} von {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Neuer Chat" @@ -7163,7 +7525,7 @@ msgstr "Neuer Chat mit {0} und {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Neuer Chat mit {0}, {1} und {memberCount, plural, one {{memberCount} weiteren Person} other {{memberCount} weiteren Personen}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Neue E-Mail-Adresse" @@ -7171,32 +7533,30 @@ msgstr "Neue E-Mail-Adresse" #: 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 "Neue Funktion" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Mitteilungen über neue Follower" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Neue Follower" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Neuer Gruppenchat" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Neuer Gruppenchat mit:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Neuer Post" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Neuer Post" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Neue Posts von {firstAuthorLink} und <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer Person} other {{formattedAuthorsCount} weiteren Personen}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Neue Posts von {firstAuthorName} und {additionalAuthorsCount, plural, one {{formattedAuthorsCount} weiterer} other {{formattedAuthorsCount} weitere}}" @@ -7262,8 +7622,8 @@ msgstr "Aktuelles" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Weiter" msgid "Next image" msgstr "Nächstes Bild" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Noch keine Follower" @@ -7335,7 +7699,7 @@ msgstr "Keine GIFs für „{query}“ gefunden." msgid "No GIFs to show right now. Try again in a moment." msgstr "Derzeit gibt es keine GIFs zum Anzeigen. Versuche es gleich noch einmal." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Kein Bild" @@ -7353,8 +7717,8 @@ msgstr "Keine Listen" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Du folgst {0} nicht mehr" @@ -7362,7 +7726,7 @@ msgstr "Du folgst {0} nicht mehr" msgid "No media yet" msgstr "Noch keine Medien" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Noch keine Nachrichten" @@ -7378,12 +7742,12 @@ msgstr "Kein Name" msgid "No notifications yet!" msgstr "Noch keine Mitteilungen!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Niemandem" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Niemandem" @@ -7399,7 +7763,7 @@ msgstr "Niemanden" msgid "No one but the author can quote this post." msgstr "Niemand außer dem Autor kann diesen Post zitieren." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Niemand kann Nachrichten senden" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Kein Ergebnis" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Keine Ergebnisse" @@ -7446,8 +7810,8 @@ msgstr "Keine Ergebnisse" msgid "No results for \"{0}\"." msgstr "Keine Ergebnisse für „{0}“." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Keine Ergebnisse gefunden" @@ -7509,12 +7873,12 @@ msgstr "Intime Bilder ohne Einwilligung" msgid "Non-sexual Nudity" msgstr "Nicht-sexuelle Nacktheit" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Keine" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Auf dieser Plattform nicht verfügbar." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Nicht gefunden" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Noch nicht bereit zum Posten? Bewahre deine besten Ideen in den Entwürfen auf, bis der richtige Moment gekommen ist." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Hinweis über das Teilen" @@ -7548,44 +7912,31 @@ msgstr "Hinweis: Dieser Post ist nur für eingeloggte Nutzer sichtbar." msgid "Nothing saved yet" msgstr "Noch nichts gespeichert" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Mitteilungseinstellungen" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Mitteilungstöne" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Mitteilungen" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Mitteilungen für alles andere, z. B. wenn jemand über eines deiner Startpakete beitritt." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "jetzt" @@ -7601,7 +7952,7 @@ msgstr "Nummer muss eine Handynummer sein" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Aus" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Okay" @@ -7648,35 +8000,35 @@ msgstr "auf<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Onboarding zurücksetzen" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Einer der ausgewählten Empfänger erlaubt keine Gruppenchats." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Einer der ausgewählten Empfänger hat dich blockiert und kann nicht angeschrieben werden." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "Bei einem oder mehreren GIFs fehlen Alt-Texte." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlen Alt-Texte." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Eine oder mehrere deiner ausgewählten Dateien werden nicht unterstützt." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Eine oder mehrere deiner ausgewählten Dateien sind zu groß. Die maximale Größe beträgt 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte." @@ -7685,6 +8037,26 @@ msgstr "Bei einem oder mehreren Videos fehlen Alt-Texte." msgid "Only {0} can reply." msgstr "Nur {0} kann antworten." +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Nur Administratoren können Beitrittsanfragen annehmen." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Nur Administratoren können Beitrittsanfragen ignorieren." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Nur Follower können diesem Gruppenchat beitreten." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Nur Follower, denen ich folge" msgid "Only image files are supported" msgstr "Es werden nur Bilddateien unterstützt" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Nur Personen, denen {0} folgt, können beitreten." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Nur Personen, denen der Chat-Inhaber folgt, können beitreten" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Es werden nur WebVTT-Dateien (.vtt) unterstützt" @@ -7703,6 +8085,10 @@ msgstr "Es werden nur WebVTT-Dateien (.vtt) unterstützt" msgid "Oops, something went wrong!" msgstr "Huch, da ist etwas schief gelaufen!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Huch, da ist etwas schief gelaufen!" msgid "Oops!" msgstr "Huch!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Profilbild-Editor öffnen" @@ -7720,12 +8106,17 @@ msgstr "Profilbild-Editor öffnen" msgid "Open camera" msgstr "Kamera öffnen" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Chat öffnen" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Chat-Mitglieds-Optionen für {displayName} öffnen" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Konversationsoptionen öffnen" @@ -7739,16 +8130,16 @@ msgstr "Seitenmenü öffnen" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Emoji-Picker öffnen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Feed-Optionsmenü öffnen" @@ -7760,13 +8151,22 @@ msgstr "Vollständige Emoji-Liste öffnen" msgid "Open Germ DM" msgstr "Germ DM öffnen" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Gruppenchat öffnen" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Gruppenchat-Einstellungen öffnen" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Link zu {niceUrl} öffnen" @@ -7790,11 +8190,15 @@ msgstr "Paket öffnen" msgid "Open post options menu" msgstr "Post-Optionen-Menü öffnen" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Profil öffnen" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Storybook öffnen" msgid "Open system log" msgstr "Systemprotokoll öffnen" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Diesen Gruppenchat öffnen" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Öffnet einen Dialog, um eine Inhaltswarnung zu deinem Post hinzuzufüge msgid "Opens a dialog to choose who can interact with this post" msgstr "Öffnet einen Dialog, in dem du auswählen kannst, wer mit diesem Post interagieren darf" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Öffnet zusätzliche Details für einen Debug-Eintrag" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Öffnet die Kamera auf dem Gerät" @@ -7858,22 +8270,24 @@ msgstr "Öffnet den Post-Editor" msgid "Opens device camera" msgstr "Öffnet die Gerätekamera" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Öffnet die Gerätegalerie, um bis zu {MAX_IMAGES, plural, other {# Bilder}} oder ein einzelnes Video oder GIF auszuwählen." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Öffnet die Gerätegalerie, um bis zu {MAX_GALLERY_IMAGES, plural, other {# Bilder}} oder ein einzelnes Video oder GIF auszuwählen." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Öffnet den Ablauf zum Einloggen bei deinem bestehenden Bluesky-Account" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Öffnet das vollständige Bild" @@ -7890,7 +8304,7 @@ msgstr "Öffnet die Bildauswahl" msgid "Opens link {0}" msgstr "Öffnet Link {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Öffnet den Live-Status-Dialog" @@ -7902,15 +8316,23 @@ msgstr "Öffnet das Formular zum Zurücksetzen des Passworts" msgid "Opens post language settings" msgstr "Öffnet die Post-Spracheinstellungen" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Öffnet das Profil" +#: 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 "Öffnet den GIF-Auswahldialog" +#: 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 "Öffnet den Post-Editor" @@ -7919,9 +8341,8 @@ msgstr "Öffnet den Post-Editor" msgid "Opens this draft in the composer" msgstr "Öffnet diesen Entwurf im Editor" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Öffnet dieses Profil" @@ -7997,12 +8418,12 @@ msgstr "Unser Blogpost" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Unser Moderationsteam hat deinen Bericht erhalten." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Unsere Moderatoren haben die Meldungen geprüft und beschlossen, deinen Zugriff auf Chats auf Bluesky zu deaktivieren." @@ -8010,14 +8431,15 @@ msgstr "Unsere Moderatoren haben die Meldungen geprüft und beschlossen, deinen msgid "Owner" msgstr "Inhaber" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Seite nicht gefunden" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Der Inhaber muss die Gruppe sperren, bevor er sie verlassen kann." -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Seite nicht gefunden" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Video pausieren" msgid "People" msgstr "Personen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Personen, denen {ownerName} folgt, können sofort beitreten" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Personen, denen ich folge" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Personen, denen ich folge, können sofort beitreten" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Personen, denen ich folge, können eine Beitrittsanfrage stellen" @@ -8136,13 +8558,17 @@ msgstr "Telefonnummer verifiziert" msgid "Photography" msgstr "Fotografie" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Bilder für Erwachsene." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Feed anheften" @@ -8152,12 +8578,12 @@ msgstr "Feed anheften" msgid "Pin to home" msgstr "An die Startseite anheften" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "An Startbildschirm anheften" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "An dein Profil anheften" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Angeheftet" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} an Startseite angepinnt" @@ -8236,7 +8662,7 @@ msgstr "Bitte wähle deinen Handle." msgid "Please choose your password." msgstr "Bitte wähle dein Passwort." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Bitte klicke auf den Link in der E-Mail, die wir dir gerade gesendet hab msgid "Please complete the verification captcha." msgstr "Bitte vervollständige das Verifizierungs-Captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Bitte bestätige deine E-Mail-Adresse, um Videos hochladen zu können." @@ -8265,14 +8691,14 @@ msgstr "Bitte gib ein Passwort ein. Es muss mindestens 8 Zeichen lang sein." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Bitte gib einen eindeutigen Namen für dieses App-Passwort ein oder verwende unseren zufällig generierten Namen." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Bitte gib einen gültigen Code ein." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Bitte gib eine gültige E-Mail-Adresse ein." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Bitte gib eine gültige, dauerhafte E-Mail-Adresse ein. Du musst möglicherweise später auf diese E-Mail zugreifen können." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Bitte gib unten den Code ein, den wir an <0>{0} gesendet haben." @@ -8293,7 +8719,7 @@ msgstr "Bitte gib unten den Code ein, den wir an <0>{0} gesendet haben." msgid "Please enter the code you received and the new password you would like to use." msgstr "Bitte gib den erhaltenen Code und das neue Passwort ein, das du verwenden möchtest." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Bitte gib deine E-Mail ein." msgid "Please enter your invite code." msgstr "Bitte gib deinen Einladungscode ein." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Bitte gib deine neue E-Mail-Adresse ein." @@ -8323,7 +8749,7 @@ msgstr "Bitte gib deinen Nutzernamen ein" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Bitte erläutere, warum du denkst, dass diese Kennzeichnung von {0} fälschlicherweise vergeben wurde" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Bitte erkläre, warum du denkst, dass deine Chats fälschlicherweise deaktiviert wurden" @@ -8358,7 +8784,11 @@ msgstr "Bitte wähle einen Grund für diese Meldung aus" msgid "Please sign in as @{0}" msgstr "Bitte logge dich als @{0} ein" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Bitte verwende die native App, um deine Kontakte zu importieren." @@ -8366,7 +8796,7 @@ msgstr "Bitte verwende die native App, um deine Kontakte zu importieren." msgid "Please use the native app to sync your contacts." msgstr "Bitte nutze die native App, um deine Kontakte synchronisieren zu können." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Bitte verifiziere deine E-Mail" @@ -8383,7 +8813,7 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Posten" @@ -8403,12 +8833,12 @@ msgstr "Foto posten" msgid "Post a video" msgstr "Video posten" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Alle posten" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Trotzdem posten" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Post blockiert" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Post von @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Post gelöscht" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Fehler beim Hochladen des Posts. Bitte prüfe deine Internetverbindung und versuche es erneut." @@ -8454,18 +8884,22 @@ msgstr "Post von dir ausgeblendet" msgid "Post interaction settings" msgstr "Post-Interaktionseinstellungen" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Post-Interaktionseinstellungen" +#: 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 "Post-Sprache auswählen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Link posten" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Posts, Antworten" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Möglicherweise irreführender Link" @@ -8525,9 +8954,10 @@ msgstr "Bevorzugte Sprache" msgid "Press to attempt reconnection" msgstr "Drücke, um die Verbindung erneut zu versuchen" -#: src/components/Error.tsx:61 +#: 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 "Zum wiederholen drücken" @@ -8536,7 +8966,7 @@ msgstr "Zum wiederholen drücken" msgid "Press to view followers of this account that you also follow" msgstr "Drücken, um Follower dieses Accounts anzuzeigen, denen du ebenfalls folgst" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Vorschau" @@ -8559,26 +8989,25 @@ msgstr "Datenschutz" msgid "Privacy and security" msgstr "Datenschutz und Sicherheit" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Datenschutzerklärung" @@ -8586,15 +9015,15 @@ msgstr "Datenschutzerklärung" msgid "Privacy violation of a minor" msgstr "Verletzung der Privatsphäre eines Minderjährigen" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "GIF wird verarbeitet..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Video wird verarbeitet..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Wird verarbeitet..." @@ -8602,10 +9031,10 @@ msgstr "Wird verarbeitet..." msgid "profile" msgstr "Profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "Platzhalter für Profilbanner" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profil nicht gefunden" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Post veröffentlichen" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Posts veröffentlichen" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Antworten veröffentlichen" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Antwort veröffentlichen" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Push-Mitteilungen" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "Push, alle" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "Push, Personen, denen du folgst" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-Code in die Zwischenablage kopiert!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-Code wurde heruntergeladen!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-Code in deiner Galerie gespeichert!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Zitat-Mitteilungen" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Zitat-Mitteilungen" msgid "Quote post" msgstr "Post zitieren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Zitat-Post wurde erneut angehängt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Zitat wurde erfolgreich getrennt" @@ -8711,12 +9138,12 @@ msgstr "Zitieren deaktiviert" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Zitate" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Zitate dieses Posts" @@ -8728,16 +9155,16 @@ msgstr "Limit überschritten – du hast innerhalb kurzer Zeit zu oft versucht, msgid "Rate limit exceeded. Please try again later." msgstr "Limit für Anfragen überschritten. Bitte versuche es später erneut." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Zitat wieder anhängen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Einladungslink wieder aktivieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Link wieder aktivieren" @@ -8745,8 +9172,8 @@ msgstr "Link wieder aktivieren" msgid "React with {emoji}" msgstr "Mit {emoji} reagieren" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reaktionen" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "Erfahre, wie du Suchfilter verwendest (auf Englisch)" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogpost lesen (auf Englisch)" @@ -8812,11 +9239,11 @@ msgstr "Echte Personen." msgid "Reason for appeal" msgstr "Grund für den Einspruch" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Erhalte In-App-Mitteilungen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Erhalte Push-Mitteilungen" @@ -8841,17 +9268,31 @@ msgstr "Empfohlen" msgid "Reconnect" msgstr "Erneut verbinden" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Aktualisiere die Seite, um es zu sehen." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Ablehnen" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Ablehnen" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Chat-Anfrage ablehnen" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Konversationen neu laden" @@ -8863,6 +9304,8 @@ msgstr "Konversationen neu laden" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "{displayName} aus dem Gruppenchat entfernen" msgid "Remove {displayName} from starter pack" msgstr "{displayName} aus dem Startpaket entfernen" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "{displayName} aus diesem Gruppenchat entfernen" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "{historyItem} entfernen" @@ -8891,22 +9339,22 @@ msgstr "{historyItem} entfernen" msgid "Remove account" msgstr "Account entfernen" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Alle Kontakte entfernen" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Anhang entfernen" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Profilbild entfernen" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Banner entfernen" @@ -8914,8 +9362,9 @@ msgstr "Banner entfernen" msgid "Remove caption file" msgstr "Untertiteldatei entfernen" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Einbettung entfernen" @@ -8929,12 +9378,12 @@ msgstr "Feed entfernen" msgid "Remove feed?" msgstr "Feed entfernen?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Aus dem Chat entfernen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Aus gespeicherten Posts entfernen" msgid "Remove from your feeds?" msgstr "Aus deinen Feeds entfernen?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Bild entfernen" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Repost entfernen" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Vorschlag entfernen" @@ -9009,11 +9458,11 @@ msgstr "Verifizierung entfernen" msgid "Remove your verification for this account?" msgstr "Deine Verifizierung für diesen Account entfernen?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Vom Autor entfernt" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Von dir entfernt" @@ -9035,7 +9484,7 @@ msgstr "Aus gespeicherten Posts entfernt" msgid "Removed from starter pack" msgstr "Aus dem Startpaket entfernt" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Antwort auf deinen Post" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Antworten" @@ -9104,14 +9552,14 @@ msgstr "Antworten deaktiviert" msgid "Replies to this post are disabled." msgstr "Antworten zu diesem Post sind deaktiviert." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Antworten" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Antworten ({0, plural, one {# Antwort} other {# Antworten}})" @@ -9125,10 +9573,6 @@ msgstr "Antwort vom Thread-Autor ausgeblendet" msgid "Reply Hidden by You" msgstr "Antwort von dir ausgeblendet" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Antwort-Mitteilungen" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Die Antworteinstellungen werden vom Autor des Threads festgelegt" @@ -9137,18 +9581,18 @@ msgstr "Die Antworteinstellungen werden vom Autor des Threads festgelegt" msgid "Reply sorting" msgstr "Antwortsortierung" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Sichtbarkeit der Antwort aktualisiert" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Antwort wurde erfolgreich ausgeblendet" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Melden" @@ -9157,20 +9601,20 @@ msgstr "Melden" msgid "Report account" msgstr "Account melden" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Konversation melden" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Melde-Dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Feed melden" @@ -9179,12 +9623,12 @@ msgstr "Feed melden" msgid "Report list" msgstr "Liste melden" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Nachricht melden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Post melden" @@ -9199,8 +9643,8 @@ msgstr "Startpaket melden" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Meldung eingereicht" @@ -9213,7 +9657,7 @@ msgstr "Diese Konversation melden" msgid "Report this feed" msgstr "Melde diesen Feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Diesen Gruppenchat melden" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Melde diese Liste" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Diesen Livestream melden" @@ -9256,10 +9700,6 @@ msgstr "Reposten" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Reposten ({0, plural, one {# Repost} other {# Reposts}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Repost-Mitteilungen" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Repostet von dir" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Reposts von diesem Post" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Reposts deiner Reposts" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Mitteilungen über Reposts deiner Reposts" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Zugang zum Gruppenchat anfragen" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Anfrage angenommen." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Code anfordern" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Anfrage ignoriert." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Beitrittsanfrage" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Angefragt" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Anfragen" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Beitrittsanfragen" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Vor dem Posten ist ein Alternativtext erforderlich" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Erfordert einen E-Mail-Code, um dich in deinen Account einzuloggen." @@ -9328,7 +9791,17 @@ msgstr "Für diesen Anbieter erforderlich" msgid "Required in your region" msgstr "Erforderlich in deiner Region" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Anfrage zurückziehen" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Beitrittsanfrage zurückziehen" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Erneut senden" @@ -9373,8 +9846,8 @@ msgstr "Onboardingstatus zurücksetzen" msgid "Reset password" msgstr "Passwort zurücksetzen" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Kontakte erneut synchronisieren" @@ -9391,17 +9864,18 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Wiederholt die letzte Aktion, bei der ein Fehler aufgetreten ist" msgid "Retry" msgstr "Wiederholen" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Ladeoptionen für Meldung erneut laden" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Zurück zur vorherigen Seite" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Zurück zur Startseite" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Zurück zur vorherigen Seite" @@ -9451,10 +9925,10 @@ msgstr "Traurige GIFs" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "Geburtsdatum speichern" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Änderungen speichern" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Änderungen speichern?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Entwurf speichern" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Entwurf speichern?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Bild speichern" msgid "Save new handle" msgstr "Neuen Handle speichern" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR-Code speichern" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "In meinen Feeds speichern" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Gespeichert" @@ -9534,25 +10010,25 @@ msgstr "Gespeichert" msgid "Saved Feeds" msgstr "Gespeicherte Feeds" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Gespeicherte Posts" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "In deinen Feeds gespeichert" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Sag Hallo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Sag jemandem Hallo" @@ -9560,6 +10036,16 @@ msgstr "Sag jemandem Hallo" msgid "Scam" msgstr "Betrug" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Wissenschaft" @@ -9576,18 +10062,18 @@ msgstr "Nach rechts scrollen" msgid "Scroll to top" msgstr "Nach oben scrollen" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Suche" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Posts von @{0} durchsuchen" @@ -9662,12 +10148,12 @@ msgstr "Sprachen suchen" msgid "Search my posts" msgstr "Meine Posts durchsuchen" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Posts durchsuchen" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Profile suchen" msgid "Search..." msgstr "Suche..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Sucht nach Profilen" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Sicherheitsmaßnahme erforderlich" @@ -9759,7 +10245,7 @@ msgstr "{langName} auswählen" msgid "Select a color" msgstr "Wähle eine Farbe" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Grund auswählen" @@ -9828,7 +10314,7 @@ msgstr "GIF auswählen" msgid "Select GIF \"{0}\"" msgstr "GIF „{0}“ auswählen" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Mitglieder für den Gruppenchat auswählen" @@ -9850,7 +10336,7 @@ msgstr "Sprache auswählen..." msgid "Select languages" msgstr "Sprachen auswählen" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Moderationsdienst auswählen" @@ -9904,11 +10390,11 @@ msgstr "Wähle deine Interessen aus den folgenden Optionen aus" msgid "Select your preferred language for translations in your feed." msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Wähle deine bevorzugten Mitteilungs-Kanäle aus" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Das Auswählen mehrerer Medientypen wird nicht unterstützt." @@ -9921,9 +10407,9 @@ msgstr "Selbstverletzendes oder gefährliches Verhalten" msgid "Send code" msgstr "Code senden" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "E-Mail senden" @@ -9935,11 +10421,11 @@ msgstr "E-Mail senden" msgid "Send error report" msgstr "Fehlerbericht senden" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Feedback senden" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Nachricht senden" @@ -9952,7 +10438,7 @@ msgstr "Post an {name} senden" msgid "Send post to..." msgstr "Post senden an..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Meldung senden an {title}" @@ -9960,7 +10446,7 @@ msgstr "Meldung senden an {title}" msgid "Send the message from your phone" msgstr "Sende die Nachricht von deinem Handy aus" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Per Direktnachricht senden" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Gesendet um {0}" @@ -10015,14 +10501,14 @@ msgstr "Gib unten dein Geburtsdatum ein und schon kannst du wieder posten und en msgid "Sets email for password reset" msgstr "Legt die E-Mail für das Zurücksetzen des Passworts fest" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Einstellungen" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Einstellungen für Aktivitäten von anderen" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Einstellungen für Erwähnungsmitteilungen" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Einstellungen für Mitteilungen über neue Follower" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Einstellungen für Mitteilungen für alles andere" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Einstellungen für Mitteilungen zu „Gefällt mir“-Angaben für deine Reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Einstellungen für Mitteilungen zu Reposts deiner Reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Einstellungen für Mitteilungen zu Zitaten" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Einstellungen für Mitteilungen zu Antworten" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Einstellungen für Mitteilungen zu Reposts" @@ -10079,16 +10565,19 @@ msgstr "Sexuelle Aktivität oder erotische Nacktheit." msgid "Sexually Suggestive" msgstr "Sexuell suggestiv" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Teilen" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Trotzdem teilen" @@ -10097,16 +10586,21 @@ msgstr "Trotzdem teilen" msgid "Share author DID" msgstr "Autor-DID teilen" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Bild teilen" +#: 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 "Link teilen" @@ -10114,6 +10608,11 @@ msgstr "Link teilen" msgid "Share link dialog" msgstr "Link teilen Dialog" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Post über at:// URI teilen" msgid "Share QR code" msgstr "QR-Code teilen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Diesen Feed teilen" @@ -10142,8 +10641,8 @@ msgstr "Teile dieses Startpaket und hilf Menschen, deiner Community auf Bluesky #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Teilen über..." @@ -10151,7 +10650,7 @@ msgstr "Teilen über..." msgid "Share your contacts to find friends" msgstr "Teile deine Kontakte, um Freunde finden zu können" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Tester für gemeinsame Einstellungen" @@ -10167,16 +10666,16 @@ msgstr "Alt-Text anzeigen" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Trotzdem anzeigen" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Automatisierungskennzeichnung anzeigen" @@ -10197,8 +10696,8 @@ msgstr "Anpassungsoptionen anzeigen" msgid "Show group chat updates" msgstr "Gruppenchat-Updates anzeigen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Weniger davon anzeigen" @@ -10219,8 +10718,8 @@ msgstr "Live-Events in deinem Discover-Feed anzeigen" msgid "Show More" msgstr "Mehr anzeigen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mehr davon anzeigen" @@ -10246,8 +10745,8 @@ msgstr "Antworten anzeigen" msgid "Show replies as" msgstr "Antworten anzeigen als" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Antwort für alle anzeigen" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Warnung anzeigen und aus Feeds filtern" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Anzeigen, wenn du live bist" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Zeigt Informationen darüber an, wann dieser Post erstellt wurde" @@ -10297,15 +10796,17 @@ msgstr "Zeigt den Inhalt an" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Einloggen oder einen Account erstellen" msgid "Sign in or create your account to join the conversation!" msgstr "Logge dich ein oder erstelle einen Account, um der Konversation beizutreten!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Logge dich ein, um die Einladung annehmen zu können." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Einloggen bei einem Account, der nicht aufgeführt ist" @@ -10337,8 +10842,12 @@ msgstr "Einloggen bei einem Account, der nicht aufgeführt ist" msgid "Sign in to Bluesky or create a new account" msgstr "Logge dich bei Bluesky ein oder erstelle einen neuen Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Logge dich ein, um Zugang zu diesem Gruppenchat anfragen zu können." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Logge dich ein, um den Post zu sehen" @@ -10348,9 +10857,9 @@ msgstr "Logge dich ein, um den Post zu sehen" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Ausloggen" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Ausloggen" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Ausloggen?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Leere Posts überspringen?" @@ -10405,7 +10914,7 @@ msgstr "Überspringe die Einführung und beginne mit der Nutzung deines Accounts msgid "Skip to next step" msgstr "Zum nächsten Schritt springen" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "Bild" @@ -10413,7 +10922,7 @@ msgstr "Bild" msgid "Smaller" msgstr "Kleiner" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Erinnerung vorübergehend ausblenden" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Jemand hat die Gruppe verlassen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Jemand hat mit {0} reagiert" @@ -10487,17 +10996,22 @@ msgstr "Jemand wurde entfernt" msgid "Someone was removed from the group" msgstr "Jemand wurde aus der Gruppe entfernt" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Es gibt etwas Neues" + +#: 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 "Etwas stimmt mit den Daten, die du melden möchtest, nicht. Bitte kontaktiere den Support." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Etwas ist schiefgelaufen" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Etwas ist schiefgelaufen!" msgid "Something went wrong. Please try again in a moment." msgstr "Etwas ist schiefgelaufen. Bitte versuche es in Kürze noch einmal." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Etwas ist schiefgelaufen. Bitte versuche es erneut." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Etwas stimmt nicht? Lass es uns wissen." @@ -10564,11 +11078,16 @@ msgstr "Spam oder sonstiges unechtes Verhalten bzw. Täuschung" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Starte eine Konversation, und sie wird hier angezeigt." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Starte einen neuen Chat" @@ -10582,17 +11101,17 @@ msgstr "Beginne, Personen hinzuzufügen" msgid "Start adding people!" msgstr "Beginne, Personen hinzuzufügen!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Chat starten" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Chat mit {displayName} starten" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpaket" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Du streamst auf Twitch? Setze deinen Live-Status auf Bluesky, um deinem Profilbild ein Abzeichen hinzuzufügen. Ein Tipp darauf führt direkt zu deinem Stream." @@ -10671,8 +11190,8 @@ msgstr "Du streamst auf Twitch? Setze deinen Live-Status auf Bluesky, um deinem #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Einreichen" @@ -10684,9 +11203,9 @@ msgstr "Einspruch einlegen" msgid "Submit Appeal" msgstr "Einspruch einlegen" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Meldung absenden" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Abonnieren" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "Auf {0} abonnieren" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "{publicationTitle} auf {0} abonnieren" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Erfolg" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Erfolgreich!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Du bist dem Gruppenchat erfolgreich beigetreten!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Erfolgreich verifiziert" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Vorgeschlagen" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sonnenuntergang" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Support" msgid "Support for this feature in your country has not been enabled yet! Please check back later." 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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Gesperrte Accounts können nicht an Gruppenchats teilnehmen." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Gesperrte Accounts können nicht am Chat teilnehmen." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Account wechseln" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Accounts wechseln" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Zu {0} wechseln" @@ -10824,11 +11347,15 @@ msgstr "Systemprotokoll" msgid "Tags only" msgstr "Nur Tags" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Für Details tippen" @@ -10854,33 +11381,51 @@ msgstr "Tippe, um zu bestätigen, dass du diese Änderungen verstanden hast und msgid "Tap to close context menu" msgstr "Tippen, um das Kontextmenü zu schließen" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Tippe hier, um diesen Einladungslink zu kopieren" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tippe, um zu schließen" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Tippe hier, um diesem Gruppenchat sofort beizutreten" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Tippe hier, um diesen Gruppenchat zu öffnen" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Tippen, um zu entfernen" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Tippen, um deine {0} Reaktion zu entfernen" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "Tippe hier, um Zugang zu diesem Gruppenchat anzufragen" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "Tippen, um es erneut zu versuchen" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Tippen, um {0} Reaktionen anzuzeigen" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tippen, um alle Reaktionen anzuzeigen" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tippen, um Reaktionen anzuzeigen" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Nutzungsbedingungen" @@ -10939,7 +11484,7 @@ msgstr "Text & Tags" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Text-Eingabefeld" @@ -10981,9 +11526,9 @@ msgstr "Das ist alles, Leute!" msgid "That's everything!" msgstr "Das ist alles!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Nach dem Entblocken kann der Account wieder mit dir interagieren." @@ -11049,6 +11594,11 @@ msgstr "Die folgenden Einstellungen werden als Standard für das Erstellen neuer msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Die Gesetze in deiner Region verlangen, dass du verifizierst, dass du volljährig bist, um auf bestimmte Funktionen zugreifen zu können. Tippe hier, um mehr zu erfahren." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "Das Mitgliederlimit wurde erreicht." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Der Post, auf den du antwortest, wurde vom Autor als {suggestedLanguageName} markiert. Möchtest du auf <0>{suggestedLanguageName} antworten?" @@ -11057,10 +11607,10 @@ msgstr "Der Post, auf den du antwortest, wurde vom Autor als {suggestedLanguageN msgid "The Privacy Policy has been moved to <0/>" msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "Das ausgewählte Video ist größer als {videoSize} MB. Bitte versuche es erneut mit einer kleineren Datei." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "Das ausgewählte Video ist größer als {VIDEO_MAX_SIZE_MB} MB. Bitte versuche es erneut mit einer kleineren Datei." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Theme" 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 "Es gibt ein Limit dafür, wie oft du dein Geburtsdatum ändern kannst. Du musst möglicherweise ein bis zwei Tage warten, bevor du es erneut aktualisieren kannst." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Für diesen Gruppenchat gibt es keinen Einladungslink." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Beim Laden der GIFs ist ein Problem aufgetreten. Überprüfe deine Verbindung und versuche es erneut." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Beim Aktualisieren deiner Feeds ist ein Problem aufgetreten. Bitte überprüfe deine Internetverbindung und versuche es erneut." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Es gab ein Problem! {0}" @@ -11221,6 +11774,14 @@ msgstr "Das sind deine Standardeinstellungen" msgid "These settings only apply to the Following feed." msgstr "Diese Einstellungen gelten nur für den Following-Feed." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Diese {screenDescription} wurde gekennzeichnet:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Dieser Einspruch wird an <0>{sourceName} gesendet." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Dieser Einspruch wird an den Moderationsdienst von Bluesky gesendet." @@ -11263,7 +11824,7 @@ msgstr "Dieser Einspruch wird an den Moderationsdienst von Bluesky gesendet." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Dieser Autor hat entschieden, seine Posts nur für eingeloggte Nutzer sichtbar zu machen." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Über diesen Button können andere die Germ DM-App öffnen, um dir eine Nachricht zu senden. Die Sichtbarkeit kannst du in der Germ DM-App verwalten oder über den untenstehenden Button die Verbindung zwischen deinem Bluesky-Account und Germ DM vollständig trennen." @@ -11271,11 +11832,21 @@ msgstr "Über diesen Button können andere die Germ DM-App öffnen, um dir eine msgid "This chat has ended" msgstr "Dieser Chat wurde beendet" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Dieser Chat ist voll" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Dieser Chat ist gesperrt" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Dieser Chat wurde getrennt" @@ -11310,7 +11881,11 @@ msgstr "Dieser Inhalt ist nicht verfügbar, da einer der beteiligten Nutzer den msgid "This content is not viewable without a Bluesky account." msgstr "Dieser Inhalt ist ohne einen Bluesky-Account nicht sichtbar." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Diese Konversation ist gesperrt." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Diese Konversation ist mit einem gelöschten oder deaktivierten Account. Drücke für Optionen" @@ -11318,7 +11893,7 @@ msgstr "Diese Konversation ist mit einem gelöschten oder deaktivierten Account. msgid "This draft will be permanently deleted." msgstr "Dieser Entwurf wird endgültig gelöscht." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Diese E-Mail ist bereits mit deinem Account verknüpft." @@ -11356,11 +11931,15 @@ msgstr "Dieser Feed ist leer." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Dieser Feed ist nicht mehr online. Wir zeigen stattdessen <0>„Discover“." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Dieser Handle ist reserviert. Bitte versuche einen anderen." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Dieses Bild konnte nicht verwendet werden. Bitte versuche es mit einem a msgid "This information is private and not shared with other users." msgstr "Diese Information ist privat und wird nicht mit anderen Nutzern geteilt." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Dieser Einladungslink wurde deaktiviert." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Dieser Einladungslink ist ungültig" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Hier ist noch nichts" @@ -11377,7 +11964,7 @@ msgstr "Hier ist noch nichts" msgid "This is not a valid link" msgstr "Das ist kein gültiger Link" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Diese Kennzeichnung zeigt anderen, dass dieser Account automatisiert ist. Ist die Kennzeichnung aktiviert, erscheint sie neben dem Accountnamen im Profil und bei Posts. Die Kennzeichnung kann jederzeit ein- oder ausgeschaltet werden." @@ -11410,13 +11997,17 @@ msgstr "Diese Liste – erstellt von dir – enthält mögliche Verstöße gegen msgid "This list is empty." msgstr "Diese Liste ist leer." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Diese Nachricht ist ausgeblendet, weil du diesen Nutzer blockierst." @@ -11434,7 +12025,7 @@ msgstr "Diese Person blockiert dich" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dieser Post soll am <0>{0} erstellt worden sein, wurde aber erstmals von Bluesky am <1>{1} gesehen." @@ -11450,23 +12041,24 @@ msgstr "Dieser Post ist nur für eingeloggte Nutzer sichtbar." msgid "This post was deleted by its author" msgstr "Dieser Post wurde vom Autor gelöscht" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Der Autor dieses Posts hat das Zitieren dieses Posts deaktiviert." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Dieses Profil ist nur für eingeloggte Nutzer sichtbar. Es ist nicht sichtbar für Personen, die nicht eingeloggt sind." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Diese Antwort wird in einen ausgeblendeten Bereich am Ende deines Threads verschoben und Mitteilungen über nachfolgende Antworten werden sowohl für dich als auch für andere stummgeschaltet." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Dieser Bildschirm ist nur für Gruppenkonversationen verfügbar." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Dieser Nutzer hat keine Follower." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Dieser Nutzer hat dich blockiert und kann nicht angeschrieben werden." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Dieser Nutzer hat den Chat deaktiviert und kann nicht angeschrieben werden." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Dadurch wird dein Bluesky-Account <0>{currentHandle} und alle damit msgid "This will remove @{0} from the quick access list." msgstr "Dadurch wird @{0} aus der Schnellzugriffsliste entfernt." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Dies wird deinen Post aus diesem Zitat-Post für alle Nutzer entfernen und durch einen Platzhalter ersetzen." @@ -11574,7 +12166,7 @@ msgstr "Thread-Einstellungen" msgid "Threaded" msgstr "Thread" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Thread-Einstellungen" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Um die E-Mail-2FA-Methode zu deaktivieren, verifiziere bitte deinen Zugriff auf die E-Mail-Adresse." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Um E-Mail-2FA (Zwei-Faktor-Authentisierung) zu deaktivieren, verifiziere bitte deinen Zugriff auf <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Top" msgid "Top replies first" msgstr "Beliebte Antworten zuerst" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Thema" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Übersetzen" @@ -11667,8 +12259,8 @@ msgstr "Übersetzt" msgid "Translating" msgstr "Wird übersetzt…" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Wird übersetzt…" @@ -11702,7 +12294,7 @@ msgstr "Angesagte Videos" msgid "Trolling" msgstr "Trolling" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Vertrauen entsteht durch Beziehungen, Communitys und einem gemeinsamen Kontext. Deshalb ermöglichen wir auch <0>vertrauenswürdige Verifizierer: Organisationen, die Verifizierungen direkt ausstellen können." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Versuche einen anderen Suchbegriff oder <0>erfahre, wie du Suchfilter verwendest (auf Englisch)." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Erneut versuchen" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Erneut versuchen" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Google Übersetzer versuchen" +#: 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 "TV" @@ -11763,13 +12369,17 @@ msgstr "Dein Dienst kann nicht kontaktiert werden. Bitte überprüfe deine Inter msgid "Unable to delete" msgstr "Löschen nicht möglich" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Beitrittsanfragen konnten nicht geladen werden." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Ein ausgewählter Empfänger konnte nicht gefunden werden." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Der ausgewählte Empfänger konnte nicht gefunden werden." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Nicht verfügbar" msgid "Unavailable feed information" msgstr "Feed-Information nicht verfügbar" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Entblocken" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "{displayName} entblocken" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Account entblocken" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Account entblocken?" @@ -11837,8 +12452,8 @@ msgstr "Liste entsperren" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Rückgängig machen" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repost rückgängig machen ({0, plural, one {# Repost} other {# Reposts}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} entfolgen" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Account entfolgen" @@ -11872,7 +12487,7 @@ msgstr "Account entfolgen" msgid "Unfollows the user" msgstr "Entfolgt dem Nutzer" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Leider unterstützt keiner deiner abonnierten Kennzeichner diesen Meldungstyp." @@ -11884,14 +12499,6 @@ msgstr "Leider bist du aufgrund des in deinem Profil hinterlegten Geburtsdatums msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Leider deutet dein angegebenes Alter darauf hin, dass du in deiner Region nicht alt genug bist, um auf Bluesky zugreifen zu können." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Einladung zurückziehen" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Einladung zum Gruppenchat für {displayName} zurückziehen" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Unbekannter Verifizierer" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Gefällt mir nicht mehr" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Gefällt mir nicht mehr ({0, plural, one {# Gefällt mir} other {# Gefällt mir}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Chat entsperren" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Diesen Gruppenchat entsperren" @@ -11939,14 +12546,14 @@ msgstr "Stummschaltung aufheben" msgid "Unmute {0}" msgstr "Stummschaltung für {0} aufheben" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Stummschaltung von Account aufheben" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Stummschaltung von Konversation aufheben" @@ -11955,12 +12562,12 @@ msgstr "Stummschaltung von Konversation aufheben" msgid "Unmute list" msgstr "Liste nicht mehr stummschalten" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Stummschaltung für diesen Gruppenchat aufheben" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Stummschaltung des Threads aufheben" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Lösen" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feed lösen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Von Startseite lösen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Vom Profil lösen" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Moderationsliste lösen" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} von der Startseite gelöst" @@ -12030,14 +12637,18 @@ msgstr "Von diesem Kennzeichner abmelden" msgid "Unsubscribed from list" msgstr "Von der Liste abgemeldet" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Inhalt der Zwischenablage wird nicht unterstützt" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Nicht unterstützter Videotyp: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Aktualisieren" msgid "Update <0>{displayName} in Lists" msgstr "<0>{displayName} in Listen aktualisieren" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "App aktualisieren" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "E-Mail aktualisieren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Einladungslink aktualisieren" @@ -12065,11 +12680,15 @@ msgstr "Einladungslink aktualisieren" msgid "Update to {domain}" msgstr "Aktualisieren auf {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Aktualisiere deine App auf die neueste Version, um mitzumachen!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Aktualisiere deine App" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Aktualisiere deine App, um es zu sehen." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Aktualisiere deine E-Mail-Adresse" @@ -12080,17 +12699,17 @@ msgstr "Aktualisiere deine E-Mail-Adresse" msgid "Update your location" msgstr "Standort aktualisieren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Aktualisieren des Zitat-Anhangs ist fehlgeschlagen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Aktualisieren der Antwort-Sichtbarkeit ist fehlgeschlagen" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Stattdessen ein Foto hochladen" @@ -12098,39 +12717,40 @@ msgstr "Stattdessen ein Foto hochladen" msgid "Upload a text file to:" msgstr "Hochladen einer Textdatei auf:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Von Kamera hochladen" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Von Dateien hochladen" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Aus der Bibliothek hochladen" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "GIF wird hochgeladen..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Bilder werden hochgeladen..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Link-Vorschaubild wird hochgeladen..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Video wird hochgeladen..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "Nutzer" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Nutzer blockiert" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Nutzerliste von {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Nutzerliste von {0}" @@ -12255,12 +12875,12 @@ msgstr "Nutzer gefolgt von <0>@{0}" msgid "users following <0>@{0}" msgstr "Nutzer, die <0>@{0} folgen" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Nutzern, denen ich folge" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Nutzern, denen ich folge" @@ -12277,7 +12897,7 @@ msgstr "Verifizierung fehlgeschlagen. Bitte versuche es erneut." msgid "Verification settings" msgstr "Verifizierungseinstellungen" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifizierungseinstellungen" @@ -12304,8 +12924,8 @@ msgstr "Erneut verifizieren" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Code verifizieren" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNS-Eintrag verifizieren" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "E-Mail-Code verifizieren" @@ -12349,7 +12969,7 @@ msgstr "Diesen Account verifizieren?" msgid "Verify your age" msgstr "Verifiziere dein Alter" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Version {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Video konnte nicht verarbeitet werden" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Video-Feed" @@ -12419,7 +13039,7 @@ msgstr "Video nicht gefunden." msgid "Video settings" msgstr "Video-Einstellungen" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video hochgeladen" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ansehen" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "{0} ansehen" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Profil von {0} ansehen" @@ -12467,20 +13087,15 @@ msgstr "Profil von {0} ansehen" msgid "View {0}’s profile" msgstr "Profil von {0} ansehen" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Profil von {displayName} anzeigen" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "{publicationTitle} ansehen" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "Profil von @{0} ansehen" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Profil des blockierten Nutzers ansehen" @@ -12503,10 +13118,18 @@ msgstr "Details ansehen" msgid "View full thread" msgstr "Vollständigen Thread ansehen" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Eingehende Gruppenchat-Anfragen anzeigen" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Eingehende Anfragen ansehen" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Eingehende Beitrittsanfragen für diesen Gruppenchat ansehen" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "Informationen zu diesen Kennzeichnungen anzeigen" @@ -12522,7 +13145,7 @@ msgstr "Mehr ansehen" msgid "View more trending videos" msgstr "Mehr angesagte Videos ansehen" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Post ansehen" @@ -12539,18 +13162,18 @@ msgstr "Profil ansehen" msgid "View profile banner" msgstr "Profilbanner ansehen" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" -msgstr "Veröffentlichung ansehen" +msgstr "Seite besuchen" #: src/view/com/profile/ProfileSubpageHeader.tsx:108 msgid "View the avatar" msgstr "Profilbild ansehen" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Einladungslink für diesen Gruppenchat anzeigen" @@ -12563,7 +13186,7 @@ msgstr "Sieh dir den von @{0} bereitgestellten Kennzeichnungsdienst an" msgid "View this user's verifications" msgstr "Verifizierungen dieses Nutzers ansehen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Nutzer ansehen, denen dieser Feed gefällt" @@ -12596,8 +13219,8 @@ msgstr "Sieh dir deine stummgeschalteten Accounts an" msgid "View your verifications" msgstr "Deine Verifizierungen ansehen" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Vollständiges Bild ansehen" @@ -12640,8 +13263,8 @@ msgstr "Inhaltswarnung anzeigen" msgid "Warn content and filter from feeds" msgstr "Inhaltswarnung anzeigen und in Feeds ausblenden" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Jetzt ansehen" @@ -12665,11 +13288,15 @@ msgstr "Für diesen Tag konnten wir keine Ergebnisse finden." msgid "We couldn't find any results for that topic." msgstr "Wir konnten keine Ergebnisse zu diesem Thema finden." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Wir konnten diese Konversation nicht laden" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Beitrittsanfragen für diese Konversation konnten nicht geladen werden" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Einstellungen für diese Konversation konnten nicht geladen werden" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Wir empfehlen, mindestens zwei Interessen auszuwählen." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Wir haben eine E-Mail an <0>{0} gesendet, die einen Link enthält. Bitte klicke darauf, um den E-Mail-Verifizierungsprozess abzuschließen." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Wir konnten nicht feststellen, ob du berechtigt bist, Videos hochzuladen. Bitte versuche es erneut." @@ -12744,12 +13371,12 @@ msgstr "Aufgrund eines Verbindungsproblems konnten wir die Verifizierung nicht e msgid "We will let you know when your account is ready." msgstr "Wir werden dich benachrichtigen, wenn dein Account bereit ist." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Wir benachrichtigen dich, sobald wir deine Freunde gefunden haben." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Wir senden eine E-Mail an <0>{0}, die einen Link enthält. Bitte klicke darauf, um den E-Mail-Verifizierungsprozess abzuschließen." @@ -12779,12 +13406,12 @@ msgstr "Wir haben Probleme bei der Initialisierung des Altersverifizierungsproze msgid "We're having network issues, try again" msgstr "Wir haben Netzwerkprobleme, versuche es erneut" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Wir haben Netzwerkprobleme. Bitte versuche es erneut" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Es tut uns leid! Der Post, auf den du antwortest, wurde gelöscht." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Es tut uns leid! Wir können die von dir gesuchte Seite nicht finden." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Wie möchtest du dein Startpaket nennen?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Was gibt's?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Wenn du auf das Häkchen tippst, siehst du, welche Organisationen die Verifizierung vergeben haben." @@ -12878,7 +13505,7 @@ msgstr "Wenn du auf das Häkchen tippst, siehst du, welche Organisationen die Ve msgid "Who can interact with this post?" msgstr "Wer kann mit diesem Post interagieren?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Wer diesem Gruppenchat beitreten kann und wie" @@ -12887,13 +13514,13 @@ msgstr "Wer diesem Gruppenchat beitreten kann und wie" msgid "Who can reply" msgstr "Wer kann antworten" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Wer kann verifizieren?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ups!" @@ -12939,19 +13566,19 @@ msgstr "Warum sollte dieses Startpaket überprüft werden?" msgid "Why should this user be reviewed?" msgstr "Warum sollte dieser Nutzer überprüft werden?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Möchtest du diesen Nutzer blockieren und/oder diese Konversation löschen?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Möchtest du diesen Nutzer blockieren und/oder diese Konversation verlassen?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "Möchtest du dies als Entwurf speichern, bevor du deine Entwürfe ansiehst?" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "Möchtest du dies als Entwurf speichern, um es später zu bearbeiten?" @@ -12960,12 +13587,12 @@ msgstr "Möchtest du dies als Entwurf speichern, um es später zu bearbeiten?" msgid "Write a post" msgstr "Post verfassen" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Post verfassen" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Antwort schreiben" @@ -12978,7 +13605,8 @@ msgstr "Autoren" msgid "Wrong DID returned from server. Received: {0}" msgstr "Falsche DID vom Server zurückgegeben. Empfangen: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Falscher Konversationstyp" @@ -13005,11 +13633,11 @@ msgstr "Ja, meinen Account löschen" msgid "Yes, delete this starter pack" msgstr "Ja, dieses Startpaket löschen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Ja, trennen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Ja, ausblenden" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "Du blockierst {0}" @@ -13068,7 +13696,7 @@ msgstr "Du bist live" msgid "You are no longer live" msgstr "Du bist nicht mehr live" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Du darfst keine Videos hochladen." @@ -13107,7 +13735,7 @@ msgstr "Du kannst auch neue benutzerdefinierte Feeds entdecken, denen du folgen #: 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 "Du kannst deine Chat-Daten auch als „JSONL“-Datei herunterladen. Diese Datei enthält nur Chat-Nachrichten, die du gesendet hast, nicht jedoch die, die du empfangen hast." +msgstr "Du kannst deine Chatdaten auch als „JSONL“-Datei herunterladen. Diese Datei enthält nur Chatnachrichten, die du gesendet hast, nicht jedoch die, die du empfangen hast." #: src/components/contacts/screens/GetContacts.tsx:250 msgid "You can always opt out and delete your data" @@ -13117,21 +13745,30 @@ msgstr "Du kannst dich jederzeit abmelden und deine Daten löschen" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Du kannst in den Chat-Einstellungen der App festlegen, ob Chat-Mitteilungen einen Ton haben sollen" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Du kannst laufende Konversationen fortsetzen, unabhängig davon, welche Einstellung du wählst." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Du kannst jetzt auswählen, ob du Mitteilungen erhalten möchtest, wenn bestimmte Personen etwas posten. Wenn du zeitnahe Updates von jemandem erhalten möchtest, gehe zu dessen Profil und suche das neue Glocken-Symbol neben dem „Folgen“-Button." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Du kannst dich jetzt mit deinem neuen Passwort einloggen." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Entwürfe können nur mit bis zu 1000 Zeichen gespeichert werden." @@ -13139,11 +13776,11 @@ msgstr "Entwürfe können nur mit bis zu 1000 Zeichen gespeichert werden." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Du kannst Entwürfe nur mit bis zu 1000 Zeichen speichern. Möchtest du diesen Post verwerfen, bevor du deine Entwürfe ansiehst?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Du kannst jeweils nur ein GIF auswählen." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Du kannst jeweils nur ein Video auswählen." @@ -13155,10 +13792,10 @@ msgstr "Du kannst deinen Account reaktivieren, um dich weiterhin einzuloggen. De msgid "You can read chat history but can’t send new messages." msgstr "Du kannst den Chatverlauf lesen, aber keine neuen Nachrichten senden." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Du kannst insgesamt bis zu {MAX_IMAGES, plural, other {# Bilder}} auswählen." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,10 +13803,15 @@ msgstr "Du kannst insgesamt bis zu {MAX_IMAGES, plural, other {# Bilder}} auswä msgid "You can update this later from your settings." msgstr "Du kannst dies später in deinen Einstellungen aktualisieren." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 -msgid "You cannot create a group chat yet." +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "Du kannst noch keinen Gruppenchat erstellen." + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13197,6 +13839,10 @@ msgstr "Du hast keine gespeicherten Feeds." msgid "You got here first" msgstr "Du warst zuerst hier" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Du wurdest zuvor aus dieser Gruppe entfernt und kannst ihr über diesen Link nicht beitreten." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du musst mindestens 13 Jahre alt sein, um Bluesky nutzen zu können. Lies unsere <0>Nutzungsbedingungen, um mehr zu erfahren." @@ -13332,11 +13982,12 @@ msgstr "Du musst mindestens 13 Jahre alt sein, um Bluesky nutzen zu können. Lie 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." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Du musst den Zugriff auf deine Galerie gewähren, um einen QR-Code speichern zu können" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Du musst den Zugriff auf deine Galerie erlauben." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Du hast mit {0} reagiert" @@ -13368,8 +14023,13 @@ msgstr "Du hast mit {0} auf {target} reagiert" msgid "You recently changed your birthdate" msgstr "Du hast kürzlich dein Geburtsdatum geändert" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Beitritt angefragt" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Du wirst von all deinen Accounts ausgeloggt." @@ -13378,11 +14038,11 @@ msgstr "Du wirst von all deinen Accounts ausgeloggt." msgid "You will no longer receive notifications for {0}" msgstr "Du erhältst keine Mitteilungen mehr für {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Du wirst keine Mitteilungen mehr für diesen Thread erhalten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Du erhältst nun Mitteilungen für diesen Thread" @@ -13390,12 +14050,12 @@ msgstr "Du erhältst nun Mitteilungen für diesen Thread" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Du erhältst eine E-Mail mit einem „Zurücksetzungscode“. Gib diesen Code hier ein und anschließend dein neues Passwort." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Du kannst erst wieder beitreten, wenn du eingeladen wirst." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Du: {message}" @@ -13429,6 +14089,10 @@ msgstr "Du erhältst nun Mitteilungen für {0}!" msgid "You'll stay updated with these feeds" msgstr "Mit diesen Feeds bleibst du auf dem Laufenden" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Du bist in der Warteschlange" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Du hast die maximale Anzahl an Entwürfen erreicht" @@ -13475,11 +14139,11 @@ msgstr "Du hast die maximale Anzahl an Anfragen erreicht. Bitte versuche es spä msgid "You've reached the start of the active content." msgstr "Du hast den Anfang des aktiven Inhalts erreicht." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du hast dein tägliches Limit für Video-Uploads erreicht (zu viele Videos)" @@ -13499,13 +14163,21 @@ msgstr "Dein Account wurde gelöscht, tschüss! ✌️" msgid "Your account has been suspended" msgstr "Dein Account wurde gesperrt" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dein Account ist noch nicht alt genug, um Videos hochzuladen. Bitte versuche es später erneut." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Dein Account ist zu neu" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Dein Account-Repository, das alle öffentlichen Datensätze enthält, kann als „CAR“-Datei heruntergeladen werden. Diese Datei enthält keine Medien-Einbettungen, wie Bilder, oder deine privaten Daten, die separat abgerufen werden müssen." +msgstr "Dein Account-Repository, das alle öffentlichen Datensätze enthält, kann als „CAR“-Datei heruntergeladen werden. Diese Datei enthält keine eingebetteten Medien wie Bilder oder deine privaten Daten. Diese müssen separat abgerufen werden." #: src/screens/Takendown.tsx:210 msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." @@ -13519,7 +14191,7 @@ msgstr "Deine Beschwerde wurde eingereicht. Falls sie erfolgreich ist, erhältst msgid "Your birth date" msgstr "Dein Geburtsdatum" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Deine Chats wurden deaktiviert" @@ -13527,11 +14199,11 @@ msgstr "Deine Chats wurden deaktiviert" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Deine Auswahl wird für zukünftige Links gespeichert. Du kannst sie jederzeit in den Einstellungen ändern." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Dein Kontakt {firstAuthorLink} ist auf Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Dein Kontakt {firstAuthorName} ist auf Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Deine E-Mail" msgid "Your email appears to be invalid." msgstr "Deine E-Mail scheint ungültig zu sein." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Deine E-Mail wurde noch nicht verifiziert. Bitte verifiziere deine E-Mail, um alle Funktionen von Bluesky nutzen zu können." @@ -13582,7 +14254,7 @@ msgstr "Dein Following-Feed ist leer! Folge mehr Nutzern, um zu sehen, was passi msgid "Your full handle will be <0>@{0}" msgstr "Dein vollständiger Handle lautet <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Dein Standort wurde aktualisiert." msgid "Your muted words" msgstr "Deine stummgeschalteten Wörter" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Dein Name, dein Profilbild und der Name des Gruppenchats sind für alle sichtbar." +#: 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 "Dein Name, dein Profilbild, der Name des Gruppenchats und die Anzahl der Mitglieder werden für alle sichtbar sein." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Dein Post wurde gesendet" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Deine Posts wurden gesendet" @@ -13635,7 +14307,7 @@ msgstr "Deine Posts wurden gesendet" msgid "Your preferred language" msgstr "Deine bevorzugte Sprache" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Dein Profilbild" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Deine Antwort wurde gesendet" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Deine Meldung wird an <0>{0} gesendet." @@ -13661,7 +14333,7 @@ msgstr "Deine Meldung wird an <0>{0} gesendet." msgid "Your selected interests help us serve you content you care about." msgstr "Deine ausgewählten Interessen helfen uns dabei, dir Inhalte anzuzeigen, die dich interessieren." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 44575d503d..d52aa6310f 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" κατηγορία (ενεργό)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(περιέχει ενσωματωμένο περιεχόμενο)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {Μου αρέσει} other {Μου αρέσει}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# λεπτό} other {# λεπτά}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# μήνας} other {# μήνες}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# δευτερόλεπτο} other {# δευτερόλε #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# αδιάβαστο} other {# αδιάβαστα}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>σε <1>κείμενο & ετικέτες" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} ακολουθεί" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} από 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} αντέδρασε {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "{0}, μία λίστα από {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Η εικόνα προφίλ του {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}λ." msgid "{0}s" msgstr "{0}δευτ." +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# αδιάβαστο} other {# αδιάβαστα}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {ώρα} other {ώρες}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {λεπτό} other {λεπτά}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} σας ακολούθησαν" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Η προσαρμοσμένη ροή άρεσε σε {firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλους}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} άρεσαν την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} αφαίρεσαν τις επαληθεύσεις τους από το λογαριασμό σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} αναδημοσίευσαν την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλοι} other {{formattedAuthorsCount} άλλοι}} αναδημοσίευσαν την αναδημοσίευση σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} άλλοι}} εγγεγράφηκαν με το πακέτο εκκίνησής σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} και <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} σας επαλήθευσαν" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "Ο/η {firstAuthorLink} σας ακολούθησε" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "Ο/η {firstAuthorLink} σας ακολούθησε πίσω" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "Στον/ην {firstAuthorLink} άρεσε η προσαρμοσμένοη ροή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "Στον/ην {firstAuthorLink} άρεσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "Στον/ην {firstAuthorLink} άρεσε η αναδημοσίευσή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "Ο/Η {firstAuthorLink} αφαίρεσε την επαλήθευσή του/της από το λογαριασμό σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "Ο/η {firstAuthorLink} αναδημοσίευσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "Ο/η {firstAuthorLink} αναδημοσίευσε την αναδημοσίευσή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Ο/η {firstAuthorLink} γράφτηκε με το Starter Pack σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} σας επαλήθευσε" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} σας ακολούθησαν" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Η προσαρμοσμένη ροή άρεσε στον/ην {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλον} other {{formattedAuthorsCount} άλλους}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Στον/ην {firstAuthorName} και σε {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλον} other {{formattedAuthorsCount} άλλους}} άρεσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} αφαίρεσαν τις επαληθεύσεις τους από το λογαριασμό σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} αναδημοσίευσαν την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} αναδημοσίευσαν την αναδημοσίευση σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Ο/η {firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} γράφτηκαν με το πακέτο εκκίνησής σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} και {additionalAuthorsCount, plural, one {{formattedAuthorsCount} άλλος} other {{formattedAuthorsCount} άλλοι}} σας επαλήθευσαν" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "Ο/η {firstAuthorName} σας ακολούθησε" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "Ο/η {firstAuthorName} σας ακολούθησε πίσω" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "Η προσαρμοσμένη ροή άρεσε στον/ην {firstAuthorName}" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "Στον/ην {firstAuthorName} άρεσε η ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "Στον/ην {firstAuthorName} άρεσε η αναδημοσίευσή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "Ο/Η {firstAuthorName} αφαίρεσε την επαλήθευσή του/της από το λογαριασμό σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "Ο/η {firstAuthorName} αναδημοσίευσε την ανάρτησή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "Ο/η {firstAuthorName} αναδημοσίευσε την αναδημοσίευσή σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Ο/η {firstAuthorName} γράφτηκε στο starter pack σας" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "Ο/Η {firstAuthorName} σας επαλήθευσε" @@ -538,8 +597,8 @@ msgstr "Ο/Η {firstAuthorName} σας επαλήθευσε" msgid "{following} following" msgstr "{following} ακόλουθοι" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Δεν είναι δυνατόν να στείλετε μήνυμα στον/ην {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# ώρα {minutesString}} other {# ώρες {minute msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# ώρα} other {# ώρες}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# αδιάβαστο} other {# αδιάβαστα}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# επαφή βρέθηκε} other {# επαφές βρέθηκαν}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "Ο/Η {userName} έχει επαληθευτεί" msgid "{userName}'s verifications" msgstr "Οι επαληθεύσεις του/της {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, και {2, plural, one {# άλλος} other {# #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {ακόλουθος} other {ακόλουθοι}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {ακόλουθος} other {ακόλουθοι}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {Μου αρέσει} other {Μου αρέσει}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {παράθεση} other {παραθέσεις}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {αναδημοσίευση} other {αναδημοσιεύσεις}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {αποθήκευση} other {αποθηκεύσεις}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} μέλη" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλο #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλούμε ελέγξτε τη σύνδεσή σας στο διαδίκτυο." @@ -804,7 +884,7 @@ msgstr "Παρουσιάστηκε σφάλμα δικτύου. Παρακαλο msgid "A new code has been sent" msgstr "Ένας νέος κωδικός έχει σταλεί" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Μια νέα μορφή επαλήθευσης" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Καταχρηστική ή μεροληπτική συμπεριφορά" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Αποδοχή" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Αποδοχή Αιτήματος" @@ -860,17 +950,26 @@ msgstr "Αποδοχή Αιτήματος" msgid "Accept this language suggestion" msgstr "Αποδοχή αυτής της πρότασης γλώσσας" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Προσβασιμότητα" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Ρυθμίσεις Προσβασιμότητας" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Ρυθμίσεις Προσβασιμότητας" msgid "Account" msgstr "Λογαριασμός" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Λογαριασμός μπλοκαρισμένος" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Ο Λογαριασμός ακολουθείται" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Πάροχος λογαριασμού" msgid "Account removed from quick access" msgstr "Λογαριασμός αφαιρέθηκε από την γρήγορη πρόσβαση" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Λογαριασμός ξεμπλοκαρισμένος" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Λογαριασμός σταμάτησε να ακολουθείται" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Άρση σίγασης λογαριασμού" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Λογαριασμοί με ένα μπλε κυματοειδές τικ <0><1/> μπορούν να επαληθεύσουν άλλους. Αυτοί οι αξιόπιστοι επαληθευτές επιλέγονται από το Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Δραστηριότητα από άλλους" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Ειδοποιήσεις δραστηριότητας" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Προσθήκη" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Προσθήκη εναλλακτικού κειμένου (προαιρ #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Προσθήκη άλλης ανάρτησης" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Προσθήκη άλλης δημοσίευσης στο νήμα" @@ -1035,7 +1130,7 @@ msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής" msgid "Add App Password" msgstr "Προσθήκη κωδικού πρόσβασης εφαρμογής" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Προσθήκη αντίδρασης emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Προσθήκη πολυμέσων στη δημοσίευση" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Προσθέστε περισσότερες λεπτομέρειες (προαιρετικό)" @@ -1091,6 +1186,10 @@ msgstr "Προσθήκη ατόμων" 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 "Προσθήκη Αντίδρασης" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "Πρόσθετες λεπτομέρειες (όριο 1000 χαρακτήρες)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Πρόσθετες λεπτομέρειες (όριο 300 χαρακτήρες)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "Υποβλήθηκε έρευνα για τη διασφάλιση ηλ msgid "Age assurance only takes a few minutes" msgstr "Η διασφάλιση ηλικίας διαρκεί μόνο λίγα λεπτά" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Όλα" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Επιτρέψτε την πρόσβαση στα προσωπικά μ msgid "Allow anyone to reply" msgstr "Επιτρέψτε σε οποιονδήποτε να απαντήσει" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "Έχετε ήδη λογαριασμό;" msgid "Already signed in as @{0}" msgstr "Ήδη συνδεδεμένος ως @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Εναλλακτικό κείμενο" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Το εναλλακτικό κείμενο περιγράφει εικόνες για τυφλούς και με χαμηλή όραση χρήστες και βοηθάει να γίνει ξεκάθαρο το περιεχόμενο σε όλους." @@ -1387,7 +1486,7 @@ msgstr "Παρουσιάστηκε σφάλμα" msgid "An error occurred" msgstr "Παρουσιάστηκε σφάλμα" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Παρουσιάστηκε σφάλμα κατά τη συμπίεση του βίντεο." @@ -1421,7 +1520,8 @@ msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση τ msgid "An error occurred while loading your lists :/" msgstr "Παρουσιάστηκε σφάλμα κατά τη φόρτωση των λιστών σας :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Παρουσιάστηκε σφάλμα κατά την αποθήκευση του QR code!" @@ -1432,11 +1532,11 @@ msgstr "Παρουσιάστηκε σφάλμα κατά την αποθήκευ msgid "An error occurred while trying to follow all" msgstr "Παρουσιάστηκε σφάλμα κατά την προσπάθεια παρακολούθησης όλων" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Παρουσιάστηκε πρόβλημα κατά την προσπά #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Παρουσιάστηκε πρόβλημα, παρακαλώ δοκιμάστε ξανά." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "Οποιοσδήποτε" msgid "Anyone can interact" msgstr "Οποιοσδήποτε μπορεί να αλληλεπιδράσει" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "Οποιοσδήποτε με ακολουθεί" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Τα ονόματα κωδικών πρόσβασης εφαρμογής msgid "App passwords" msgstr "Κωδικοί πρόσβασης εφαρμογής" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Κωδικοί Πρόσβασης Εφαρμογής" @@ -1618,7 +1726,7 @@ msgstr "Έφεση στην αναστολή του livestream" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Έφεση υποβλήθηκε" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Αρχειοθετήθηκε από {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Αρχειοθετημένη ανάρτηση" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε τον κωδικό πρόσβασης εφαρμογής;" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετ msgid "Are you sure you want to discard your changes?" msgstr "Θέλετε σίγουρα να απορρίψετε τις αλλαγές σας;" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Σίγουρα θέλετε να αποχωρήσετε από αυτήν τη συζήτηση;" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Θέλετε σίγουρα να αποχωρήσετε από αυτή τη συνομιλία; Τα μηνύματά σας θα διαγραφούν για εσάς, αλλά όχι για τον άλλο συμμετέχοντα." +#: src/components/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 "Είστε σίγουροι ότι θέλετε να αφαιρέσετε αυτό από τις ροές σας;" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Είστε σίγουροι ότι θέλετε να απορρίψετε αυτήν την ανάρτηση;" @@ -1724,8 +1838,8 @@ msgstr "Τέχνη" msgid "Artistic or non-erotic nudity." msgstr "Καλλιτεχνική ή μη ερωτική γυμνότητα." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Ανάθεση θέματος για τον αλγόριθμο" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Αυτόματη αναπαραγωγή βίντεο και GIF" msgid "Available" msgstr "Διαθέσιμο" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Διαθέσιμο" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Διαθέσιμο" msgid "Back" msgstr "Πίσω" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Πίσω στις Συνομιλίες" @@ -1832,7 +1948,7 @@ msgstr "Πριν δημιουργήσετε μια δημοσίευση ή απ msgid "Before creating a starter pack, you must first verify your email." msgstr "Πριν δημιουργήσετε ένα Starter Pack, πρέπει πρώτα να επαληθεύσετε το email σας." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Πριν μπορέσετε να αποδεχτείτε αυτό το αίτημα συνομιλίας, πρέπει πρώτα να επαληθεύσετε το email σας." @@ -1840,13 +1956,14 @@ msgstr "Πριν μπορέσετε να αποδεχτείτε αυτό το α msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Πριν μπορέσετε να λάβετε ειδοποιήσεις για τις δημοσιεύσεις του/της {name}, πρέπει πρώτα να επαληθεύσετε το email σας." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Πριν μπορέσετε να στείλετε μήνυμα σε άλλον χρήστη, πρέπει πρώτα να επαληθεύσετε το email σας." @@ -1874,45 +1991,39 @@ msgstr "Ημερομηνία Γέννησης" msgid "Birthday" msgstr "Ημερομηνία γέννησης" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Αποκλεισμός" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Αποκλεισμός λογαριασμού" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Λίστα αποκλεισμένων" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Αποκλεισμός ή αναφορά" @@ -1936,9 +2047,9 @@ msgstr "Αποκλεισμός αυτών των λογαριασμών;" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Αποκλεισμός χρήστη" @@ -1946,9 +2057,9 @@ msgstr "Αποκλεισμός χρήστη" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Αποκλεισμός χρήστη" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Φραγή χρήστη και/ή διαγραφή αυτής της συνομιλίας" @@ -1956,7 +2067,7 @@ msgstr "Φραγή χρήστη και/ή διαγραφή αυτής της σ msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Αποκλεισμένος" @@ -1964,14 +2075,12 @@ msgstr "Αποκλεισμένος" msgid "Blocked accounts" msgstr "Αποκλεισμένοι λογαριασμοί" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Αποκλεισμένοι Λογαριασμοί" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας." @@ -1987,7 +2096,7 @@ msgstr "Ο αποκλεισμός δεν εμποδίζει αυτόν τον ε msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Ο αποκλεισμός είναι δημόσιος. Οι αποκλεισμένοι λογαριασμοί δεν μπορούν να απαντήσουν στις συζητήσεις σας, να σας αναφέρουν ή να αλληλεπιδράσουν με άλλο τρόπο μαζί σας." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Ο αποκλεισμός δεν θα εμποδίσει την εφαρμογή ετικετών στον λογαριασμό σας, αλλά θα σταματήσει αυτόν τον λογαριασμό από το να απαντά στις συζητήσεις σας ή να αλληλεπιδρά μαζί σας." @@ -2000,7 +2109,7 @@ msgstr "Ιστολόγιο" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Το Bluesky δεν μπορεί να επιβεβαιώσει την αυθεντικότητα της ημερομηνίας που δηλώθηκε." @@ -2029,7 +2138,7 @@ msgstr "Το Bluesky είναι καλύτερο με φίλους!" msgid "Bluesky is more fun with friends" msgstr "Το Bluesky είναι πιο διασκεδαστικό με φίλους" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Το Bluesky είναι πιο διασκεδαστικό με φίλους! Εισαγάγετε τις επαφές σας για να δείτε ποιος είναι ήδη εδώ." @@ -2037,11 +2146,15 @@ msgstr "Το Bluesky είναι πιο διασκεδαστικό με φίλο msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Το Bluesky είναι πιο διασκεδαστικό με φίλους. Θέλετε να προσκαλέσετε κάποιους από τους δικούς σας; <0/>" +#: 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Το Bluesky αποθηκεύει τις επαφές σας ως κωδικοποιημένα δεδομένα. Η αφαίρεση των επαφών σας θα διαγράψει αμέσως αυτά τα δεδομένα." @@ -2053,7 +2166,7 @@ msgstr "Το Bluesky θα επιλέξει μια σειρά από προτει msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Το Bluesky δεν θα εμφανίσει το προφίλ και τις αναρτήσεις σας σε χρήστες που δεν έχουν συνδεθεί. Άλλες εφαρμογές ενδέχεται να μην σεβαστούν αυτό το αίτημα. Αυτό δεν κάνει τον λογαριασμό σας ιδιωτικό." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Το Bluesky θα επαληθεύσει προληπτικά τους αξιοσημείωτους και αυθεντικούς λογαριασμούς." @@ -2081,6 +2194,10 @@ msgstr "Βιβλία" 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" @@ -2137,24 +2254,34 @@ msgstr "Επιχειρήσεις" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Από {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Από <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Δημιουργώντας λογαριασμό συμφωνείτε μ msgid "By you" msgstr "Από εσάς" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "Κάμερα" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Κάμερα" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Κάμερα" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Ακύρωση" @@ -2248,9 +2384,9 @@ msgstr "Ακύρωση επανενεργοποίησης και έξοδος" msgid "Cancel search" msgstr "Ακύρωση αναζήτησης" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Δεν μπορείτε να αλληλεπιδράσετε με έναν μπλοκαρισμένο χρήστη" @@ -2264,7 +2400,7 @@ msgstr "Υπότιτλοι (.vtt)" msgid "Captions & alt text" msgstr "Υπότιτλοι & εναλλακτικό κείμενο" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "Αλλαγή γλώσσας εφαρμογής" msgid "Change Handle" msgstr "Αλλαγή Ονόματος Χρήστη" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "Αλλαγή κωδικού πρόσβασης" msgid "Change password dialog" msgstr "Διάλογος αλλαγής κωδικού πρόσβασης" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Αλλαγή αιτίας αναφοράς" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Συνομιλία" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Συνομιλία διαγράφηκε" @@ -2361,6 +2497,12 @@ msgstr "Συνομιλία διαγράφηκε" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "Μηνύματα συνομιλίας - σιωπηλό" msgid "Chat messages - sound" msgstr "Μηνύματα συνομιλίας - ήχος" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Σίγαση συνομιλίας" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Εισερχόμενα αιτήματος συνομιλίας" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Αιτήματα συνομιλίας" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Ρυθμίσεις συνομιλίας" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Ρυθμίσεις Συνομιλίας" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Αφαίρεση σίγασης συνομιλίας" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Συνομιλίες" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Επιλέξτε αυτό το χρώμα ως εικόνα προφίλ σας" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "Πατήστε εδώ για αποσύνδεση" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Πατήστε εδώ για να επανεκκινήσετε τη διαδικασία επαλήθευσης." @@ -2567,7 +2718,7 @@ msgstr "Πατήστε εδώ για να επανεκκινήσετε τη δι msgid "Click here to update your birthdate" msgstr "Πατήστε εδώ για να ενημερώσετε την ημερομηνία γέννησής σας" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Πατήστε εδώ για να ενημερώσετε το email σας" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "Πατήστε για άνοιγμα του μενού ετικέτας για {0}" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχημένο μήνυμα" @@ -2594,28 +2745,30 @@ msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχ #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Κάντε κλικ για να επαναλάβετε το αποτυχ #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Κλείσιμο" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Κλείσιμο ενεργού διαλόγου" @@ -2647,6 +2800,10 @@ msgstr "Κλείσιμο ενεργού διαλόγου" msgid "Close alert" msgstr "Κλείσιμο ειδοποίησης" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Κλείσιμο κάτω συρταριού" @@ -2657,8 +2814,10 @@ msgstr "Κλείσιμο κάτω συρταριού" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Κλείσιμο διαλόγου" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Κλείσιμο εικόνας" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Κλείσιμο αυτού του διαλόγου" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Κλείνει την ειδοποίηση ενημέρωσης κωδικού πρόσβασης" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Σύμπτυξη λίστας χρηστών" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Συμπτύσσει τη λίστα χρηστών για μια δεδομένη ειδοποίηση" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Κόμικς" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Οδηγίες Κοινότητας" @@ -2740,12 +2915,12 @@ msgstr "Ολοκλήρωση της πρόκλησης" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Σύνταξη νέας ανάρτησης" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Σύνταξη αναρτήσεων έως {0, plural, other {# χαρακτήρες}}" @@ -2753,11 +2928,11 @@ msgstr "Σύνταξη αναρτήσεων έως {0, plural, other {# χαρα msgid "Compose reply" msgstr "Σύνταξη απάντησης" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Συμπίεση βίντεο..." @@ -2780,7 +2955,7 @@ msgstr "Ρυθμισμένο στις <0>ρυθμίσεις διαχείριση msgid "Confirm" msgstr "Επιβεβαίωση" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Επικοινωνία με την υποστήριξη" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Ο συγχρονισμός επαφών δεν είναι διαθέσιμος σε αυτήν τη συσκευή, καθώς η εφαρμογή δεν είναι σε θέση να αποκτήσει πρόσβαση στις επαφές σας." @@ -2825,11 +3000,11 @@ msgstr "Ο συγχρονισμός επαφών δεν είναι διαθέσ msgid "Contact us" msgstr "Επικοινωνήστε μαζί μας" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Οι επαφές εισήχθησαν" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Οι επαφές αφαιρέθηκαν" @@ -2842,7 +3017,7 @@ msgstr "Περιεχόμενο και Μέσα" msgid "Content and media" msgstr "Περιεχόμενο και μέσα" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Περιεχόμενο και Μέσα" @@ -2889,7 +3064,7 @@ msgstr "Φόντο μενού περιβάλλοντος, κάντε κλικ γ #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Συνέχεια συζήτησης..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Διαγραμμένη συνομιλία" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Διαγραμμένη συνομιλία" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Η έκδοση build αντιγράφηκε στο πρόχειρο" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Αντιγράφηκε!" msgid "Copies build version to clipboard" msgstr "Αντιγραφή αριθμού έκδοσης στο πρόχειρο" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Αντιγραφή" @@ -2997,6 +3184,11 @@ msgstr "Αντιγραφή DID" msgid "Copy host" msgstr "Αντιγραφή host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Αντιγραφή συνδέσμου στη λίστα" msgid "Copy link to post" msgstr "Αντιγραφή συνδέσμου στην ανάρτηση" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Αντιγραφή συνδέσμου προς προφίλ" @@ -3027,8 +3219,8 @@ msgstr "Αντιγραφή συνδέσμου προς προφίλ" msgid "Copy link to starter pack" msgstr "Αντιγραφή συνδέσμου στο πακέτο νέων" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Αντιγραφή κειμένου μηνύματος" @@ -3037,12 +3229,12 @@ msgstr "Αντιγραφή κειμένου μηνύματος" msgid "Copy post at:// URI" msgstr "Αντιγραφή ανάρτησης at:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Αντιγραφή κειμένου ανάρτησης" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Αντιγραφή QR κώδικα" @@ -3052,11 +3244,15 @@ msgstr "Αντιγραφή τιμής εγγραφής TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Πολιτική Πνευματικών Δικαιωμάτων" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Δεν ήταν δυνατή η σύνδεση στην προσαρμοσμένη ροή" @@ -3065,7 +3261,15 @@ msgstr "Δεν ήταν δυνατή η σύνδεση στην προσαρμο msgid "Could not connect to feed service" msgstr "Δεν ήταν δυνατή η σύνδεση στην υπηρεσία ροής" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "Δεν βρέθηκε το προφίλ" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Αδυναμία ακολούθησης όλων των αντιστοιχίσεων. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Δεν ήταν δυνατή η αποχώρηση από τη συνομιλία" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Δεν ήταν δυνατή η φόρτωση της ροής" @@ -3100,7 +3308,11 @@ msgstr "Δεν ήταν δυνατή η φόρτωση της ροής" msgid "Could not load list" msgstr "Δεν ήταν δυνατή η φόρτωση της λίστας" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Δεν ήταν δυνατή η σίγαση της συνομιλίας" @@ -3108,11 +3320,19 @@ msgstr "Δεν ήταν δυνατή η σίγαση της συνομιλίας msgid "Could not process your video" msgstr "Δεν ήταν δυνατή η επεξεργασία του βίντεο σας" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Δεν ήταν δυνατή η αποθήκευση των αλλαγών: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Δεν ήταν δυνατή η ενημέρωση των ρυθμίσεων ειδοποιήσεων" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Δημιουργία" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Δημιουργία starter pack" @@ -3174,13 +3394,14 @@ msgstr "Δημιουργία starter pack για μένα" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Δημιουργία λογαριασμού" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Δημιουργήστε μια εικόνα προφίλ εωαλλακτικά" @@ -3206,7 +3427,7 @@ msgstr "Δημιουργήστε μια εικόνα προφίλ εωαλλακ msgid "Create another" msgstr "Δημιουργία άλλου" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Δημιουργία νέου λογαριασμού" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Δημιουργία αναφοράς για {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Δημιουργήθηκε {0}" @@ -3270,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "Πολιτισμός" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Σκοτεινό θέμα" msgid "Date of birth" msgstr "Ημερομηνία γέννησης" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Προεπιλογή" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Διαγραφή κωδικού πρόσβασης εφαρμογής" msgid "Delete app password?" msgstr "Διαγραφή κωδικού πρόσβασης εφαρμογής;" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "Διαγραφή εγγραφής δήλωσης συνομιλίας" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Διαγραφή για μένα" @@ -3399,11 +3633,11 @@ msgstr "Διαγραφή για μένα" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Διαγραφή μηνύματος" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Διαγραφή μηνύματος για μένα" @@ -3411,9 +3645,9 @@ msgstr "Διαγραφή μηνύματος για μένα" msgid "Delete my account" msgstr "Διαγραφή του λογαριασμού μου" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Διαγραφή ανάρτησης" @@ -3430,17 +3664,17 @@ msgstr "Διαγραφή starter pack;" msgid "Delete this list?" msgstr "Διαγραφή αυτής της λίστας;" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Διαγραφή αυτής της ανάρτησης;" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Διαγραμμένο" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Διαγραμμένος Λογαριασμός" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Περιγραφικό εναλλακτικό κείμενο" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Αποσύνδεση απόσπασης" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Αποσύνδεση αναδημοσίευσης;" @@ -3507,13 +3741,13 @@ msgstr "Διάλογος: ρυθμίστε ποιοι μπορούν να αλλ msgid "Dim" msgstr "Ντιμαρισμένο" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Απενεργοποίηση Email 2FA" msgid "Disable haptic feedback" msgstr "Απενεργοποίηση ανάδρασης αφής" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Απενεργοποιημένο" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Απόρριψη" msgid "Discard changes?" msgstr "Απόρριψη αλλαγών;" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Απόρριψη ανάρτησης;" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Ανακαλύψτε Νέες Ροές" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Απόρριψη" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Απόρριψη σφάλματος" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "Δεν περιλαμβάνει γυμνό." msgid "Domain verified!" msgstr "Το domain σας επαληθεύτηκε!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Ολοκληρώθηκε" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Πατήστε δύο φορές για να κλείσετε το παράθυρο διαλόγου" @@ -3737,19 +3981,14 @@ msgstr "Πατήστε δύο φορές για να κλείσετε το πα 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 "Κατεβάστε το Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Κατεβάστε το αρχείο CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Κατεβάστε το αρχείο CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Διάρκεια:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "π.χ. alice" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Επεξεργασία" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Επεξεργασία εικόνας προφίλ" @@ -3847,19 +4102,19 @@ msgstr "Επεξεργασία εικόνας προφίλ" msgid "Edit Feeds" msgstr "Επεξεργασία ροών" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Επεξεργασία εικόνας" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης" @@ -3868,7 +4123,16 @@ msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Επεξεργασία των ροών μου" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Επεξεργασία ατόμων" @@ -3912,12 +4171,12 @@ msgstr "Επεξεργασία ρυθμίσεων αλληλεπίδρασης #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Επεξεργασία προφίλ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Επεξεργασία προφίλ" @@ -3925,7 +4184,8 @@ msgstr "Επεξεργασία προφίλ" msgid "Edit starter pack" msgstr "Επεξεργασία starter pack" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Επεξεργασία του ποιος μπορεί να απαντήσει" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Επεξεργασία του starter pack σας" @@ -3971,7 +4231,7 @@ msgstr "Διεύθυνση email" msgid "Email Resent" msgstr "Email Απεστάλη ξανά" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Ενσωματώστε αυτήν την ανάρτηση στον ισ msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Ενεργοποίηση" @@ -4025,7 +4285,7 @@ msgstr "Ενεργοποίηση περιεχομένου ενηλίκων" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "Ενεργοποίηση εξωτερικού μέσου" msgid "Enable media players for" msgstr "Ενεργοποίηση media players για" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Εισάγετε έναν κωδικό πρόσβασης" msgid "Enter a word or tag" msgstr "Εισάγετε μια λέξη ή ετικέτα" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Σφάλμα" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ msgstr "Όλοι μπορούν να απαντήσουν" msgid "Everybody can reply to this post." msgstr "Όλοι μπορούν να απαντήσουν σε αυτήν την ανάρτηση." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Όλοι" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Όλοι" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Όλοι" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Αποκλείει τους χρήστες που ακολουθείτε msgid "Exit fullscreen" msgstr "Έξοδος από την πλήρη οθόνη" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Ανάπτυξη λίστας χρηστών" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Ανάπτυξη ή συμπίεση της πλήρους ανάρτησης στην οποία απαντάτε" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Αναμενόταν το uri να επιλυθεί σε ένα αρχείο" @@ -4277,10 +4536,10 @@ msgstr "Γυμνό ή ενδεχομένως ενοχλητικό μέσο." msgid "Explicit sexual images." msgstr "Γυμνές σεξουαλικές εικόνες." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Προτιμήσεις εξωτερικού μέσου" @@ -4331,18 +4587,22 @@ msgstr "Προτιμήσεις εξωτερικού μέσου" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Απέτυχε η αλλαγή του ονόματος χρήστη. Παρακαλώ δοκιμάστε ξανά." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Απέτυχε η δημιουργία κωδικού πρόσβασης εφαρμογής. Παρακαλώ δοκιμάστε ξανά." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Απέτυχε η δημιουργία starter pack" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Απέτυχε η διαγραφή μηνύματος" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Απέτυχε η διαγραφή ανάρτησης, παρακαλώ δοκιμάστε ξανά" @@ -4394,24 +4655,24 @@ msgstr "Απέτυχε η διαγραφή ανάρτησης, παρακαλώ msgid "Failed to delete starter pack" msgstr "Απέτυχε η διαγραφή starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Απέτυχε η φόρτωση προτιμήσεων ροών" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Απέτυχε η φόρτωση προτεινόμενων ροών" msgid "Failed to load suggested follows" msgstr "Απέτυχε η φόρτωση προτεινόμενων ακολουθιών" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Απέτυχε το καρφίτσωμα ανάρτησης" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Απέτυχε η υποβολή ένστασης, παρακαλώ δοκιμάστε ξανά." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Απέτυχε η εναλλαγή σίγασης συνομιλίας, παρακαλώ δοκιμάστε ξανά" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Απέτυχε η ενημέρωση ροών" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Απέτυχε η ενημέρωση ρυθμίσεων" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Ροή" @@ -4649,7 +4914,7 @@ msgstr "Ροή" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Ροή από {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Σχόλια" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Ροές" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Ολοκλήρωση" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Βρείτε λογαριασμούς για να ακολουθήσετε" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Ακολουθήστε" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Ακολουθήστε {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Κάντε follow back" @@ -4916,7 +5183,7 @@ msgstr "Κάντε follow back" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Ακολουθείται από <0>{0} και <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Ακολουθείται από <0>{0}, <1>{1}, και {2, plural, one {# άλλον} other {# άλλους}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Ακολούθοι του/της @{0} που γνωρίζετε" @@ -4960,10 +5231,10 @@ msgstr "Ακολούθοι που γνωρίζετε" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Ακολουθείτε" @@ -4977,12 +5248,12 @@ msgstr "Ακολουθείτε" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Ακολουθείτε {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "Προτιμήσεις της ροής Ακολουθείτε" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Προτιμήσεις της ροής Ακολουθείτε" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Σας ακολουθεί" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Σας Ακολουθεί" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Γραμματοσειρά" @@ -5065,11 +5333,16 @@ msgstr "Ξεχάσατε τον κωδικό σας;" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "Από <0/>" msgid "Generate a starter pack" msgstr "Δημιουργήστε ένα starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Λάβετε βοήθεια" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Δώστε στο προφίλ σας ένα πρόσωπο" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Πίσω" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Επιστροφή στο προηγούμενο βήμα" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Αρχική" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Αρχική" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Αρχική" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Μετάβαση στην συνομιλία με {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Συνέχεια" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Προφίλ χρήστη" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Το όνομα χρήστη είναι πολύ μακρύ. Παρακαλώ δοκιμάστε ένα πιο σύντομο." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5458,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Βοήθεια" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Βοηθήστε τους ανθρώπους να καταλάβουν ότι δεν είστε bot ανεβάζοντας μια εικόνα ή δημιουργώντας μια εικόνα προφίλ." @@ -5522,7 +5820,7 @@ msgstr "Κρυφή λίστα" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Κρυφή λίστα" msgid "Hide" msgstr "Απόκρυψη" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Απόκρυψη" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Απόκρυψη απάντησης για μένα" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Απόκρυψη αυτής της ανάρτησης;" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Απόκρυψη λίστας χρηστών" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Χμμμ, φαίνεται ότι έχουμε πρόβλημα με τ msgid "Hmmmm, we couldn't load that moderation service." msgstr "Χμμμ, δεν καταφέραμε να φορτώσουμε αυτήν την υπηρεσία διαχείρισης." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Περιμένετε! Δίνουμε σταδιακά πρόσβαση στο βίντεο και εσείς περιμένετε στην ουρά. Ελέγξτε ξανά σύντομα!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Αρχική" @@ -5721,7 +6019,7 @@ msgstr "Κατανοώ" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Εάν το εναλλακτικό κείμενο είναι μακρύ, ενεργοποιεί/απενεργοποιεί το επεκταμένο εναλλακτικό κείμενο" @@ -5757,15 +6055,15 @@ msgstr "Εάν διαγράψετε αυτήν τη λίστα, δεν θα μπ msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Εάν προσπαθείτε να αλλάξετε το όνομα χρήστη ή το email σας, κάντε το πριν απενεργοποιήσετε τον λογαριασμό σας." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Εικόνα" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Μη έγκυρος κωδικός επιβεβαίωσης 2FA." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Μη έγκυρος κωδικός επαλήθευσης" @@ -6001,8 +6315,15 @@ msgstr "Κωδικός πρόσκλησης" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Ο κωδικός πρόσκλησης δεν έγινε δεκτός. Βεβαιωθείτε ότι τον εισάγατε σωστά και δοκιμάστε ξανά." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Προσκαλέστε άτομα σε αυτό το starter pack!" +#: 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID εργασίας: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID εργασίας: {0}" msgid "Jobs" msgstr "Εργασίες" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Εργασίες" msgid "Join Bluesky" msgstr "Εγγραφείτε στο Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Συμμετάσχετε στη συζήτηση" msgid "Journalism" msgstr "Δημοσιογραφία" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Οι Ετικέτες στον λογαριασμό σας" msgid "Labels on your content" msgstr "Οι Ετικέτες στο περιεχόμενό σας" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Ρυθμίσεις γλώσσας" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Πιο πρόσφατα" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Μάθετε περισσότερα για αυτήν την προειδοποίηση" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Μάθετε περισσότερα για το τι είναι δημόσιο στο Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Μάθετε περισσότερα." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Αποχώρηση" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Αποχώρηση από συνομιλία" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Αποχώρηση από συνομιλία" @@ -6284,13 +6642,14 @@ msgstr "Αποχώρηση από συνομιλία" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Αποχώρηση από συνομιλία" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Αποχώρηση από το Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "απομένουν." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Φωτεινό" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6346,11 +6713,7 @@ msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις" msgid "Like 10 posts to train the Discover feed" msgstr "\"Μου αρέσει\" σε 10 αναρτήσεις για να εκπαιδεύσετε την ροής Ανακαλύψτε" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή" @@ -6358,8 +6721,8 @@ msgstr "Πατήστε \"Μου αρέσει\" σε αυτήν την ροή" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "\"Μου αρέσει\" από" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "\"Μου αρέσει\"" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση" @@ -6409,11 +6768,11 @@ msgstr "\"Μου αρέσει\" σε αυτήν την ανάρτηση" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Λίστα" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Λίστα αφαίρεση σίγασης" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Λίστες" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Φόρτωση..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Ημερολόγιο" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Λογότυπο από <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Φαίνεται ότι λείπει μια ροή που ακολουθ msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Διαχειριστείτε τις λέξεις και ετικέτες σας σε σίγαση" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Σημείωση ως ανάγνωση" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Μέσα που μπορεί να είναι ενοχλητικά ή ακατάλληλα για ορισμένα ακροατήρια." +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "αναφερόμενοι χρήστες" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Μήνυμα {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Το μήνυμα διαγράφηκε" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Το μήνυμα διαγράφηκε" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "Το μήνυμα είναι πολύ μακρύ" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Μηνύματα" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Διαχείριση" @@ -6894,7 +7247,7 @@ msgstr "Η Λίστα διαχείρισης ενημερώθηκε" msgid "Moderation lists" msgstr "Λίστες διαχείρισης" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Λίστες Διαχείρισης" @@ -6903,7 +7256,7 @@ msgstr "Λίστες Διαχείρισης" msgid "moderation settings" msgstr "ρυθμίσεις διαχείρισης" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Καταστάσεις διαχείρισης" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Περισσότερες επιλογές" @@ -6949,7 +7302,7 @@ msgstr "Ταινίες" msgid "Music" msgstr "Μουσική" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Σίγαση" @@ -6965,8 +7318,8 @@ msgstr "Σίγαση" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "Σίγαση λογαριασμών" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Σίγαση συνομιλίας" @@ -6994,7 +7347,7 @@ msgstr "Λίστα σίγασης" msgid "Mute these accounts?" msgstr "Σίγαση αυτών των λογαριασμών;" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Σίγαση αυτής της λέξης μόνο στις ετικέτ msgid "Mute this word until you unmute it" msgstr "Σίγαση αυτής της λέξης μέχρι να την ξεσιγάσετε" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Σίγαση νήματος" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Σίγαση λέξεων & ετικετών" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Λογαριασμοί σε σίγαση" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Λογαριασμοί σε σίγαση" @@ -7062,6 +7419,10 @@ msgstr "Λέξεις & ετικέτες σε σίγαση" 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Μεταβαίνει στην επόμενη οθόνη" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Μεταβαίνει στο προφίλ σας" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Δεν πειράζει, δημιουργήστε ένα όνομα χρήστη για μένα" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Νέο" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Νέα συνομιλία" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Νέα δημοσίευση" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Νέα δημοσίευση" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Ειδήσεις" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Επόμενο" msgid "Next image" msgstr "Επόμενη εικόνα" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Δεν βρέθηκαν ροές. Δοκιμάστε να αναζητήσετε κάτι άλλο." -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Δεν ακολουθώ πλέον τον {0}" @@ -7362,7 +7726,7 @@ msgstr "Δεν ακολουθώ πλέον τον {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Δεν υπάρχουν ακόμη μηνύματα" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Δεν υπάρχουν ακόμη ειδοποιήσεις!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Μόνο ο συγγραφέας μπορεί να παραθέσει αυτήν την δημοσίευση." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Χωρίς αποτέλεσμα" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Χωρίς αποτελέσματα" @@ -7446,8 +7810,8 @@ msgstr "Χωρίς αποτελέσματα" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Δεν βρέθηκαν αποτελέσματα" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Μη σεξουαλικό γυμνό" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Δεν Βρέθηκε" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Σημείωση σχετικά με την κοινή χρήση" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ρυθμίσεις ειδοποιήσεων" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Ήχοι ειδοποιήσεων" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Ειδοποιήσεις" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "τώρα" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Απενεργοποιημένο" @@ -7623,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Εντάξει" @@ -7648,35 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "Επαναφορά onboardin" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "Ένα ή περισσότερα GIF λείπουν το εναλλακτικό κείμενο." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Μία ή περισσότερες εικόνες λείπουν το εναλλακτικό κείμενο." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Ένα ή περισσότερα βίντεο λείπουν το εναλλακτικό κείμενο." @@ -7685,6 +8037,26 @@ msgstr "Ένα ή περισσότερα βίντεο λείπουν το ενα msgid "Only {0} can reply." msgstr "Μόνο ο/η {0} μπορεί να απαντήσει." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Υποστηρίζονται μόνο αρχεία εικόνας" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Υποστηρίζονται μόνο αρχεία WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Υποστηρίζονται μόνο αρχεία WebVTT (.vtt)" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ουπς, κάτι πήγε στραβά!" msgid "Oops!" msgstr "Ουπς!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Άνοιγμα δημιουργού εικόνας προφίλ" @@ -7720,12 +8106,17 @@ msgstr "Άνοιγμα δημιουργού εικόνας προφίλ" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Άνοιγμα επιλογών συνομιλίας" @@ -7739,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Άνοιγμα επιλογέα emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Άνοιγμα μενού επιλογών ροών" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Άνοιγμα συνδέσμου προς {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Άνοιγμα μενού επιλογών δημοσίευσης" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Άνοιγμα σελίδας storybook" msgid "Open system log" msgstr "Άνοιγμα αρχείου καταγραφής συστήματος" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Ανοίγει ένα παράθυρο διαλόγου για να πρ msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Ανοίγει πρόσθετες λεπτομέρειες για μια καταχώρηση εντοπισμού σφαλμάτων" @@ -7838,7 +8250,7 @@ msgstr "Ανοίγει πρόσθετες λεπτομέρειες για μια msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Ανοίγει την κάμερα στη συσκευή" @@ -7858,22 +8270,24 @@ msgstr "Ανοίγει το εργαλείο σύνταξης κειμένου" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Ανοίγει τη διαδικασία για να δημιουργήσετε ένα νέο λογαριασμό Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Ανοίγει τη φόρμα επαναφοράς κωδικού πρ msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Ανοίγει αυτό το προφίλ" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Οι διαχειριστές μας έχουν εξετάσει τις αναφορές και αποφάσισαν να απενεργοποιήσουν την πρόσβαση σας στις συνομιλίες στο Bluesky." @@ -8010,16 +8431,17 @@ msgstr "Οι διαχειριστές μας έχουν εξετάσει τις msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: 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 "Η σελίδα δεν βρέθηκε" -#: src/view/screens/NotFound.tsx:33 -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" @@ -8068,34 +8490,34 @@ msgstr "Παύση βίντεο" msgid "People" msgstr "Άτομα" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Άτομα που ακολουθούν τον/την @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Άτομα που ακολουθούνται από τον/την @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Φωτογραφία" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8152,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "Καρφίτσωμα στην αρχική" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Καρφίτσωμα στην Αρχική" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Καρφίτσωμα στο προφίλ σας" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Καρφιτσωμένο" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8236,7 +8662,7 @@ msgstr "Παρακαλώ επιλέξτε το όνομα χρήστη σας." msgid "Please choose your password." msgstr "Παρακαλώ επιλέξτε τον κωδικό πρόσβασης σας." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Παρακαλώ ολοκληρώστε τον έλεγχο captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Παρακαλώ εισάγετε το email σας." msgid "Please enter your invite code." msgstr "Παρακαλώ εισάγετε τον κωδικό πρόσκλησης σας." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Παρακαλώ εξηγήστε γιατί πιστεύετε ότι αυτή η ετικέτα εφαρμόστηκε εσφαλμένα από τον/την {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Παρακαλώ εξηγήστε γιατί πιστεύετε ότι οι συνομιλίες σας απενεργοποιήθηκαν εσφαλμένα" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "Παρακαλώ συνδεθείτε ως @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Πολιτική" msgid "Porn" msgstr "Πορνογραφία" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Δημοσίευση" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Δημοσίευση Όλων" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Δημοσίευση από @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Η δημοσίευση διαγράφηκε" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Η δημοσίευση απέτυχε να μεταφορτωθεί. Παρακαλώ ελέγξτε τη σύνδεση στο internet και προσπαθήστε ξανά." @@ -8454,18 +8884,22 @@ msgstr "Δημοσίευση κρυμμένη από εσάς" msgid "Post interaction settings" msgstr "Ρυθμίσεις αλληλεπίδρασης δημοσίευσης" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Οι δημοσιεύσεις μπορούν να τεθούν σε σί msgid "Posts hidden" msgstr "Κρυμμένες δημοσιεύσεις" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Πατήστε για να δοκιμάσετε ξανά τη σύνδεση" -#: src/components/Error.tsx:61 +#: 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 "Πατήστε για να προσπαθήσετε ξανά" @@ -8536,7 +8966,7 @@ msgstr "Πατήστε για να προσπαθήσετε ξανά" msgid "Press to view followers of this account that you also follow" msgstr "Πατήστε για να δείτε τους ακόλουθους αυτού του λογαριασμού που ακολουθείτε και εσείς" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Απόρρητο" msgid "Privacy and security" msgstr "Απόρρητο και ασφάλεια" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Απόρρητο και Ασφάλεια" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Πολιτική Απορρήτου" @@ -8586,15 +9015,15 @@ msgstr "Πολιτική Απορρήτου" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Επεξεργασία βίντεο..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Επεξεργασία..." @@ -8602,10 +9031,10 @@ msgstr "Επεξεργασία..." msgid "profile" msgstr "προφίλ" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Προφίλ" @@ -8613,6 +9042,7 @@ msgstr "Προφίλ" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Ο κωδικός QR αντιγράφηκε στο πρόχειρό σας!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Ο κωδικός QR έχει κατέβει!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Ο κωδικός QR αποθηκεύτηκε στο φιλμ της κάμερας σας!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Παράθεση δημοσίευσης" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Η παράθεση δημοσίευσης προστέθηκε ξανά" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Η παράθεση δημοσίευσης αφαιρέθηκε επιτυχώς" @@ -8711,12 +9138,12 @@ msgstr "Οι παραθέσεις δημοσιεύσεων είναι απενε #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Παραθέσεις" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Παραθέσεις αυτής της δημοσίευσης" @@ -8728,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "Επανασύνδεση" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Επαναφόρτωση συνομιλιών" @@ -8863,6 +9304,8 @@ msgstr "Επαναφόρτωση συνομιλιών" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Αφαίρεση του/της {displayName} από το starter pack" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Αφαίρεση λογαριασμού" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Αφαίρεση συνημμένου" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Αφαίρεση φωτογραφίας προφίλ" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8914,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Αφαίρεση ενσωματωμένου περιεχομένου" @@ -8929,12 +9378,12 @@ msgstr "Αφαίρεση ροής" msgid "Remove feed?" msgstr "Αφαίρεση ροής;" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Αφαίρεση εικόνας" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Αφαίρεση αναδημοσίευσης" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Αφαιρέθηκε από τον δημιουργό" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Αφαιρέθηκε από εσάς" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Απαντήσεις" @@ -9104,14 +9552,14 @@ msgstr "Οι απαντήσεις είναι απενεργοποιημένες" msgid "Replies to this post are disabled." msgstr "Οι απαντήσεις σε αυτή τη δημοσίευση είναι απενεργοποιημένες." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "Απάντηση κρυμμένη από τον δημιουργό το msgid "Reply Hidden by You" msgstr "Απάντηση κρυμμένη από εσάς" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Οι ρυθμίσεις απαντήσεων επιλέγονται από τον δημιουργό του νήματος" @@ -9137,18 +9581,18 @@ msgstr "Οι ρυθμίσεις απαντήσεων επιλέγονται απ msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Η ορατότητα απάντησης ενημερώθηκε" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Η απάντηση κρύφτηκε επιτυχώς" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Αναφορά" @@ -9157,20 +9601,20 @@ msgstr "Αναφορά" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Παράθυρο αναφοράς" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Αναφορά ροής" @@ -9179,12 +9623,12 @@ msgstr "Αναφορά ροής" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Αναφορά μηνύματος" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Αναφορά δημοσίευσης" @@ -9199,8 +9643,8 @@ msgstr "Αναφορά starter pack" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Αναφορά αυτής της ροής" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Αναφορά αυτής της λίστας" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Αναδημοσίευση" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Αναδημοσίευση από εσάς" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Αναδημοσίευση αυτής της ανάρτησης" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "Απαιτείται για αυτόν τον πάροχο" msgid "Required in your region" msgstr "Απαιτείται στην περιοχή σας" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "Επαναφορά κωδικού πρόσβασης" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Επανάληψη της τελευταίας ενέργειας, η ο msgid "Retry" msgstr "Προσπαθείστε ξανά" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Επιστροφή στην προηγούμενη σελίδα" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Αποθήκευση αλλαγών" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Αποθήκευση εικόνας" msgid "Save new handle" msgstr "Αποθήκευση νέου ονόματος χρήστη" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Αποθήκευση QR κώδικα" @@ -9518,13 +9994,13 @@ msgstr "Αποθήκευση QR κώδικα" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Αποθήκευση στις ροές μου" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Αποθηκευμένες ροές" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Αποθηκεύτηκε στις ροές σας" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Πείτε γεια!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Επιστήμη" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Μετακίνηση στην κορυφή" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Αναζήτηση" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Αναζήτηση προφίλ" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Επιλογή χρώματος" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Επιλογή GIF" msgid "Select GIF \"{0}\"" msgstr "Επιλέξτε GIF “{0}”" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Επιλογή γλώσσας..." msgid "Select languages" msgstr "Επιλογή γλωσσών" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "Επιλέξτε τα ενδιαφέροντά σας από τις πα msgid "Select your preferred language for translations in your feed." msgstr "Επιλέξτε την προτιμώμενη γλώσσα σας για τις μεταφράσεις στη ροή σας." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Αποστολή email" @@ -9935,11 +10421,11 @@ msgstr "Αποστολή email" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Αποστολή σχολίων" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Αποστολή μηνύματος" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Αποστολή ανάρτησης σε..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Αποστολή μέσω προσωπικού μηνύματος" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Ορίζει email για επαναφορά κωδικού πρόσβασης" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ρυθμίσεις" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Σεξουαλική δραστηριότητα ή ερωτικό γυμ msgid "Sexually Suggestive" msgstr "Σεξουαλικά προκλητικό" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Κοινή χρήση" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Κοινή χρήση ούτως ή άλλως" @@ -10097,16 +10586,21 @@ msgstr "Κοινή χρήση ούτως ή άλλως" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Κοινή χρήση συνδέσμου" @@ -10114,6 +10608,11 @@ msgstr "Κοινή χρήση συνδέσμου" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Κοινή χρήση QR κώδικα" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10142,8 +10641,8 @@ msgstr "Μοιραστείτε αυτό το Starter Pack και βοηθήστ #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Ελεγκτής κοινών προτιμήσεων" @@ -10167,16 +10666,16 @@ msgstr "Εμφάνιση εναλλακτικού κειμένου" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Εμφάνιση ούτως ή άλλως" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Εμφάνιση λιγότερων παρόμοιων" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Εμφάνιση περισσότερων" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Εμφάνιση περισσότερων σαν αυτό" @@ -10246,8 +10745,8 @@ msgstr "Εμφάνιση απαντήσεων" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Εμφάνιση απάντησης για όλους" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Εμφάνιση προειδοποίησης και φιλτράρισμα από τις ροές" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Συνδεθείτε ή δημιουργήστε λογαριασμό για να συμμετάσχετε στη συζήτηση!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10337,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Αποσύνδεση" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Αποσύνδεση;" @@ -10391,7 +10900,7 @@ msgstr "Παράλειψη" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Μικρότερο" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Κάτι πήγε στραβά!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Αθλήματα" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Έναρξη νέας συνομιλίας" @@ -10582,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Έναρξη συνομιλίας με {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "starter pack" @@ -10654,12 +11173,12 @@ msgstr "Η αποθήκευση εκκαθαρίστηκε, πρέπει να ε msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Υποβολή" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Εγγραφή" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Επιτυχία!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Υποστήριξη" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Αλλαγή λογαριασμού" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "Λογαριασμός συστήματος" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Πατήστε για να απορρίψετε" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Όροι Χρήσης" @@ -10939,7 +11484,7 @@ msgstr "Κείμενο & ετικέτες" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Πεδίο εισαγωγής κειμένου" @@ -10981,9 +11526,9 @@ msgstr "Αυτά ήταν όλα, παιδιά!" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Ο λογαριασμός θα μπορεί να αλληλεπιδράσει μαζί σας μετά την απελευθέρωση." @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Η δημοσίευση στην οποία απαντάτε έχει επισημανθεί ως γραμμένη στα {suggestedLanguageName} από τον συντάκτη της. Θα θέλατε να απαντήσετε στα <0>{suggestedLanguageName};" @@ -11057,9 +11607,9 @@ msgstr "Η δημοσίευση στην οποία απαντάτε έχει ε msgid "The Privacy Policy has been moved to <0/>" msgstr "Η Πολιτική Απορρήτου έχει μετακινηθεί στο <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Θέμα" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Παρουσιάστηκε πρόβλημα επικοινωνίας με τον διακομιστή, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Παρουσιάστηκε πρόβλημα λήψης αναρτήσεων. Πατήστε εδώ για να δοκιμάσετε ξανά." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Παρουσιάστηκε πρόβλημα κατά την ενημέρωση των ροών σας, παρακαλούμε ελέγξτε τη σύνδεσή σας στο internet και δοκιμάστε ξανά." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Παρουσιάστηκε πρόβλημα! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Αυτές οι ρυθμίσεις ισχύουν μόνο για τη ροή ΑκολουΘείτε." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Αυτό το {screenDescription} έχει επισημανθεί:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Αυτή η ένσταση θα σταλεί στο <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Αυτή η ένσταση θα σταλεί στην υπηρεσία διαχείρισης του Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Αυτή η ένσταση θα σταλεί στην υπηρεσία msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Αυτή η συνομιλία διακόπηκε" @@ -11310,7 +11881,11 @@ msgstr "Αυτό το περιεχόμενο δεν είναι διαθέσιμ msgid "This content is not viewable without a Bluesky account." msgstr "Αυτό το περιεχόμενο δεν είναι ορατό χωρίς λογαριασμό Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Αυτή η ροή είναι άδεια." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Αυτή η ροή δεν είναι πλέον διαθέσιμη. Σας δείχνουμε την ροή <0>Ανακαλύψτε." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Αυτός ο χρήστης δεν έχει ακόλουθους." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "Αυτός ο χρήστης σας έχει μπλοκάρει. Δεν μπορείτε να δείτε το περιεχόμενό του." -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Αυτό θα αφαιρέσει τον @{0} από τη λίστα γρήγορης πρόσβασης." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11574,7 +12166,7 @@ msgstr "Προτιμήσεις Νήματος" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Προτιμήσεις Νημάτων" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Για να απενεργοποιήσετε τη μέθοδο email 2FA, παρακαλούμε επαληθεύστε την πρόσβαση σας στην ηλεκτρονική διεύθυνση." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Κορυφή" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Μετάφραση" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:170 +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 "" @@ -11763,11 +12369,15 @@ msgstr "Αδυναμία επικοινωνίας με την υπηρεσία msgid "Unable to delete" msgstr "Αδυναμία διαγραφής" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Ξεμπλοκάρισμα" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Ξεμπλοκάρισμα" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Ξεμπλοκάρισμα λογαριασμού" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Ξεμπλοκάρισμα Λογαριασμού;" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Διακοπή παρακολούθησης {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11872,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Ακύρωση Σίγασης συνομιλίας" @@ -11955,12 +12562,12 @@ msgstr "Ακύρωση Σίγασης συνομιλίας" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Ακύρωση Σίγασης νήματος" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Αφαίρεση καρφιτσωμένου" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Αφαίρεση καρφιτσωμένου από την αρχική σελίδα" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Αφαίρεση καρφιτσωμένου από το προφίλ" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Αφαίρεση καρφιτσωμένου από τη λίστα διαχείρισης" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -12030,14 +12637,18 @@ msgstr "Απεγγραφή από αυτόν τον ετικετογράφο" msgid "Unsubscribed from list" msgstr "Απεγγραφή από αυτήν την λίστα" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "Ενημέρωση <0>{displayName} στις Λίστες" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Ενημέρωση σε {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Η ενημέρωση της επισυναπτόμενης παράθεσης απέτυχε" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Η ενημέρωση της ορατότητας της απάντησης απέτυχε" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία" @@ -12098,39 +12717,40 @@ msgstr "Αντ'αυτού, ανεβάστε μια φωτογραφία" msgid "Upload a text file to:" msgstr "Ανεβάστε ένα αρχείο κειμένου στο:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Ανεβάζω εικόνες..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Ανεβάζω μικρογραφία συνδέσμου..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Ανεβάζω βίντεο..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Λίστα χρηστών από {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "χρήστες που ακολουθούνται από <0>@{0}" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Επαλήθευση εγγραφής DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Βίντεο" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Αποτυχία επεξεργασίας βίντεο" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "Το βίντεο δεν βρέθηκε." msgid "Video settings" msgstr "Ρυθμίσεις βίντεο" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Το βίντεο ανέβηκε" @@ -12432,18 +13052,18 @@ msgstr "Βίντεο: {0}" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Προβολή προφίλ του/της {0}" @@ -12467,20 +13087,15 @@ msgstr "Προβολή προφίλ του/της {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Προβολή προφίλ αποκλεισμένου χρήστη" @@ -12503,10 +13118,18 @@ msgstr "Προβολή λεπτομερειών" msgid "View full thread" msgstr "Προβολή πλήρους νήματος" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Προβολή πληροφοριών σχετικά με αυτές τις ετικέτες" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Προβολή προφίλ" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Προβολή της εικόνας προφίλ" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Προβολή της υπηρεσίας επισήμανσης που msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Προβολή χρηστών που τους αρέσει αυτή η ροή" @@ -12596,8 +13219,8 @@ msgstr "Προβολή των λογαριασμών που έχετε σε σί msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "Προειδοποίηση περιεχομένου" msgid "Warn content and filter from feeds" msgstr "Προειδοποίηση περιεχομένου και φιλτράρισμα από τις ροές" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Δεν μπορέσαμε να φορτώσουμε αυτήν τη συνομιλία" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Δεν μπορέσαμε να προσδιορίσουμε εάν επιτρέπεται να ανεβάζετε βίντεο. Παρακαλώ προσπαθήστε ξανά." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Θα σας ενημερώσουμε όταν ο λογαριασμός σας είναι έτοιμος." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Αντιμετωπίζουμε προβλήματα δικτύου, δοκιμάστε ξανά" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Λυπούμαστε! Η ανάρτηση στην οποία απαντάτε έχει διαγραφεί." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Λυπούμαστε! Δεν μπορούμε να βρούμε τη σελίδα που αναζητούσατε." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Πώς θέλετε να ονομάσετε το starter pack σας;" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Τι συμβαίνει;" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Ποιος μπορεί να αλληλεπιδράσει με αυτήν την ανάρτηση;" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Ποιος μπορεί να απαντήσει" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ουπς!" @@ -12939,7 +13566,7 @@ msgstr "Γιατί πρέπει να ελεγχθεί αυτό το starter pack msgid "Why should this user be reviewed?" msgstr "Γιατί πρέπει να ελεγχθεί αυτός ο χρήστης;" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Γράψτε ανάρτηση" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Γράψτε την απάντησή σας" @@ -12978,7 +13605,8 @@ msgstr "Συγγραφείς" msgid "Wrong DID returned from server. Received: {0}" msgstr "Επιστράφηκε λάθος DID από τον διακομιστή. Ελήφθη: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Ναι, διαγράψτε αυτό το starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Ναι, αποσύνδεση" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Ναι, απόκρυψη" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Δεν επιτρέπεται να ανεβάζετε βίντεο." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Μπορείτε να συνεχίσετε τις τρέχουσες συνομιλίες ανεξάρτητα από τη ρύθμιση που θα επιλέξετε." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Τώρα μπορείτε να συνδεθείτε με τον νέο σας κωδικό πρόσβασης." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Μπορείτε να επανενεργοποιήσετε τον λογ 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Δεν έχετε αποθηκευμένες ροές." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Έχετε φτάσει προσωρινά το όριο για μεταφορτώσεις βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα." -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Μπορείτε να προσθέσετε έως και 3 ροές" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Πρέπει να ακολουθείτε τουλάχιστον επτά άλλα άτομα για να δημιουργήσετε ένα starter pack." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Πρέπει να παραχωρήσετε πρόσβαση στη βιβλιοθήκη φωτογραφιών σας για να αποθηκεύσετε έναν κωδικό QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Θα αποσυνδεθείτε από όλους τους λογαριασμούς σας." @@ -13378,11 +14038,11 @@ msgstr "Θα αποσυνδεθείτε από όλους τους λογαρι msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Δεν θα λαμβάνετε πλέον ειδοποιήσεις για αυτό το νήμα" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Τώρα θα λαμβάνετε ειδοποιήσεις για αυτό το νήμα" @@ -13390,12 +14050,12 @@ msgstr "Τώρα θα λαμβάνετε ειδοποιήσεις για αυτ msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Θα λάβετα ένα email με ένα \"κωδικό επαναφοράς.\\ Εισάγετε αυτό τον κωδικό εδώ, εν συνεχεία εισάγετε το νέο σας κωδικό πρόσβασης.\"" -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "Είστε στην ουρά" @@ -13463,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Φτάσατε στο τέλος της ροής σας! Βρείτε περισσότερους λογαριασμούς για να ακολουθήσετε." -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Έχετε φτάσει το ημερήσιο όριο για μεταφορτώσεις βίντεο (πάρα πολλά βίντεο)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ο λογαριασμός σας δεν είναι ακόμη αρκετά παλιός για να ανεβάσετε βίντεο. Παρακαλώ προσπαθήστε ξανά αργότερα." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Το αποθετήριο του λογαριασμού σας, που περιέχει όλα τα δημόσια δεδομένα, μπορεί να ληφθεί σε μορφή αρχείου \"CAR\". Αυτό το αρχείο δεν περιέχει ενσωματωμένα πολυμέσα, όπως εικόνες ή τα ιδιωτικά σας δεδομένα, τα οποία μπορούν να ληφθούν ξεχωριστά." @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "Η ημερομηνία γέννησής σας" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Οι συνομιλίες σας έχουν απενεργοποιηθεί" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Το email σας φαίνεται να είναι μη έγκυρο." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "Η ροή που ακολουθείτε είναι άδεια! Ακολ msgid "Your full handle will be <0>@{0}" msgstr "Το πλήρες όνομα χρήστη σας θα είναι <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Οι λέξεις σας σε σίγαση" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "Το προφίλ, οι αναρτήσεις, οι ροές και οι λίστες σας δεν θα είναι πλέον ορατές σε άλλους χρήστες του Bluesky. πορείτε να ενεργοποιήσετε τον λογαριασμό σας ανά πάσα στιγμή πραγματοποιώντας είσοδο." -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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-GB/messages.po b/src/locale/locales/en-GB/messages.po index e27c9fe5af..7494de5405 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: English, United Kingdom\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" category (active)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(chat invite link)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(contains embedded content)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# like} other {# likes}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# member} other {# members}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minute} other {# minutes}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# month} other {# months}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# people}} reacted – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# second} other {# seconds}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# unread item} other {# unread items}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {#m} other {#m}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>text & tags" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} added to chat" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} and {1} added to chat" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} following" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} is blocking you" @@ -264,7 +273,7 @@ msgstr "{0} out of 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reacted {1}" @@ -290,7 +299,7 @@ msgstr "{0} was removed from the group" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, a list by {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0}'s avatar" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {member} other {members}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} members" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# chat update} other {# chat updates}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# new join request} other {# new join requests}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# request} other {# requests}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# unread item} other {# unread items}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {This post has # photo.} other {This post has # photos.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" + +#. 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 "{count, plural, other {#+ requests to join}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ requests" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hour} other {hours}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} followed you back" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} removed their verification from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verified you" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} followed you" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} followed you back" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} liked your custom feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} liked your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} liked your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} removed their verification from your account" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} reposted your post" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} reposted your repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} signed up with your starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verified you" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} verified you" msgid "{following} following" msgstr "{following} following" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} can’t be added" @@ -547,7 +606,7 @@ msgstr "{handle} can’t be added" msgid "{handle} can't be messaged" msgstr "{handle} can't be messaged" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} can’t be messaged" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# hour {minutesString}} other {# hours {minutesStri msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# hour} other {# hours}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}+ new join requests" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ new join requests" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum nu msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} reacted {0} to {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name}'s favourite feeds and people – join me!" msgid "{name}'s starter pack" msgstr "{name}'s starter pack" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# unread item} other {# unread items}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contact found} other {# contacts found}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# request} other {# requests}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ requests" @@ -656,6 +725,12 @@ msgstr "{userName} is verified" msgid "{userName}'s verifications" msgstr "{userName}'s verifications" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} and {2, plural, one {# other} other {# others}} a #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {follower} other {followers}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {following} other {following}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {like} other {likes}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {quote} other {quotes}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {reposts}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {save} other {saves}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} members" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> added you" @@ -795,8 +870,13 @@ msgstr "A network error occurred. Please check your internet connection" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "A network error occurred. Please check your internet connection." @@ -804,7 +884,7 @@ msgstr "A network error occurred. Please check your internet connection." msgid "A new code has been sent" msgstr "A new code has been sent" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "A new form of verification" @@ -827,11 +907,11 @@ msgstr "A screenshot of a profile page with a bell icon next to the follow butto 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "A selected recipient is not followed by the sender." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Abusive or discriminatory behaviour" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Accept" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Accept" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Accept chat request" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Accept join request" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Accept Request" @@ -860,17 +950,26 @@ msgstr "Accept Request" msgid "Accept this language suggestion" msgstr "Accept this language suggestion" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Accepted conversations" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +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:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accessibility" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Accessibility Settings" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Accessibility Settings" msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Account blocked" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Account followed" @@ -899,7 +998,7 @@ msgstr "Account has been suspended" msgid "Account is deactivated" msgstr "Account is deactivated" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Account provider" msgid "Account removed from quick access" msgstr "Account removed from quick access" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Account unblocked" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Account unfollowed" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Account unmuted" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Activity from others" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Activity notifications" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Add" @@ -999,8 +1094,8 @@ msgstr "Add account" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Add alt text (optional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Add another account" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Add another post" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Add another post to thread" @@ -1035,7 +1130,7 @@ msgstr "Add app password" msgid "Add App Password" msgstr "Add App Password" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Add automation label to account" @@ -1043,7 +1138,7 @@ msgstr "Add automation label to account" msgid "Add emoji reaction" msgstr "Add emoji reaction" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Add group chat members" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Add image" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Add media to post" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Add members" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Add more details (optional)" @@ -1091,6 +1186,10 @@ msgstr "Add people" msgid "Add people to list" msgstr "Add people to list" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Add people with a link" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Add Reaction" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Add your birthdate" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Added by {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Added by invite link" @@ -1165,12 +1264,12 @@ msgstr "Adding members to list..." msgid "Additional details (limit 1000 characters)" msgstr "Additional details (limit 1000 characters)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Additional details (limit 300 characters)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "Age assurance enquiry was submitted" msgid "Age assurance only takes a few minutes" msgstr "Age assurance only takes a few minutes" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "All" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "All {0}" @@ -1278,13 +1377,13 @@ msgstr "Allow access to your direct messages" msgid "Allow anyone to reply" msgstr "Allow anyone to reply" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Allow direct messages from" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Allow group chat invites from" @@ -1338,12 +1437,12 @@ msgstr "Already have an account?" msgid "Already signed in as @{0}" msgstr "Already signed in as @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alt Text" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alt text describes images for blind and low-vision users and helps give context to everyone." @@ -1387,7 +1486,7 @@ msgstr "An error has occurred" msgid "An error occurred" msgstr "An error occurred" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "An error occurred while compressing the video." @@ -1421,7 +1520,8 @@ msgstr "An error occurred while loading the video. Please try again." msgid "An error occurred while loading your lists :/" msgstr "An error occurred while loading your lists :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "An error occurred while saving the QR code!" @@ -1432,11 +1532,11 @@ msgstr "An error occurred while saving the QR code!" msgid "An error occurred while trying to follow all" msgstr "An error occurred while trying to follow all" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "An error occurred while uploading the video. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "An error occurred while uploading the video. Please check your internet connection and try again." @@ -1456,26 +1556,30 @@ msgstr "An illustration depicting user avatars flowing from a contact book into 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" +#: 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 "An illustration of the Bluesky app with a paper aeroplane flying out of it, representing inviting friends" + #: 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 "An illustration showing that Bluesky selects trusted verifiers, and trusted verifiers in turn verify individual user accounts." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "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." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "An issue not included in these options" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "An issue occurred creating the group chat, please try again." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "An issue occurred while trying to open the chat" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "An issue occurred, please try again." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "A mockup of an iPhone showing the Bluesky app open to the profile of a verified user with a blue checkmark next to their display name." @@ -1539,13 +1643,17 @@ msgstr "Anyone" msgid "Anyone can interact" msgstr "Anyone can interact" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Anyone can join" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Anyone can join instantly" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Anyone can request to join" @@ -1555,11 +1663,11 @@ msgstr "Anyone can request to join" msgid "Anyone who follows me" msgstr "Anyone who follows me" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "App password names must be at least 4 characters long" msgid "App passwords" msgstr "App passwords" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App Passwords" @@ -1618,7 +1726,7 @@ msgstr "Appeal livestream suspension" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Appeal submitted" @@ -1632,14 +1740,14 @@ msgstr "Appeal suspension" msgid "Appeal Suspension" msgstr "Appeal Suspension" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Appeal this decision" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Apply Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archived from {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Archived post" @@ -1675,7 +1783,7 @@ msgstr "Are you really, really sure?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Are you sure you want to delete the app password \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." @@ -1688,23 +1796,29 @@ msgstr "Are you sure you want to delete this starter pack?" msgid "Are you sure you want to discard your changes?" msgstr "Are you sure you want to discard your changes?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Are you sure you want to leave {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Are you sure you want to leave this conversation?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: src/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 "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Are you sure you want to remove this from your feeds?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Are you sure you'd like to discard this post?" @@ -1724,8 +1838,8 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Artistic or non-erotic nudity." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Assign topic for algo" @@ -1752,7 +1866,7 @@ msgstr "Automated account" msgid "Automation label" msgstr "Automation label" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automation Label" @@ -1767,12 +1881,12 @@ msgstr "Autoplay videos and GIFs" msgid "Available" msgstr "Available" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Available" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Available" msgid "Back" msgstr "Back" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Back to Chats" @@ -1832,7 +1948,7 @@ msgstr "Before creating a post or replying, you must first verify your email." msgid "Before creating a starter pack, you must first verify your email." msgstr "Before creating a starter pack, you must first verify your email." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Before you can accept this chat request, you must first verify your email." @@ -1840,13 +1956,14 @@ msgstr "Before you can accept this chat request, you must first verify your emai msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Before you can get notifications for {name}'s posts, you must first verify your email." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Before you can message another user, you must first verify your email." @@ -1874,59 +1991,53 @@ msgstr "Birthdate" msgid "Birthday" msgstr "Birthday" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Block" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Block {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Block account" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Block account?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Block Account?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Block accounts" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Block and delete" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Block and leave" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Block list" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Block or report" @@ -1936,9 +2047,9 @@ msgstr "Block these accounts?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Block user" @@ -1946,17 +2057,17 @@ msgstr "Block user" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Block user" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Block user and/or delete this conversation" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Block user and/or leave this conversation" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blocked" @@ -1964,14 +2075,12 @@ msgstr "Blocked" msgid "Blocked accounts" msgstr "Blocked accounts" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blocked Accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." @@ -1987,7 +2096,7 @@ msgstr "Blocking does not prevent this labeller from placing labels on your acco msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "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." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky cannot confirm the authenticity of the claimed date." @@ -2029,7 +2138,7 @@ msgstr "Bluesky is better with friends!" msgid "Bluesky is more fun with friends" msgstr "Bluesky is more fun with friends" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky is more fun with friends! Import your contacts to see who’s already here." @@ -2037,11 +2146,15 @@ msgstr "Bluesky is more fun with friends! Import your contacts to see who’s al msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "Bluesky needs camera access to scan QR codes from other profiles." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Bluesky Social Terms of Service" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky will choose a set of recommended accounts from people in your ne msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky will not show your profile and posts to logged-out users. Other apps may not honour this request. This does not make your account private." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky will proactively verify notable and authentic accounts." @@ -2081,6 +2194,10 @@ msgstr "Books" msgid "Breaking site rules" msgstr "Breaking site rules" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Bring up to 50 friends together in one chat." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "Business" msgid "Button to go back to the home timeline" msgstr "Button to go back to the home timeline" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "By {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "By <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "By <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "By creating an account you agree to the <0>Terms of Service." msgid "By you" msgstr "By you" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Camera" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Camera access needed" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2192,15 +2323,18 @@ msgstr "Camera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Camera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Camera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancel" @@ -2248,9 +2384,9 @@ msgstr "Cancel reactivation and sign out" msgid "Cancel search" msgstr "Cancel search" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Cannot interact with a blocked user" @@ -2264,7 +2400,7 @@ msgstr "Subtitles (.vtt)" msgid "Captions & alt text" msgstr "Subtitles & alt text" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carousel" @@ -2297,7 +2433,7 @@ msgstr "Change app language" msgid "Change Handle" msgstr "Change Handle" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Change moderation service" @@ -2310,11 +2446,11 @@ msgstr "Change password" msgid "Change password dialog" msgstr "Change password dialog" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Change report category" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Change report reason" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chat deleted" @@ -2361,6 +2497,12 @@ msgstr "Chat deleted" msgid "Chat ended" msgstr "Chat ended" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Chat invite link no longer available" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Chat locked" @@ -2373,35 +2515,44 @@ msgstr "Chat messages – silent" msgid "Chat messages - sound" msgstr "Chat messages – sound" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat muted" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Chat not found." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "Chat owners cannot leave a group chat." + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "Chat recipient is not followed by the sender." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Chat request inbox" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Chat requests" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Chat settings" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Chat Settings" @@ -2418,14 +2569,14 @@ msgstr "Chat title changed to {0}" msgid "Chat unlocked" msgstr "Chat unlocked" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat unmuted" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" @@ -2479,7 +2630,7 @@ msgstr "Choose post languages" msgid "Choose this color as your avatar" msgstr "Choose this colour as your avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Choose who can join this group chat and how." @@ -2558,7 +2709,7 @@ msgstr "Click here to log out" msgid "Click here to resend the email" msgstr "Click here to resend the email" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Click here to restart the verification process." @@ -2567,7 +2718,7 @@ msgstr "Click here to restart the verification process." msgid "Click here to update your birthdate" msgstr "Click here to update your birthdate" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Click here to update your email" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Click to retry failed message" @@ -2594,28 +2745,30 @@ msgstr "Click to retry failed message" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Click to retry failed message" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Close" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Close active dialog" @@ -2647,6 +2800,10 @@ msgstr "Close active dialog" msgid "Close alert" msgstr "Close alert" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Close banner" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Close bottom drawer" @@ -2657,8 +2814,10 @@ msgstr "Close bottom drawer" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Close dialog" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Close image" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Close menu" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Close scanner" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Close the incoming requests banner" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Close this dialog" @@ -2695,18 +2866,22 @@ msgstr "Close welcome modal" msgid "Closes password update alert" msgstr "Closes password update alert" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Closes post composer and discards post draft" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Collapse list of users" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Collapses list of users for a given notification" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Colour" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Comics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Community Guidelines" @@ -2740,12 +2915,12 @@ msgstr "Complete the challenge" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Compose new post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compose posts up to {0, plural, other {# characters}} in length" @@ -2753,11 +2928,11 @@ msgstr "Compose posts up to {0, plural, other {# characters}} in length" msgid "Compose reply" msgstr "Compose reply" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Compressing GIF..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Compressing video..." @@ -2780,7 +2955,7 @@ msgstr "Configured in <0>moderation settings." msgid "Confirm" msgstr "Confirm" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contact support" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Contact sync is not available on this device, as the app is unable to access your contacts." @@ -2825,11 +3000,11 @@ msgstr "Contact sync is not available on this device, as the app is unable to ac msgid "Contact us" msgstr "Contact us" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Contacts imported" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Contacts removed" @@ -2842,7 +3017,7 @@ msgstr "Content & Media" msgid "Content and media" msgstr "Content and media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Content and Media" @@ -2889,7 +3064,7 @@ msgstr "Context menu backdrop, click to close the menu." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Continue thread" msgid "Continue thread..." msgstr "Continue thread..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Continue to group name" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Continue to next step" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Conversation" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversation deleted" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversation deleted" @@ -2939,15 +3114,22 @@ msgstr "Conversation deleted" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Conversation left" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Conversation not found." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Copied build version to clipboard" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copied!" msgid "Copies build version to clipboard" msgstr "Copies build version to clipboard" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Copies the canonical profile URL to the clipboard" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copy" @@ -2997,6 +3184,11 @@ msgstr "Copy DID" msgid "Copy host" msgstr "Copy host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Copy invite link" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Copy link to list" msgid "Copy link to post" msgstr "Copy link to post" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copy link to profile" @@ -3027,8 +3219,8 @@ msgstr "Copy link to profile" msgid "Copy link to starter pack" msgstr "Copy link to starter pack" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copy message text" @@ -3037,12 +3229,12 @@ msgstr "Copy message text" msgid "Copy post at:// URI" msgstr "Copy post at:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copy post text" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copy QR code" @@ -3052,11 +3244,15 @@ msgstr "Copy TXT record value" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Copyright Policy" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Could not capture QR code" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Could not connect to custom feed" @@ -3065,7 +3261,15 @@ msgstr "Could not connect to custom feed" msgid "Could not connect to feed service" msgstr "Could not connect to feed service" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "Could not copy – please try again" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "Could not download – please try again" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Could not fetch post" @@ -3073,23 +3277,27 @@ msgstr "Could not fetch post" msgid "Could not find profile" msgstr "Could not find profile" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Could not follow all matches – please check your network connection." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Could not follow all matches. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Could not leave chat" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "Could not leave chat." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Could not load feed" @@ -3100,7 +3308,11 @@ msgstr "Could not load feed" msgid "Could not load list" msgstr "Could not load list" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "Could not load profile" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Could not mute chat" @@ -3108,11 +3320,19 @@ msgstr "Could not mute chat" msgid "Could not process your video" msgstr "Could not process your video" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "Could not remove member." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Could not save changes: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "Could not share – please try again" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Could not update notification settings" @@ -3139,7 +3359,7 @@ msgstr "Country code" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Create" @@ -3153,13 +3373,13 @@ msgstr "Create a list" msgid "Create a list from this starter pack" msgstr "Create a list from this starter pack" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Create a starter pack" @@ -3174,13 +3394,14 @@ msgstr "Create a starter pack for me" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Create an avatar instead" @@ -3206,7 +3427,7 @@ msgstr "Create an avatar instead" msgid "Create another" msgstr "Create another" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Create group chat" @@ -3228,19 +3449,20 @@ msgstr "Create list from starter pack" msgid "Create moderation list" msgstr "Create moderation list" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Create new account" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Create report for {0}" @@ -3256,8 +3478,8 @@ msgstr "Create user list" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Created {0}" @@ -3270,6 +3492,10 @@ msgstr "Creator has been blocked" msgid "Culture" msgstr "Culture" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Current chat" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Dark theme" msgid "Date of birth" msgstr "Date of birth" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Dawn" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Day" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Default" msgid "Default icons" msgstr "Default icons" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Delete app password" msgid "Delete app password?" msgstr "Delete app password?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Delete chat" @@ -3378,19 +3612,19 @@ msgstr "Delete chat" msgid "Delete chat declaration record" msgstr "Delete chat declaration record" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Delete contacts" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Delete conversation" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Delete for me" @@ -3399,11 +3633,11 @@ msgstr "Delete for me" msgid "Delete list" msgstr "Delete list" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Delete message" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Delete message for me" @@ -3411,9 +3645,9 @@ msgstr "Delete message for me" msgid "Delete my account" msgstr "Delete my account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Delete post" @@ -3430,17 +3664,17 @@ msgstr "Delete starter pack?" msgid "Delete this list?" msgstr "Delete this list?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Delete this post?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Deleted" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Deleted Account" @@ -3471,12 +3705,12 @@ msgstr "Description (1000 characters max)" msgid "Descriptive alt text" msgstr "Descriptive alt text" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Detach quote" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Detach quote post?" @@ -3507,13 +3741,13 @@ msgstr "Dialog: adjust who can interact with this post" msgid "Dim" msgstr "Dim" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Disable" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Disable 2FA" @@ -3521,7 +3755,7 @@ msgstr "Disable 2FA" msgid "Disable captions" msgstr "Disable subtitles" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Disable email 2FA" @@ -3534,8 +3768,8 @@ msgstr "Disable Email 2FA" msgid "Disable haptic feedback" msgstr "Disable haptic feedback" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Disable link" @@ -3547,7 +3781,7 @@ msgstr "Disable quote posts of this post" msgid "Disable replies entirely" msgstr "Disable replies entirely" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Disable this invite link?" @@ -3560,9 +3794,9 @@ msgstr "Disabled" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Discard" msgid "Discard changes?" msgstr "Discard changes?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Discard post?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Disconnect Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Discover new feeds" msgid "Discover New Feeds" msgstr "Discover New Feeds" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Dismiss" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Dismiss banner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Dismiss error" @@ -3642,6 +3877,10 @@ msgstr "Dismiss this section" msgid "Dismiss this suggestion" msgstr "Dismiss this suggestion" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Dismisses the QR scanner" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "Does not include nudity." msgid "Domain verified!" msgstr "Domain verified!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Don't have a code or need a new one? <0>Click here." @@ -3681,7 +3920,7 @@ msgstr "Don't have a code or need a new one? <0>Click here." msgid "Don’t see a code? <0>Click here to resend." msgstr "Don’t see a code? <0>Click here to resend." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Don't see an email? <0>Click here to resend." @@ -3700,16 +3939,21 @@ msgstr "Don't worry! All existing messages and settings are saved and will be av #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Done" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Double tap to close the dialog" @@ -3737,19 +3981,14 @@ msgstr "Double tap to close the dialog" msgid "Double tap to like" msgstr "Double tap to like" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Download" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Download Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Download CAR file" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Download CAR file" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Download chat data" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Download chat data" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Download image" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Download invite QR code" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Download profile data" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Download profile data" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Doxxing" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Due to laws in your region, certain features on Bluesky are currently re msgid "Duration:" msgstr "Duration:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Dusk" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "e.g. alice" @@ -3823,9 +4079,8 @@ msgstr "e.g. Users that repeatedly reply with ads." msgid "Eating disorders" msgstr "Eating disorders" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Edit" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Edit avatar" @@ -3847,19 +4102,19 @@ msgstr "Edit avatar" msgid "Edit Feeds" msgstr "Edit Feeds" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Edit group name" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Edit image" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Edit interaction settings" @@ -3868,7 +4123,16 @@ msgstr "Edit interaction settings" msgid "Edit interests" msgstr "Edit interests" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Edit invite link" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Edit invite link" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Edit link settings" @@ -3886,20 +4150,15 @@ msgstr "Edit live status" msgid "Edit moderation list" msgstr "Edit moderation list" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edit My Feeds" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Edit name" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Edit notifications from {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edit People" @@ -3912,12 +4171,12 @@ msgstr "Edit post interaction settings" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Edit profile" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Edit Profile" @@ -3925,7 +4184,8 @@ msgstr "Edit Profile" msgid "Edit starter pack" msgstr "Edit starter pack" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Edit this group chat’s name" @@ -3937,7 +4197,7 @@ msgstr "Edit user list" msgid "Edit who can reply" msgstr "Edit who can reply" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Edit your starter pack" @@ -3971,7 +4231,7 @@ msgstr "Email address" msgid "Email Resent" msgstr "Email Resent" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Email sent!" @@ -4006,8 +4266,8 @@ msgstr "Embed this post in your website. Simply copy the following snippet and p msgid "Embedded video player" msgstr "Embedded video player" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Enable" @@ -4025,7 +4285,7 @@ msgstr "Enable adult content" msgid "Enable captions" msgstr "Enable subtitles" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Enable email 2FA" @@ -4038,13 +4298,12 @@ msgstr "Enable external media" msgid "Enable media players for" msgstr "Enable media players for" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Enable push notifications" @@ -4091,8 +4350,8 @@ msgstr "Enter a password" msgid "Enter a word or tag" msgstr "Enter a word or tag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Enter code" @@ -4143,12 +4402,12 @@ msgstr "Enters fullscreen" msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Error getting the latest data." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Everyone" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Everyone" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Everyone" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Everything else" @@ -4217,16 +4476,16 @@ msgstr "Excludes users you follow" msgid "Exit fullscreen" msgstr "Exit fullscreen" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expand alt text" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expand list of users" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Expand or collapse the full post you are replying to" @@ -4238,7 +4497,7 @@ msgstr "Expand post text" msgid "Expands or collapses post text" msgstr "Expands or collapses post text" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Expected URI to resolve to a record" @@ -4277,10 +4536,10 @@ msgstr "Explicit or potentially disturbing media." msgid "Explicit sexual images." msgstr "Explicit sexual images." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explore" @@ -4289,11 +4548,8 @@ msgstr "Explore" msgid "Explore the app" msgstr "Explore the app" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Export chat data" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Export my chat data" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "External Media Preferences" @@ -4331,18 +4587,22 @@ msgstr "External Media Preferences" msgid "Extremist content" msgstr "Extremist content" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Failed to accept chat" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Failed to accept join request" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Failed to add emoji reaction" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Failed to add members" @@ -4354,7 +4614,8 @@ msgstr "Failed to add to starter pack" msgid "Failed to change handle. Please try again." msgstr "Failed to change handle. Please try again." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Failed to copy link" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Failed to create app password. Please try again." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Failed to create conversation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Failed to create invite link" @@ -4376,17 +4637,17 @@ msgstr "Failed to create invite link" msgid "Failed to create starter pack" msgstr "Failed to create starter pack" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Failed to delete chat" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Failed to delete message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Failed to delete post, please try again" @@ -4394,24 +4655,24 @@ msgstr "Failed to delete post, please try again" msgid "Failed to delete starter pack" msgstr "Failed to delete starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Failed to disable invite link" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Failed to disconnect Germ DM. Error: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Failed to edit group chat name" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Failed to edit invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Failed to enable invite link" @@ -4427,19 +4688,27 @@ msgstr "Failed to follow all your friends, please try again" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Failed to hide suggestion, please check your internet connection" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Failed to ignore join request" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Failed to join the group chat. Please try again." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Failed to launch SMS app" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Failed to leave group chat" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Failed to load conversations" @@ -4456,17 +4725,8 @@ msgstr "Failed to load feeds" msgid "Failed to load feeds preferences" msgstr "Failed to load feeds preferences" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Failed to load notification settings." @@ -4493,16 +4753,15 @@ msgstr "Failed to load suggested feeds" msgid "Failed to load suggested follows" msgstr "Failed to load suggested follows" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Failed to lock group chat" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Failed to mark all requests as read" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Failed to mute group chat" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Failed to pin post" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Failed to reconnect Germ DM. Error: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Failed to remove data due to a network error, please check your internet connection." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Failed to remove data. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Failed to remove emoji reaction" @@ -4534,7 +4793,8 @@ msgstr "Failed to remove emoji reaction" msgid "Failed to remove from starter pack" msgstr "Failed to remove from starter pack" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Failed to remove group chat member" @@ -4542,15 +4802,20 @@ msgstr "Failed to remove group chat member" msgid "Failed to remove verification" msgstr "Failed to remove verification" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Failed to rescind your request. Please try again." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Failed to resolve location. Please try again." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Failed to save draft" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Failed to save image" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Failed to save your interests." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Failed to send email, please try again." @@ -4580,16 +4845,16 @@ msgstr "Failed to send report" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Failed to submit appeal, please try again." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Failed to toggle thread mute, please try again" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Failed to unlock group chat" @@ -4597,12 +4862,12 @@ msgstr "Failed to unlock group chat" msgid "Failed to unpin list" msgstr "Failed to unpin list" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Failed to update email 2FA settings" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Failed to update email, please try again." @@ -4614,7 +4879,7 @@ msgstr "Failed to update feeds" msgid "Failed to update notification declaration" msgstr "Failed to update notification declaration" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Failed to update settings" @@ -4641,7 +4906,7 @@ msgstr "Fake account or bot" msgid "False information about elections" msgstr "False information about elections" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed by {0}" @@ -4662,7 +4927,7 @@ msgstr "Feed creator" msgid "Feed identifier" msgstr "Feed identifier" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Feed menu" @@ -4676,25 +4941,25 @@ msgstr "Feed unavailable" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback sent to feed operator" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,7 @@ msgstr "Filter search by language (currently: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filter who you receive notifications from" @@ -4747,11 +5012,11 @@ msgstr "Filter who you receive notifications from" msgid "Finalizing" msgstr "Finalising" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Finally!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Finally! Keep track of posts that matter to you. Save them to revisit anytime." @@ -4768,19 +5033,17 @@ msgstr "Finance" msgid "Find accounts to follow" msgstr "Find accounts to follow" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Find Contacts" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Find Friends" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Find friends from contacts" +msgid "Find and invite friends" +msgstr "Find and invite friends" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Find Contacts" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Find my friends" msgid "Find people to follow" msgstr "Find people to follow" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Find people you know" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Find posts, users and feeds on Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Find your friends" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" @@ -4847,22 +5114,22 @@ msgstr "Focus the search field" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Follow" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Follow {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Follow {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Follow account" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Follow all accounts" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Follow back" @@ -4916,7 +5183,7 @@ msgstr "Follow back" msgid "Followed all accounts!" msgstr "Followed all accounts!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Followed all matches" @@ -4944,8 +5211,12 @@ msgstr "Followed by <0>{0} and <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Followed by <0>{0}, <1>{1} and {2, plural, one {# other} other {# others}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Followers can join" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Followers of @{0} that you know" @@ -4960,10 +5231,10 @@ msgstr "Followers you know" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Following" @@ -4977,12 +5248,12 @@ msgstr "Following" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Following {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Following {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Following {handle}" msgid "Following feed preferences" msgstr "Following feed preferences" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Following Feed Preferences" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Follows you" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Follows You" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Font" @@ -5065,11 +5333,16 @@ msgstr "Forgot password?" msgid "Forgot?" msgstr "Forgot?" +#. 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 "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 msgid "Free your feed" msgstr "Free your feed" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "From" @@ -5086,82 +5359,86 @@ msgstr "From <0/>" msgid "Generate a starter pack" msgstr "Generate a starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Generate invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Generate new invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Generate new link" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM disconnected" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM Link" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM reconnected" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Get help" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Get notifications when people follow you." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Get notifications when people like posts that you've reposted." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Get notifications when people like your posts." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "Get notifications when people like your reposts." + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Get notifications when people mention you." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Get notifications when people quote your posts." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Get notifications when people reply to your posts." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Get notifications when people repost posts that you've reposted." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Get notifications when people repost your reposts." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Get notified about new posts" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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}" @@ -5174,27 +5451,27 @@ msgstr "Get notified of this account’s activity" msgid "Get notified when {name} posts" msgstr "Get notified when {name} posts" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Get notified when someone posts" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Get started" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF uploaded" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Give your profile a face" @@ -5213,20 +5490,20 @@ msgstr "Glorification of violence" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Go back" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Go Back" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Go back to previous step" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Go home" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Go home" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Go Home" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Go live (disabled)" msgid "Go live for" msgstr "Go live for" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Go to {firstAuthorName}'s profile" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Go to account settings" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Go to conversation with {0}" @@ -5296,23 +5571,23 @@ msgstr "Go to feed" msgid "Go to next" msgstr "Go to next" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Go to profile" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Go to the group chat named \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Go to user's profile" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Go to user’s profile" @@ -5320,11 +5595,18 @@ msgstr "Go to user’s profile" msgid "Going live is currently disabled for your account" msgstr "Going live is currently disabled for your account" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Got it" +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Grant access" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5340,59 +5622,75 @@ msgstr "Graphic violent content" msgid "Grooming or predatory behavior" msgstr "Grooming or predatory behaviour" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Group chat" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Group chat invite link dialog" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Group chat locked" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Group chat muted" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Group chat name updated" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Group chat settings" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Group chat unlocked" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Group chat unmuted" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Group Chats" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Group chats are only available to users 18 and over." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Group chats can only have a maximum of {0, plural, other {# people}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Group is locked" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Group name" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Hacking or system attacks" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Handle too long. Please try a shorter one." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Happening now" @@ -5446,7 +5744,7 @@ msgstr "Harmful or high-risk activities" msgid "Harming or endangering minors" msgstr "Harming or endangering minors" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "Hate speech" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Have a code? <0>Click here." @@ -5479,11 +5777,11 @@ msgstr "Held by Bluesky for 7 days to prevent abuse, then deleted" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Help" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Hidden list" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Hidden list" msgid "Hide" msgstr "Hide" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Hide" @@ -5553,18 +5851,18 @@ msgstr "Hide group chat updates" msgid "Hide lists" msgstr "Hide lists" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Hide post for me" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Hide reply for everyone" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Hide reply for me" @@ -5577,19 +5875,19 @@ msgstr "Hide this card" msgid "Hide this event" msgstr "Hide this event" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Hide this post?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Hide this reply?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Hide translation" @@ -5606,7 +5904,7 @@ msgstr "Hide trending topics?" msgid "Hide trending videos?" msgstr "Hide trending videos?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Hide user list" @@ -5620,6 +5918,10 @@ msgstr "Hide verification badges" msgid "Hides the content" msgstr "Hides the content" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Hides the invite friends promo banner" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whoever controls this account to do so." @@ -5652,19 +5954,15 @@ msgstr "Hmm, it seems we're having trouble loading this data. See below for more msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, we couldn't load that moderation service." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Hold up! We’re gradually giving access to video and you’re still waiting in line. Check back soon!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Hold your horses! This feature isn't available to you yet. Please check back later." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Home" @@ -5721,7 +6019,7 @@ msgstr "I understand" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "I'm on Bluesky as {0} - come find me! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "If alt text is long, toggles alt text expanded state" @@ -5757,15 +6055,15 @@ msgstr "If you delete this list, you won't be able to recover it." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "If you need to update your email, <0>click here." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "If you remove this post, you won't be able to recover it." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "If you update your email address, email 2FA will be disabled." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." @@ -5786,23 +6083,23 @@ msgstr "If you're a developer, you can host your own server." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "If you're trying to change your handle or email, do so before you deactivate." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Image" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Image {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Image {0} of {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Image {0} of {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Image cache cleared, freed {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Image gallery, {0} images" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Image is hidden due to your moderation settings." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Image is unavailable." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Image options" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Impersonation" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Import contacts" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Import Contacts" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Import contacts or invite your friends" + #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Import contacts to find your friends" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Imported on {0}" @@ -5881,40 +6182,40 @@ msgstr "Imported on {0}" 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 "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." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "In-app" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "In-app notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "In-app, everyone" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "In-app, people you follow" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "In-app, push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "In-app, push, everyone" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "In-app, push, people you follow" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Inbox empty" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Inbox zero!" @@ -5954,6 +6255,10 @@ msgstr "Introducing drafts" msgid "Introducing finding friends via contacts" msgstr "Introducing finding friends via contacts" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Introducing group chats" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "Introducing saved posts AKA bookmarks" @@ -5963,11 +6268,15 @@ msgstr "Introducing saved posts AKA bookmarks" msgid "Invalid 2FA confirmation code." msgstr "Invalid 2FA confirmation code." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Invalid group chat code." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Invalid handle. Please try a different one." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Invalid interaction settings." @@ -5977,10 +6286,15 @@ msgstr "Invalid interaction settings." msgid "Invalid phone number" msgstr "Invalid phone number" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Invalid report subject" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Invalid rescind request." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Invalid Verification Code" @@ -6001,8 +6315,15 @@ msgstr "Invite code" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Invite friends" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Invite Friends" @@ -6010,21 +6331,31 @@ msgstr "Invite Friends" msgid "Invite friends <0/>" msgstr "Invite friends <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Invite link" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Invite link" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Invite link copied" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Invite link created" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Invite link disabled" @@ -6040,11 +6371,16 @@ msgstr "Invite link enabled" msgid "Invite people to this starter pack!" msgstr "Invite people to this starter pack!" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Invite your friends" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Invite your friends to follow your favourite feeds and people" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Invited" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Job ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Job ID: {0}" msgid "Jobs" msgstr "Jobs" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Join" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Jobs" msgid "Join Bluesky" msgstr "Join Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Join group chat" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Join request rescinded." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Join the conversation" msgid "Journalism" msgstr "Journalism" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Keep editing" @@ -6109,6 +6460,11 @@ msgstr "Keep editing" msgid "Keep me posted" msgstr "Keep me posted" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Kick member" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS website" @@ -6143,7 +6499,7 @@ msgstr "Labels on your account" msgid "Labels on your content" msgstr "Labels on your content" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Language Settings" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Latest" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Learn more about how inviting friends works" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Learn more about importing contacts" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Learn more about this warning" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Learn more about verification on Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Learn more about verification on Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Learn more about what is public on Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Learn more about your Germ DM link" @@ -6252,31 +6608,33 @@ msgstr "Learn more in your <0>account settings." msgid "Learn more." msgstr "Learn more." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Leave" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Leave chat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Leave conversation" @@ -6284,13 +6642,14 @@ msgstr "Leave conversation" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Leave conversation" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Leave group chat" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Leave this group chat" @@ -6299,6 +6658,14 @@ msgstr "Leave this group chat" msgid "Leaving Bluesky" msgstr "Leaving Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Left group chat." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "left to go." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Light" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Like" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# like} other {# likes}})" @@ -6346,11 +6713,7 @@ msgstr "Like 10 posts" msgid "Like 10 posts to train the Discover feed" msgstr "Like 10 posts to train the Discover feed" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Like notifications" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Like this feed" @@ -6358,8 +6721,8 @@ msgstr "Like this feed" msgid "Like this labeler" msgstr "Like this labeller" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Liked by" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Liked by {0, plural, one {# user} other {# users}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Liked by {likeCount, plural, one {# user} other {# users}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Likes" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Likes of your reposts" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Likes of your reposts notifications" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Likes on this post" @@ -6409,11 +6768,11 @@ msgstr "Likes on this post" msgid "Linear" msgstr "Linear" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Link copied to clipboard" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "List" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "List unmuted" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Lists" @@ -6545,7 +6904,7 @@ msgstr "Live event unhidden" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Live feature is in beta" @@ -6595,27 +6954,27 @@ msgstr "Loading post interaction settings..." msgid "Loading..." msgstr "Loading..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Lock" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Lock group chat" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Lock group chat?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Lock this group chat" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Locked" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Log" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo by @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo by <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Looks like you're missing a following feed. <0>Click here to add one.{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" @@ -7262,8 +7622,8 @@ msgstr "News" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Next" msgid "Next image" msgstr "Next image" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Night" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "No followers yet" @@ -7335,7 +7699,7 @@ msgstr "No GIFs found for \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "No GIFs to show right now. Try again in a moment." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "No image" @@ -7353,8 +7717,8 @@ msgstr "No lists" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "No longer following {0}" @@ -7362,7 +7726,7 @@ msgstr "No longer following {0}" msgid "No media yet" msgstr "No media yet" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "No messages yet" @@ -7378,12 +7742,12 @@ msgstr "No name" msgid "No notifications yet!" msgstr "No notifications yet!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "No one" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "No one" @@ -7399,7 +7763,7 @@ msgstr "No one" msgid "No one but the author can quote this post." msgstr "No one but the author can quote this post." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "No one can send messages" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "No result" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "No results" @@ -7446,8 +7810,8 @@ msgstr "No results" msgid "No results for \"{0}\"." msgstr "No results for \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "No results found" @@ -7509,12 +7873,12 @@ msgstr "Non-consensual intimate imagery" msgid "Non-sexual Nudity" msgstr "Non-sexual Nudity" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Not available on this platform" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Not available on this platform." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Not Found" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Not ready to hit post? Keep your best ideas in Drafts until the timing is just right." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Note about sharing" @@ -7548,44 +7912,31 @@ msgstr "Note: This post is only visible to logged-in users." msgid "Nothing saved yet" msgstr "Nothing saved yet" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notification settings" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Notification sounds" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notifications" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notifications for everything else, such as when someone joins via one of your starter packs." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "now" @@ -7601,7 +7952,7 @@ msgstr "Number should be a mobile number" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Off" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Okay" @@ -7648,35 +8000,35 @@ msgstr "on<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Onboarding reset" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "One of the selected recipients does not allow group chats." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "One of the selected recipients has blocked you and cannot be messaged." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "One or more GIFs is missing alt text." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "One or more images is missing alt text." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "One or more of your selected files are not supported." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "One or more videos is missing alt text." @@ -7685,6 +8037,26 @@ msgstr "One or more videos is missing alt text." msgid "Only {0} can reply." msgstr "Only {0} can reply." +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Only admins can accept join requests." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Only admins can ignore join requests." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Only followers can join this group chat." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Only followers who I follow" msgid "Only image files are supported" msgstr "Only image files are supported" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Only people {0} follows can join." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Only people the chat owner follows can join" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Only WebVTT (.vtt) files are supported" @@ -7703,6 +8085,10 @@ msgstr "Only WebVTT (.vtt) files are supported" msgid "Oops, something went wrong!" msgstr "Oops, something went wrong!" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7712,7 +8098,7 @@ msgstr "Oops, something went wrong!" msgid "Oops!" msgstr "Oops!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Open avatar creator" @@ -7720,12 +8106,17 @@ msgstr "Open avatar creator" msgid "Open camera" msgstr "Open camera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Open chat" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Open chat member options for {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Open conversation options" @@ -7739,16 +8130,16 @@ msgstr "Open drawer menu" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Open emoji picker" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Open feed options menu" @@ -7760,13 +8151,22 @@ msgstr "Open full emoji list" msgid "Open Germ DM" msgstr "Open Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Open group chat" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Open group chat settings" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Open in Google Translate" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "Open link to {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Open pack" msgid "Open post options menu" msgstr "Open post options menu" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Open profile" +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "Open QR code scanner" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "Open storybook page" msgid "Open system log" msgstr "Open system log" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Open this group chat" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Opens a dialog to add a content warning to your post" msgid "Opens a dialog to choose who can interact with this post" msgstr "Opens a dialog to choose who can interact with this post" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "Opens a list of colour themes for the QR card" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "Opens additional details for a debug entry" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Opens camera on device" @@ -7858,22 +8270,24 @@ msgstr "Opens composer" msgid "Opens device camera" msgstr "Opens device camera" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Opens flow to create a new Bluesky account" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Opens flow to sign in to your existing Bluesky account" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Opens full image" @@ -7890,7 +8304,7 @@ msgstr "Opens image picker" msgid "Opens link {0}" msgstr "Opens link {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Opens live status dialog" @@ -7902,15 +8316,23 @@ msgstr "Opens password reset form" msgid "Opens post language settings" msgstr "Opens post language settings" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Opens profile" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "Opens the find and invite friends settings" + #. 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 "Opens the GIF picker dialog" +#: src/view/shell/Drawer.tsx:123 +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 msgid "Opens the post composer" msgstr "Opens the post composer" @@ -7919,9 +8341,8 @@ msgstr "Opens the post composer" msgid "Opens this draft in the composer" msgstr "Opens this draft in the composer" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Opens this profile" @@ -7997,12 +8418,12 @@ msgstr "Our blog post" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Our moderation team has received your report." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." @@ -8010,16 +8431,17 @@ msgstr "Our moderators have reviewed reports and decided to disable your access msgid "Owner" msgstr "Owner" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Owner must lock the group before leaving." + +#: 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 "Page not found" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Page Not Found" - #. 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" @@ -8068,34 +8490,34 @@ msgstr "Pause video" msgid "People" msgstr "People" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "People {ownerName} follows can join instantly" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "People {ownerName} follows can request to join" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "People followed by @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "People following @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "People I follow" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "People I follow can join instantly" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "People I follow can request to join" @@ -8136,13 +8558,17 @@ msgstr "Phone number verified" msgid "Photography" msgstr "Photography" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Pick a colour theme" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Pictures meant for adults." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Pin feed" @@ -8152,12 +8578,12 @@ msgstr "Pin feed" msgid "Pin to home" msgstr "Pin to home" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Pin to Home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Pin to your profile" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Pinned" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Pinned {0} to Home" @@ -8236,7 +8662,7 @@ msgstr "Please choose your handle." msgid "Please choose your password." msgstr "Please choose your password." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Please click on the link in the email we just sent you to verify your ne msgid "Please complete the verification captcha." msgstr "Please complete the verification captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Please confirm your email address to upload videos." @@ -8265,14 +8691,14 @@ msgstr "Please enter a password. It must be at least 8 characters long." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Please enter a unique name for this app password or use our randomly generated one." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Please enter a valid code." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Please enter a valid email address." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Please enter a valid, non-temporary email address. You may need to access this email in the future." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Please enter the code we sent to <0>{0} below." @@ -8293,7 +8719,7 @@ msgstr "Please enter the code we sent to <0>{0} below." msgid "Please enter the code you received and the new password you would like to use." msgstr "Please enter the code you received and the new password you would like to use." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Please enter your email." msgid "Please enter your invite code." msgstr "Please enter your invite code." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Please enter your new email address." @@ -8323,7 +8749,7 @@ msgstr "Please enter your username" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Please explain why you think this label was incorrectly applied by {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Please explain why you think your chats were incorrectly disabled" @@ -8358,7 +8784,11 @@ msgstr "Please select a reason for this report" msgid "Please sign in as @{0}" msgstr "Please sign in as @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "Please use the native app to import your contacts." @@ -8366,7 +8796,7 @@ msgstr "Please use the native app to import your contacts." msgid "Please use the native app to sync your contacts." msgstr "Please use the native app to sync your contacts." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Please verify your email" @@ -8383,7 +8813,7 @@ msgstr "Politics" msgid "Porn" msgstr "Porn" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Post" @@ -8403,12 +8833,12 @@ msgstr "Post a photo" msgid "Post a video" msgstr "Post a video" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Post All" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Post anyway" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Post blocked" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Post by @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Post deleted" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Post failed to upload. Please check your Internet connection and try again." @@ -8454,18 +8884,22 @@ msgstr "Post Hidden by You" msgid "Post interaction settings" msgstr "Post interaction settings" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Post Interaction Settings" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Post it to Bluesky or share anywhere." + #. 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 "Post language selection" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Post link" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Posts, Replies" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentially misleading link" @@ -8525,9 +8954,10 @@ msgstr "Preferred language" msgid "Press to attempt reconnection" msgstr "Press to attempt reconnection" -#: src/components/Error.tsx:61 +#: 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 "Press to retry" @@ -8536,7 +8966,7 @@ msgstr "Press to retry" msgid "Press to view followers of this account that you also follow" msgstr "Press to view followers of this account that you also follow" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Preview" @@ -8559,26 +8989,25 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy and security" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Privacy Policy" @@ -8586,15 +9015,15 @@ msgstr "Privacy Policy" msgid "Privacy violation of a minor" msgstr "Privacy violation of a minor" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Processing GIF..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Processing video..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Processing..." @@ -8602,10 +9031,10 @@ msgstr "Processing..." msgid "profile" msgstr "profile" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profile" @@ -8613,6 +9042,7 @@ msgstr "Profile" msgid "Profile banner placeholder" msgstr "Profile banner placeholder" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profile not found" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publish post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publish posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publish replies" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publish reply" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Push notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "Push, everyone" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "Push, people you follow" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR code copied to your clipboard!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR code has been downloaded!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR code saved to your camera roll!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Quote notifications" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Quote notifications" msgid "Quote post" msgstr "Quote post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Quote post was re-attached" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Quote post was successfully detached" @@ -8711,12 +9138,12 @@ msgstr "Quote posts disabled" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Quotes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Quotes of this post" @@ -8728,16 +9155,16 @@ msgstr "Rate limit exceeded – you've tried to change your handle too many time msgid "Rate limit exceeded. Please try again later." msgstr "Rate limit exceeded. Please try again later." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Re-attach quote" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Re-enable invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Re-enable link" @@ -8745,8 +9172,8 @@ msgstr "Re-enable link" msgid "React with {emoji}" msgstr "React with {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reactions" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "read about how to use search filters" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Read blog post" @@ -8812,11 +9239,11 @@ msgstr "Real people." msgid "Reason for appeal" msgstr "Reason for appeal" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Receive in-app notifications" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Receive push notifications" @@ -8841,17 +9268,31 @@ msgstr "Recommended" msgid "Reconnect" msgstr "Reconnect" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Refresh the page to see it." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Reject" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Reject" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Reject chat request" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Reject join request" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Reload conversations" @@ -8863,6 +9304,8 @@ msgstr "Reload conversations" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Remove {displayName} from group chat" msgid "Remove {displayName} from starter pack" msgstr "Remove {displayName} from starter pack" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Remove {displayName} from this group chat" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Remove {displayName}?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Remove {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Remove {historyItem}" msgid "Remove account" msgstr "Remove account" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Remove all contacts" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Remove attachment" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Remove Avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Remove Banner" @@ -8914,8 +9362,9 @@ msgstr "Remove Banner" msgid "Remove caption file" msgstr "Remove subtitle file" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Remove embed" @@ -8929,12 +9378,12 @@ msgstr "Remove feed" msgid "Remove feed?" msgstr "Remove feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Remove from chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Remove from saved posts" msgid "Remove from your feeds?" msgstr "Remove from your feeds?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Remove image" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Remove repost" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Remove suggestion" @@ -9009,11 +9458,11 @@ msgstr "Remove verification" msgid "Remove your verification for this account?" msgstr "Remove your verification for this account?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Removed by author" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Removed by you" @@ -9035,7 +9484,7 @@ msgstr "Removed from saved posts" msgid "Removed from starter pack" msgstr "Removed from starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Replied to you" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Replies" @@ -9104,14 +9552,14 @@ msgstr "Replies disabled" msgid "Replies to this post are disabled." msgstr "Replies to this post are disabled." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Reply" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Reply ({0, plural, one {# reply} other {# replies}})" @@ -9125,10 +9573,6 @@ msgstr "Reply Hidden by Thread Author" msgid "Reply Hidden by You" msgstr "Reply Hidden by You" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Reply notifications" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Reply settings are chosen by the author of the thread" @@ -9137,18 +9581,18 @@ msgstr "Reply settings are chosen by the author of the thread" msgid "Reply sorting" msgstr "Reply sorting" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Reply visibility updated" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Reply was successfully hidden" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Report" @@ -9157,20 +9601,20 @@ msgstr "Report" msgid "Report account" msgstr "Report account" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Report conversation" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Report dialog" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Report feed" @@ -9179,12 +9623,12 @@ msgstr "Report feed" msgid "Report list" msgstr "Report list" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Report message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Report post" @@ -9199,8 +9643,8 @@ msgstr "Report starter pack" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Report submitted" @@ -9213,7 +9657,7 @@ msgstr "Report this conversation" msgid "Report this feed" msgstr "Report this feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Report this group chat" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Report this list" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Report this livestream" @@ -9256,10 +9700,6 @@ msgstr "Repost" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repost ({0, plural, one {# repost} other {# reposts}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Repost notifications" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Reposted by you" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Reposts of this post" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Reposts of your reposts" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Request access to group chat" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Request approved." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Request code" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Request ignored." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Request to join" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Requested" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Requests" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Requests to join" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Require alt text before posting" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Require an email code to sign in to your account." @@ -9328,7 +9791,17 @@ msgstr "Required for this provider" msgid "Required in your region" msgstr "Required in your region" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Rescind request" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Rescind request to join group chat" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Resend" @@ -9373,8 +9846,8 @@ msgstr "Reset onboarding state" msgid "Reset password" msgstr "Reset password" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Resync contacts" @@ -9391,17 +9864,18 @@ msgstr "Retries the last action, which errored out" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Retries the last action, which errored out" msgid "Retry" msgstr "Retry" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Retry loading report options" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Return to previous page" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Returns to home page" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Returns to previous page" @@ -9451,10 +9925,10 @@ msgstr "Sad GIFs" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "Save birthdate" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Save changes" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Save changes?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Save draft" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Save draft?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Save image" msgid "Save new handle" msgstr "Save new handle" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Save QR code" @@ -9518,13 +9994,13 @@ msgstr "Save QR code" msgid "Save these options for next time" msgstr "Save these options for next time" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Save to my feeds" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Saved" @@ -9534,25 +10010,25 @@ msgstr "Saved" msgid "Saved Feeds" msgstr "Saved Feeds" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Saved Posts" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Saved to your feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Say hello!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Say hi to someone" @@ -9560,6 +10036,16 @@ msgstr "Say hi to someone" msgid "Scam" msgstr "Scam" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Scan" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Scan QR code" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Science" @@ -9576,18 +10062,18 @@ msgstr "Scroll right" msgid "Scroll to top" msgstr "Scroll to top" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Search" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Search @{0}'s posts" @@ -9662,12 +10148,12 @@ msgstr "Search languages" msgid "Search my posts" msgstr "Search my posts" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Search posts" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Search profiles" msgid "Search..." msgstr "Search..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Searches for profiles" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Security step required" @@ -9759,7 +10245,7 @@ msgstr "Select {langName}" msgid "Select a color" msgstr "Select a colour" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Select a reason" @@ -9828,7 +10314,7 @@ msgstr "Select GIF" msgid "Select GIF \"{0}\"" msgstr "Select GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Select group chat members" @@ -9850,7 +10336,7 @@ msgstr "Select language..." msgid "Select languages" msgstr "Select languages" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Select moderation service" @@ -9904,11 +10390,11 @@ msgstr "Select your interests from the options below" msgid "Select your preferred language for translations in your feed." msgstr "Select your preferred language for translations in your feed." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Select your preferred notification channels" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Selecting multiple media types is not supported." @@ -9921,9 +10407,9 @@ msgstr "Self-harm or dangerous behaviours" msgid "Send code" msgstr "Send code" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Send email" @@ -9935,11 +10421,11 @@ msgstr "Send email" msgid "Send error report" msgstr "Send error report" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Send feedback" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Send message" @@ -9952,7 +10438,7 @@ msgstr "Send post to {name}" msgid "Send post to..." msgstr "Send post to..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Send report to {title}" @@ -9960,7 +10446,7 @@ msgstr "Send report to {title}" msgid "Send the message from your phone" msgstr "Send the message from your phone" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Send via direct message" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Sent at {0}" @@ -10015,14 +10501,14 @@ msgstr "Set your birthdate below and we'll get you back to posting and exploring msgid "Sets email for password reset" msgstr "Sets email for password reset" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Settings" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Settings for activity from others" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Settings for like notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Settings for mention notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Settings for new follower notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Settings for notifications for everything else" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Settings for notifications for likes of your reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Settings for notifications for reposts of your reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Settings for quote notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Settings for reply notifications" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Settings for repost notifications" @@ -10079,16 +10565,19 @@ msgstr "Sexual activity or erotic nudity." msgid "Sexually Suggestive" msgstr "Sexually Suggestive" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Share" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Share anyway" @@ -10097,16 +10586,21 @@ msgstr "Share anyway" msgid "Share author DID" msgstr "Share author DID" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Share image" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Share invite link" + #: 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 "Share link" @@ -10114,6 +10608,11 @@ msgstr "Share link" msgid "Share link dialog" msgstr "Share link dialog" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Share my profile" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Share post at:// URI" msgid "Share QR code" msgstr "Share QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Share this feed" @@ -10142,8 +10641,8 @@ msgstr "Share this starter pack and help people join your community on Bluesky." #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Share via..." @@ -10151,7 +10650,7 @@ msgstr "Share via..." msgid "Share your contacts to find friends" msgstr "Share your contacts to find friends" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Shared Preferences Tester" @@ -10167,16 +10666,16 @@ msgstr "Show alt text" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Show anyway" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Show automation label" @@ -10197,8 +10696,8 @@ msgstr "Show customisation options" msgid "Show group chat updates" msgstr "Show group chat updates" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Show less like this" @@ -10219,8 +10718,8 @@ msgstr "Show live events in your Discover Feed" msgid "Show More" msgstr "Show More" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Show more like this" @@ -10246,8 +10745,8 @@ msgstr "Show replies" msgid "Show replies as" msgstr "Show replies as" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Show reply for everyone" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Show warning and filter from feeds" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Show when you’re live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Shows information about when this post was created" @@ -10297,15 +10796,17 @@ msgstr "Shows the content" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Sign in or create an account" msgid "Sign in or create your account to join the conversation!" msgstr "Sign in or create your account to join the conversation!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Sign in to accept invite." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Sign in to account that is not listed" @@ -10337,8 +10842,12 @@ msgstr "Sign in to account that is not listed" msgid "Sign in to Bluesky or create a new account" msgstr "Sign in to Bluesky or create a new account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Sign in to request access to this group chat." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Sign in to view post" @@ -10348,9 +10857,9 @@ msgstr "Sign in to view post" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Sign out" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Sign Out" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Sign out?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Skip empty posts?" @@ -10405,7 +10914,7 @@ msgstr "Skip introduction and start using your account" msgid "Skip to next step" msgstr "Skip to next step" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "slide" @@ -10413,7 +10922,7 @@ msgstr "slide" msgid "Smaller" msgstr "Smaller" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Snoozes the reminder" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Someone left the group" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Someone reacted {0}" @@ -10487,17 +10996,22 @@ msgstr "Someone was removed" msgid "Someone was removed from the group" msgstr "Someone was removed from the group" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Something new is here" + +#: 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 "Something wasn't quite right with the data you're trying to report. Please contact support." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Something went wrong" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Something went wrong!" msgid "Something went wrong. Please try again in a moment." msgstr "Something went wrong. Please try again in a moment." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Something went wrong. Please try again." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Something wrong? Let us know." @@ -10564,11 +11078,16 @@ msgstr "Spam or other inauthentic behaviour or deception" msgid "Sports" msgstr "Sports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Start a conversation, and it will appear here." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Start a group chat" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Start a new chat" @@ -10582,17 +11101,17 @@ msgstr "Start adding people" msgid "Start adding people!" msgstr "Start adding people!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Start chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Start chat with {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter Pack" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Streaming on Twitch? Set your live status on Bluesky to add a badge to your avatar. Tapping it takes people straight to your stream." @@ -10671,8 +11190,8 @@ msgstr "Streaming on Twitch? Set your live status on Bluesky to add a badge to y #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Submit" @@ -10684,9 +11203,9 @@ msgstr "Submit appeal" msgid "Submit Appeal" msgstr "Submit Appeal" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Submit report" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Subscribe" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "Subscribe on {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscribe to {publicationTitle} on {0}" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Success" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Success!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Successfully joined the group chat!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Successfully verified" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Suggested" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunset" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Support" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Support for this feature in your country has not been enabled yet! Please check back later." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Suspended accounts cannot participate in a group chat." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Suspended accounts cannot participate in chat." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Switch account" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Switch accounts" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Switch to {0}" @@ -10824,11 +11347,15 @@ msgstr "System log" msgid "Tags only" msgstr "Tags only" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Take the conversation private." + #: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Tap for details" @@ -10854,33 +11381,51 @@ msgstr "Tap to acknowledge that you understand and agree to these updates and co msgid "Tap to close context menu" msgstr "Tap to close context menu" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Tap to copy this invite link" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tap to dismiss" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Tap to join this group chat immediately" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Tap to open this group chat" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Tap to remove" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Tap to remove your {0} reaction" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Tap to retry" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Tap to show {0} reactions" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tap to show all reactions" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tap to view reactions" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Terms of Service" @@ -10939,7 +11484,7 @@ msgstr "Text & tags" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Text input field" @@ -10981,9 +11526,9 @@ msgstr "That's all, folks!" msgid "That's everything!" msgstr "That's everything!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "The account will be able to interact with you after unblocking." @@ -11049,6 +11594,11 @@ msgstr "The following settings will be used as your defaults when creating new p msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "The member limit has been reached." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" @@ -11057,10 +11607,10 @@ msgstr "The post you’re replying to was marked as being written in {suggestedL msgid "The Privacy Policy has been moved to <0/>" msgstr "The Privacy Policy has been moved to <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Theme" 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 "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." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "There is no invite link for this group chat." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "There was a problem loading GIFs. Check your connection and try again." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "There was an issue fetching posts. Tap here to try again." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "There was an issue updating your feeds, please check your internet connection and try again." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "There was an issue! {0}" @@ -11221,6 +11774,14 @@ msgstr "These are your default settings" msgid "These settings only apply to the Following feed." msgstr "These settings only apply to the Following feed." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "They own this chat" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "This {screenDescription} has been flagged:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "This appeal will be sent to <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "This appeal will be sent to Bluesky's moderation service." @@ -11263,7 +11824,7 @@ msgstr "This appeal will be sent to Bluesky's moderation service." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "This author has chosen to make their posts visible only to people who are signed in." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "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." @@ -11271,11 +11832,21 @@ msgstr "This button lets others open the Germ DM app to send you a message. You msgid "This chat has ended" msgstr "This chat has ended" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "This chat is full" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "This chat is locked" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "This chat is locked by a moderation action" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "This chat was disconnected" @@ -11310,7 +11881,11 @@ msgstr "This content is not available because one of the users involved has bloc msgid "This content is not viewable without a Bluesky account." msgstr "This content is not viewable without a Bluesky account." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "This conversation is locked." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "This conversation is with a deleted or a deactivated account. Press for options" @@ -11318,7 +11893,7 @@ msgstr "This conversation is with a deleted or a deactivated account. Press for msgid "This draft will be permanently deleted." msgstr "This draft will be permanently deleted." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "This email is already associated with your account." @@ -11356,11 +11931,15 @@ msgstr "This feed is empty." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "This feed is no longer online. We are showing <0>Discover instead." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "This group is locked by a moderation action on the owner" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "This image could not be used. Please try a different format like .jpg or msgid "This information is private and not shared with other users." msgstr "This information is private and is not shared with other users." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "This invite link has been disabled." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "This invite link is invalid" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "This is an empty state" @@ -11377,7 +11964,7 @@ msgstr "This is an empty state" msgid "This is not a valid link" msgstr "This is not a valid link" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "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." @@ -11410,13 +11997,17 @@ msgstr "This list – created by you – contains possible violations of Bluesky msgid "This list is empty." msgstr "This list is empty." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "This message is hidden" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "This message is hidden because you are blocking this user." @@ -11434,7 +12025,7 @@ msgstr "This person is blocking you" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "This post is only visible to logged-in users." msgid "This post was deleted by its author" msgstr "This post was deleted by its author" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "This post's author has disabled quote posts." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "This reply will be sorted into a hidden section at the bottom of your thread and will mute notifications for subsequent replies – both for yourself and others." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "This screen is only available for group conversations." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "This user doesn't have any followers." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "This user has blocked you and cannot be messaged." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "This user has disabled chat and cannot be messaged." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "This will irreversibly delete your Bluesky account <0>{currentHandle}{0}" msgstr "To disable your email 2FA method, please verify your access to <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Top" msgid "Top replies first" msgstr "Top replies first" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Topic" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Translate" @@ -11667,8 +12259,8 @@ msgstr "Translated" msgid "Translating" msgstr "Translating" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Translating…" @@ -11702,7 +12294,7 @@ msgstr "Trending Videos" msgid "Trolling" msgstr "Trolling" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Trust emerges from relationships, communities and shared context, so we’re also enabling <0>trusted verifiers: organisations that can directly issue verification." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Try a different search term, or <0>read about how to use search filters." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Try again" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Try again" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Try again in a moment." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Try Google Translate" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Try it" + #: src/lib/interests.ts:74 msgid "TV" msgstr "TV" @@ -11763,13 +12369,17 @@ msgstr "Unable to contact your service. Please check your Internet connection." msgid "Unable to delete" msgstr "Unable to delete" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Unable to fetch join requests." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Unable to find a selected recipient." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Unable to find the selected recipient." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Unavailable" msgid "Unavailable feed information" msgstr "Unavailable feed information" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Unblock" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Unblock" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Unblock {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Unblock account" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Unblock account?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Unblock Account?" @@ -11837,8 +12452,8 @@ msgstr "Unblock list" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Undo" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Undo repost ({0, plural, one {# repost} other {# reposts}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Unfollow {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Unfollow account" @@ -11872,7 +12487,7 @@ msgstr "Unfollow account" msgid "Unfollows the user" msgstr "Unfollows the user" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Unfortunately, none of your subscribed labellers support this report type." @@ -11884,14 +12499,6 @@ msgstr "Unfortunately, the birthdate you have saved to your profile makes you to msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Uninvite" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Uninvite {displayName} from this group chat" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Unknown verifier" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Unlike" #. 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Unlike ({0, plural, one {# like} other {# likes}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Unlock chat" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Unlock this group chat" @@ -11939,14 +12546,14 @@ msgstr "Unmute" msgid "Unmute {0}" msgstr "Unmute {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Unmute account" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Unmute conversation" @@ -11955,12 +12562,12 @@ msgstr "Unmute conversation" msgid "Unmute list" msgstr "Unmute list" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Unmute this group chat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Unmute thread" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Unpin" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Unpin feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Unpin from home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Unpin from profile" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Unpin moderation list" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Unpinned {0} from Home" @@ -12030,14 +12637,18 @@ msgstr "Unsubscribe from this labeller" msgid "Unsubscribed from list" msgstr "Unsubscribed from list" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Unsupported clipboard content" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Unsupported video type: {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Up to 50 people" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,16 +12658,20 @@ msgstr "Update" msgid "Update <0>{displayName} in Lists" msgstr "Update <0>{displayName} in Lists" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Update app" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Update email" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Update invite link" @@ -12065,11 +12680,15 @@ msgstr "Update invite link" msgid "Update to {domain}" msgstr "Update to {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Update your app" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Update your app to see it." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Update your email" @@ -12080,17 +12699,17 @@ msgstr "Update your email" msgid "Update your location" msgstr "Update your location" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Updating quote attachment failed" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Updating reply visibility failed" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Upload a photo instead" @@ -12098,39 +12717,40 @@ msgstr "Upload a photo instead" msgid "Upload a text file to:" msgstr "Upload a text file to:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Upload from Camera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Upload from Files" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Upload from Library" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Uploading GIF..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Uploading images..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Uploading link thumbnail..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Uploading video..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "user" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "User blocked" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "User list by {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "User List by {0}" @@ -12255,12 +12875,12 @@ msgstr "users followed by <0>@{0}" msgid "users following <0>@{0}" msgstr "users following <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Users I follow" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Users I follow" @@ -12277,7 +12897,7 @@ msgstr "Verification failed, please try again." msgid "Verification settings" msgstr "Verification settings" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verification Settings" @@ -12304,8 +12924,8 @@ msgstr "Verify again" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Verify code" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verify DNS Record" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verify email code" @@ -12349,7 +12969,7 @@ msgstr "Verify this account?" msgid "Verify your age" msgstr "Verify your age" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Version {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Video failed to process" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Video Feed" @@ -12419,7 +13039,7 @@ msgstr "Video not found." msgid "Video settings" msgstr "Video settings" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video uploaded" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "Videos must be less than 3 minutes long." -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "View" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "View {0}" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "View {0}'s profile" @@ -12467,20 +13087,15 @@ msgstr "View {0}'s profile" msgid "View {0}’s profile" msgstr "View {0}’s profile" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "View {displayName}’s profile" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "View {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "View @{0}'s profile" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "View blocked user's profile" @@ -12503,10 +13118,18 @@ msgstr "View details" msgid "View full thread" msgstr "View full thread" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "View incoming group chat requests" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "View incoming requests" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "View incoming requests to join this group chat" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "View information about these labels" @@ -12522,7 +13145,7 @@ msgstr "View more" msgid "View more trending videos" msgstr "View more trending videos" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "View post" @@ -12539,10 +13162,10 @@ msgstr "View profile" msgid "View profile banner" msgstr "View profile banner" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "View publication" @@ -12550,7 +13173,7 @@ msgstr "View publication" msgid "View the avatar" msgstr "View the avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "View the invite link for this group chat" @@ -12563,7 +13186,7 @@ msgstr "View the labelling service provided by @{0}" msgid "View this user's verifications" msgstr "View this user's verifications" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "View users who like this feed" @@ -12596,8 +13219,8 @@ msgstr "View your muted accounts" msgid "View your verifications" msgstr "View your verifications" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Views full image" @@ -12640,8 +13263,8 @@ msgstr "Warn content" msgid "Warn content and filter from feeds" msgstr "Warn content and filter from feeds" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Watch now" @@ -12665,11 +13288,15 @@ msgstr "We couldn't find any results for that tag." msgid "We couldn't find any results for that topic." msgstr "We couldn't find any results for that topic." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "We couldn't load this conversation" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "We couldn’t load this conversation’s join requests" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "We couldn’t load this conversation’s settings" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "We recommend selecting at least two interests." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "We were unable to determine if you are allowed to upload videos. Please try again." @@ -12744,12 +13371,12 @@ msgstr "We were unable to receive the verification due to a connection issue. It msgid "We will let you know when your account is ready." msgstr "We will let you know when your account is ready." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "We will notify you when we find your friends." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." @@ -12779,12 +13406,12 @@ msgstr "We're having issues initialising the age assurance process for your acco msgid "We're having network issues, try again" msgstr "We're having network issues, try again" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "We’re having network issues, try again" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "We're sorry! The post you are replying to has been deleted." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "We're sorry! We can't find the page you were looking for." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "What do you want to call your starter pack?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "What's up?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "When you tap on a check, you’ll see which organisations have granted verification." @@ -12878,7 +13505,7 @@ msgstr "When you tap on a check, you’ll see which organisations have granted v msgid "Who can interact with this post?" msgstr "Who can interact with this post?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Who can join this group chat and how" @@ -12887,13 +13514,13 @@ msgstr "Who can join this group chat and how" msgid "Who can reply" msgstr "Who can reply" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Who can verify?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Whoops!" @@ -12939,19 +13566,19 @@ msgstr "Why should this starter pack be reviewed?" msgid "Why should this user be reviewed?" msgstr "Why should this user be reviewed?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Would you like to block this user and/or delete this conversation?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Would you like to block this user and/or leave this conversation?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Would you like to save this as a draft to edit later?" msgid "Write a post" msgstr "Write a post" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Write post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Write your reply" @@ -12978,7 +13605,8 @@ msgstr "Writers" msgid "Wrong DID returned from server. Received: {0}" msgstr "Wrong DID returned from server. Received: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Wrong kind of conversation" @@ -13005,11 +13633,11 @@ msgstr "Yes, delete my account" msgid "Yes, delete this starter pack" msgstr "Yes, delete this starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Yes, detach" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Yes, hide" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "You are blocking {0}" @@ -13068,7 +13696,7 @@ msgstr "You are Live" msgid "You are no longer live" msgstr "You are no longer live" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "You are not allowed to upload videos." @@ -13117,21 +13745,30 @@ msgstr "You can always opt out and delete your data" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "You can choose whether chat notifications have sound in the chat settings within the app" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "You can continue ongoing conversations regardless of which setting you choose." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "You can now choose to be notified when specific people post. If there’s someone you want timely updates from, go to their profile and find the new bell icon near the follow button." +#: src/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 "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." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "You can now sign in with your new password." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "You can only save drafts up to 1,000 characters." @@ -13139,11 +13776,11 @@ msgstr "You can only save drafts up to 1,000 characters." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "You can only save drafts up to 1,000 characters. Would you like to discard this post before viewing your drafts?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "You can only select one GIF at a time." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "You can only select one video at a time." @@ -13155,10 +13792,10 @@ msgstr "You can reactivate your account to continue logging in. Your profile and msgid "You can read chat history but can’t send new messages." msgstr "You can read chat history but can’t send new messages." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "You can select up to {MAX_IMAGES, plural, other {# images}} in total." msgid "You can update this later from your settings." msgstr "You can update this later from your settings." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "You cannot create a group chat yet." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "You don't have any saved feeds." msgid "You got here first" msgstr "You got here first" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "You have been previously removed from this group and can’t join it using this link." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "You must be a chat owner to remove a member." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." @@ -13332,11 +13982,12 @@ msgstr "You must be at least 13 years old to use Bluesky. Read our <0>Terms of S msgid "You must be following at least seven other people to generate a starter pack." msgstr "You must be following at least seven other people to generate a starter pack." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "You must grant access to your photo library to save a QR code" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "You need to allow access to your media library." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "You own this chat" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "You reacted {0}" @@ -13368,8 +14023,13 @@ msgstr "You reacted {0} to {target}" msgid "You recently changed your birthdate" msgstr "You recently changed your birthdate" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "You requested to join" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "You will be signed out of all your accounts." @@ -13378,11 +14038,11 @@ msgstr "You will be signed out of all your accounts." msgid "You will no longer receive notifications for {0}" msgstr "You will no longer receive notifications for {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "You will no longer receive notifications for this thread" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "You will now receive notifications for this thread" @@ -13390,12 +14050,12 @@ msgstr "You will now receive notifications for this thread" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "You won’t be able to rejoin unless you’re invited." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "You: {message}" @@ -13429,6 +14089,10 @@ msgstr "You'll start receiving notifications for {0}!" msgid "You'll stay updated with these feeds" msgstr "You'll stay updated with these feeds" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "You’re in control" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "You're in line" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "You've reached the maximum number of drafts" @@ -13475,11 +14139,11 @@ msgstr "You've reached the maximum number of requests allowed. Please try again msgid "You've reached the start of the active content." msgstr "You've reached the start of the active content." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "You've reached your daily limit for video uploads (too many bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "You've reached your daily limit for video uploads (too many videos)" @@ -13499,10 +14163,18 @@ msgstr "Your account has been deleted, see ya! ✌️" msgid "Your account has been suspended" msgstr "Your account has been suspended" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Your account is not yet old enough to upload videos. Please try again later." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Your account is too new" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "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." @@ -13519,7 +14191,7 @@ msgstr "Your appeal has been submitted. If your appeal succeeds, you will receiv msgid "Your birth date" msgstr "Your birthdate" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Your chats have been disabled" @@ -13527,11 +14199,11 @@ msgstr "Your chats have been disabled" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Your choice will be remembered for future links. You can change it at any time in settings." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Your contact {firstAuthorLink} is on Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Your contact {firstAuthorName} is on Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Your email" msgid "Your email appears to be invalid." msgstr "Your email appears to be invalid." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Your following feed is empty! Follow more users to see what's happening. msgid "Your full handle will be <0>@{0}" msgstr "Your full handle will be <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Your location has been updated." msgid "Your muted words" msgstr "Your muted words" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Your post was sent" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Your posts were sent" @@ -13635,7 +14307,7 @@ msgstr "Your posts were sent" msgid "Your preferred language" msgstr "Your preferred language" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Your profile picture" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Your reply was sent" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Your report will be sent to <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Your report will be sent to <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Your selected interests help us serve you content you care about." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 5830797c52..af8edfa937 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -18,7 +18,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:123 +msgid "(chat invite link)" +msgstr "(chat invite link)" + +#: src/components/dms/getMessageInfo.ts:105 msgid "(contains embedded content)" msgstr "" @@ -66,8 +70,8 @@ msgstr "" msgid "{0, plural, one {# like} other {# likes}}" msgstr "" -#. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#. placeholder {0}: convo.details.memberCount +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# member} other {# members}}" @@ -81,19 +85,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" -#. placeholder {0}: convo.details.joinRequestCount +#. placeholder {0}: convo.details.unreadJoinRequestCount #: src/screens/Messages/components/ChatListItem.tsx:225 msgid "{0, plural, one {# new join request} other {# new join requests}}" msgstr "{0, plural, one {# new join request} other {# new join requests}}" -#. placeholder {0}: convo.details.memberLimit -#: src/screens/Messages/components/InviteLinkDialog.tsx:181 -msgid "{0, plural, one {# person} other {# people}}" -msgstr "{0, plural, one {# person} other {# people}}" - #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:273 +#: src/components/dms/MessageItem.tsx:281 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# people}} reacted – {1}" @@ -114,15 +113,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:277 +#: 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:233 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:251 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {#m} other {#m}}" @@ -195,13 +194,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} added to chat" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} and {1} added to chat" @@ -211,7 +210,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:609 +#: src/components/dms/MessageItem.tsx:618 msgid "{0} is blocking you" msgstr "{0} is blocking you" @@ -269,7 +268,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:268 +#: src/components/dms/MessageItem.tsx:276 msgid "{0} reacted {1}" msgstr "" @@ -295,7 +294,7 @@ msgstr "{0} was removed from the group" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -314,29 +313,38 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:596 -#: src/view/com/util/UserAvatar.tsx:614 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}’s avatar" - -#. The number of active group chat members out of the total number allowed. -#. placeholder {0}: data.joinLinkPreviews[0].memberCount -#. placeholder {1}: data.joinLinkPreviews[0].memberLimit -#: src/screens/Messages/JoinRequest.tsx:130 -msgid "{0}/{1}" -msgstr "{0}/{1}" - #. The number of active group chat members out of the total number allowed. #. placeholder {0}: joinLinkPreview.memberCount #. placeholder {1}: joinLinkPreview.memberLimit -#: src/components/intents/GroupChatJoinDialog.tsx:307 -msgid "{0}/{1} members" -msgstr "{0}/{1} members" +#: src/screens/Messages/JoinRequest.tsx:139 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. 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 "{0}/{1} {2, plural, one {member} other {members}}" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -362,37 +370,53 @@ msgstr "" 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 "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# chat update} other {# chat updates}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# new join request} other {# new join requests}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# request} other {# requests}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:429 -msgid "{count, plural, zero {No requests to join} one {# request to join} other {# requests to join}}" -msgstr "{count, plural, zero {No requests to join} one {# request to join} other {# requests to join}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {This post has # photo.} other {This post has # photos.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" + +#. 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 "{count, plural, other {#+ requests to join}}" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ requests" -#. Displayed when there are more requests to join a group chat than have been loaded -#: src/screens/Messages/JoinRequests.tsx:423 -msgid "{count}+ requests to join" -msgstr "{count}+ requests to join" - #: src/components/dms/DateDivider.tsx:60 msgid "{date} at {time}" msgstr "{date} at {time}" @@ -410,155 +434,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -566,8 +590,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:889 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} can’t be added" @@ -575,7 +599,7 @@ msgstr "{handle} can’t be added" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} can’t be messaged" @@ -587,6 +611,16 @@ msgstr "" 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 "{JOIN_REQUESTS_THRESHOLD}+ new join requests" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ new join requests" + #. 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!" @@ -604,7 +638,7 @@ msgstr "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum nu msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "" @@ -618,12 +652,12 @@ msgid "{minutes, plural, one {# minute} other {# minutes}}" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/getReactionInfo.ts:45 +#: src/components/dms/getReactionInfo.ts:65 msgid "{name} reacted {0} to {target}" msgstr "{name} reacted {0} to {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:89 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -635,11 +669,11 @@ msgstr "{name}'s favorite feeds and people - join me!" msgid "{name}'s starter pack" msgstr "{name}'s starter pack" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -684,6 +718,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -707,41 +747,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -764,7 +804,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> added you" @@ -786,11 +826,6 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:220 -msgctxt "Displayed when there are more than 20 requests to join a group chat" -msgid "20+ new join requests" -msgstr "20+ new join requests" - #: src/components/dialogs/MutedWords.tsx:202 #: src/components/dialogs/MutedWords.tsx:551 #: src/components/dialogs/MutedWords.tsx:554 @@ -818,7 +853,7 @@ msgid "A collection of popular feeds you can find on Bluesky, including News, Bo msgstr "" #. If last message does not contain text, fall back to "{user} reacted to {a message}" -#: src/components/dms/getReactionInfo.ts:33 +#: src/components/dms/getReactionInfo.ts:53 msgid "a message" msgstr "" @@ -828,10 +863,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:52 -#: src/components/dms/dialogs/NewChatDialog.tsx:90 -#: src/screens/Messages/JoinRequests.tsx:188 -#: src/screens/Messages/JoinRequests.tsx:220 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:287 +#: src/components/moderation/BlockDialog.tsx:313 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -862,11 +900,11 @@ msgstr "" 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:105 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "A selected recipient is not followed by the sender." -#: src/Navigation.tsx:459 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -878,26 +916,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" #. Accept a request to join a chat -#: src/screens/Messages/JoinRequests.tsx:460 +#: src/screens/Messages/JoinRequests.tsx:464 msgctxt "button" msgid "Accept" msgstr "Accept" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:454 +#: src/screens/Messages/JoinRequests.tsx:458 msgid "Accept join request" msgstr "Accept join request" #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:51 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -910,7 +948,7 @@ msgstr "" msgid "Accepted conversations" msgstr "Accepted conversations" -#: src/components/intents/GroupChatJoinDialog.tsx:93 +#: src/components/intents/GroupChatJoinDialog.tsx:119 msgid "Access requested! The group owner will review your request." msgstr "Access requested! The group owner will review your request." @@ -920,11 +958,11 @@ msgstr "Access requested! The group owner will review your request." msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:382 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -932,15 +970,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:189 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:205 msgctxt "toast" msgid "Account followed" msgstr "" @@ -953,8 +991,8 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 -#: src/view/com/profile/ProfileMenu.tsx:160 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:159 msgctxt "toast" msgid "Account muted" msgstr "" @@ -980,21 +1018,21 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 #: src/view/com/profile/ProfileMenu.tsx:176 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:220 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:146 msgctxt "toast" msgid "Account unmuted" msgstr "" @@ -1013,7 +1051,7 @@ msgstr "" #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -1049,8 +1087,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1062,16 +1100,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1383 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2049 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1093,7 +1131,7 @@ msgstr "Add automation label to account" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Add group chat members" @@ -1102,13 +1140,13 @@ 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:503 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Add members" @@ -1130,8 +1168,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:132 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:171 +#: 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" @@ -1141,6 +1179,10 @@ msgstr "" msgid "Add people to list" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Add people with a link" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "" @@ -1165,8 +1207,8 @@ msgstr "" msgid "Add this feed to your feeds" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:355 -#: src/view/com/profile/ProfileMenu.tsx:358 +#: src/view/com/profile/ProfileMenu.tsx:357 +#: src/view/com/profile/ProfileMenu.tsx:360 msgid "Add to lists" msgstr "" @@ -1175,8 +1217,8 @@ msgid "Add to saved posts" msgstr "" #: src/components/dialogs/StarterPackDialog.tsx:184 -#: src/view/com/profile/ProfileMenu.tsx:346 -#: src/view/com/profile/ProfileMenu.tsx:349 +#: src/view/com/profile/ProfileMenu.tsx:348 +#: src/view/com/profile/ProfileMenu.tsx:351 msgid "Add to starter packs" msgstr "" @@ -1189,11 +1231,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Added by {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Added by invite link" @@ -1219,8 +1261,8 @@ msgstr "" msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1283,7 +1325,7 @@ msgid "alice@example.com" msgstr "" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:288 +#: src/components/dms/ReactionsDialog.tsx:292 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1291,7 +1333,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:385 +#: src/components/dms/ReactionsDialog.tsx:389 msgid "All {0}" msgstr "All {0}" @@ -1328,13 +1370,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:139 -#: src/screens/Messages/Settings.tsx:154 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Allow direct messages from" -#: src/screens/Messages/Settings.tsx:185 -#: src/screens/Messages/Settings.tsx:200 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Allow group chat invites from" @@ -1389,11 +1431,11 @@ msgid "Already signed in as @{0}" msgstr "" #: src/components/images/AutoSizedImage.tsx:204 -#: src/components/images/Gallery/index.tsx:539 -#: src/components/images/ImageLayoutGridItem.tsx:139 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1412,7 +1454,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1471,7 +1513,8 @@ msgstr "" msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1506,12 +1549,16 @@ msgstr "" 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 "An illustration of the Bluesky app with a paper airplane flying out of it, representing inviting friends" + #: 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:172 +#: 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 "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." @@ -1519,11 +1566,11 @@ msgstr "An invite link lets people join this group chat without being added dire msgid "An issue not included in these options" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:88 +#: 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:50 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "An issue occurred starting the chat, please try again." @@ -1535,8 +1582,8 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" @@ -1589,17 +1636,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:322 +#: src/components/intents/GroupChatJoinDialog.tsx:356 msgid "Anyone can join" msgstr "Anyone can join" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Anyone can join instantly" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Anyone can request to join" @@ -1609,11 +1656,11 @@ msgstr "Anyone can request to join" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 +#: 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 "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:467 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1651,7 +1698,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:350 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1693,7 +1740,7 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1711,12 +1758,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1729,7 +1776,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageOverlays.tsx:167 +#: 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 "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participants." @@ -1742,23 +1789,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:128 +#: src/screens/Messages/ConversationSettings/prompts.tsx:152 msgid "Are you sure you want to leave {groupName}?" msgstr "Are you sure you want to leave {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "" +#: src/components/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 "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participants." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:1523 +#. 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 "Are you sure you want to rescind your request to join {0}?" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1778,8 +1831,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1806,7 +1859,7 @@ msgstr "Automated account" msgid "Automation label" msgstr "Automation label" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automation Label" @@ -1821,12 +1874,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:509 -#: src/components/dms/InitiateChatFlow.tsx:702 -#: src/components/dms/InitiateChatFlow.tsx:709 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1839,9 +1892,9 @@ msgstr "" #: src/screens/Login/SetNewPasswordForm.tsx:178 #: src/screens/Messages/components/ChatDisabled.tsx:164 #: src/screens/Messages/components/ChatDisabled.tsx:166 -#: src/screens/Messages/components/InviteLinkDialog.tsx:256 -#: src/screens/Messages/components/InviteLinkDialog.tsx:284 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/InviteLinkDialog.tsx:276 +#: src/screens/Messages/components/InviteLinkDialog.tsx:304 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1852,7 +1905,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1888,7 +1941,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1896,13 +1949,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:151 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:147 -#: src/screens/Messages/ChatList.tsx:211 -#: src/screens/Messages/ChatList.tsx:476 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1930,39 +1984,33 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Block {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 -#: src/view/com/profile/ProfileMenu.tsx:469 -#: src/view/com/profile/ProfileMenu.tsx:476 +#: 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:471 +#: src/view/com/profile/ProfileMenu.tsx:478 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Block account?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" @@ -1982,7 +2030,7 @@ msgstr "Block and leave" msgid "Block list" msgstr "" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -2012,7 +2060,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "Block user and/or leave this conversation" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -2020,14 +2068,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:191 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -2043,7 +2089,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -2056,7 +2102,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2093,11 +2139,15 @@ msgstr "" 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 "Bluesky needs camera access to scan QR codes from other profiles." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2137,6 +2187,10 @@ msgstr "" msgid "Breaking site rules" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Bring up to 50 friends together in one chat." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2194,26 +2248,34 @@ msgid "Button to go back to the home timeline" msgstr "" #. The owner (creator) of a group chat. -#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), ) +#. 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:166 +#: src/screens/Messages/JoinRequest.tsx:177 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:379 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:80 -msgid "by <0>@{0}" -msgstr "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:84 +msgid "By <0>{ownerDisplayName}" +msgstr "By <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2239,10 +2301,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Camera access needed" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2258,7 +2324,10 @@ msgstr "" #: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2270,10 +2339,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:468 -#: src/screens/Messages/components/InviteLinkDialog.tsx:472 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: 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/Shell.tsx:405 @@ -2286,11 +2357,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1601 -#: src/view/com/composer/Composer.tsx:1611 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2322,7 +2393,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:263 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carousel" @@ -2402,15 +2473,15 @@ 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:485 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: 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:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2419,8 +2490,9 @@ msgstr "" msgid "Chat ended" msgstr "Chat ended" -#: src/components/intents/GroupChatJoinDialog.tsx:227 -#: src/components/intents/GroupChatJoinDialog.tsx:258 +#: 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 "Chat invite link no longer available" @@ -2436,35 +2508,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:69 +#: src/components/moderation/BlockDialog.tsx:289 +#: src/components/moderation/BlockDialog.tsx:317 +msgid "Chat not found." +msgstr "Chat not found." + +#: src/components/moderation/BlockDialog.tsx:293 +msgid "Chat owners cannot leave a group chat." +msgstr "Chat owners cannot leave a group chat." + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "Chat recipient is not followed by the sender." -#: src/Navigation.tsx:505 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:500 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 #: src/screens/Messages/ChatList.tsx:87 -#: src/screens/Messages/ChatList.tsx:500 -#: src/screens/Messages/ChatList.tsx:535 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:130 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2481,14 +2562,14 @@ msgstr "Chat title changed to {0}" msgid "Chat unlocked" msgstr "Chat unlocked" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" #: src/screens/Messages/ChatList.tsx:77 -#: src/screens/Messages/ChatList.tsx:488 -#: src/screens/Messages/ChatList.tsx:524 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2542,7 +2623,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:222 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Choose who can join this group chat and how." @@ -2596,7 +2677,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:128 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 msgid "Click here to add people to this group chat" msgstr "Click here to add people to this group chat" @@ -2604,7 +2685,7 @@ msgstr "Click here to add people to this group chat" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:142 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 msgid "Click here to create or manage an invite link for this group chat" msgstr "Click here to create or manage an invite link for this group chat" @@ -2634,7 +2715,7 @@ msgstr "" msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 msgid "Click here to view the invite link for this group chat" msgstr "Click here to view the invite link for this group chat" @@ -2643,7 +2724,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:528 +#: src/components/dms/MessageItem.tsx:537 msgid "Click to retry failed message" msgstr "" @@ -2668,7 +2749,7 @@ msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:200 #: src/components/dialogs/SearchablePeopleList.tsx:340 #: src/components/dialogs/StarterPackDialog.tsx:187 -#: src/components/dms/AddMembersFlow.tsx:367 +#: src/components/dms/AddMembersFlow.tsx:384 #: src/components/dms/AfterReportConversationDialog.tsx:91 #: src/components/dms/AfterReportConversationDialog.tsx:96 #: src/components/dms/AfterReportConversationDialog.tsx:247 @@ -2678,9 +2759,9 @@ 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:534 -#: src/components/intents/GroupChatJoinDialog.tsx:204 -#: src/components/intents/GroupChatJoinDialog.tsx:239 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/intents/GroupChatJoinDialog.tsx:281 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2694,8 +2775,8 @@ msgstr "" #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:45 #: src/features/liveNow/components/EditLiveDialog.tsx:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:492 -#: src/screens/Messages/components/InviteLinkDialog.tsx:497 +#: 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 @@ -2704,7 +2785,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2712,6 +2793,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Close banner" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2723,6 +2808,7 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 #: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 #: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 @@ -2738,21 +2824,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:330 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:197 -#: src/components/intents/GroupChatJoinDialog.tsx:198 -#: src/components/intents/GroupChatJoinDialog.tsx:234 -#: src/components/intents/GroupChatJoinDialog.tsx:235 +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Close scanner" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Close the incoming requests banner" + +#: 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:361 msgid "Close this dialog" msgstr "" @@ -2765,18 +2859,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1609 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Color" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2795,7 +2893,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:340 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2810,12 +2908,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1485 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2823,11 +2921,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2446 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2448 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "" @@ -2887,7 +2985,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2895,11 +2993,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2912,7 +3010,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:443 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2959,7 +3057,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2978,24 +3076,24 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:461 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Continue to group name" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:324 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Conversation deleted" msgstr "" @@ -3011,8 +3109,9 @@ msgctxt "toast" msgid "Conversation left" msgstr "Conversation left" -#: src/screens/Messages/JoinRequests.tsx:192 -#: src/screens/Messages/JoinRequests.tsx:224 +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 msgid "Conversation not found." msgstr "Conversation not found." @@ -3020,9 +3119,10 @@ msgstr "Conversation not found." msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:71 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -3039,7 +3139,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Copies the canonical profile URL to the clipboard" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "" @@ -3047,8 +3152,8 @@ msgstr "" msgid "Copy App Password" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:506 -#: src/view/com/profile/ProfileMenu.tsx:509 +#: src/view/com/profile/ProfileMenu.tsx:508 +#: src/view/com/profile/ProfileMenu.tsx:511 msgid "Copy at:// URI" msgstr "" @@ -3063,8 +3168,8 @@ msgid "Copy code" msgstr "" #: src/screens/Settings/components/ChangeHandleDialog.tsx:504 -#: src/view/com/profile/ProfileMenu.tsx:515 -#: src/view/com/profile/ProfileMenu.tsx:518 +#: src/view/com/profile/ProfileMenu.tsx:517 +#: src/view/com/profile/ProfileMenu.tsx:520 msgid "Copy DID" msgstr "" @@ -3072,6 +3177,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Copy invite link" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3093,8 +3203,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:287 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Copy link to profile" msgstr "" @@ -3102,8 +3212,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:152 -#: src/components/dms/MessageContextMenu.tsx:156 +#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:169 msgid "Copy message text" msgstr "" @@ -3112,12 +3222,12 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "" @@ -3127,11 +3237,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:345 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Could not capture QR code" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3140,7 +3254,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "Could not copy – please try again" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "Could not download – please try again" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Could not fetch post" @@ -3148,23 +3270,27 @@ msgstr "Could not fetch post" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:34 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "" +#: src/components/moderation/BlockDialog.tsx:285 +msgid "Could not leave chat." +msgstr "Could not leave chat." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3175,7 +3301,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "Could not load profile" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3183,11 +3313,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:311 +msgid "Could not remove member." +msgstr "Could not remove member." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "Could not share – please try again" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3214,7 +3352,7 @@ 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:470 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3228,13 +3366,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:536 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3249,14 +3387,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 -#: src/screens/Messages/JoinRequest.tsx:300 +#: src/screens/Messages/JoinRequest.tsx:310 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:345 +#: src/view/shell/bottom-bar/BottomBar.tsx:349 #: 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" @@ -3274,7 +3412,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3282,7 +3420,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:469 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Create group chat" @@ -3304,13 +3442,13 @@ msgstr "" msgid "Create moderation list" msgstr "" -#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:304 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "Create or modify an invite link for this group chat" msgstr "Create or modify an invite link for this group chat" @@ -3333,8 +3471,8 @@ 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:329 -#: src/screens/Messages/ConversationSettings/index.tsx:440 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:509 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3347,6 +3485,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Current chat" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3388,6 +3530,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Dawn" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Day" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3418,8 +3568,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageOverlays.tsx:168 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3446,8 +3596,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3455,19 +3605,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: 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:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: src/screens/Messages/components/RequestButtons.tsx:147 +#: src/screens/Messages/components/RequestButtons.tsx:149 msgid "Delete conversation" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:167 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3476,11 +3626,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageOverlays.tsx:166 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:164 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3488,9 +3638,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1497 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "" @@ -3507,17 +3657,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:109 -#: src/screens/Messages/components/ChatListItem.tsx:133 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3548,12 +3698,12 @@ msgstr "Description (1000 characters max)" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3584,8 +3734,8 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:361 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Disable" @@ -3611,8 +3761,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:456 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Disable link" @@ -3624,7 +3774,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:443 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Disable this invite link?" @@ -3637,9 +3787,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1276 -#: src/view/com/composer/Composer.tsx:1320 -#: src/view/com/composer/Composer.tsx:1530 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3650,14 +3800,14 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1274 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1291 -#: src/view/com/composer/Composer.tsx:1522 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "" @@ -3686,7 +3836,8 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" @@ -3694,7 +3845,7 @@ msgstr "" msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2367 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "" @@ -3719,6 +3870,10 @@ msgstr "" msgid "Dismiss this suggestion" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Dismisses the QR scanner" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3787,9 +3942,11 @@ msgstr "" #: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3805,11 +3962,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:432 +#: src/components/dms/MessageItem.tsx:440 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3817,6 +3974,10 @@ msgstr "" msgid "Double tap to like" msgstr "" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Download" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "" @@ -3830,11 +3991,15 @@ msgctxt "button" msgid "Download chat data" msgstr "Download chat data" -#: src/components/Lightbox/Lightbox.web.tsx:308 -#: src/components/Lightbox/Lightbox.web.tsx:320 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Download image" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Download invite QR code" + #: src/screens/Settings/components/ExportCarDialog.tsx:118 msgid "Download profile data" msgstr "Download profile data" @@ -3867,6 +4032,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Dusk" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3917,8 +4086,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:461 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3926,19 +4095,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:43 +#: src/screens/Messages/ConversationSettings/prompts.tsx:49 msgid "Edit group name" msgstr "Edit group name" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3947,16 +4116,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:294 +#: src/screens/Messages/JoinRequests.tsx:299 msgid "Edit invite link" msgstr "Edit invite link" -#: src/screens/Messages/JoinRequests.tsx:300 +#: src/screens/Messages/JoinRequests.tsx:305 msgctxt "button" msgid "Edit invite link" msgstr "Edit invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:343 +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Edit link settings" @@ -3965,8 +4134,8 @@ msgstr "Edit link settings" msgid "Edit list details" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:369 -#: src/view/com/profile/ProfileMenu.tsx:389 +#: src/view/com/profile/ProfileMenu.tsx:371 +#: src/view/com/profile/ProfileMenu.tsx:391 msgid "Edit live status" msgstr "" @@ -3974,12 +4143,12 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:355 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:544 msgid "Edit name" msgstr "Edit name" @@ -3995,12 +4164,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -4008,7 +4177,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:473 +#: src/screens/Messages/ConversationSettings/index.tsx:493 +#: src/screens/Messages/ConversationSettings/index.tsx:543 msgid "Edit this group chat’s name" msgstr "Edit this group chat’s name" @@ -4020,7 +4190,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:541 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -4225,12 +4395,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4272,12 +4442,12 @@ msgstr "" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:76 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Everyone" -#: src/screens/Messages/Settings.tsx:61 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Everyone" @@ -4299,16 +4469,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:59 -#: src/components/Lightbox/Lightbox.web.tsx:241 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4320,7 +4490,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:441 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4359,10 +4529,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:745 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4371,8 +4541,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:255 -#: src/screens/Messages/Settings.tsx:265 +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Export my chat data" @@ -4401,7 +4571,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:374 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4410,22 +4580,22 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:186 +#: src/screens/Messages/JoinRequests.tsx:190 msgid "Failed to accept join request" msgstr "Failed to accept join request" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:103 +#: src/components/dms/ActionsWrapper.web.tsx:88 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Failed to add members" @@ -4437,7 +4607,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:298 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Failed to copy link" @@ -4446,11 +4617,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Failed to create invite link" @@ -4459,8 +4630,8 @@ msgstr "Failed to create invite link" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "" @@ -4469,7 +4640,7 @@ msgstr "" msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4477,7 +4648,7 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Failed to disable invite link" @@ -4486,15 +4657,15 @@ msgstr "Failed to disable invite link" msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:344 +#: src/screens/Messages/ConversationSettings/index.tsx:381 msgid "Failed to edit group chat name" msgstr "Failed to edit group chat name" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Failed to edit invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Failed to enable invite link" @@ -4510,11 +4681,11 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:223 msgid "Failed to ignore join request" msgstr "Failed to ignore join request" -#: src/components/intents/GroupChatJoinDialog.tsx:116 +#: src/components/intents/GroupChatJoinDialog.tsx:147 msgid "Failed to join the group chat. Please try again." msgstr "Failed to join the group chat. Please try again." @@ -4522,15 +4693,15 @@ msgstr "Failed to join the group chat. Please try again." msgid "Failed to launch SMS app" msgstr "" -#: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:371 +#: 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 "Failed to leave group chat" -#: src/screens/Messages/ChatList.tsx:345 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4575,16 +4746,20 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:392 +#: src/screens/Messages/ConversationSettings/index.tsx:433 msgid "Failed to lock group chat" msgstr "Failed to lock group chat" +#: src/view/shell/bottom-bar/BottomBar.tsx:441 +msgid "Failed to mark all chats as read" +msgstr "Failed to mark all chats as read" + #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 +#: src/view/shell/bottom-bar/BottomBar.tsx:450 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:358 +#: src/screens/Messages/ConversationSettings/index.tsx:397 msgid "Failed to mute group chat" msgstr "Failed to mute group chat" @@ -4597,18 +4772,18 @@ msgstr "" msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" #: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:99 -#: src/components/dms/ReactionsDialog.tsx:175 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:179 msgid "Failed to remove emoji reaction" msgstr "" @@ -4616,7 +4791,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Failed to remove group chat member" @@ -4624,7 +4800,8 @@ msgstr "Failed to remove group chat member" msgid "Failed to remove verification" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:150 +#: src/components/intents/GroupChatJoinDialog.tsx:193 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 msgid "Failed to rescind your request. Please try again." msgstr "Failed to rescind your request. Please try again." @@ -4632,11 +4809,11 @@ msgstr "Failed to rescind your request. Please try again." msgid "Failed to resolve location. Please try again." msgstr "" -#: src/view/com/composer/Composer.tsx:578 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:315 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Failed to save image" @@ -4670,12 +4847,12 @@ msgstr "Failed to send report" msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:395 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:442 msgid "Failed to unlock group chat" msgstr "Failed to unlock group chat" @@ -4700,7 +4877,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:93 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4727,7 +4904,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4735,7 +4912,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4748,7 +4925,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4762,25 +4939,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:521 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4854,18 +5031,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:430 -#: src/Navigation.tsx:563 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "Find and invite friends" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4881,6 +5056,10 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Find people you know" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" @@ -4890,7 +5069,7 @@ msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4933,22 +5112,22 @@ msgstr "Focus the search field" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:429 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:417 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Follow {displayName}" @@ -4968,8 +5147,8 @@ msgstr "" msgid "Follow 7 accounts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:325 -#: src/view/com/profile/ProfileMenu.tsx:336 +#: src/view/com/profile/ProfileMenu.tsx:327 +#: src/view/com/profile/ProfileMenu.tsx:338 msgid "Follow account" msgstr "" @@ -4978,8 +5157,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4992,9 +5171,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:427 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -5002,7 +5181,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -5030,12 +5209,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/components/intents/GroupChatJoinDialog.tsx:355 msgid "Followers can join" msgstr "Followers can join" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -5050,10 +5229,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -5067,12 +5246,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Following {displayName}" @@ -5085,19 +5264,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:361 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5155,6 +5331,11 @@ msgstr "" msgid "Forgot?" 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 "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 msgid "Free your feed" msgstr "" @@ -5176,17 +5357,17 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:217 -#: src/screens/Messages/components/InviteLinkDialog.tsx:257 -#: src/screens/Messages/components/InviteLinkDialog.tsx:285 +#: 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 "Generate invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:414 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Generate new invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:419 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Generate new link" @@ -5208,7 +5389,7 @@ msgstr "" msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" @@ -5274,21 +5455,21 @@ msgstr "" #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 -#: src/screens/Messages/components/InviteLinkDialog.tsx:197 -#: src/screens/Messages/components/InviteLinkDialog.tsx:204 +#: src/screens/Messages/components/InviteLinkDialog.tsx:219 +#: src/screens/Messages/components/InviteLinkDialog.tsx:226 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:148 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5308,17 +5489,16 @@ msgstr "" #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 #: src/view/com/auth/LoggedOut.tsx:103 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 #: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 @@ -5344,8 +5524,8 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:370 -#: src/view/com/profile/ProfileMenu.tsx:391 +#: src/view/com/profile/ProfileMenu.tsx:372 +#: src/view/com/profile/ProfileMenu.tsx:393 msgid "Go live" msgstr "" @@ -5356,8 +5536,8 @@ msgstr "" msgid "Go Live" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:367 -#: src/view/com/profile/ProfileMenu.tsx:387 +#: src/view/com/profile/ProfileMenu.tsx:369 +#: src/view/com/profile/ProfileMenu.tsx:389 msgid "Go live (disabled)" msgstr "" @@ -5365,7 +5545,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5377,7 +5557,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5389,11 +5569,11 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "" @@ -5401,11 +5581,11 @@ msgstr "" msgid "Go to the group chat named \"{chatName}\"" msgstr "Go to the group chat named \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Go to user’s profile" @@ -5413,11 +5593,18 @@ msgstr "Go to user’s profile" 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 "Grant access" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5433,69 +5620,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:297 -#: src/screens/Messages/JoinRequest.tsx:116 +#: src/components/dms/ChatInvite/Card.tsx:51 +#: src/components/intents/GroupChatJoinDialog.tsx:333 +#: src/screens/Messages/JoinRequest.tsx:125 msgid "Group chat" msgstr "Group chat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:522 +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Group chat invite link dialog" -#: src/screens/Messages/ConversationSettings/index.tsx:384 +#: src/screens/Messages/ConversationSettings/index.tsx:424 msgctxt "toast" msgid "Group chat locked" msgstr "Group chat locked" -#: src/screens/Messages/ConversationSettings/index.tsx:351 +#: src/screens/Messages/ConversationSettings/index.tsx:389 msgctxt "toast" msgid "Group chat muted" msgstr "Group chat muted" -#: src/screens/Messages/ConversationSettings/index.tsx:339 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat name updated" msgstr "Group chat name updated" -#: src/Navigation.tsx:490 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Group chat settings" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:386 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:427 msgctxt "toast" msgid "Group chat unlocked" msgstr "Group chat unlocked" -#: src/screens/Messages/ConversationSettings/index.tsx:353 +#: src/screens/Messages/ConversationSettings/index.tsx:392 msgctxt "toast" msgid "Group chat unmuted" msgstr "Group chat unmuted" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Group Chats" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Group chats are only available to users 18 and over." -#. placeholder {0}: import {useState} from 'react' import {View} from 'react-native' import { type ChatBskyGroupDefs, moderateProfile, type ModerationOpts, } from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useOpenComposer} from '#/lib/hooks/useOpenComposer' import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name' import {shareUrl} from '#/lib/sharing' import {useCreateJoinLink} from '#/state/queries/messages/create-join-link' import {useDisableJoinLink} from '#/state/queries/messages/disable-join-link' import {useEditJoinLink} from '#/state/queries/messages/edit-join-link' import {useEnableJoinLink} from '#/state/queries/messages/enable-join-link' import {atoms as a, useTheme, web} from '#/alf' import { Button, ButtonIcon, ButtonText, StackedButton, } from '#/components/Button' import * as Dialog from '#/components/Dialog' import { type ConvoWithDetails, type GroupConvoMember, } from '#/components/dms/util' import * as Toggle from '#/components/forms/Toggle' import {ArrowRight_Stroke2_Corner0_Rounded as ArrowRightIcon} from '#/components/icons/Arrow' import {ArrowShareRight_Stroke2_Corner2_Rounded as ArrowShareRightIcon} from '#/components/icons/ArrowShareRight' import {ChainLinkBroken_Stroke2_Corner0_Rounded as ChainLinkBrokenIcon} from '#/components/icons/ChainLink' import {EditBig_Stroke2_Corner2_Rounded as EditIcon} from '#/components/icons/EditBig' import {Loader} from '#/components/Loader' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' import {IS_WEB} from '#/env' import {CopyTextButton} from './CopyTextButton' import {EditTextButton} from './EditTextButton' enum Step { INFO, GENERATE, MANAGE, CONFIRM_DISABLE, } export function InviteLinkDialog({ convo, control, owner, isOwner, moderationOpts, }: { convo: Extract control: Dialog.DialogOuterProps['control'] owner: GroupConvoMember isOwner: boolean moderationOpts: ModerationOpts }) { const t = useTheme() const {t: l, i18n} = useLingui() const ownerName = createSanitizedDisplayName( owner, false, moderateProfile(owner, moderationOpts).ui('displayName'), ) const {joinLink} = convo.details const defaultStep = joinLink ? Step.MANAGE : Step.INFO const defaultWhoCanJoin = joinLink ? joinLinkToKey(joinLink) : 'anyone' const [step, setStep] = useState(defaultStep) const [whoCanJoin, setWhoCanJoin] = useState(defaultWhoCanJoin) // Resync local state when the server-side join link rules change (mutation // success, refetch, or change from another client). Keyed on the rule string // so identity-only refetches don't bump a user mid-edit. const joinLinkRuleKey = joinLink ? joinLinkToKey(joinLink) : null const [prevKey, setPrevKey] = useState(joinLinkRuleKey) if (joinLinkRuleKey !== prevKey) { setStep(joinLinkRuleKey ? Step.MANAGE : Step.INFO) setWhoCanJoin(joinLinkRuleKey ?? 'anyone') setPrevKey(joinLinkRuleKey) } const {openComposer} = useOpenComposer() const {mutate: createJoinLink, isPending: isCreating} = useCreateJoinLink( convo.view.id, { onSuccess: () => { setStep(Step.MANAGE) }, onError: () => { Toast.show(l`Failed to create invite link`, { type: 'error', }) }, }, ) const {mutate: editJoinLink, isPending: isEditing} = useEditJoinLink( convo.view.id, { onSuccess: () => { setStep(Step.MANAGE) }, onError: () => { Toast.show(l`Failed to edit invite link`, { type: 'error', }) }, }, ) const {mutate: disableJoinLink, isPending: isDisabling} = useDisableJoinLink( convo.view.id, { onError: () => { Toast.show(l`Failed to disable invite link`, { type: 'error', }) }, }, ) const {mutate: enableJoinLink, isPending: isEnabling} = useEnableJoinLink( convo.view.id, { onError: () => { Toast.show(l`Failed to enable invite link`, { type: 'error', }) }, }, ) const isSaving = isCreating || isEditing const whoCanJoinOptions = [ { name: 'anyone', owner: l`Anyone can join instantly`, member: l`Anyone can join instantly`, }, { name: 'anyone:requireApproval', owner: l`Anyone can request to join`, member: l`Anyone can request to join`, }, { name: 'followedByOwner', owner: l`People I follow can join instantly`, member: l`People ${ownerName} follows can join instantly`, }, { name: 'followedByOwner:requireApproval', owner: l`People I follow can request to join`, member: l`People ${ownerName} follows can request to join`, }, ] let content: React.ReactNode = null let header: string | null = null switch (step) { case Step.INFO: { header = l`Invite link` content = ( <> 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. Group chats can only have a maximum of{' '} {plural(convo.details.memberLimit, { one: '# person', other: '# people', })} . Your name, avatar, the name of the group chat, and the number of members will be visible to everyone. ) break } case Step.GENERATE: { const linkEnabled = joinLink?.enabledStatus === 'enabled' const linkHasChanged = linkEnabled && joinLinkRuleKey !== whoCanJoin header = linkEnabled ? l`Update invite link` : l`Generate invite link` content = ( <> Choose who can join this group chat and how. setWhoCanJoin(value)}> {whoCanJoinOptions.map(option => ( {({selected}) => ( )} ))} ) break } case Step.MANAGE: { const linkEnabled = joinLink?.enabledStatus === 'enabled' const linkDisabled = joinLink?.enabledStatus === 'disabled' const joinLinkURI = joinLink?.code ? `https://bsky.app/c/${joinLink.code}` : 'https://bsky.app/' const createdAt = joinLink ? new Date(joinLink.createdAt) : null const currentOption = whoCanJoinOptions.find( o => o.name === (joinLink ? joinLinkToKey(joinLink) : null), ) ?? whoCanJoinOptions[0] const ownerValue = currentOption?.owner ?? whoCanJoinOptions[0].owner const memberValue = currentOption?.member ?? whoCanJoinOptions[0].member header = linkEnabled ? l`Invite link` : l`Invite link disabled` content = ( <> {joinLinkURI} {createdAt ? ( Created{' '} {i18n.date(createdAt, { dateStyle: 'long', timeStyle: 'short', })} ) : null} {linkEnabled ? ( {isOwner ? ( setStep(Step.GENERATE)}> {ownerValue} ) : ( {memberValue} )} ) : null} {linkEnabled ? ( {isOwner ? ( setStep(Step.CONFIRM_DISABLE)}> Disable ) : null} { control.close(() => { openComposer({ text: joinLinkURI, logContext: 'Other', }) }) }}> Post link { void shareUrl(joinLinkURI) }}> Share ) : ( )} ) break } case Step.CONFIRM_DISABLE: { content = ( <> Disable this invite link? Anyone who has it will no longer be able to join or request to join. You can always create a new one. ) break } } if (!isOwner && (!joinLink || joinLink.enabledStatus === 'disabled')) { header = l`Invite link` content = ( <> There is no invite link for this group chat. ) } return ( { setStep(defaultStep) setWhoCanJoin(defaultWhoCanJoin) }}> {header} } label={l`Group chat invite link dialog`} style={web({maxWidth: 400})}> {content} ) } function joinLinkToKey(joinLink: ChatBskyGroupDefs.JoinLinkView): string { return `${joinLink.joinRule}${joinLink.requireApproval ? ':requireApproval' : ''}` } function keyToJoinLink( key: string, ): Pick { const [joinRule, requireApproval] = key.split(':') return { joinRule, requireApproval: requireApproval === 'requireApproval', } } -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Group chats can only have a maximum of {0}." -msgstr "Group chats can only have a maximum of {0}." +#. 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 "Group chats can only have a maximum of {0, plural, other {# people}}." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Group is locked" -#: src/components/dms/InitiateChatFlow.tsx:237 -#: src/components/dms/InitiateChatFlow.tsx:569 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:50 msgid "Group name" msgstr "Group name" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: 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 #.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "" @@ -5549,7 +5742,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:474 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5582,11 +5775,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5625,7 +5818,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5634,7 +5827,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5656,18 +5849,18 @@ msgstr "Hide group chat updates" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5680,19 +5873,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Hide translation" @@ -5709,7 +5902,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5723,6 +5916,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Hides the invite friends promo banner" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5759,15 +5956,11 @@ msgstr "" msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Hold your horses! This feature isn't available to you yet. Please check back later." - -#: src/Navigation.tsx:740 -#: src/Navigation.tsx:761 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:196 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5824,7 +6017,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:242 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5864,7 +6057,7 @@ msgstr "" msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -5888,33 +6081,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#. Ignore a request to join a chat -#: src/screens/Messages/JoinRequests.tsx:485 -msgctxt "button" -msgid "Ignore" -msgstr "Ignore" - -#: src/screens/Messages/JoinRequests.tsx:479 -msgid "Ignore join request" -msgstr "Ignore join request" - -#: src/components/images/ImageLayoutGridItem.tsx:93 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:443 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Image {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Image {0} of {imageCount}" @@ -5929,7 +6112,7 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:264 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Image gallery, {0} images" @@ -5943,13 +6126,13 @@ msgstr "Image is hidden due to your moderation settings." msgid "Image is unavailable." msgstr "Image is unavailable." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:261 -#: src/components/Lightbox/Lightbox.web.tsx:269 +#: 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 "Image options" -#: src/components/Lightbox/Lightbox.web.tsx:312 +#: 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" @@ -5969,8 +6152,8 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" @@ -5979,13 +6162,17 @@ msgstr "" msgid "Import Contacts" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Import contacts or invite your friends" + #: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -6021,12 +6208,12 @@ msgstr "In-app, push, everyone" msgid "In-app, push, people you follow" msgstr "In-app, push, people you follow" -#: src/screens/Messages/ChatList.tsx:362 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Inbox empty" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -6066,6 +6253,10 @@ msgstr "" msgid "Introducing finding friends via contacts" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Introducing group chats" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "" @@ -6075,7 +6266,7 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:126 +#: src/components/intents/GroupChatJoinDialog.tsx:157 msgid "Invalid group chat code." msgstr "Invalid group chat code." @@ -6083,7 +6274,7 @@ msgstr "Invalid group chat code." msgid "Invalid handle. Please try a different one." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -6097,7 +6288,8 @@ msgstr "" msgid "Invalid report subject" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:157 +#: src/components/intents/GroupChatJoinDialog.tsx:200 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 msgid "Invalid rescind request." msgstr "Invalid rescind request." @@ -6121,8 +6313,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:372 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Invite friends" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6130,21 +6329,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:309 -#: src/screens/Messages/components/InviteLinkDialog.tsx:315 -#: src/screens/Messages/components/InviteLinkDialog.tsx:482 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:148 -#: src/screens/Messages/ConversationSettings/index.tsx:490 +#: 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 "Invite link" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Invite link" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Invite link copied" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Invite link created" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:309 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Invite link disabled" @@ -6160,11 +6369,16 @@ msgstr "Invite link enabled" 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 "Invite your friends" + #: 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Invited" @@ -6194,7 +6408,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:2386 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "" @@ -6203,7 +6417,8 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:253 +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:296 msgid "Join" msgstr "Join" @@ -6214,12 +6429,13 @@ msgstr "Join" msgid "Join Bluesky" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:63 -#: src/components/intents/GroupChatJoinDialog.tsx:415 +#: src/components/intents/GroupChatJoinDialog.tsx:72 +#: src/components/intents/GroupChatJoinDialog.tsx:464 msgid "Join group chat" msgstr "Join group chat" -#: src/components/intents/GroupChatJoinDialog.tsx:146 +#: src/components/intents/GroupChatJoinDialog.tsx:189 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 msgid "Join request rescinded." msgstr "Join request rescinded." @@ -6228,16 +6444,12 @@ msgstr "Join request rescinded." msgid "Join the conversation" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:420 -msgid "Join this group chat" -msgstr "Join this group chat" - #: src/lib/interests.ts:63 msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1324 -#: src/view/com/composer/Composer.tsx:1334 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6246,6 +6458,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Kick member" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6280,7 +6497,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:217 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6338,7 +6555,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6389,31 +6606,33 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: 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:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" msgstr "Leave" #: src/components/dms/MessagesListBlockedFooter.tsx:109 #: src/components/dms/MessagesListBlockedFooter.tsx:116 -#: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/components/moderation/BlockDialog.tsx:384 +#: src/components/moderation/BlockDialog.tsx:391 +#: 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:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" @@ -6423,11 +6642,12 @@ msgctxt "button" msgid "Leave conversation" msgstr "Leave conversation" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:130 +#: src/screens/Messages/ConversationSettings/prompts.tsx:154 msgid "Leave group chat" msgstr "Leave group chat" -#: src/screens/Messages/ConversationSettings/index.tsx:525 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave this group chat" msgstr "Leave this group chat" @@ -6436,6 +6656,14 @@ msgstr "Leave this group chat" 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 "Leaving this chat will lock it permanently and you won’t be able to rejoin." + +#: src/components/moderation/BlockDialog.tsx:277 +msgid "Left group chat." +msgstr "Left group chat." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6464,7 +6692,7 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "" @@ -6483,7 +6711,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6491,8 +6719,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:295 -#: src/Navigation.tsx:300 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6510,7 +6738,7 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" @@ -6529,7 +6757,7 @@ msgstr "" msgid "Likes of your reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6538,11 +6766,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:296 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Link copied to clipboard" -#: src/Navigation.tsx:250 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6628,12 +6856,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:171 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6724,27 +6952,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:504 +#: src/screens/Messages/ConversationSettings/index.tsx:571 msgid "Lock" msgstr "Lock" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:107 msgid "Lock group chat" msgstr "Lock group chat" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:105 msgid "Lock group chat?" msgstr "Lock group chat?" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:569 msgid "Lock this group chat" msgstr "Lock this group chat" -#: src/screens/Messages/ConversationSettings/index.tsx:504 +#: src/screens/Messages/ConversationSettings/index.tsx:571 msgid "Locked" msgstr "Locked" -#: src/Navigation.tsx:320 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6761,7 +6989,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6816,22 +7044,38 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/view/shell/bottom-bar/BottomBar.tsx:459 +#: src/view/shell/bottom-bar/BottomBar.tsx:463 +msgid "Mark all chats as read" +msgstr "Mark all chats as read" + +#: src/view/shell/bottom-bar/BottomBar.tsx:467 +#: src/view/shell/bottom-bar/BottomBar.tsx:471 +msgid "Mark all requests as read" +msgstr "Mark all requests as read" + +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" +#: src/view/shell/bottom-bar/BottomBar.tsx:438 +msgid "Marked all chats as read" +msgstr "Marked all chats as read" + +#: src/view/shell/bottom-bar/BottomBar.tsx:447 +msgid "Marked all requests as read" +msgstr "Marked all requests as read" + #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 #: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" @@ -6855,12 +7099,16 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:303 +msgid "Member removed from group chat." +msgstr "Member removed from group chat." + #. The heading above the list of chat members. #: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Members" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:106 msgid "Members can still read chat history but can’t send new messages." msgstr "Members can still read chat history but can’t send new messages." @@ -6886,7 +7134,7 @@ msgstr "Message" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Message" @@ -6896,11 +7144,11 @@ msgstr "Message" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Message {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:325 +#: src/screens/Messages/components/ChatListItem.tsx:323 msgid "Message deleted" msgstr "" @@ -6909,13 +7157,13 @@ msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:522 +#: src/components/dms/MessageItem.tsx:531 msgid "Message failed to send." msgstr "Message failed to send." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:129 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6938,19 +7186,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:128 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:755 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:621 +#: src/components/dms/MessageItem.tsx:630 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:616 +#: src/components/dms/MessageItem.tsx:625 msgid "Messages from this person are hidden while you are blocking them." msgstr "Messages from this person are hidden while you are blocking them." @@ -6971,7 +7219,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:176 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -7015,7 +7263,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:181 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -7024,7 +7272,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:310 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -7049,8 +7297,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:258 +#: src/view/com/profile/ProfileMenu.tsx:265 msgid "More options" msgstr "" @@ -7070,7 +7318,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:466 +#: src/screens/Messages/ConversationSettings/index.tsx:536 msgid "Mute" msgstr "Mute" @@ -7086,10 +7334,10 @@ msgstr "" msgid "Mute {0}" msgstr "Mute {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 -#: src/view/com/profile/ProfileMenu.tsx:448 -#: src/view/com/profile/ProfileMenu.tsx:455 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 +#: src/view/com/profile/ProfileMenu.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:457 msgid "Mute account" msgstr "" @@ -7098,8 +7346,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -7115,7 +7363,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Mute this group chat" msgstr "Mute this group chat" @@ -7143,17 +7391,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:466 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Mute, leave, or remove people anytime. It’s your chat." + +#: src/screens/Messages/ConversationSettings/index.tsx:536 msgid "Muted" msgstr "Muted" @@ -7161,7 +7413,7 @@ msgstr "Muted" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:186 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7183,6 +7435,10 @@ msgstr "" 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 "Mutual group chats" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7225,7 +7481,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" @@ -7238,8 +7494,9 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 -#: src/view/com/profile/ProfileMenu.tsx:403 +#: src/view/com/profile/ProfileMenu.tsx:405 msgid "New" msgstr "" @@ -7249,38 +7506,38 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:165 -#: src/components/dms/dialogs/NewChatDialog.tsx:176 -#: src/screens/Messages/ChatList.tsx:166 -#: src/screens/Messages/ChatList.tsx:167 -#: src/screens/Messages/ChatList.tsx:380 -#: src/screens/Messages/ChatList.tsx:381 -#: src/screens/Messages/ChatList.tsx:509 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 msgid "New chat with {0}" msgstr "New chat with {0}" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 msgid "New chat with {0} and {1}" msgstr "New chat with {0} and {1}" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:73 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." @@ -7292,6 +7549,7 @@ msgstr "" #: 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 "" @@ -7301,19 +7559,20 @@ msgstr "" msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:236 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:744 -#: src/components/dms/InitiateChatFlow.tsx:778 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "New group chat" -#: src/components/dms/InitiateChatFlow.tsx:273 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "New group chat with:" @@ -7344,16 +7603,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7379,8 +7638,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:462 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7401,6 +7660,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Night" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7438,7 +7701,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7470,8 +7733,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7495,12 +7758,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:87 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "No one" -#: src/screens/Messages/Settings.tsx:69 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7516,7 +7779,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:73 msgid "No one can send messages" msgstr "No one can send messages" @@ -7552,8 +7815,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:347 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7563,8 +7826,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7626,8 +7889,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Not available on this platform" + #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7635,7 +7902,7 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "Not followed by anyone you’re following" -#: src/Navigation.tsx:166 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" @@ -7644,7 +7911,7 @@ msgstr "" 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:570 +#: src/view/com/profile/ProfileMenu.tsx:547 msgid "Note about sharing" msgstr "" @@ -7662,27 +7929,27 @@ msgid "Nothing saved yet" msgstr "" #: src/components/dialogs/NotificationSettingsDialog.tsx:64 -#: src/Navigation.tsx:437 -#: src/Navigation.tsx:516 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:232 -#: src/screens/Messages/Settings.tsx:245 +#: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:750 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 #: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:273 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" @@ -7723,10 +7990,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/InitiateChatFlow.tsx:677 -#: src/components/dms/MessageItem.tsx:628 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:637 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7749,35 +8016,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:113 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 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:96 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 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:787 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:784 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:415 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:438 +#: src/view/com/composer/SelectMediaButton.tsx:440 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:589 +#: src/view/com/composer/Composer.tsx:659 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:794 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7786,15 +8053,23 @@ msgstr "" msgid "Only {0} can reply." msgstr "" -#: src/screens/Messages/JoinRequests.tsx:196 +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 msgid "Only admins can accept join requests." msgstr "Only admins can accept join requests." -#: src/screens/Messages/JoinRequests.tsx:228 +#: src/screens/Messages/JoinRequests.tsx:233 msgid "Only admins can ignore join requests." msgstr "Only admins can ignore join requests." -#: src/components/intents/GroupChatJoinDialog.tsx:124 +#: src/components/intents/GroupChatJoinDialog.tsx:155 msgid "Only followers can join this group chat." msgstr "Only followers can join this group chat." @@ -7808,12 +8083,13 @@ msgstr "" msgid "Only image files are supported" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( data.joinLinkPreviews[0].owner, true, moderateProfile( data.joinLinkPreviews[0].owner, moderationOpts, ).ui('displayName'), ) -#: src/screens/Messages/JoinRequest.tsx:207 +#. 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 "Only people {0} follows can join." -#: src/components/intents/GroupChatJoinDialog.tsx:268 +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:306 msgid "Only people the chat owner follows can join" msgstr "Only people the chat owner follows can join" @@ -7825,6 +8101,10 @@ msgstr "" msgid "Oops, something went wrong!" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7834,7 +8114,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7842,12 +8122,17 @@ msgstr "" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Open chat" +msgstr "Open chat" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Open chat member options for {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:486 -#: src/screens/Messages/components/ChatListItem.tsx:490 +#: src/screens/Messages/components/ChatListItem.tsx:491 +#: src/screens/Messages/components/ChatListItem.tsx:495 msgid "Open conversation options" msgstr "" @@ -7861,16 +8146,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2026 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7882,21 +8167,26 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:399 +#: src/components/intents/GroupChatJoinDialog.tsx:446 msgid "Open group chat" msgstr "Open group chat" -#: src/components/dms/MessagesListHeader.tsx:181 -#: src/components/dms/MessagesListHeader.tsx:220 +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Open group chat settings" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Open in Google Translate" + +#: 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:43 +#: src/components/dms/ActionsWrapper.tsx:42 msgid "Open message options" msgstr "" @@ -7921,6 +8211,10 @@ msgstr "" msgid "Open profile" msgstr "" +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "Open QR code scanner" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7943,7 +8237,7 @@ msgstr "" msgid "Open system log" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:400 +#: src/components/intents/GroupChatJoinDialog.tsx:447 msgid "Open this group chat" msgstr "Open this group chat" @@ -7960,6 +8254,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "Opens a list of color themes for the QR card" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "" @@ -7968,7 +8266,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7988,24 +8286,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:509 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "" +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." -#: src/screens/Messages/JoinRequest.tsx:295 +#: src/screens/Messages/JoinRequest.tsx:305 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" -#: src/screens/Messages/JoinRequest.tsx:281 +#: src/screens/Messages/JoinRequest.tsx:291 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:444 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Opens full image" @@ -8022,7 +8320,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:600 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -8034,15 +8332,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Opens profile" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "Opens the find and invite friends settings" + #. 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 "Opens the GIF picker dialog" +#: src/view/shell/Drawer.tsx:123 +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 msgid "Opens the post composer" msgstr "" @@ -8051,9 +8357,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:618 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -8142,8 +8447,12 @@ msgstr "" msgid "Owner" msgstr "Owner" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Owner must lock the group before leaving." + +#: 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" @@ -8197,21 +8506,21 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "People {ownerName} follows can join instantly" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "People {ownerName} follows can request to join" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:237 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:230 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" @@ -8220,11 +8529,21 @@ msgstr "" msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/Settings.tsx:84 +msgctxt "allow group chat invites from" +msgid "People I follow" +msgstr "People I follow" + +#: src/screens/Messages/Settings.tsx:69 +msgctxt "allow messages from" +msgid "People I follow" +msgstr "People I follow" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "People I follow can join instantly" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "People I follow can request to join" @@ -8265,13 +8584,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Pick a color theme" + #: 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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8281,12 +8604,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8295,8 +8618,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8487,7 +8810,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "" @@ -8512,7 +8839,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1675 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "" @@ -8532,12 +8859,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1673 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1333 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Post anyway" @@ -8546,19 +8873,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:263 -#: src/Navigation.tsx:270 -#: src/Navigation.tsx:277 -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:264 +#: src/Navigation.tsx:271 +#: src/Navigation.tsx:278 +#: src/Navigation.tsx:285 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:186 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8583,18 +8910,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:197 +#: src/Navigation.tsx:198 #: 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 "Post it to Bluesky or share anywhere." + #. 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:371 -#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Post link" @@ -8649,10 +8980,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 -#: src/screens/Messages/JoinRequests.tsx:350 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8684,8 +9015,8 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:414 -#: src/Navigation.tsx:422 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" @@ -8697,12 +9028,12 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:36 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:103 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8710,15 +9041,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2460 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2462 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:60 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8726,10 +9057,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8737,6 +9068,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "Profile banner placeholder" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8759,22 +9091,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:1659 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1654 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1643 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1648 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" @@ -8794,15 +9126,16 @@ msgstr "Push, everyone" msgid "Push, people you follow" msgstr "Push, people you follow" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "" @@ -8814,11 +9147,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8836,7 +9169,7 @@ msgstr "" msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8848,16 +9181,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:401 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Re-enable invite link" -#: src/screens/Messages/components/InviteLinkDialog.tsx:408 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Re-enable link" @@ -8865,8 +9198,8 @@ msgstr "Re-enable link" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:66 -#: src/components/dms/ReactionsDialog.tsx:94 +#: src/components/dms/ReactionsDialog.tsx:70 +#: src/components/dms/ReactionsDialog.tsx:98 msgid "Reactions" msgstr "Reactions" @@ -8961,17 +9294,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Refresh the page to see it." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Reject" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:349 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Reject join request" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8983,6 +9330,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: 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:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8998,10 +9347,15 @@ msgstr "Remove {displayName} from group chat" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Remove {displayName} from this group chat" +#: src/screens/Messages/ConversationSettings/prompts.tsx:176 +msgid "Remove {displayName}?" +msgstr "Remove {displayName}?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -9011,22 +9365,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:520 #: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:190 #: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -9034,8 +9388,9 @@ msgstr "" msgid "Remove caption file" msgstr "Remove caption file" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -9049,12 +9404,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Remove from chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -9079,7 +9434,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -9102,7 +9457,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9120,8 +9475,8 @@ msgstr "" #: src/components/verification/VerificationRemovePrompt.tsx:48 #: src/components/verification/VerificationsDialog.tsx:250 -#: src/view/com/profile/ProfileMenu.tsx:421 -#: src/view/com/profile/ProfileMenu.tsx:424 +#: src/view/com/profile/ProfileMenu.tsx:423 +#: src/view/com/profile/ProfileMenu.tsx:426 msgid "Remove verification" msgstr "" @@ -9129,11 +9484,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -9155,7 +9510,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9223,7 +9578,7 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1671 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "" @@ -9252,30 +9607,30 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:176 +#: src/components/dms/MessageContextMenu.tsx:189 #: src/features/liveNow/components/LiveStatusDialog.tsx:267 -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:583 msgid "Report" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:488 -#: src/view/com/profile/ProfileMenu.tsx:491 +#: src/view/com/profile/ProfileMenu.tsx:490 +#: src/view/com/profile/ProfileMenu.tsx:493 msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "" @@ -9284,8 +9639,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9294,12 +9649,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:173 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9328,7 +9683,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:516 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report this group chat" msgstr "Report this group chat" @@ -9398,7 +9753,7 @@ msgstr "" msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" @@ -9408,15 +9763,11 @@ msgstr "" msgid "Reposts of your reposts" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:414 +#: src/components/intents/GroupChatJoinDialog.tsx:463 msgid "Request access to group chat" msgstr "Request access to group chat" -#: src/components/intents/GroupChatJoinDialog.tsx:419 -msgid "Request access to join this group chat" -msgstr "Request access to join this group chat" - -#: src/screens/Messages/JoinRequests.tsx:178 +#: src/screens/Messages/JoinRequests.tsx:182 msgid "Request approved." msgstr "Request approved." @@ -9425,22 +9776,27 @@ msgstr "Request approved." msgid "Request code" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:210 +#: src/screens/Messages/JoinRequests.tsx:215 msgid "Request ignored." msgstr "Request ignored." -#: src/components/intents/GroupChatJoinDialog.tsx:252 +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:295 msgid "Request to join" msgstr "Request to join" +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Requested" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Requests" -#: src/Navigation.tsx:495 -#: src/screens/Messages/JoinRequests.tsx:58 -#: src/screens/Messages/JoinRequests.tsx:421 +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 msgid "Requests to join" msgstr "Requests to join" @@ -9461,10 +9817,16 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:272 +#: src/components/intents/GroupChatJoinDialog.tsx:310 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:115 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:117 msgid "Rescind request" msgstr "Rescind request" +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Rescind request to join group chat" + #: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "" @@ -9510,8 +9872,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9528,7 +9890,7 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: 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 @@ -9536,10 +9898,10 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:377 #: src/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:354 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 -#: src/screens/Messages/JoinRequests.tsx:356 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9558,7 +9920,7 @@ msgstr "" msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" @@ -9589,10 +9951,10 @@ msgstr "Sad GIFs" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: 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 @@ -9617,28 +9979,28 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1314 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1286 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1314 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1288 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 -#: src/components/MediaPreview.tsx:197 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: src/components/MediaPreview.tsx:231 #: src/components/Post/Embed/ImageContextMenu.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:144 #: src/components/StarterPack/ShareDialog.tsx:150 @@ -9649,7 +10011,7 @@ msgstr "" msgid "Save new handle" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "" @@ -9658,13 +10020,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9675,24 +10037,24 @@ msgid "Saved Feeds" msgstr "" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:157 -#: src/screens/Messages/ChatList.tsx:371 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Say hi to someone" @@ -9700,6 +10062,16 @@ msgstr "Say hi to someone" msgid "Scam" msgstr "" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Scan" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Scan QR code" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9716,18 +10088,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:216 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9802,12 +10174,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:308 +#: src/view/com/profile/ProfileMenu.tsx:311 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9817,7 +10189,7 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" @@ -9968,7 +10340,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:669 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Select group chat members" @@ -10048,7 +10420,7 @@ msgstr "" msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:418 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -10075,11 +10447,11 @@ msgstr "" msgid "Send error report" msgstr "Send error report" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -10114,7 +10486,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:137 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Sent at {0}" @@ -10155,10 +10527,10 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:212 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" @@ -10219,18 +10591,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" -#: src/components/MediaPreview.tsx:203 +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 #: src/components/Post/Embed/ImageContextMenu.tsx:74 -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/StarterPack/QrCodeDialog.tsx:198 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:387 -#: src/screens/Messages/components/InviteLinkDialog.tsx:394 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:550 msgid "Share anyway" msgstr "" @@ -10239,16 +10612,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:277 -#: src/components/Lightbox/Lightbox.web.tsx:303 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Share image" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Share invite link" + #: 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 "" @@ -10256,6 +10634,11 @@ msgstr "" msgid "Share link dialog" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Share my profile" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10266,7 +10649,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10284,8 +10667,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:287 +#: src/view/com/profile/ProfileMenu.tsx:299 msgid "Share via..." msgstr "" @@ -10293,7 +10676,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10339,8 +10722,8 @@ msgstr "" msgid "Show group chat updates" msgstr "Show group chat updates" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10361,8 +10744,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10388,8 +10771,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10416,7 +10799,7 @@ msgstr "" msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10439,17 +10822,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 -#: src/screens/Messages/JoinRequest.tsx:280 -#: src/screens/Messages/JoinRequest.tsx:286 +#: src/screens/Messages/JoinRequest.tsx:290 +#: src/screens/Messages/JoinRequest.tsx:296 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:354 +#: src/view/shell/bottom-bar/BottomBar.tsx:358 #: 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" @@ -10473,7 +10856,7 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" -#: src/screens/Messages/JoinRequest.tsx:205 +#: src/screens/Messages/JoinRequest.tsx:216 msgid "Sign in to accept invite." msgstr "Sign in to accept invite." @@ -10485,12 +10868,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/screens/Messages/JoinRequest.tsx:204 +#: src/screens/Messages/JoinRequest.tsx:215 msgid "Sign in to request access to this group chat." msgstr "Sign in to request access to this group chat." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "" @@ -10500,9 +10883,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10511,7 +10894,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10543,7 +10926,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1331 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Skip empty posts?" @@ -10557,7 +10940,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "slide" @@ -10614,12 +10997,12 @@ msgid "Someone left the group" msgstr "Someone left the group" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:270 +#: src/components/dms/MessageItem.tsx:278 msgid "Someone reacted {0}" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/getReactionInfo.ts:47 +#: src/components/dms/getReactionInfo.ts:67 msgid "Someone reacted {0} to {target}" msgstr "Someone reacted {0} to {target}" @@ -10639,13 +11022,17 @@ msgstr "Someone was removed" msgid "Someone was removed from the group" msgstr "Someone was removed from the group" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Something new is here" + #: 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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 -#: src/screens/Messages/JoinRequests.tsx:87 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "" @@ -10674,7 +11061,7 @@ msgstr "" msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10717,11 +11104,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:182 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Start a group chat" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "" @@ -10735,17 +11127,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:670 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Start chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:818 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10807,7 +11199,7 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" @@ -10848,13 +11240,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:435 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:447 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:476 msgid "Subscribe on {0}" msgstr "Subscribe on {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:434 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:475 msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscribe to {publicationTitle} on {0}" @@ -10889,7 +11281,7 @@ msgstr "" msgid "Success!" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:100 +#: src/components/intents/GroupChatJoinDialog.tsx:131 msgid "Successfully joined the group chat!" msgstr "Successfully joined the group chat!" @@ -10897,8 +11289,8 @@ msgstr "Successfully joined the group chat!" msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:326 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Suggested" @@ -10927,7 +11319,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10937,11 +11329,11 @@ msgstr "" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "Suspended accounts cannot participate in a group chat." -#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "Suspended accounts cannot participate in chat." @@ -10950,7 +11342,7 @@ msgstr "Suspended accounts cannot participate in chat." #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10959,7 +11351,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10981,11 +11373,15 @@ msgstr "" msgid "Tags only" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Take the conversation private." + #: 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:567 +#: src/components/dms/MessageItem.tsx:576 msgid "Tap for details" msgstr "Tap for details" @@ -11011,33 +11407,51 @@ msgstr "" msgid "Tap to close context menu" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Tap to copy this invite link" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:196 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:469 +msgid "Tap to join this group chat immediately" +msgstr "Tap to join this group chat immediately" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Tap to open this group chat" + +#: src/components/dms/ReactionsDialog.tsx:200 msgid "Tap to remove" msgstr "Tap to remove" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:212 +#: src/components/dms/ReactionsDialog.tsx:216 msgid "Tap to remove your {0} reaction" msgstr "Tap to remove your {0} reaction" -#: src/components/dms/MessageItem.tsx:532 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:468 +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:541 msgid "Tap to retry" msgstr "Tap to retry" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:358 +#: src/components/dms/ReactionsDialog.tsx:362 msgid "Tap to show {0} reactions" msgstr "Tap to show {0} reactions" -#: src/components/dms/ReactionsDialog.tsx:357 +#: src/components/dms/ReactionsDialog.tsx:361 msgid "Tap to show all reactions" msgstr "Tap to show all reactions" -#: src/components/dms/MessageItem.tsx:293 +#: src/components/dms/MessageItem.tsx:304 msgid "Tap to view reactions" msgstr "Tap to view reactions" @@ -11081,12 +11495,12 @@ 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:335 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -11138,9 +11552,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:442 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -11206,8 +11620,8 @@ msgstr "" 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:134 -#: src/screens/Messages/JoinRequests.tsx:201 +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/JoinRequests.tsx:205 msgid "The member limit has been reached." msgstr "The member limit has been reached." @@ -11263,7 +11677,7 @@ msgstr "" 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:487 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "There is no invite link for this group chat." @@ -11277,12 +11691,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "There was a problem loading GIFs. Check your connection and try again." #: src/components/contacts/screens/GetContacts.tsx:147 -#: src/components/intents/GroupChatJoinDialog.tsx:118 -#: src/components/intents/GroupChatJoinDialog.tsx:152 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11290,7 +11705,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11300,7 +11715,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11325,31 +11740,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 -#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:151 #: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:181 +#: src/view/com/profile/ProfileMenu.tsx:194 +#: src/view/com/profile/ProfileMenu.tsx:210 +#: src/view/com/profile/ProfileMenu.tsx:225 msgid "There was an issue! {0}" msgstr "" @@ -11385,6 +11800,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "They own this chat" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:177 +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 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11431,19 +11854,25 @@ msgstr "" 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:49 +#: src/screens/Messages/components/ChatEnded.tsx:48 msgid "This chat has ended" msgstr "This chat has ended" -#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:301 msgid "This chat is full" msgstr "This chat is full" -#: src/screens/Messages/components/ChatListItem.tsx:375 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/screens/Messages/components/ChatListItem.tsx:377 +#: src/screens/Messages/components/ChatLocked.tsx:69 msgid "This chat is locked" msgstr "This chat is locked" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:437 +msgid "This chat is locked by a moderation action" +msgstr "This chat is locked by a moderation action" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11478,11 +11907,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:120 +#: src/components/intents/GroupChatJoinDialog.tsx:151 msgid "This conversation is locked." msgstr "This conversation is locked." -#: src/screens/Messages/components/ChatListItem.tsx:155 +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "" @@ -11528,11 +11957,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:72 +msgid "This group is locked by a moderation action on the owner" +msgstr "This group is locked by a moderation action on the owner" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 msgid "This handle is reserved. Please try a different one." msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11540,15 +11973,11 @@ msgstr "This image could not be used. Try a different format like .jpg or .png." msgid "This information is private and not shared with other users." msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:130 +#: src/components/intents/GroupChatJoinDialog.tsx:161 msgid "This invite link has been disabled." msgstr "This invite link has been disabled." -#: src/screens/Messages/JoinRequest.tsx:83 -msgid "This invite link has expired" -msgstr "This invite link has expired" - -#: src/components/intents/GroupChatJoinDialog.tsx:194 +#: src/components/intents/GroupChatJoinDialog.tsx:236 msgid "This invite link is invalid" msgstr "This invite link is invalid" @@ -11594,13 +12023,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:565 -#: src/components/dms/MessageItem.tsx:594 +#: src/screens/Messages/components/ChatListItem.tsx:336 +msgid "This message is hidden" +msgstr "This message is hidden" + +#: src/components/dms/MessageItem.tsx:574 +#: src/components/dms/MessageItem.tsx:603 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:564 -#: src/components/dms/MessageItem.tsx:590 +#: src/components/dms/MessageItem.tsx:573 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because you are blocking this user." msgstr "This message is hidden because you are blocking this user." @@ -11618,7 +12051,7 @@ msgstr "This person is blocking you" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11634,23 +12067,23 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:945 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:548 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 #: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "This screen is only available for group conversations." @@ -11675,11 +12108,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:60 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "This user has blocked you and cannot be messaged." @@ -11688,7 +12121,7 @@ msgstr "This user has blocked you and cannot be messaged." msgid "This user has blocked you. You cannot view their content." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:64 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "This user has disabled chat and cannot be messaged." @@ -11736,7 +12169,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11759,7 +12192,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:368 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11831,16 +12264,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:479 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 -#: src/components/dms/MessageContextMenu.tsx:148 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11852,8 +12285,8 @@ msgstr "Translated" msgid "Translating" msgstr "Translating" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Translating…" @@ -11896,16 +12329,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Try a different search term, or <0>read about how to use search filters." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Try again" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Try again in a moment." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Try Google Translate" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Try it" + #: src/lib/interests.ts:74 msgid "TV" msgstr "" @@ -11948,15 +12395,15 @@ msgstr "" msgid "Unable to delete" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:346 +#: src/screens/Messages/JoinRequests.tsx:351 msgid "Unable to fetch join requests." msgstr "Unable to fetch join requests." -#: src/components/dms/dialogs/NewChatDialog.tsx:109 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "Unable to find a selected recipient." -#: src/components/dms/dialogs/NewChatDialog.tsx:73 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "Unable to find the selected recipient." @@ -11980,38 +12427,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:632 +#: src/components/dms/MessageItem.tsx:641 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:447 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Unblock {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/view/com/profile/ProfileMenu.tsx:468 -#: src/view/com/profile/ProfileMenu.tsx:474 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:476 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Unblock account?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:440 msgid "Unblock Account?" msgstr "" @@ -12048,12 +12500,12 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:416 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 -#: src/view/com/profile/ProfileMenu.tsx:334 +#: src/view/com/profile/ProfileMenu.tsx:327 +#: src/view/com/profile/ProfileMenu.tsx:336 msgid "Unfollow account" msgstr "" @@ -12073,14 +12525,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Uninvite" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Uninvite {displayName} from this group chat" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -12093,7 +12537,7 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "" @@ -12103,11 +12547,11 @@ msgstr "" msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:91 msgid "Unlock chat" msgstr "Unlock chat" -#: src/screens/Messages/ConversationSettings/index.tsx:501 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Unlock this group chat" msgstr "Unlock this group chat" @@ -12128,14 +12572,14 @@ msgstr "" msgid "Unmute {0}" msgstr "Unmute {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 -#: src/view/com/profile/ProfileMenu.tsx:447 -#: src/view/com/profile/ProfileMenu.tsx:453 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 +#: src/view/com/profile/ProfileMenu.tsx:449 +#: src/view/com/profile/ProfileMenu.tsx:455 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -12144,12 +12588,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:463 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Unmute this group chat" msgstr "Unmute this group chat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -12163,19 +12607,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -12185,7 +12629,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -12219,14 +12663,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Unsupported clipboard content" -#: src/view/com/composer/Composer.tsx:1424 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Up to 50 people" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12236,6 +12684,10 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Update app" + #: src/components/dialogs/EmailDialog/screens/Update.tsx:296 #: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 @@ -12243,9 +12695,9 @@ msgstr "" msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:217 -#: src/screens/Messages/components/InviteLinkDialog.tsx:255 -#: src/screens/Messages/components/InviteLinkDialog.tsx:283 +#: 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 "Update invite link" @@ -12254,9 +12706,13 @@ msgstr "Update invite link" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Update your app" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Update your app to see it." #: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" @@ -12269,17 +12725,17 @@ msgstr "" msgid "Update your location" msgstr "Update your location" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12287,39 +12743,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:491 #: src/view/com/util/UserAvatar.tsx:494 -#: src/view/com/util/UserBanner.tsx:161 +#: 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:508 -#: src/view/com/util/UserBanner.tsx:178 +#: 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:502 -#: src/view/com/util/UserAvatar.tsx:506 -#: src/view/com/util/UserBanner.tsx:172 -#: src/view/com/util/UserBanner.tsx:176 +#: 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:2453 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:322 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:390 -#: src/lib/api/index.ts:414 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2455 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "" @@ -12400,7 +12857,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12444,16 +12901,6 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:80 -msgctxt "allow group chat invites from" -msgid "Users I follow" -msgstr "Users I follow" - -#: src/screens/Messages/Settings.tsx:65 -msgctxt "allow messages from" -msgid "Users I follow" -msgstr "Users I follow" - #: src/screens/Settings/components/ChangeHandleDialog.tsx:451 msgid "Value:" msgstr "" @@ -12466,7 +12913,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12481,8 +12928,8 @@ msgstr "" #: src/components/verification/VerificationCreatePrompt.tsx:85 #: src/components/verification/VerificationCreatePrompt.tsx:87 -#: src/view/com/profile/ProfileMenu.tsx:431 -#: src/view/com/profile/ProfileMenu.tsx:434 +#: src/view/com/profile/ProfileMenu.tsx:433 +#: src/view/com/profile/ProfileMenu.tsx:436 msgid "Verify account" msgstr "" @@ -12573,7 +13020,7 @@ msgstr "" msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12608,7 +13055,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "" @@ -12621,18 +13068,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:432 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1037 +#: src/view/com/composer/Composer.tsx:1150 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:320 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:589 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:340 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:670 msgid "View {0}" msgstr "View {0}" @@ -12644,10 +13091,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12656,20 +13103,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "View {0}’s profile" -#: src/components/dms/MessagesListHeader.tsx:123 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "View {displayName}’s profile" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:437 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:478 msgid "View {publicationTitle}" msgstr "View {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:83 -msgid "View @{0}'s profile" -msgstr "View @{0}'s profile" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12696,6 +13138,14 @@ msgstr "" msgid "View incoming group chat requests" msgstr "View incoming group chat requests" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "View incoming requests" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "View incoming requests to join this group chat" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "" @@ -12711,7 +13161,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1032 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12728,10 +13178,10 @@ msgstr "" msgid "View profile banner" msgstr "View profile banner" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:320 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:427 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:438 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:589 +#: 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 "View publication" @@ -12739,7 +13189,7 @@ msgstr "View publication" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:555 msgid "View the invite link for this group chat" msgstr "View the invite link for this group chat" @@ -12752,7 +13202,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12854,15 +13304,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/JoinRequests.tsx:88 +#: src/screens/Messages/JoinRequests.tsx:89 msgid "We couldn’t load this conversation’s join requests" msgstr "We couldn’t load this conversation’s join requests" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "We couldn’t load this conversation’s settings" @@ -12937,7 +13387,7 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" @@ -12972,8 +13422,8 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:262 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "We’re having network issues, try again" @@ -13007,11 +13457,11 @@ 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:943 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 +#: 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 "" @@ -13058,7 +13508,7 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1384 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" @@ -13071,7 +13521,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:227 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Who can join this group chat and how" @@ -13085,8 +13535,8 @@ msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -13144,7 +13594,7 @@ msgstr "Would you like to block this user and/or leave this conversation?" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1302 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -13153,12 +13603,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1484 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1382 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "" @@ -13171,7 +13621,7 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 #: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Wrong kind of conversation" @@ -13199,11 +13649,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -13224,7 +13674,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:605 +#: src/components/dms/MessageItem.tsx:614 msgid "You are blocking {0}" msgstr "You are blocking {0}" @@ -13311,8 +13761,8 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:148 -#: src/screens/Messages/Settings.tsx:194 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" @@ -13320,12 +13770,21 @@ msgstr "" 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 "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." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1307 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13333,11 +13792,11 @@ msgstr "" 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:435 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:429 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13349,10 +13808,10 @@ msgstr "" msgid "You can read chat history but can’t send new messages." msgstr "You can read chat history but can’t send new messages." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:421 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "" +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13360,7 +13819,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:101 +#: src/components/dms/ActionsWrapper.web.tsx:77 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "You cannot create a group chat yet." @@ -13391,9 +13855,9 @@ msgstr "" msgid "You got here first" msgstr "" -#: src/components/intents/GroupChatJoinDialog.tsx:136 -msgid "You have been removed from this group." -msgstr "You have been removed from this group." +#: src/components/intents/GroupChatJoinDialog.tsx:176 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "You have been previously removed from this group and can’t join it using this link." #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 @@ -13464,7 +13928,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1297 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13522,6 +13986,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:321 +msgid "You must be a chat owner to remove a member." +msgstr "You must be a chat owner to remove a member." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13530,11 +13998,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:464 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13542,6 +14011,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "You own this chat" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13552,12 +14025,12 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:263 +#: src/components/dms/MessageItem.tsx:271 msgid "You reacted {0}" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/getReactionInfo.ts:43 +#: src/components/dms/getReactionInfo.ts:63 msgid "You reacted {0} to {target}" msgstr "You reacted {0} to {target}" @@ -13566,8 +14039,13 @@ msgstr "You reacted {0} to {target}" msgid "You recently changed your birthdate" 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 "You requested to join" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13576,11 +14054,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13588,12 +14066,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:129 msgid "You won’t be able to rejoin unless you’re invited." msgstr "You won’t be able to rejoin unless you’re invited." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:82 msgid "You: {message}" msgstr "You: {message}" @@ -13627,6 +14105,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "You’re in control" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "" @@ -13661,7 +14143,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:576 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13701,11 +14183,11 @@ msgstr "" msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:675 +#: src/components/dms/InitiateChatFlow.tsx:731 msgid "Your account is too new" msgstr "Your account is too new" -#: src/components/dms/InitiateChatFlow.tsx:676 +#: src/components/dms/InitiateChatFlow.tsx:732 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." @@ -13733,11 +14215,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13788,7 +14270,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:451 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13817,7 +14299,7 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:189 +#: 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 "Your name, avatar, the name of the group chat, and the number of members will be visible to everyone." @@ -13829,11 +14311,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1028 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1025 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13854,7 +14336,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:1027 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" @@ -13867,7 +14349,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1469 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 cc980fc97a..6ec8715b66 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Esperanto\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorio \"{interestsDisplayName}\" (aktiva)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(enhavas enkorpigitan enhavon)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# ŝato} other {# ŝatoj}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# ano} other {# anoj}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuto} other {# minutoj}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# monato} other {# monatoj}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# homo} other {# homoj}} reagis – {1}" @@ -109,17 +118,17 @@ msgstr "{0, plural, one {# sekundo} other {# sekundoj}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" -msgstr "" +msgstr "{0, plural, one {#m} other {#m}}" #. How many months have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -190,15 +199,15 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>teksto kaj kradvortoj" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" -msgstr "" +msgstr "{0} aligita al babilejo" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" -msgstr "" +msgstr "{0} kaj {1} aligitaj al babilejo" #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 @@ -206,9 +215,9 @@ msgid "{0} following" msgstr "{0} sekvataj" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" -msgstr "" +msgstr "{0} blokas vin" #. placeholder {0}: sanitizeHandle(profile.handle) #: src/features/liveNow/components/LiveStatusDialog.tsx:84 @@ -228,12 +237,12 @@ msgstr "{0} ne estas subtenata de via aparato." #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:83 msgid "{0} joined" -msgstr "" +msgstr "{0} aniĝis" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:84 msgid "{0} joined the group" -msgstr "" +msgstr "{0} aniĝis la grupon" #. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) #: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 @@ -243,12 +252,12 @@ msgstr "{0} aliĝis ĉi-semajne" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:96 msgid "{0} left" -msgstr "" +msgstr "{0} foriris" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:97 msgid "{0} left the group" -msgstr "" +msgstr "{0} foriris el la grupo" #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) @@ -264,7 +273,7 @@ msgstr "{0} el 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reagis per {1}" @@ -276,23 +285,23 @@ msgstr "" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:58 msgid "{0} was added to the group" -msgstr "" +msgstr "{0} estis aligita al la grupo" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:70 msgid "{0} was removed" -msgstr "" +msgstr "{0} estis forigita" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:71 msgid "{0} was removed from the group" -msgstr "" +msgstr "{0} estis forigita el la grupo" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" -msgstr "" +msgstr "{0}, {1} kaj {memberCount, plural, one {# alia} other {# aliaj}} aligitaj al babilejo" #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') @@ -309,15 +318,40 @@ msgstr "{0}, listo de {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Profilbildo de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Profilbildo de {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,27 +377,52 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: 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 "{count, plural, one {# babileja aktualigo} other {# babilejaj aktualigoj}}" + +#: 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:33 +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" -msgstr "" +msgstr "{count, plural, one {# peto} other {# petoj}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}" -#. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 -msgid "{count}+" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:56 +msgid "{count}+" +msgstr "{count}+" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" -msgstr "" +msgstr "{count}+ petoj" #: src/components/dms/DateDivider.tsx:60 msgid "{date} at {time}" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {horo} other {horoj}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutoj}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} forigis iliajn konfirmojn el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} konfirmis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} eksekvis vin reciproke" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} forigis ties konfirmon el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} konfirmis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} forigis iliajn konfirmojn el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} konfirmis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} eksekvis vin" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} eksekvis vin reciproke" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ŝatas vian propran fluon" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ŝatas vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} ŝatas vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} forigis ties konfirmon el via konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} reafiŝis vian afiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} reafiŝis vian reafiŝon" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registriĝis kun via startpako" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} konfirmis vin" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} konfirmis vin" msgid "{following} following" msgstr "{following} sekvataj" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} nemesaĝeblas" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} nemesaĝeblas" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# horo {minutesString}} other {# horoj {minutesStri msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# horo} other {# horoj}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "{MAX_DESCRIPTION, plural, other {Priskribo estas tro longa. La maksimuma msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Montrata nomo estas tro longa. La maksimuma nombro da signoj estas #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, one {Vi povas kaŝi maksimume # respondon.} other {Vi povas kaŝi maksimume # respondojn.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} reagis per {0} al {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Plej ŝatataj fluoj kaj homoj de {name} - aliĝu al mi!" msgid "{name}'s starter pack" msgstr "Startpako de {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# nelegita elemento} other {# nelegitaj elementoj}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakto trovita} other {# kontaktoj trovitaj}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# peto} other {# petoj}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ petoj" @@ -656,6 +725,12 @@ msgstr "{userName} estas konfirmita" msgid "{userName}'s verifications" msgstr "Konfirmoj de {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, kaj {2, plural, one {# alia} other {# aliaj}} es #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {sekvanto} other {sekvantoj}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {sekvata} other {sekvataj}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {ŝato} other {ŝatoj}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaĵo} other {citaĵoj}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {reafiŝo} other {reafiŝoj}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {konservo} other {konservoj}}" @@ -736,9 +811,9 @@ msgid "<0>{0} members" msgstr "<0>{0} anoj" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" -msgstr "" +msgstr "<0>{displayName}<1/><2> aligis vin" #: src/screens/Hashtag.tsx:226 #: src/screens/Search/SearchResults.tsx:315 @@ -747,7 +822,7 @@ msgstr "<0>Ensalutu<1> aŭ <2>kreu konton<3> <4>por serĉi pri n #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 msgid "<0>Tap here to update your location with GPS." -msgstr "" +msgstr "<0>Tuŝeti ĉi tie por aktualigi vian lokon per GPS." #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #: src/screens/StarterPack/Wizard/index.tsx:494 @@ -795,8 +870,13 @@ msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton." @@ -804,7 +884,7 @@ msgstr "Reta eraro okazis. Bonvolu kontroli vian interretan konekton." msgid "A new code has been sent" msgstr "Nova kodo estis sendita" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Nova konfirmada metodo" @@ -827,11 +907,11 @@ msgstr "Ekrankopio montranta paĝon kun sonorila piktogramo apud la sekvi-butono 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Akcepti" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Akcepti" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Akcepti babilpeton" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Akcepti peton" @@ -860,17 +950,26 @@ msgstr "Akcepti peton" msgid "Accept this language suggestion" msgstr "Akcepti tiun sugeston de lingvo" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Alirebleco" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Alireblecaj agordoj" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Alireblecaj agordoj" msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Konto blokita" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Konto eksekvita" @@ -899,7 +998,7 @@ msgstr "Konto estis suspendita" msgid "Account is deactivated" msgstr "Konto estas malaktivigita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Konta provizanto" msgid "Account removed from quick access" msgstr "Konto forigita el la rapidatingo" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Konto malblokita" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Konto ne plu sekvata" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Konto malsilentigita" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Kontoj kun gravurita blua kontrolmarko<0><1/>povas kontroli aliulojn. Tiuj fidataj konfirmantoj estas elektataj de Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Agado de aliuloj" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Agadaj sciigoj" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Aldoni" @@ -984,7 +1079,7 @@ msgstr "Aldoni averton pri enhavo" #: src/features/liveNow/components/GoLiveDialog.tsx:108 msgid "Add a temporary live status to your profile. When someone clicks on your avatar, they’ll see information about your live event." -msgstr "Aldoni dumtempan tujelsendan staton al via profilo. Kiam iu alklakos vian profilbildon, ties vidos informon pri via tujelsenda evento." +msgstr "Aldoni dumtempan tujelsendan staton al via profilo. Kiam iu alklakos vian profilbildon, tiu vidos informon pri via tujelsenda evento." #: src/screens/ProfileList/AboutSection.tsx:64 #: src/screens/ProfileList/AboutSection.tsx:82 @@ -999,8 +1094,8 @@ msgstr "Aldoni konton" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Aldoni alternativan tekston (nedeviga)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Aldoni plian konton" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Aldoni plian afiŝon" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Aldoni plian afiŝon al fadeno" @@ -1035,7 +1130,7 @@ msgstr "Aldoni apan pasvorton" msgid "Add App Password" msgstr "Aldoni apan pasvorton" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Aldoni emoĝian reagon" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Aldoni anojn al grupa babilejo" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Aldoni bildon" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Aldoni aŭdvidaĵojn al afiŝo" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Aldoni anojn" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Aldoni pliaj detaloj (nedeviga)" @@ -1091,6 +1186,10 @@ msgstr "Aldoni homojn" msgid "Add people to list" msgstr "Aldoni homojn al la listo" +#: 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 "Aldoni reagon" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Aldoni vian naskiĝdaton" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Aligita de {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Aligita per invitligilo" @@ -1165,12 +1264,12 @@ msgstr "Aldonado de anoj al listo..." msgid "Additional details (limit 1000 characters)" msgstr "Aldonaj detaloj (limo de 1000 signoj)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Aldonaj detaloj (limo de 300 signoj)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Administranto" @@ -1228,12 +1327,12 @@ msgstr "Informpeto de garantio pri aĝo estis sendita" msgid "Age assurance only takes a few minutes" msgstr "Garantio pri aĝo daŭros nur kelkajn minutojn" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "ludoviko@ekzemplo.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Ĉiuj" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Ĉiuj {0}" @@ -1278,15 +1377,15 @@ msgstr "Permesi aliron al viaj rektaj mesaĝoj" msgid "Allow anyone to reply" msgstr "Permesi al ĉiuj respondi" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" -msgstr "" +msgstr "Permesi rektajn mesaĝojn de" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" -msgstr "" +msgstr "Permesi invitilojn al grupaj babilejoj de" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 @@ -1338,12 +1437,12 @@ msgstr "Ĉu vi jam havas konton?" msgid "Already signed in as @{0}" msgstr "Jam ensalutinta kiel @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alternativa teksto" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alternativa teksto priskribas bildojn por blindaj kaj vide handikapitaj uzantoj, kaj helpas doni kuntekston por ĉiuj." @@ -1387,7 +1486,7 @@ msgstr "Eraro okazis" msgid "An error occurred" msgstr "Eraro okazis" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Eraro okazis dum densigo de la videaĵo." @@ -1421,7 +1520,8 @@ msgstr "Eraro okazis dum ŝargado de la videaĵo. Bonvolu reprovi." msgid "An error occurred while loading your lists :/" msgstr "Eraro okazis dum ŝargado de viaj listoj :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Eraro okazis dum konservado de la QR-kodo!" @@ -1432,11 +1532,11 @@ msgstr "Eraro okazis dum konservado de la QR-kodo!" msgid "An error occurred while trying to follow all" msgstr "Eraro okazis dum provo eksekvi ĉiujn" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Eraro okazis dum alŝutado de la videaĵo. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Eraro okazis dum alŝutado de la videaĵo. Bonvolu kontroli vian retkonekton kaj reprovu." @@ -1456,24 +1556,28 @@ msgstr "" 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" +#: 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 "Ilustraĵo montranta ke Bluesky elektas fidatajn konfirmantojn kaj poste fidataj konfirmantoj konfirmas individuajn kontojn de uzantoj." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Invitligilo ebligas al homoj aliĝi al ĉi tiu grupa babilejo sen esti aligitaj rekte. Vi decidas, kiu povas uzi la ligilon kaj ĉu oni bezonas vian aprobon. Vi povas malŝalti la ligilon iam ajn." +#: 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 "Problemo neinkludita inter ĉi tiuj opcioj" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Problemo okazis dum provo malfermi la babilejon" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Problemo okazis, bonvolu reprovi." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Ekrankopio de iPhone montranta la Bluesky-apon malfermitan kun la profilo de konfirmita uzanto kun blua kontrolmarko apud ties montrata nomo." @@ -1539,13 +1643,17 @@ msgstr "Ĉiuj" msgid "Anyone can interact" msgstr "Ĉiu povas interagi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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 "Ĉiu povas aliĝi tuje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Ĉiu povas peti aliĝi" @@ -1555,11 +1663,11 @@ msgstr "Ĉiu povas peti aliĝi" msgid "Anyone who follows me" msgstr "Ĉiu kiu sekvas min" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "" +msgstr "Ĉiu kiu havas ĝin ne plu eblos aliĝi aŭ peti aliĝi. Vi ĉiam povas krei novan." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Nomoj de apaj pasvortoj devas havi longon de almenaŭ 4 signoj" msgid "App passwords" msgstr "Apaj pasvortoj" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Apaj pasvortoj" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Apelacio sendita" @@ -1632,14 +1740,14 @@ msgstr "Apelacii pri suspendo" msgid "Appeal Suspension" msgstr "Apelacii pri suspendo" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apelacii pri ĉi tiu decido" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Apliki tirpeton" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arkivigita de {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Arkivigita afiŝo" @@ -1675,7 +1783,7 @@ msgstr "Ĉu vi estas vere, absolute certa?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ĉu vi certas, ke vi volas forigi la apan pasvorton \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Ĉu vi certas, ke vi volas forigi ĉi tiun mesaĝon? La mesaĝo estos forigota por vi, sed ne por la aliaj partoprenantoj." @@ -1688,23 +1796,29 @@ msgstr "Ĉu vi certas, ke vi volas forigi ĉi tiun startpakon?" msgid "Are you sure you want to discard your changes?" msgstr "Ĉu vi certas, ke vi volas forĵeti viajn ŝanĝojn?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Ĉu vi certas ke vi volas foriri el {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Ĉu vi certas ke vi volas foriri el ĉi tiu konversacio?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Ĉu vi certas, ke vi volas foriri el ĉi tiu konversacio? La mesaĝoj estos forigitaj por vi, sed ne por la alia partoprenanto." +#: src/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 "Ĉu vi certas, ke vi volas forigi ĉi tion el viaj fluoj?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Ĉu vi certas, ke vi volas forĵeti ĉi tiun afiŝon?" @@ -1724,8 +1838,8 @@ msgstr "Arto" msgid "Artistic or non-erotic nudity." msgstr "Arta aŭ ne-erotika nudeco." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Asigni temon por algoritmo" @@ -1752,7 +1866,7 @@ msgstr "Aŭtomata konto" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Aŭtomate ludi videaĵojn kaj GIF-ojn" msgid "Available" msgstr "Disponebla" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Disponebla" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Disponebla" msgid "Back" msgstr "Reen" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Reveni al babilejoj" @@ -1810,11 +1926,11 @@ msgstr "Reveno de forbarita uzanto" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:259 msgid "Based on your device's location, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "Baziĝinte sur la loko de via aparato, ni pensas ke vi estas en <0>{region}. Tiu kalkulo povas esti erara se vi uzas VPN-on." #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265 msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "Baziĝinte sur via reto, ni pensas ke vi estas en <0>{region}. Tiu kalkulo povas esti erara se vi uzas VPN-on." #: src/view/screens/Lists.tsx:35 #: src/view/screens/ModerationModlists.tsx:35 @@ -1832,7 +1948,7 @@ msgstr "Antaŭ ol krei afiŝon aŭ respondi, vi devas unue konfirmi vian retpoŝ msgid "Before creating a starter pack, you must first verify your email." msgstr "Antaŭ ol krei startpakon, vi devas unue konfirmi vian retpoŝtadreson." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Antaŭ ol vi povos mesaĝi, vi devas unue konfirmi vian retpoŝtadreson." @@ -1840,13 +1956,14 @@ msgstr "Antaŭ ol vi povos mesaĝi, vi devas unue konfirmi vian retpoŝtadreson. msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Antaŭ ol vi povos ricevi sciigojn pri afiŝoj de {name}, unue vi devas konfirmi vian retpoŝtadreson." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Antaŭ ol vi povos mesaĝi alian uzanton, vi devas unue konfirmi vian retpoŝtadreson." @@ -1874,45 +1991,39 @@ msgstr "Naskiĝdato" msgid "Birthday" msgstr "Naskiĝtago" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloki" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Bloki {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloki konton" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Ĉu bloki konton?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Ĉu bloki konton?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloki kontojn" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Bloki liston" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bloki aŭ raporti" @@ -1936,9 +2047,9 @@ msgstr "Ĉu bloki tiujn kontojn?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloki uzanton" @@ -1946,9 +2057,9 @@ msgstr "Bloki uzanton" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloki uzanton" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Bloki uzanton kaj/aŭ forigi ĉi tiun konversacion" @@ -1956,7 +2067,7 @@ msgstr "Bloki uzanton kaj/aŭ forigi ĉi tiun konversacion" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blokita" @@ -1964,14 +2075,12 @@ msgstr "Blokita" msgid "Blocked accounts" msgstr "Blokitaj kontoj" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokitaj kontoj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokitaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi." @@ -1987,7 +2096,7 @@ msgstr "Blokado ne malebligas al ĉi tiu etikedilo meti etikedojn sur vian konto msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokado estas publika. Baritaj kontoj ne povas respondi en viaj fadenoj, mencii vin nek alimaniere interagi kun vi." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Barado ne malebligos al oni meti etikedojn sur vian konton, sed malebligos al ĉi tiu konto respondi en viaj fadenoj aŭ interagi kun vi." @@ -2000,7 +2109,7 @@ msgstr "Blogo" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne povas konfirmi la aŭtentecon de la donita dato." @@ -2029,7 +2138,7 @@ msgstr "Bluesky pli bonas kun amikoj!" msgid "Bluesky is more fun with friends" msgstr "Bluesky estas pli feliĉiga kun amikoj" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky estas pli feliĉiga kun amikoj! Importu viajn kontaktojn por vidi kiu jam estas ĉi tie." @@ -2037,11 +2146,15 @@ msgstr "Bluesky estas pli feliĉiga kun amikoj! Importu viajn kontaktojn por vid msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky estas pli feliĉiga kun amikoj! Ĉu vi volas inviti iujn el viaj? <0/>" +#: 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 "Uzokondiĉoj de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky elektos aron de rekomenditaj kontoj de homoj en via reto." msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky ne montros vian profilon kaj afiŝojn al elsalutintaj uzantoj. Aliaj apoj eble ne respektos ĉi tiun peton. Ĉi tio ne igas vian konton privata." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky aktive konfirmos rimarkindajn kaj aŭtentikajn kontojn." @@ -2081,6 +2194,10 @@ msgstr "Libroj" msgid "Breaking site rules" msgstr "Kontraŭo de retejaj reguloj" +#: 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" @@ -2137,24 +2254,34 @@ msgstr "Komerco" msgid "Button to go back to the home timeline" msgstr "Butono por reveni al la hejma novaĵfluo" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "De {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "De <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Kreante konton vi konsentas pri la <0>Uzokondiĉoj." msgid "By you" msgstr "De vi" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Fotilo" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Fotilo" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Fotilo" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Fotilo" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Nuligi" @@ -2248,9 +2384,9 @@ msgstr "Nuligi reaktivigon kaj elsaluti" msgid "Cancel search" msgstr "Nuligi serĉon" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Ne eblas interagi kun blokita uzanto" @@ -2264,7 +2400,7 @@ msgstr "Subtekstoj (.vtt)" msgid "Captions & alt text" msgstr "Subtekstoj kaj alternativa teksto" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "karuselo" @@ -2297,7 +2433,7 @@ msgstr "Ŝanĝi apan lingvon" msgid "Change Handle" msgstr "Ŝanĝi identigilon" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Ŝanĝi kontrol-servon" @@ -2310,11 +2446,11 @@ msgstr "Ŝanĝi pasvorton" msgid "Change password dialog" msgstr "Dialogujo pri pasvorta ŝanĝo" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Ŝanĝi kategorion de raporto" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Ŝanĝi kialon de raporto" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Babilejoj" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Babilejo forigita" @@ -2361,6 +2497,12 @@ msgstr "Babilejo forigita" msgid "Chat ended" msgstr "Babilejo finiĝis" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Babilejo ŝlosita" @@ -2373,35 +2515,44 @@ msgstr "Babilejaj mesaĝoj - silento" msgid "Chat messages - sound" msgstr "Babilejaj mesaĝoj - sono" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Babilejo silentigita" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Ricevujo de babilpetoj" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Babilpetoj" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Agordoj de babilejo" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Agordoj de babilejo" @@ -2418,14 +2569,14 @@ msgstr "Babileja titolo ŝanĝita al {0}" msgid "Chat unlocked" msgstr "Babilejo malŝlosita" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Babilejo malsilentigita" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Babilejoj" @@ -2479,7 +2630,7 @@ msgstr "Elektu lingvojn de la afiŝo" msgid "Choose this color as your avatar" msgstr "Elekti ĉi tiun koloron kiel profilbildo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Elektu kiu povas aliĝi al ĉi tiu grupa babilejo kaj kiel." @@ -2558,7 +2709,7 @@ msgstr "Klaku ĉi tie por elsaluti" msgid "Click here to resend the email" msgstr "Klaku ĉi tie por resendi la retmesaĝon" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Klaku ĉi tie por restarti la konfimadan procezon." @@ -2567,7 +2718,7 @@ msgstr "Klaku ĉi tie por restarti la konfimadan procezon." msgid "Click here to update your birthdate" msgstr "Klaku ĉi tie por ĝisdatigi vian naskiĝdaton" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Klaku ĉi tie por ĝisdatigi vian retpoŝtadreson" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Alklaku por reprovi sendi mesaĝon" @@ -2594,28 +2745,30 @@ msgstr "Alklaku por reprovi sendi mesaĝon" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Alklaku por reprovi sendi mesaĝon" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Fermi" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Fermi la aktivan dialogujon" @@ -2647,6 +2800,10 @@ msgstr "Fermi la aktivan dialogujon" msgid "Close alert" msgstr "Fermi averton" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Fermi la suban flankmenuon" @@ -2657,8 +2814,10 @@ msgstr "Fermi la suban flankmenuon" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Fermi la dialogujon" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Fermi bildon" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Fermi menuon" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Fermi ĉi tiun dialogujon" @@ -2695,18 +2866,22 @@ msgstr "Fermi bonvenon-fenestron" msgid "Closes password update alert" msgstr "Fermas la averton pri pasvorta ĝisdatigo" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Fermas afiŝan redaktilon kaj forĵetas afiŝan malneton" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Maletendi liston de uzantoj" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Maletendas liston de uzantoj por donita sciigo" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Komiksoj" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Komunumaj gvidnormoj" @@ -2740,12 +2915,12 @@ msgstr "Plenumi la defion" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Krei novan afiŝon" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Krei afiŝojn maksimume {0, plural, one {# signon}other {# signojn}} longajn" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Densigado de GIF..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Densigado de videaĵo..." @@ -2780,7 +2955,7 @@ msgstr "Agordita en <0>agordoj de kontrolado." msgid "Confirm" msgstr "Konfirmi" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Kontakti subtenejon" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Kontakta sinkronigo ne estas disponebla sur ĉi tiu aparato, ĉar la apo ne eblas aliri viajn kontaktojn." @@ -2825,11 +3000,11 @@ msgstr "Kontakta sinkronigo ne estas disponebla sur ĉi tiu aparato, ĉar la apo msgid "Contact us" msgstr "Kontaktu nin" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Kontaktoj importitaj" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Kontaktoj forigitaj" @@ -2842,7 +3017,7 @@ msgstr "Enhavo kaj aŭdvidaĵoj" msgid "Content and media" msgstr "Enhavo kaj aŭdvidaĵoj" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Enhavo kaj aŭdvidaĵoj" @@ -2889,7 +3064,7 @@ msgstr "Fono de kuntekstmenuo, alklaku por fermi la menuon." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Daŭrigi fadenon" msgid "Continue thread..." msgstr "Daŭrigi fadenon..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Daŭrigi al grupa nomo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Pluiri al la sekva paŝo" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Konversacio" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Konversacio forigita" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Konversacio forigita" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Versio kopiita al tondujo" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopiita!" msgid "Copies build version to clipboard" msgstr "Kopias version al tondujo" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopii" @@ -2997,6 +3184,11 @@ msgstr "Kopii DID-on" msgid "Copy host" msgstr "Kopii gastiganton" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Kopii ligilon al listo" msgid "Copy link to post" msgstr "Kopii ligilon al afiŝo" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Kopii ligilon al profilo" @@ -3027,8 +3219,8 @@ msgstr "Kopii ligilon al profilo" msgid "Copy link to starter pack" msgstr "Kopii ligilon al startpako" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Kopii mesaĝan tekston" @@ -3037,12 +3229,12 @@ msgstr "Kopii mesaĝan tekston" msgid "Copy post at:// URI" msgstr "Kopii URI-on at:// de afiŝo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Kopii afiŝan tekston" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Kopii QR-kodon" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Regularo pri kopirajto" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Ne eblis konekti al propra fluo" @@ -3065,31 +3261,43 @@ msgstr "Ne eblis konekti al propra fluo" msgid "Could not connect to feed service" msgstr "Ne eblis konekti al la servo de fluo" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 -msgid "Could not fetch post" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 +msgid "Could not fetch post" +msgstr "Ne eblis ŝargi afiŝon" + #: src/view/com/feeds/MissingFeed.tsx:183 msgid "Could not find profile" msgstr "Ne eblis trovi profilon" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Ne eblis eksekvi ĉiujn trovitajn kontaktojn - bonvolu kontroli vian retan konekton." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Ne eblis eksekvi ĉiujn trovitajn kontaktojn. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Ne eblis foriri el babilejo" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Ne eblis ŝargi fluon" @@ -3100,7 +3308,11 @@ msgstr "Ne eblis ŝargi fluon" msgid "Could not load list" msgstr "Ne eblis ŝargi liston" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Ne eblis silentigi babilejon" @@ -3108,11 +3320,19 @@ msgstr "Ne eblis silentigi babilejon" msgid "Could not process your video" msgstr "Ne eblis trakti vian videaĵon" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Ne eblis konservi ŝanĝojn: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Ne eblis ĝisdatigi sciigajn agordojn" @@ -3139,7 +3359,7 @@ msgstr "Landkodo" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Krei" @@ -3153,13 +3373,13 @@ msgstr "Krei liston" msgid "Create a list from this starter pack" msgstr "Krei liston el ĉi tiu startpako" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Krei startpakon" @@ -3174,13 +3394,14 @@ msgstr "Krei startpakon por mi" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Krei profilbildon anstataŭe" @@ -3206,7 +3427,7 @@ msgstr "Krei profilbildon anstataŭe" msgid "Create another" msgstr "Krei plian" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Krei grupan babilejon" @@ -3228,19 +3449,20 @@ msgstr "Krei liston el startpako" msgid "Create moderation list" msgstr "Krei la kontrol-liston" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Krei novan konton" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Krei aŭ modifi invitligilon por ĉi tiu grupa babilejo" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Krei raporton pri {0}" @@ -3256,8 +3478,8 @@ msgstr "Krei liston de uzantoj" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Kreita {0}" @@ -3270,6 +3492,10 @@ msgstr "La kreinto estis blokita" msgid "Culture" msgstr "Kulturo" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Malhela etoso" msgid "Date of birth" msgstr "Naskiĝdato" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Defaŭlta" msgid "Default icons" msgstr "Defaŭltaj piktogramoj" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Forigi apan pasvorton" msgid "Delete app password?" msgstr "Ĉu forigi apan pasvorton?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Forigi babilejon" @@ -3378,19 +3612,19 @@ msgstr "Forigi babilejon" msgid "Delete chat declaration record" msgstr "Forigi babilan deklaro-rikordon" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Forigi kontaktojn" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Forigi konversacion" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Forigi por mi" @@ -3399,11 +3633,11 @@ msgstr "Forigi por mi" msgid "Delete list" msgstr "Forigi liston" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Forigi mesaĝon" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Forigi mesaĝon por mi" @@ -3411,9 +3645,9 @@ msgstr "Forigi mesaĝon por mi" msgid "Delete my account" msgstr "Forigi mian konton" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Forigi afiŝon" @@ -3430,17 +3664,17 @@ msgstr "Ĉu forigi startpakon?" msgid "Delete this list?" msgstr "Ĉu forigi ĉi tiun liston?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Ĉu forigi ĉi tiun afiŝon?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Forigita" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Forigita konto" @@ -3471,12 +3705,12 @@ msgstr "Priskribo (1000 signoj maksimume)" msgid "Descriptive alt text" msgstr "Priskriba alternativa teksto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Malligi citaĵon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Ĉu malligi citatan afiŝon?" @@ -3507,13 +3741,13 @@ msgstr "Dialogujo: kiu povas interagi kun ĉi tiu afiŝo" msgid "Dim" msgstr "Malheleta" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Malŝalti" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Malŝalti 2FA-on" @@ -3521,7 +3755,7 @@ msgstr "Malŝalti 2FA-on" msgid "Disable captions" msgstr "Malŝalti subtekstojn" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Malŝalti retpoŝtan 2FA-on" @@ -3534,10 +3768,10 @@ msgstr "Malŝalti retpoŝtan 2FA-on" msgid "Disable haptic feedback" msgstr "Malŝalti tuŝ-retrokupladan prikomentadon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" -msgstr "" +msgstr "Malŝalti invitligilon" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 msgid "Disable quote posts of this post" @@ -3547,9 +3781,9 @@ msgstr "Malebligi citafiŝojn de ĉi tiu afiŝo" msgid "Disable replies entirely" msgstr "Malebligi respondojn entute" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" -msgstr "" +msgstr "Ĉu malŝalti ĉi tiun invitligilon?" #: src/lib/moderation/useLabelBehaviorDescription.ts:35 #: src/lib/moderation/useLabelBehaviorDescription.ts:45 @@ -3560,9 +3794,9 @@ msgstr "Malŝaltita" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Forĵeti" msgid "Discard changes?" msgstr "Ĉu forĵeti ŝanĝojn?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Ĉu forĵeti afiŝon?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Malkonekti Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Malkovri novajn fluojn" msgid "Discover New Feeds" msgstr "Malkovri novajn fluojn" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignori" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Fermi rubandon" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Ignori eraron" @@ -3642,6 +3877,10 @@ msgstr "Ignori ĉi tiun sekcion" msgid "Dismiss this suggestion" msgstr "Ignori ĉi tiun proponon" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Ne inkluzivas nudecon." msgid "Domain verified!" msgstr "Domajno konfirmita!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Ĉu vi ne havas kodon aŭ bezonas novan? <0>Klaku ĉi tie." @@ -3681,7 +3920,7 @@ msgstr "Ĉu vi ne havas kodon aŭ bezonas novan? <0>Klaku ĉi tie." msgid "Don’t see a code? <0>Click here to resend." msgstr "Ĉu vi ne vidas kodon? <0>Klaku ĉi tie por resendi." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Ĉu vi ne vidas retmesaĝon? <0>Klaku ĉi tie por resendi." @@ -3700,16 +3939,21 @@ msgstr "Ne maltrankvilu! Ĉiuj ekzistantaj mesaĝoj kaj agordoj estas konservita #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Farite" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Duoble tuŝeti por fermi la dialogujon" @@ -3737,19 +3981,14 @@ msgstr "Duoble tuŝeti por fermi la dialogujon" msgid "Double tap to like" msgstr "Duoble tuŝeti por ŝati" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Elŝuti Bluesky-apon" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Elŝuti CAR-dosieron" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Elŝuti CAR-dosieron" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Elŝuti babilejajn datumojn" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Elŝuti babilejajn datumojn" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Elŝuti bildon" +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Pro la leĝaro en via regiono, certaj funkcioj ĉe Bluesky estas aktuale msgid "Duration:" msgstr "Daŭro:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "ekz. ludoviko" @@ -3823,9 +4079,8 @@ msgstr "ekz. Uzantoj kiuj ripete respondas per reklamoj." msgid "Eating disorders" msgstr "Manĝadaj perturboj" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Redakti" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Redakti profilbildon" @@ -3847,19 +4102,19 @@ msgstr "Redakti profilbildon" msgid "Edit Feeds" msgstr "Redakti fluojn" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Redakti grupan nomon" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Redakti bildon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Redakti interagajn agordojn" @@ -3868,7 +4123,16 @@ msgstr "Redakti interagajn agordojn" msgid "Edit interests" msgstr "Redakti interesojn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "Redakti agordojn de ligilo" @@ -3886,20 +4150,15 @@ msgstr "Redakti tujelsendan staton" msgid "Edit moderation list" msgstr "Redakti la kontrol-liston" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Redakti miajn fluojn" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Redakti nomon" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Redakti sciigojn de {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Redakti homojn" @@ -3912,12 +4171,12 @@ msgstr "Redakti interagajn agordojn de afiŝo" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Redakti profilon" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Redakti profilon" @@ -3925,7 +4184,8 @@ msgstr "Redakti profilon" msgid "Edit starter pack" msgstr "Redakti startpakon" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Redakti nomon de ĉi tiu grupa babilejo" @@ -3937,7 +4197,7 @@ msgstr "Redakti la liston de uzantoj" msgid "Edit who can reply" msgstr "Elekti kiu povas respondi" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Redakti vian startpakon" @@ -3971,7 +4231,7 @@ msgstr "Retpoŝtadreso" msgid "Email Resent" msgstr "Retmesaĝo resendita" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Retmesaĝo sendita!" @@ -4006,8 +4266,8 @@ msgstr "Enkorpigi ĉi tiun afiŝon en vian retejon. Simple kopiu la jenan kodaĵ msgid "Embedded video player" msgstr "Enkorpigita videoludilo" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Ŝalti" @@ -4025,7 +4285,7 @@ msgstr "Videbligi poradoltan enhavon" msgid "Enable captions" msgstr "Ŝalti subtekstojn" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Ŝalti retpoŝtan 2FA-on" @@ -4038,13 +4298,12 @@ msgstr "Ŝalti eksterajn aŭdvidaĵojn" msgid "Enable media players for" msgstr "Ŝalti la aŭdvidajn ludliojn por" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Por ŝalti sciigojn pri konto, vizitu ties profilon kaj premu la <0>sonorilan piktogramon <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Ŝalti ŝprucosciigojn" @@ -4091,8 +4350,8 @@ msgstr "Entajpu pasvorton" msgid "Enter a word or tag" msgstr "Entajpu vorton aŭ kradvorton" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Entajpu kodon" @@ -4143,12 +4402,12 @@ msgstr "Ŝaltas plenekranon" msgid "Entertainment" msgstr "Amuzo" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Eraro" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Eraris akirante la plej freŝajn datumojn." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Ĉiuj" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Ĉiuj" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Ĉiuj" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Ĉio alia" @@ -4217,16 +4476,16 @@ msgstr "Ekskluzivas uzantojn, kiujn vi sekvas" msgid "Exit fullscreen" msgstr "Malŝalti plenekranon" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Etendi alternativan tekston" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Etendi liston de uzantoj" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Etendi aŭ maletendi la tutan afiŝon, al kiu vi respondas" @@ -4238,7 +4497,7 @@ msgstr "Etendi afiŝan tekston" msgid "Expands or collapses post text" msgstr "Etendas aŭ maletendas la tekston de la afiŝo" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Espektas uri-on gvidantan al rikordo" @@ -4277,10 +4536,10 @@ msgstr "Poradolta aŭ maltrankviliga aŭdvidaĵo." msgid "Explicit sexual images." msgstr "Detalaj seksumaj bildoj." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Esplori" @@ -4289,14 +4548,11 @@ msgstr "Esplori" msgid "Explore the app" msgstr "Esplori la apon" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" -msgstr "" +msgstr "Eksporti miajn babilejajn datumojn" #: src/screens/Settings/AccountSettings.tsx:170 #: src/screens/Settings/AccountSettings.tsx:174 @@ -4305,7 +4561,7 @@ msgstr "Eksporti miajn datumojn" #: src/screens/Settings/components/ExportCarDialog.tsx:97 msgid "Export my profile data" -msgstr "" +msgstr "Eksporti miajn profilajn datumojn" #: src/screens/Settings/ContentAndMediaSettings.tsx:86 #: src/screens/Settings/ContentAndMediaSettings.tsx:89 @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferoj pri eksteraj aŭdvidaĵoj" @@ -4331,18 +4587,22 @@ msgstr "Preferoj pri eksteraj aŭdvidaĵoj" msgid "Extremist content" msgstr "Ekstremisma enhavo" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Malsukcesis akcepti babilejon" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Malsukcesis aldoni emoĝian reagon" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Malsukcesis aligi anojn" @@ -4354,7 +4614,8 @@ msgstr "Malsukcesis aldoni al la startpako" msgid "Failed to change handle. Please try again." msgstr "Malsukcesis ŝanĝi identigilon. Bonvolu reprovi." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Malsukcesis kopii ligilon" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Malsukcesis krei apan pasvorton. Bonvolu reprovi." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Malsukcesis krei konversacion" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Malsukcesis krei invitligilon" @@ -4376,17 +4637,17 @@ msgstr "Malsukcesis krei invitligilon" msgid "Failed to create starter pack" msgstr "Malsukcesis krei startpakon" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Malsukcesis forigi babilejon" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Malsukcesis forigi mesaĝon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Malsukcesis forigi afiŝon, bonvolu reprovi" @@ -4394,24 +4655,24 @@ msgstr "Malsukcesis forigi afiŝon, bonvolu reprovi" msgid "Failed to delete starter pack" msgstr "Malsukcesis forigi startpakon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Malsukcesis malŝalti invitligilon" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Fiaskis malkonekti Germ DM. Eraro: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Malsukcesis ŝanĝi nomon de grupa babilejo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Malsukcesis redakti invitligilon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Malsukcesis ŝalti invitligilon" @@ -4427,19 +4688,27 @@ msgstr "Malsukcesis sekvi ĉiujn viajn amikojn, bonvolu reprovi" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Fiaskis kaŝi proponojn, bonvolu kontroli vian interretan konekton" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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 "Malsukcesis lanĉi SMS-apon" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Malsukcesis foriri el grupa babilejo" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Malsukcesis ŝargi konversaciojn" @@ -4456,17 +4725,8 @@ msgstr "Fiaskis ŝargi fluojn" msgid "Failed to load feeds preferences" msgstr "Malsukcesis ŝargi preferojn de fluoj" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Malsukcesis ŝargi sciigajn agordojn." @@ -4493,16 +4753,15 @@ msgstr "Malsukcesis ŝargi propontiajn fluojn" msgid "Failed to load suggested follows" msgstr "Malsukcesis ŝargi proponitajn kontojn" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Malsukcesis ŝlosi grupan babilejon" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Malsukcesis marki ĉiujn petojn kiel legitaj" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Malsukcesis silentigi grupan babilejon" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Malsukcesis alpingli afiŝon" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Fiaskis rekonekti Germ DM. Eraro: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Fiaskis forigi datumojn pro reta eraro, bonvolu kontroli vian interretan konekton." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Fiaskis forigi datumojn. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Malsukcesis forigi emoĝian reagon" @@ -4534,7 +4793,8 @@ msgstr "Malsukcesis forigi emoĝian reagon" msgid "Failed to remove from starter pack" msgstr "Malsukcesis forigi el la startpako" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Malsukcesis forigi anon el grupa babilejo" @@ -4542,15 +4802,20 @@ msgstr "Malsukcesis forigi anon el grupa babilejo" msgid "Failed to remove verification" msgstr "Malsukcesis forigi konfirmon" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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 "Malsukcesis trovi la lokon. Bonvolu reprovi." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Malsukcesis konservi malneton" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Fiaskis konservi bildon" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Malsukcesis konservi viajn interesojn." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Malsukcesis sendi retmesaĝon, bonvolu reprovi." @@ -4580,16 +4845,16 @@ msgstr "Malsukcesis sendi raporton" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Malsukcesis sendi apelacion, bonvole reprovu." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Malsukcesis baskuligi la silentigon de fadeno, bonvolu reprovi" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Malsukcesis malŝlosi grupan babilejon" @@ -4597,12 +4862,12 @@ msgstr "Malsukcesis malŝlosi grupan babilejon" msgid "Failed to unpin list" msgstr "Malsukcesis depingli la liston" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "La ĝisdatigo de retpoŝtaj 2FA-agordoj malsukcesis" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Malsukcesis ĝisdatigi retpoŝtadreson, bonvolu reprovi." @@ -4614,7 +4879,7 @@ msgstr "Malsukcesis ĝisdatigi fluojn" msgid "Failed to update notification declaration" msgstr "Malsukcesis ĝisdatigi sciigan deklaron" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Malsukcesis ĝisdatigi agordojn" @@ -4641,7 +4906,7 @@ msgstr "Falsa konto aŭ roboto" msgid "False information about elections" msgstr "Malveraj informoj pri balotoj" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Fluo" @@ -4649,7 +4914,7 @@ msgstr "Fluo" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Fluo de {0}" @@ -4662,7 +4927,7 @@ msgstr "Kreinto de fluo" msgid "Feed identifier" msgstr "Identigilo de fluo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menuo de la fluo" @@ -4676,25 +4941,25 @@ msgstr "Fluo ne disponebla" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Prikomentado" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Prikomentado sendita al operatoro de la fluo" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Fluoj" @@ -4739,7 +5004,7 @@ msgstr "Filtri serĉon laŭ lingvo (nune: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtri de kiuj vi ricevos sciigojn" @@ -4747,11 +5012,11 @@ msgstr "Filtri de kiuj vi ricevos sciigojn" msgid "Finalizing" msgstr "Finante" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Finfine!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Finfine! Vidu afiŝojn kiuj gravas al vi. Konservu ilin por reviziti iam ajn." @@ -4768,19 +5033,17 @@ msgstr "Financoj" msgid "Find accounts to follow" msgstr "Trovi kontojn por sekvi" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Trovi kontaktojn" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Trovi amikojn" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Trovi amikojn per kontaktoj" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Trovi kontaktojn" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Trovi miajn amikojn" msgid "Find people to follow" msgstr "Trovi homojn por sekvi" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Trovi afiŝojn, uzantojn kaj fluojn ĉe Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Trovu viajn amikojn" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Trovu viajn amikojn ĉe Bluesky per konfirmo de via telefononumero kaj kongruigo de viaj kontaktoj kun ili. Ni protektas viajn informojn kaj vi kontrolas, kio okazos poste. <0>Eksciu pli" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Sekvi" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Sekvi {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Sekvi {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Sekvi konton" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Eksekvu ĉiujn kontojn" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Sekvi reciproke" @@ -4916,7 +5183,7 @@ msgstr "Sekvi reciproke" msgid "Followed all accounts!" msgstr "Ĉiuj kontoj eksekvitaj!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Eksekvis ĉiujn trovitajn kontaktojn" @@ -4944,8 +5211,12 @@ msgstr "Sekvata de <0>{0} kaj <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Sekvata de <0>{0}, <1>{1}, kaj {2, plural, one {# alia} other {# aliaj}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Sekvantoj de @{0}, kiujn vi konas" @@ -4960,10 +5231,10 @@ msgstr "Sekvantoj, kiujn vi konas" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Sekvas" @@ -4977,12 +5248,12 @@ msgstr "Sekvas" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Sekvas {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Sekvas {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Sekvas {handle}" msgid "Following feed preferences" msgstr "Preferoj de la fluo pri sekvatoj" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferoj de la fluo pri sekvatoj" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sekvas vin" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Sekvas vin" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Tiparo" @@ -5065,11 +5333,16 @@ msgstr "Ĉu vi forgesis pasvorton?" msgid "Forgot?" msgstr "Ĉu vi forgesis?" +#. 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:12 msgid "Free your feed" msgstr "Liberu vian fluon" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "De" @@ -5086,82 +5359,86 @@ msgstr "De <0/>" msgid "Generate a starter pack" msgstr "Generi startpakon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Generi invitligilon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Generi novan invitligilon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Generi novan ligilon" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM malkonektita" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Ligilo de Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM rekonektita" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Akiri helpon" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "Ricevi sciigojn, kiam homoj eksekvos vin." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Ricevi sciigojn, kiam homoj ŝatos afiŝojn, kiujn vi reafiŝis." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Ricevi sciigojn, kiam homoj ŝatos viajn afiŝojn." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Ricevi sciigojn, kiam homoj mencios vin." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Ricevi sciigojn, kiam homoj citos viajn afiŝojn." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Ricevi sciigojn, kiam homoj respondos al viaj afiŝoj." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Ricevi sciigojn, kiam homoj reafiŝos afiŝojn, kiujn vi reafiŝis." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Ricevi sciigojn, kiam homoj reafiŝos viajn afiŝojn." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Esti sciigota pri novaj afiŝoj" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Esti sciigota pri novaj afiŝoj kaj respondoj de kontoj kiujn vi elektis." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Esti sciigota pri novaj afiŝoj de {name}" @@ -5174,27 +5451,27 @@ msgstr "Esti sciigata pri agado de ĉi tiu konto" msgid "Get notified when {name} posts" msgstr "Esti sciigota kiam {name} afiŝos" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Esti sciigota kiam iu afiŝos" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Enkonduko" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF alŝutita" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Donu vizaĝon al via profilo" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Reen" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Iri reen" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Reveni al la antaŭa paŝo" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Hejmen" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Hejmen" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Hejmen" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "Tujelsendi dum" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Iri al la profilo de {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Iri al kontaj agordoj" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Iri al konversacio kun {0}" @@ -5296,35 +5571,42 @@ msgstr "Iri al fluo" msgid "Go to next" msgstr "Iri al la sekva" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Iri al profilo" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Iri al la grupa babilejo nomita \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Iri al uzanta profilo" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" -msgstr "" +msgstr "Iri al uzanta profilo" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Kompreninte" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Dialogujo kun invitligilo al grupa babilejo" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Grupa babilejo ŝlosita" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Grupa babilejo silentigita" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Nomo de grupa babilejo aktualigita" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Agordoj de grupa babilejo" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Grupa babilejo malŝlosita" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Grupa babilejo malsilentigita" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Grupaj babilejoj ankoraŭ ne disponeblas" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Grupaj babilejoj nun disponeblas" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "Grupo estas ŝlosita" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Grupa nomo" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Tiu identigilo tro longas. Bonvolu provi malpli longan." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Okazas nun" @@ -5446,7 +5744,7 @@ msgstr "Agoj kun granda riziko de danĝero" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Kradvorto" @@ -5458,14 +5756,14 @@ msgstr "Kradvorto {tag}" msgid "Hate speech" msgstr "Malama parolado" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Ĉu vi havas kodon? <0>Klaku ĉi tie." #: src/screens/Signup/StepInfo/index.tsx:320 msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." -msgstr "" +msgstr "Ĉu ni misdivenis vian lokon? <0>Tuŝetu ĉi tie por aktualigi vian lokon per GPS." #: src/screens/Signup/index.tsx:231 msgid "Having trouble?" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Helpo" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Kaŝita listo" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Kaŝita listo" msgid "Hide" msgstr "Kaŝi" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Kaŝi" @@ -5547,24 +5845,24 @@ msgstr "Kaŝi adaptadajn opciojn" #: src/components/dms/SystemMessageGroup.tsx:57 msgid "Hide group chat updates" -msgstr "" +msgstr "Kaŝi aktualigojn de grupaj babilejoj" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 msgid "Hide lists" msgstr "Kaŝi listojn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Kaŝi afiŝon por mi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Kaŝi respondon por ĉiuj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Kaŝi respondon por mi" @@ -5577,19 +5875,19 @@ msgstr "Kaŝi ĉi tiun karton" msgid "Hide this event" msgstr "Kaŝi ĉi tiun eventon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ĉu kaŝi ĉi tiun afiŝon?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ĉu kaŝi ĉi tiun respondon?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Kaŝi tradukon" @@ -5606,7 +5904,7 @@ msgstr "Ĉu kaŝi popularajn temojn?" msgid "Hide trending videos?" msgstr "Ĉu kaŝi popularajn videaĵojn?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Kaŝi la liston de uzantoj" @@ -5620,6 +5918,10 @@ msgstr "Kaŝi konfirmajn ŝildojn" msgid "Hides the content" msgstr "Kaŝas la enhavon" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, ŝajne ni havas problemon ŝargi ĉi tiun datumon. Rigardu sube p msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, ni ne povis ŝargi tiun kontrol-servon." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Momenton! Ni iom post iom donas aliron al la videaĵo, kaj vi ankoraŭ atendas en vico. Rekontrolu baldaŭ!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Ne tiom rapide! Ĉi tiu funkcio ankoraŭ ne disponeblas al vi. Bonvolu rekontroli poste." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Hejmo" @@ -5721,7 +6019,7 @@ msgstr "Mi komprenas" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Mi estas ĉe Bluesky kiel {0} - venu trovi min! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Se alternativa teksto estas longa, baskulas ĝian malvolvon" @@ -5757,15 +6055,15 @@ msgstr "Se vi forigos ĉi tiun liston, vi ne povos restaŭri ĝin." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se vi havas vian propran domajnon, vi povas uzi ĝin kiel vian identigilon. Ĉi tio permesas al vi aŭtentikigi vin mem. <0>Eksciu pli." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Se vi bezonas ĝisdatigi vian retpoŝtadreson, <0>klaku ĉi tie." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Se vi forigos ĉi tiun afiŝon, vi ne povos restaŭri ĝin." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Se vi ĝisdatigos vian retpoŝtadreson, retpoŝta 2FA estos malŝaltota." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Se vi volas limigi kiu povos ricevi sciigojn pri agado de via konto, vi povas ŝanĝi tion en <0>Agordoj → Privateco kaj sekureco." @@ -5786,23 +6083,23 @@ msgstr "Se vi estas programisto, vi povas gastigi vian propran servilon." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Se vi provas ŝanĝi vian identigilon aŭ retpoŝtadreson, faru tion antaŭ ol malaktivigi vian konton." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Bildo" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Bildo {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Bildo {0} el {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Bildo {0} el {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Bilda kaŝmemoro viŝita, {0} liberita(j)" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Bildogalerio, {0} bildoj" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Bildo nedisponeblas." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Opcioj de bildo" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Identoprunto" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importi kontaktojn" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importi kontaktojn" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importu kontaktojn por trovi viajn amikojn" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importita je {0}" @@ -5881,40 +6182,40 @@ msgstr "Importita je {0}" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "En-apaj" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "En-apaj sciigoj" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "En-apaj, Ĉiuj" - -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "En-apaj, Homoj kiujn vi sekvas" - -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "En-apaj, Ŝprucaj" - -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "En-apaj, Ŝprucaj, Ĉiuj" - -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "En-apaj, Ŝprucaj, Homoj kiujn vi sekvas" - -#: src/screens/Messages/ChatList.tsx:351 -msgid "Inbox empty" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +msgid "Inbox empty" +msgstr "Ricevujo malplenas" + #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Ricevujo malplenas!" @@ -5954,6 +6255,10 @@ msgstr "Ni prezentas \"malnetoj\"" 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 "Ni prezentas \"konservitaj afiŝoj\" alinome \"legosignoj\"" @@ -5963,11 +6268,15 @@ msgstr "Ni prezentas \"konservitaj afiŝoj\" alinome \"legosignoj\"" msgid "Invalid 2FA confirmation code." msgstr "Nevalida 2FA-konfirmkodo." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Nevalida identigilo. Bonvolu uzi iun alian." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Nevalidaj agordoj pri interagado." @@ -5977,10 +6286,15 @@ msgstr "Nevalidaj agordoj pri interagado." msgid "Invalid phone number" msgstr "Nevalida telefononumero" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Nevalida temlinio de raporto" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Nevalida aŭtentikig-kodo" @@ -6001,8 +6315,15 @@ msgstr "Invita kodo" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Inviti amikojn" @@ -6010,21 +6331,31 @@ msgstr "Inviti amikojn" msgid "Invite friends <0/>" msgstr "Inviti amikojn <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Invitligilo" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Invitligilo" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Invitligilo kreita" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Invitligilo malŝaltita" @@ -6040,11 +6371,16 @@ msgstr "Invitligilo ŝaltita" msgid "Invite people to this starter pack!" msgstr "Invitu homojn al ĉi tiu startpako!" +#: 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 "Invitu viajn amikojn, por ke ili sekvu viajn plej ŝatatajn fluojn kaj homojn" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Invitita" @@ -6054,7 +6390,7 @@ msgstr "Invitoj sed personaj" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "Ĉu via loko ne estas ĝusta? <0>Tuŝetu ĉi tie por aktualigi vian lokon per GPS. " #: 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." @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID de laboro: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID de laboro: {0}" msgid "Jobs" msgstr "Laboroj" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Laboroj" msgid "Join Bluesky" msgstr "Aliĝi al Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Aliĝi al konversacio" msgid "Journalism" msgstr "Ĵurnalismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Daŭre redakti" @@ -6109,6 +6460,11 @@ msgstr "Daŭre redakti" msgid "Keep me posted" msgstr "Informadi min" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Retejo de KWS" @@ -6143,7 +6499,7 @@ msgstr "Etikedoj sur via konto" msgid "Labels on your content" msgstr "Etikedoj sur via enhavo" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Lingvaj agordoj" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Plej freŝaj" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Eksciu pli pri kiel invitado de amikoj funkcias" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Eksciu pli pri importado de kontaktoj" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Eksciu pli pri ĉi tiu averto" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Ekscii pli pri konfirmado ĉe Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Ekscii pli pri konfirmado ĉe Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Eksciu pli pri kio estas publika ĉe Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Eksciu pli pri via ligilo de Germ DM" @@ -6252,31 +6608,33 @@ msgstr "Eksciu pli en viaj <0>kontaj agordoj." msgid "Learn more." msgstr "Eksciu pli." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Foriri" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Foriri el babilejo" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Foriri el konversacio" @@ -6284,13 +6642,14 @@ msgstr "Foriri el konversacio" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Foriri el konversacio" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Foriri el grupa babilejo" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Foriri el ĉi tiu grupa babilejo" @@ -6299,6 +6658,14 @@ msgstr "Foriri el ĉi tiu grupa babilejo" msgid "Leaving Bluesky" msgstr "Elirante el Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "restas." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Hela" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Ŝati" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Sciigoj pri ŝatoj" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Ŝati ĉi tiun fluon" @@ -6358,8 +6721,8 @@ msgstr "Ŝati ĉi tiun fluon" msgid "Like this labeler" msgstr "Ŝati ĉi tiun etikedilon" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Ŝatata de" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Ŝatata de {0, plural, one {# uzanto} other {# uzantoj}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Ŝatata de {likeCount, plural, one {# uzanto} other {# uzantoj}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Ŝatoj" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Ŝatoj de viaj reafiŝoj" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Sciigoj pri ŝatoj de viaj reafiŝoj" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Ŝatoj de ĉi tiu afiŝo" @@ -6409,11 +6768,11 @@ msgstr "Ŝatoj de ĉi tiu afiŝo" msgid "Linear" msgstr "Linie" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Ligilo kopiita al tondujo" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Listo" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listo malsilentigita" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listoj" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6581,7 +6940,7 @@ msgstr "Ŝargi novajn afiŝojn" #: src/screens/Messages/components/MessageInput.web.tsx:202 msgctxt "placeholder" msgid "Loading chat…" -msgstr "" +msgstr "Ŝargado de babilejo…" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 msgid "Loading lists..." @@ -6595,27 +6954,27 @@ msgstr "Ŝargado de interagaj agordoj de afiŝo..." msgid "Loading..." msgstr "Ŝargado..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Ŝlosi" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Ŝlosi grupan babilejon" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Ĉu ŝlosi grupan babilejon?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Ŝlosi ĉi tiun grupan babilejon" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Ŝlosita" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Protokolo" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Emblemo farita de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Emblemo farita de <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Fluo de sekvatoj ŝajne mankas al vi. <0>Klaku ĉi tie por aldoni iun.{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Novaj afiŝoj de {firstAuthorLink} kaj <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Novaj afiŝoj de {firstAuthorName} kaj {additionalAuthorsCount, plural, one {{formattedAuthorsCount} alia} other {{formattedAuthorsCount} aliaj}}" @@ -7262,8 +7622,8 @@ msgstr "Novaĵoj" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Sekva" msgid "Next image" msgstr "Sekva bildo" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Ankoraŭ neniu sekvanto" @@ -7335,7 +7699,7 @@ msgstr "Neniu GIF-o trovita por \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "Neniu GIF-o por montri nuntempe. Reprovu post momento." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Sen bildo" @@ -7353,8 +7717,8 @@ msgstr "Neniu listo" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Vi ne plu sekvas {0}" @@ -7362,7 +7726,7 @@ msgstr "Vi ne plu sekvas {0}" msgid "No media yet" msgstr "Ankoraŭ neniu aŭdvidaĵo" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Ankoraŭ neniu mesaĝo" @@ -7378,12 +7742,12 @@ msgstr "Sen nomo" msgid "No notifications yet!" msgstr "Ankoraŭ neniu sciigo!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Neniu" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Neniu" @@ -7399,7 +7763,7 @@ msgstr "Neniu" msgid "No one but the author can quote this post." msgstr "Neniu krom la aŭtoro povas citi ĉi tiun afiŝon." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Neniu povas sendi mesaĝojn" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Sen rezulto" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sen rezultoj" @@ -7446,8 +7810,8 @@ msgstr "Sen rezultoj" msgid "No results for \"{0}\"." msgstr "Sen rezultoj por \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Neniu rezulto trovita" @@ -7509,29 +7873,29 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Ne-seksuma nudeco" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Neniu" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Nedisponebla ĉe ĉi tiu platformo." #: src/components/KnownFollowers.tsx:254 msgid "Not followed by anyone you’re following" -msgstr "" +msgstr "Sekvata de neniu el viaj sekvatoj" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Netrovita" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Ĉu vi ne pretas afiŝi? Konservu viajn plej bonajn ideojn en Malnetoj ĝis la momento estos bona." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Noto pri kundivido" @@ -7548,44 +7912,31 @@ msgstr "Noto: Ĉi tiu afiŝo videblas nur al ensalutintaj uzantoj." msgid "Nothing saved yet" msgstr "Ankoraŭ nenio konservita" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Sciigaj agordoj" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sciigaj sonoj" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Sciigoj" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Sciigoj pri ĉio alia, ekzemple kiam iu aliĝos uzante unu el viaj startpakoj." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nun" @@ -7601,7 +7952,7 @@ msgstr "Numero devas esti telefononumero" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Malŝaltita" @@ -7623,9 +7974,10 @@ msgstr "Bone" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Bone" @@ -7648,35 +8000,35 @@ msgstr "ĉe<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Restarigi la lernilon" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Al unu aŭ pli da bildoj mankas alternativa teksto." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Unu aŭ pli el viaj elektitaj dosieroj ne estas subtenata." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Unu aŭ pli el viaj elektitaj dosieroj estas tro grandaj. Maksimuma grando estas 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto." @@ -7685,6 +8037,26 @@ msgstr "Al unu aŭ pli da videaĵoj mankas alternativa teksto." msgid "Only {0} can reply." msgstr "Nur {0} povas respondi." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Nur sekvantoj kiujn mi sekvas" msgid "Only image files are supported" msgstr "Nur bildaj dosieroj estas subtenataj" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Nur WebVTT-dosieroj (.vtt) estas subtenataj" @@ -7703,6 +8085,10 @@ msgstr "Nur WebVTT-dosieroj (.vtt) estas subtenataj" msgid "Oops, something went wrong!" msgstr "Ups, io misfunkciis!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ups, io misfunkciis!" msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Malfermi la profilbildan kreilon" @@ -7720,12 +8106,17 @@ msgstr "Malfermi la profilbildan kreilon" msgid "Open camera" msgstr "Malfermi fotilon" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Malfermi opciojn de babilejano por {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Malfermi la opciojn pri konversacio" @@ -7739,16 +8130,16 @@ msgstr "Malfermi flankmenuon" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Malfermi emoĝi-elektilon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Malfermi la opciomenuon de la fluo" @@ -7760,13 +8151,22 @@ msgstr "Malfermi la tutan emoĝi-liston" msgid "Open Germ DM" msgstr "Malfermi Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Malfermi agrdojn de grupa babilejo" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Malfermi ligilon al {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Malfermi pakon" msgid "Open post options menu" msgstr "Malfermi menuon de la afiŝo" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Malfermi profilon" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Malfermi la historiopaĝon" msgid "Open system log" msgstr "Malfermi sisteman protokolon" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Malfermas dialogujon por aldoni averton pri enhavo al via afiŝo" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Malfermas pliajn detalojn por sencimigo" @@ -7838,7 +8250,7 @@ msgstr "Malfermas pliajn detalojn por sencimigo" msgid "Opens alt text dialog" msgstr "Malfermas dialogujon de alternativa teksto" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Malfermas fotilon de aparato" @@ -7858,22 +8270,24 @@ msgstr "Malfermas redaktilon" msgid "Opens device camera" msgstr "Malfermi fotilon de aparato" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Malfermas aparatan galerion por elekti ĝis {MAX_IMAGES, plural, other {# bildojn}}, aŭ unuopan videaĵon aŭ GIF-on." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Malfermas procezon de kreado de nova Bluesky-konto" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Malfermas procezon de ensalutado al via ekzistanta Bluesky-konto" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Malfermas la tutan bildon" @@ -7890,7 +8304,7 @@ msgstr "Malfermas la bildo-elektilon" msgid "Opens link {0}" msgstr "Malfermas ligilon {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Malfermas tujelsendan statusan dialogujon" @@ -7902,8 +8316,12 @@ msgstr "Malfermas formularon por restarigi la pasvorton" msgid "Opens post language settings" msgstr "Malfermi agordojn de afiŝaj lingvoj" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" +msgstr "Malfermas profilon" + +#: 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. @@ -7911,6 +8329,10 @@ msgstr "" msgid "Opens the GIF picker dialog" msgstr "Malfermas dialogujon de la GIF-elektilo" +#: 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 "Malfermas la afiŝan redaktilon" @@ -7919,9 +8341,8 @@ msgstr "Malfermas la afiŝan redaktilon" msgid "Opens this draft in the composer" msgstr "Malfermas ĉi tiun malneton en la redaktilo" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Malfermas ĉi tiun profilon" @@ -7997,12 +8418,12 @@ msgstr "Nia blogafiŝo" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Nia kontrolad-teamo ricevis vian raporton." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Niaj kontrolantoj ekzamenis denuncojn kaj decidis malebligi vian aliron al babilejojn ĉe Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Niaj kontrolantoj ekzamenis denuncojn kaj decidis malebligi vian aliron msgid "Owner" msgstr "Posedanto" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Paĝo netrovita" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Paĝo netrovita" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Paŭzigi videaĵon" msgid "People" msgstr "Homoj" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Homoj, kiujn {ownerName} sekvas, povas aliĝi tuje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Homoj sekvataj de @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Homoj sekvantaj @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Homoj kiujn mi sekvas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Homoj, kiujn mi sekvas, povas aliĝi tuje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Homoj, kiujn mi sekvas, povas peti aliĝi" @@ -8136,13 +8558,17 @@ msgstr "Telefononumero konfirmita" msgid "Photography" msgstr "Fotografio" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Bildoj destinitaj por adoltoj." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Alpingli fluon" @@ -8152,12 +8578,12 @@ msgstr "Alpingli fluon" msgid "Pin to home" msgstr "Alpingli al hejmo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Alpingli al hejmo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Alpingli al via profilo" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Alpinglita" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} alpinglita al hejmo" @@ -8236,7 +8662,7 @@ msgstr "Bonvolu elekti vian identigilon." msgid "Please choose your password." msgstr "Bonvolu elekti vian pasvorton." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Bonvolu alklaki la ligilon en la retmesaĝo, kiun ni ĵus sendis al vi, msgid "Please complete the verification captcha." msgstr "Bonvolu plenumi la captcha-kontrolon." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Bonvolu konfirmi vian retpoŝtadreson por alŝuti videaĵojn." @@ -8265,14 +8691,14 @@ msgstr "Bonvolu entajpi pasvorton. Ĝi devas havi longon de almenaŭ 8 signojn." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Bonvolu entajpi unikan nomon por ĉi tiu apa pasvorto, aŭ uzu nian hazarde generitan." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Bonvolu entajpi validan kodon." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Bonvolu entajpi validan retpoŝtadreson." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Bonvolu entajpi validan, neprovizoran retpoŝtadreson. Vi eble bezonos aliri ĉi tiun retpoŝtadreson estontece." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Bonvolu entajpi suben la kodon, kiun ni sendis al <0>{0}." @@ -8293,7 +8719,7 @@ msgstr "Bonvolu entajpi suben la kodon, kiun ni sendis al <0>{0}." msgid "Please enter the code you received and the new password you would like to use." msgstr "Bonvolu entajpi la kodon kiun vi ricevis kaj la novan pasvorton kiun vi volus uzi." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Bonvolu entajpi vian retpoŝtadreson." msgid "Please enter your invite code." msgstr "Bonvolu entajpi vian invitan kodon." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Bonvolu entajpi vian novan retpoŝtadreson." @@ -8323,7 +8749,7 @@ msgstr "Bonvolu entajpi vian uzantnomon" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Bonvolu klarigi kial vi kredas, ke ĉi tiu etikedo estis malĝuste surmetita de {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Bonvolu klarigi kial vi pensas, ke viaj babilejoj estis malebligitaj mise" @@ -8358,7 +8784,11 @@ msgstr "Bonvolu elekti kaŭzon de ĉi tiu raporto" msgid "Please sign in as @{0}" msgstr "Bonvolu ensaluti kiel @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Bonvolu konfirmi vian retpoŝtadreson" @@ -8383,7 +8813,7 @@ msgstr "Politiko" msgid "Porn" msgstr "Pornografio" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Afiŝi" @@ -8403,12 +8833,12 @@ msgstr "Afiŝi foton" msgid "Post a video" msgstr "Afiŝi videaĵon" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Afiŝi ĉiujn" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Afiŝi ĉiuokaze" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Afiŝo blokita" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Afiŝo de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Afiŝo forigita" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Malsukcesis ŝargi afiŝon. Bonvolu kontroli vian retkonekton kaj reprovi." @@ -8454,18 +8884,22 @@ msgstr "Afiŝo kaŝita de vi" msgid "Post interaction settings" msgstr "Interagaj agordoj de afiŝo" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interagaj agordoj de afiŝo" +#: 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 "Elekto de afiŝa lingvo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Afiŝi ligilon" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Afiŝoj, respondoj" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Eventuale misgvida ligilo" @@ -8525,9 +8954,10 @@ msgstr "Preferata lingvo" msgid "Press to attempt reconnection" msgstr "Premu por provi rekonekti" -#: src/components/Error.tsx:61 +#: 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 "Premu por reprovi" @@ -8536,7 +8966,7 @@ msgstr "Premu por reprovi" msgid "Press to view followers of this account that you also follow" msgstr "Premu por vidi sekvantojn de ĉi tiu konto kiun vi ankaŭ sekvas" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Antaŭmontro" @@ -8559,26 +8989,25 @@ msgstr "Privateco" msgid "Privacy and security" msgstr "Privateco kaj sekureco" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Regularo pri privateco" @@ -8586,15 +9015,15 @@ msgstr "Regularo pri privateco" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Traktado de GIF..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Traktado de videaĵo..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Traktado..." @@ -8602,10 +9031,10 @@ msgstr "Traktado..." msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profilo" @@ -8613,6 +9042,7 @@ msgstr "Profilo" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profilo netrovita" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publikigi afiŝon" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publikigi afiŝojn" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publikigi respondojn" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publikigi respondon" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Ŝprucaj" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Ŝprucosciigoj" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Ŝprucaj, Ĉiuj" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Ŝprucaj, Homoj kiujn vi sekvas" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-kodo kopiita al via tondujo!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-kodo estis elŝutita!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-kodo konservita en via bildgalerio!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Sciigoj pri citaĵoj" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Sciigoj pri citaĵoj" msgid "Quote post" msgstr "Citi afiŝon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "La citafiŝo estis religita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "La citaĵo estis sukcese malligita" @@ -8711,12 +9138,12 @@ msgstr "Citafiŝoj malebligitaj" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citaĵoj" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citaĵoj de ĉi tiu afiŝo" @@ -8728,16 +9155,16 @@ msgstr "Limo de operacioj transpasita – vi provis ŝanĝi vian identigilon tro msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Religi citaĵon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Reŝalti invitligilon" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Reŝalti ligilon" @@ -8745,8 +9172,8 @@ msgstr "Reŝalti ligilon" msgid "React with {emoji}" msgstr "Reagi per {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reagoj" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Legu blogafiŝon" @@ -8812,11 +9239,11 @@ msgstr "Realaj homoj." msgid "Reason for appeal" msgstr "Kialo de apelacio" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Ricevi en-apajn sciigojn" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Ricevi ŝprucosciigojn" @@ -8841,17 +9268,31 @@ msgstr "Rekomenditaj" msgid "Reconnect" msgstr "Rekonekti" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Malakcepti" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Malakcepti" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Malakcepti babilpeton" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Reŝargi konversaciojn" @@ -8863,6 +9304,8 @@ msgstr "Reŝargi konversaciojn" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Forigi {displayName} el grupa babilejo" msgid "Remove {displayName} from starter pack" msgstr "Forigi {displayName} el la startpako" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Forigi {displayName} el ĉi tiu grupa babilejo" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Forigi {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Forigi {historyItem}" msgid "Remove account" msgstr "Forigi konton" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Forigi ĉiujn kontaktojn" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Forigi aldonaĵon" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Forigi profilbildon" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Forigi rubandon" @@ -8914,8 +9362,9 @@ msgstr "Forigi rubandon" msgid "Remove caption file" msgstr "Forigi subtekstan dosieron" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Forigi enkorpigaĵon" @@ -8929,12 +9378,12 @@ msgstr "Forigi fluon" msgid "Remove feed?" msgstr "Ĉu forigi fluon?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Forigi el babilejo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Forigi el konservitaj afiŝoj" msgid "Remove from your feeds?" msgstr "Ĉu forigi el viaj fluoj?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Forigi bildon" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Forigi reafiŝon" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Forigi proponon" @@ -9009,11 +9458,11 @@ msgstr "Forigi konfirmon" msgid "Remove your verification for this account?" msgstr "Ĉu forigi vian konfirmon por ĉi tiu konto?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Forigita de la aŭtoro" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Forigita de vi" @@ -9035,7 +9484,7 @@ msgstr "Forigita el konservitaj afiŝoj" msgid "Removed from starter pack" msgstr "Forigita el la startpako" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Respondis al vi" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Respondoj" @@ -9104,14 +9552,14 @@ msgstr "Respondoj malebligitaj" msgid "Replies to this post are disabled." msgstr "Respondoj por ĉi tiu afiŝo estis malebligitaj." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Respondi" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Respondi ({0, plural, one {# respondo} other {# respondoj}})" @@ -9125,10 +9573,6 @@ msgstr "Respondo kaŝita de la faden-aŭtoro" msgid "Reply Hidden by You" msgstr "Respondo kaŝita de vi" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Sciigoj pri respondoj" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Agordoj pri respondado estas elektitaj de la aŭtoro de la fadeno" @@ -9137,18 +9581,18 @@ msgstr "Agordoj pri respondado estas elektitaj de la aŭtoro de la fadeno" msgid "Reply sorting" msgstr "Ordigado de respondoj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Videbleco de respondoj ĝisdatiĝis" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Respondo estis sukcese kaŝita" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Raporti" @@ -9157,20 +9601,20 @@ msgstr "Raporti" msgid "Report account" msgstr "Raporti konton" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Raporti konversacion" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Raporta dialogujo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Raporti fluon" @@ -9179,12 +9623,12 @@ msgstr "Raporti fluon" msgid "Report list" msgstr "Raporti liston" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Raporti mesaĝon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Raporti afiŝon" @@ -9199,8 +9643,8 @@ msgstr "Raporti startpakon" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Raporto sendita" @@ -9213,7 +9657,7 @@ msgstr "Raporti ĉi tiun konversacion" msgid "Report this feed" msgstr "Raporti ĉi tiun fluon" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Raporti ĉi tiun grupan babilejon" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Raporti ĉi tiun liston" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Reafiŝi" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Reafiŝi ({0, plural, one {# reafiŝo} other {# reafiŝoj}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Sciigoj pri reafiŝoj" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,33 +9722,56 @@ msgid "Reposted by you" msgstr "Reafiŝita de vi" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Reafiŝoj" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Reafiŝoj de ĉi tiu afiŝo" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Reafiŝoj de viaj reafiŝoj" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Sciigoj pri reafiŝoj de viaj reafiŝoj" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 "Peti kodon" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" +msgstr "Petoj" + +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" msgstr "" #: src/screens/Settings/AccessibilitySettings.tsx:59 @@ -9316,7 +9779,7 @@ msgstr "" msgid "Require alt text before posting" msgstr "Devigi alternativan tekston antaŭ ol afiŝi" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Devigi retmesaĝan kodon por ensaluti al via konto." @@ -9328,7 +9791,17 @@ msgstr "Necesa por ĉi tiu provizanto" msgid "Required in your region" msgstr "Devigita en via regiono" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Resendi" @@ -9373,8 +9846,8 @@ msgstr "Restarigi staton de la lernilo" msgid "Reset password" msgstr "Restarigi pasvorton" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Resinkronigi kontaktojn" @@ -9391,17 +9864,18 @@ msgstr "Reprovas la lastan agon, kiu eraris" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Reprovas la lastan agon, kiu eraris" msgid "Retry" msgstr "Reprovi" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Reprovi ŝargi raportajn opciojn" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Reveni al la antaŭa paĝo" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Revenas al hejmpaĝo" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Revenas al antaŭa paĝo" @@ -9451,10 +9925,10 @@ msgstr "GIF-oj pri malfeliĉo" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Konservi ŝanĝojn" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Ĉu konservi ŝanĝojn?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Konservi malneton" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Ĉu konservi malneton?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Konservi bildon" msgid "Save new handle" msgstr "Konservi novan identigilon" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Konservi QR-kodon" @@ -9518,13 +9994,13 @@ msgstr "Konservi QR-kodon" msgid "Save these options for next time" msgstr "Konservi tiujn opciojn por venonta fojo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Konservi al miaj fluoj" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Konservitaj" @@ -9534,32 +10010,42 @@ msgstr "Konservitaj" msgid "Saved Feeds" msgstr "Konservitaj fluoj" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Konservitaj afiŝoj" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Konservita al viaj fluoj" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Diru saluton!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" -msgstr "" +msgstr "Diru saluton al iu" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 msgid "Scam" msgstr "Trompo" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Scienco" @@ -9576,18 +10062,18 @@ msgstr "Rulumi dekstren" msgid "Scroll to top" msgstr "Rulumi al la supro" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Serĉi" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Serĉi afiŝojn de @{0}" @@ -9662,12 +10148,12 @@ msgstr "Serĉi lingvojn" msgid "Search my posts" msgstr "Serĉi miajn afiŝojn" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Serĉi afiŝojn" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Serĉi profilojn" msgid "Search..." msgstr "Serĉi..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Serĉas profilojn" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Sekureca etapo devigita" @@ -9759,7 +10245,7 @@ msgstr "Elekti {langName}" msgid "Select a color" msgstr "Elekti koloron" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Elektu kialon" @@ -9828,7 +10314,7 @@ msgstr "Elektu GIF-on" msgid "Select GIF \"{0}\"" msgstr "Elektu GIF-on \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Elektu anojn por grupa babilejo" @@ -9850,7 +10336,7 @@ msgstr "Elekti lingvon..." msgid "Select languages" msgstr "Elektu lingvojn" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Elektu kontrol-servon" @@ -9904,11 +10390,11 @@ msgstr "Elektu viajn interesojn el la opcioj sube" msgid "Select your preferred language for translations in your feed." msgstr "Elektu vian preferatan lingvon por tradukoj en via fluo." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Elektu viajn preferajn sciigajn kanalojn" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Elektado de pluraj aŭdvidaĵaj specoj ne estas subtenata." @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "Sendi kodon" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Sendi retmesaĝon" @@ -9935,11 +10421,11 @@ msgstr "Sendi retmesaĝon" msgid "Send error report" msgstr "Sendi eraran raporton" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Sendi prikomentadon" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Sendi mesaĝon" @@ -9952,7 +10438,7 @@ msgstr "Sendi afiŝon al {name}" msgid "Send post to..." msgstr "Sendi afiŝon al..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Sendi raporton al {title}" @@ -9960,7 +10446,7 @@ msgstr "Sendi raporton al {title}" msgid "Send the message from your phone" msgstr "Sendu la mesaĝon per via telefono" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Sendi per rekta mesaĝo" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Sendita je {0}" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Agordas retpoŝtadreson por restarigi pasvorton" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Agordoj" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Agordoj por agado de aliuloj" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Agordoj por sciigoj pri ŝatoj" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Agordoj por sciigoj pri mencioj" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Agordoj por sciigoj pri novaj sekvantoj" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Agordoj por sciigoj pri ĉio alia" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Agordoj por sciigoj pri ŝatoj de viaj reafiŝoj" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Agordoj por sciigoj pri citaĵoj" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Agordoj por sciigoj pri respondoj" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Agordoj por sciigoj pri reafiŝoj" @@ -10079,16 +10565,19 @@ msgstr "Seksuma ago aŭ erotika nudeco." msgid "Sexually Suggestive" msgstr "Seksume sugesta" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Konigi" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Diskonigi malgraŭ tio" @@ -10097,16 +10586,21 @@ msgstr "Diskonigi malgraŭ tio" msgid "Share author DID" msgstr "Konigi DID-on de aŭtoro" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Kunigi bildon" +#: 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 "Konigi ligilon" @@ -10114,6 +10608,11 @@ msgstr "Konigi ligilon" msgid "Share link dialog" msgstr "Dialogujo pri ligila konigado" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Konigi URI-on at:// de afiŝo" msgid "Share QR code" msgstr "Konigi QR-kodon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Konigi ĉi tiun fluon" @@ -10142,8 +10641,8 @@ msgstr "Konigu ĉi tiun startpakon kaj helpu homojn aliĝi vian komunumon ĉe Bl #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Konigi per..." @@ -10151,7 +10650,7 @@ msgstr "Konigi per..." msgid "Share your contacts to find friends" msgstr "Konigi viajn kontaktojn por trovi amikojn" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Testanto de komunaj preferoj" @@ -10167,16 +10666,16 @@ msgstr "Montri alternativan tekston" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Montri ĉiuokaze" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10195,10 +10694,10 @@ msgstr "Montri adaptadajn opciojn" #: src/components/dms/SystemMessageGroup.tsx:57 msgid "Show group chat updates" -msgstr "" +msgstr "Montri aktualigojn de grupaj babilejoj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Montri malpli da similaj afiŝoj" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Montri pli" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Montri pli da similaj afiŝoj" @@ -10246,8 +10745,8 @@ msgstr "Montri respondojn" msgid "Show replies as" msgstr "Montri respondojn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Montri respondojn por ĉiuj" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Montri averton kaj elfiltri el fluoj" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Montri informojn pri kiam ĉi tiu afiŝo estis kreita" @@ -10297,15 +10796,17 @@ msgstr "Montras la enhavon" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Ensalutu aŭ kreu konton" msgid "Sign in or create your account to join the conversation!" msgstr "Ensalutu aŭ kreu vian konton por aliĝi al la konversacio!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Ensaluti al nelistigitan konton" @@ -10337,8 +10842,12 @@ msgstr "Ensaluti al nelistigitan konton" msgid "Sign in to Bluesky or create a new account" msgstr "Ensalutu al Bluesky aŭ kreu novan konton" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Ensalutu por vidi la afiŝon" @@ -10348,9 +10857,9 @@ msgstr "Ensalutu por vidi la afiŝon" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Elsaluti" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Elsaluti" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Ĉu elsaluti?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Ĉu preterlasi malplenajn afiŝojn?" @@ -10405,7 +10914,7 @@ msgstr "Preterpasi enkondukon kaj komenci uzi vian konton" msgid "Skip to next step" msgstr "Preterpasi al sekva paŝo" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "lumbilda" @@ -10413,7 +10922,7 @@ msgstr "lumbilda" msgid "Smaller" msgstr "Malpli granda" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Dormetas la sciigon" @@ -10447,7 +10956,7 @@ msgstr "Kelkaj homoj povas respondi" #: src/components/dms/getSystemMessageInfo.ts:86 msgid "Someone joined" -msgstr "" +msgstr "Iu aniĝis" #: src/components/dms/getSystemMessageInfo.ts:87 msgid "Someone joined the group" @@ -10455,14 +10964,14 @@ msgstr "Iu aniĝis la grupon" #: src/components/dms/getSystemMessageInfo.ts:99 msgid "Someone left" -msgstr "" +msgstr "Iu foriris" #: src/components/dms/getSystemMessageInfo.ts:100 msgid "Someone left the group" msgstr "Iu foriris el la grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Iu reagis per {0}" @@ -10481,23 +10990,28 @@ msgstr "Iu estis aligita al la grupo" #: src/components/dms/getSystemMessageInfo.ts:73 msgid "Someone was removed" -msgstr "" +msgstr "Iu estis forigita" #: src/components/dms/getSystemMessageInfo.ts:74 msgid "Someone was removed from the group" msgstr "Iu estis forigita el la grupo" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Io ne estis tute ĝusta pri la datumoj, kiujn vi provas raporti. Bonvolu kontaki subtenejon." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Io misfunkciis" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Io misfunkciis!" msgid "Something went wrong. Please try again in a moment." msgstr "Io misfunkciis. Bonvolu reprovi post momento." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Io misfunkciis. Bonvolu reprovi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Ĉu io misfunkciis? Sciigu nin." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Sporto" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Komencu konversacion, kaj ĝi aperos ĉi tie." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Komenci novan babilejon" @@ -10582,17 +11101,17 @@ msgstr "Komenci aldoni homojn" msgid "Start adding people!" msgstr "Komencu aldoni homojn!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Komenci babilejon" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Komenci babili kun {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpako" @@ -10654,12 +11173,12 @@ msgstr "Konservejo vakigita, nun relanĉu la apon." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Historio de agoj" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Sendi" @@ -10684,9 +11203,9 @@ msgstr "Sendi apelacion" msgid "Submit Appeal" msgstr "Sendi apelacion" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Sendi raporton" @@ -10695,15 +11214,15 @@ msgid "Subscribe" msgstr "Aboni" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" -msgstr "" +msgstr "Aboni ĉe {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" -msgstr "" +msgstr "Aboni {publicationTitle} ĉe {0}" #. placeholder {0}: labelerInfo.creator.handle #: src/screens/Profile/Sections/Labels.tsx:231 @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Sukceso" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Sukceso!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Sukcese konfirmita" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Proponita" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sunsubiro" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Subteno" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Subteno por ĉi tiu funkcio en via lando ankoraŭ ne estis ebligita. Bonvolu rekontroli poste." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Ŝanĝi konton" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Ŝanĝi konton" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Ŝanĝi al {0}" @@ -10824,13 +11347,17 @@ msgstr "Sistema protokolo" msgid "Tags only" msgstr "Nur kradvortoj" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" -msgstr "" +msgstr "Tuŝeti por detaloj" #: src/view/com/feeds/MissingFeed.tsx:90 msgid "Tap for information" @@ -10842,7 +11369,7 @@ msgstr "Tuŝetu por pliaj informoj" #: src/screens/Signup/StepInfo/index.tsx:323 msgid "Tap here to update your location with GPS." -msgstr "" +msgstr "Tuŝeti ĉi tie por aktualigi vian lokon per GPS." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" @@ -10854,33 +11381,51 @@ msgstr "Tuŝetu por kvitanci, ke vi komprenas kaj konsentas pri tiuj aktualigoj msgid "Tap to close context menu" msgstr "Tuŝetu por fermi kuntekstmenuon" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tuŝetu por ignori" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "Tuŝetu por forigi" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Tuŝetu por forigi vian reagon {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "Tuŝetu por reprovi" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Tuŝetu por montri {0} reagojn" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tuŝetu por montri ĉiujn reagojn" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tuŝetu por vidi reagojn" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Uzokondiĉoj" @@ -10939,7 +11484,7 @@ msgstr "Teksto k kradvortoj" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Kampo de teksta enigo" @@ -10981,9 +11526,9 @@ msgstr "Jen ĉio, uloj!" msgid "That's everything!" msgstr "Tio estas ĉio!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Post malbloki, la konto povos interagi kun vi." @@ -11049,6 +11594,11 @@ msgstr "La sekvaj agordoj estos uzataj defaŭlte por ĉiuj kreataj de vi afiŝoj 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "La afiŝo al kiu vi respondas estis markita kiel tajpita en {suggestedLanguageName} de ĝia aŭtoro. Ĉu vi volas respondi en <0>{suggestedLanguageName}?" @@ -11057,9 +11607,9 @@ msgstr "La afiŝo al kiu vi respondas estis markita kiel tajpita en {suggestedLa msgid "The Privacy Policy has been moved to <0/>" msgstr "La regularo pri privateco translokiĝis al <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Etosa" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Estas neniu invitligilo por ĉi tiu grupa babilejo." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Estis problemo ŝargante GIF-ojn. Kontrolu vian konekton kaj reprovu." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Estis problemo ŝargante afiŝojn. Tuŝeti ĉi tie por reprovi." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Estis problemo ĝisdatigante viajn fluojn, bonvolu kontroli vian interretan konekton kaj reprovu." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Estis problemo! {0}" @@ -11221,6 +11774,14 @@ msgstr "Ĉi tiuj estas viaj defaŭltaj agordoj" msgid "These settings only apply to the Following feed." msgstr "Ĉi tiuj agordoj nur aplikas al la Following-fluo." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Ĉi tiu {screenDescription} estas markita per flago:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Ĉi tiu apelacio estos sendota al <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Ĉi tiu apelacio estos sendota al la kontrolservo de Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Ĉi tiu apelacio estos sendota al la kontrolservo de Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "Ĉi tiu babilejo estas finiĝinta" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Ĉi tiu babilejo estas ŝlosita" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Ĉi tiu babilo malkonektiĝis" @@ -11310,7 +11881,11 @@ msgstr "Ĉi tiu enhavo ne disponeblas pro ke unu el la koncernataj uzantoj bloki msgid "This content is not viewable without a Bluesky account." msgstr "Ĉi tiu enhavo ne estas videbla sen Bluesky-konto." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Ĉi tiu konversacio estas kun forigita aŭ malaktivigita konto. Premu por opcioj" @@ -11318,7 +11893,7 @@ msgstr "Ĉi tiu konversacio estas kun forigita aŭ malaktivigita konto. Premu po msgid "This draft will be permanently deleted." msgstr "Ĉi tiu malneto estos porĉiame forigota." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Ĉi tiu retpoŝtadreso jam estas ligita al via konto." @@ -11356,11 +11931,15 @@ msgstr "Ĉi tiu fluo malplenas." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Ĉi tiu fluo ne plu estas enreta. Anstataŭe ni montras <0>Discover." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Tiu identigilo estas rezervita. Bonvolu provi alian." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "Ĉi tiuj informoj estas privataj kaj ne montrataj al aliaj uzantoj." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "Ĉi tio ne estas valida ligilo" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,15 +11997,19 @@ msgstr "Nomo aŭ priskribo de ĉi tiu listo – kreita de vi – enhavas eble ma msgid "This list is empty." msgstr "Ĉi tiu listo malplenas." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 -msgid "This message is hidden because this user is blocking you." +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" msgstr "" +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." -msgstr "" +msgstr "Ĉi tiu mesaĝo estas kaŝita ĉar vi blokas ĉi tiun uzanton." #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." @@ -11430,11 +12021,11 @@ msgstr "" #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "This person is blocking you" -msgstr "" +msgstr "Ĉi tiu persono blokas vin" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ĉi tiu afiŝo asertas, ke ĝi estis kreita je <0>{0}, sed ĝi estis unue vidita ĉe Bluesky je <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Ĉi tiu afiŝo videblas nur al ensalutintaj uzantoj." msgid "This post was deleted by its author" msgstr "Ĉi tiu afiŝo estis forigita de ĝia aŭtoro" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "La aŭtoro de ĉi tiu afiŝo malŝaltis citafiŝojn." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Ĉi tiu profilo estas videbla nur al ensalutintaj uzantoj. Ĝi ne estos videbla al ne ensalutintaj homoj." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Ĉi tiu respondo estos ordigota en kaŝitan sekcion ĉe la subo de via fadeno kaj silentigos sciigojn pri sekvontaj respondoj - ambaŭ por vi kaj aliuloj." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Ĉi tiu ekrano disponeblas nur por grupaj konversacioj." @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Ĉi tiu uzanto havas neniun sekvanton." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11523,7 +12115,7 @@ msgstr "Ĉi tiu uzanto estas inkluzivita en la listo <0>{0}, kiun vi silenti #: src/components/NewskieDialog.tsx:49 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 ties aliĝis." +msgstr "Ĉi tiu uzanto novas ĉi tie. Premu por pliaj informoj pri kiam tiu aliĝis." #: src/view/com/profile/ProfileFollows.tsx:182 msgid "This user isn't following anyone." @@ -11531,7 +12123,7 @@ msgstr "Ĉi tiu uzanto sekvas neniun." #: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 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 "" +msgstr "Ĉi tiu videaĵo neludeblas per via aparato. Nepraj videokodekoj (H.264/AAC) eble mankas en via retumilo aŭ operaciumo." #: 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." @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Ĉi tio forigos @{0} el la listo de rapidatingo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Ĉi tio forigos vian afiŝon el ĉi tiu citafiŝo por ĉiuj uzantoj kaj anstataŭigos ĝin per lokokupilo." @@ -11574,7 +12166,7 @@ msgstr "Fadenaj preferoj" msgid "Threaded" msgstr "Fadene" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Agordoj pri fadenoj" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Por malŝalti la retpoŝtan 2FA-metodon, bonvolu konfirmi vian atingon al la retpoŝtadreso." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Por malŝalti vian retpoŝtan 2FA-metodon, bonvolu konfirmi vian atingon al <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Plej popularaj" msgid "Top replies first" msgstr "La plej popularaj respondoj unue" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Temo" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traduki" @@ -11667,8 +12259,8 @@ msgstr "Tradukita" msgid "Translating" msgstr "Tradukado" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Tradukado…" @@ -11702,7 +12294,7 @@ msgstr "Popularaj videaĵoj" msgid "Trolling" msgstr "Trolado" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Fido aperas per interrilatoj, komunumoj kaj komunaj kuntekstoj, do ni ankaŭ estigis <0>fidataj konfirmantoj: organizoj kiuj povas rekte fari konfirmadon." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Reprovi" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Reprovi" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Provi Google Translate" +#: 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 "TV" @@ -11763,11 +12369,15 @@ msgstr "Ne eblas kontakti vian servon. Bonvolu kontroli vian interretan konekton msgid "Unable to delete" msgstr "Ne eblas forigi" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "Nedisponebla" msgid "Unavailable feed information" msgstr "Nedisponeblaj informoj pri fluo" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Malbloki" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Malbloki" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Malbloki {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Malbloki konton" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Ĉu malbloki konton?" @@ -11837,8 +12452,8 @@ msgstr "Malbloki liston" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Malfari" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Malfari reafiŝon ({0, plural, one {# reafiŝo} other {# reafiŝoj}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Ne sekvi {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Ne sekvi konton" @@ -11872,7 +12487,7 @@ msgstr "Ne sekvi konton" msgid "Unfollows the user" msgstr "Ĉesas sekvi la uzanton" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Bedaŭrinde, neniu el viaj abonitaj etikediloj subtenas ĉi tiun tipon de raporto." @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Malinviti" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Malinviti {displayName} el ĉi tiu grupa babilejo" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Nekonata konfirmanto" @@ -11904,21 +12511,21 @@ msgstr "Neetikedita poradolta enhavo" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Ne plu ŝati" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Ne plu ŝati ({0, plural, one {# ŝato} other {# ŝatoj}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Malŝlosi babilejon" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Malbloki ĉi tiun grupan babilejon" @@ -11939,14 +12546,14 @@ msgstr "Malsilentigi" msgid "Unmute {0}" msgstr "Malsilentigi {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Malsilentigi konton" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Malsilentigi konversacion" @@ -11955,12 +12562,12 @@ msgstr "Malsilentigi konversacion" msgid "Unmute list" msgstr "Malsilentigi liston" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Malsilentigi ĉi tiun grupan babilejon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Malsilentigi fadenon" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Depingli" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Depingli fluon" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Depingli de la hejmpaĝo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Depingli de la profilo" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Depingli kontrol-liston" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} depinglita de Hejmo" @@ -12030,14 +12637,18 @@ msgstr "Malaboni de ĉi tiu etikedilo" msgid "Unsubscribed from list" msgstr "Malabonita de listo" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Nesubtenata tonduja enhavo" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Nesubtenata videaĵa tipo: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Ĝisdatigi" msgid "Update <0>{displayName} in Lists" msgstr "Ĝisdatigi <0>{displayName} en listoj" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Ĝisdatigi retpoŝtadreson" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Aktualigi invitligilon" @@ -12065,11 +12680,15 @@ msgstr "Aktualigi invitligilon" msgid "Update to {domain}" msgstr "Ŝanĝi al {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Ĝisdatigi vian apon al la plej lasta versio por aliĝi!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Ĝisdatigi vian retpoŝtadreson" @@ -12078,19 +12697,19 @@ msgstr "Ĝisdatigi vian retpoŝtadreson" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 msgid "Update your location" -msgstr "" +msgstr "Aktualigi vian lokon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Ĝisdatigo de citaĵa aldonaĵo malsukcesis" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ĝisdatigado de responda videbleco malsukcesis" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Alŝuti foton anstataŭe" @@ -12098,39 +12717,40 @@ msgstr "Alŝuti foton anstataŭe" msgid "Upload a text file to:" msgstr "Alŝuti tekstodosieron al:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Alŝuti el la fotilo" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Alŝuti el la dosieroj" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Alŝuti el la biblioteko" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Alŝutado de GIF..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Alŝutado de bildoj..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Alŝutado de ligila miniaturo..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Alŝutado de videaĵo..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "uzanto" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Uzanto blokita" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Listo de uzantoj de {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Listo de uzantoj de {0}" @@ -12255,15 +12875,15 @@ msgstr "uzantoj sekvataj de <0>@{0}" msgid "users following <0>@{0}" msgstr "uzantoj sekvantaj <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" -msgstr "" +msgstr "Uzantoj, kiujn mi sekvas" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" -msgstr "" +msgstr "Uzantoj, kiujn mi sekvas" #: src/screens/Settings/components/ChangeHandleDialog.tsx:451 msgid "Value:" @@ -12277,7 +12897,7 @@ msgstr "Konfirmado malsukcesis, bonvolu reprovi." msgid "Verification settings" msgstr "Konfirmadaj agordoj" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Konfirmadaj agordoj" @@ -12304,8 +12924,8 @@ msgstr "Konfirmi denove" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Konfirmi kodon" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Kontrolu DNS-rikordon" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Konfirmi retmesaĝan kodon" @@ -12349,7 +12969,7 @@ msgstr "Ĉu konfirmi ĉi tiun konton?" msgid "Verify your age" msgstr "Konfirmi vian aĝon" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Versio {0}" msgid "Video" msgstr "Videaĵo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Pritraktado de videaĵo fiaskis" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Videaĵo-fluo" @@ -12419,7 +13039,7 @@ msgstr "Videaĵo netrovita." msgid "Video settings" msgstr "Agordoj pri videaĵoj" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Videaĵo alŝutita" @@ -12432,20 +13052,20 @@ msgstr "Videaĵo: {0}" msgid "Videos" msgstr "Videaĵoj" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vidi" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" -msgstr "" +msgstr "Vidi {0}" #. placeholder {0}: profile.handle #: src/screens/Profile/Header/Shell.tsx:257 @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Vidi la profilon de {0}" @@ -12467,19 +13087,14 @@ msgstr "Vidi la profilon de {0}" msgid "View {0}’s profile" msgstr "Vidi profilon de {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Vidi profilon de {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" -msgstr "" - -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" +msgstr "Vidi {publicationTitle}" #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" @@ -12503,10 +13118,18 @@ msgstr "Vidi detalojn" msgid "View full thread" msgstr "Vidi tutan fadenon" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Vidi alvenintajn petojn al grupaj babilejoj" +#: 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:56 msgid "View information about these labels" msgstr "Vidu informojn pri ĉi tiuj etikedoj" @@ -12522,7 +13145,7 @@ msgstr "Vidi pli" msgid "View more trending videos" msgstr "Vidi pli da furoraj videaĵoj" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Vidi afiŝon" @@ -12539,18 +13162,18 @@ msgstr "Vidi profilon" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" -msgstr "" +msgstr "Vidi publikigon" #: src/view/com/profile/ProfileSubpageHeader.tsx:108 msgid "View the avatar" msgstr "Vidi la profilbildon" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Vidi la invitligilon por ĉi tiu grupa babilejo" @@ -12563,7 +13186,7 @@ msgstr "Vidi la etikedadan servon provizitan de @{0}" msgid "View this user's verifications" msgstr "Vidi konfirmojn de ĉi tiu uzanto" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Vidi uzantojn, kiuj ŝatis ĉi tiun fluon" @@ -12596,8 +13219,8 @@ msgstr "Vidi viajn silentigitajn kontojn" msgid "View your verifications" msgstr "Vidi viajn konfirmojn" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Montras la tutan bildon" @@ -12640,8 +13263,8 @@ msgstr "Averti pri enhavo" msgid "Warn content and filter from feeds" msgstr "Averti pri enhavo kaj elfiltri el fluoj" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Spekti nun" @@ -12665,11 +13288,15 @@ msgstr "Ni ne povis trovi rezultojn por tiu kradvorto." msgid "We couldn't find any results for that topic." msgstr "Ni ne povis trovi rezultojn por tiu temo." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Ni ne povis ŝargi ĉi tiun konversacion" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "Ni ne povis ŝargi agordojn de ĉi tiu konversacio" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Ni rekomendas al vi elekti almenaŭ du interesojn." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Ni sendis retmesaĝon al <0>{0} enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Ni ne povis determini ĉu vi rajtas alŝuti videaĵojn. Bonvolu provi denove." @@ -12744,12 +13371,12 @@ msgstr "Ni ne eblis ricevi la konfirmadon pro konekta problemo. Eble ĝi alvenos msgid "We will let you know when your account is ready." msgstr "Ni informos vin kiam via konto estos preta." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Ni sciigos vin, kiam ni trovos viajn amikojn." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Ni sendos retmesaĝon al <0>{0} enhavatan ligilon. Bonvolu alklaki ĝin por plenumi la procezon de retpoŝtadresa konfirmado." @@ -12779,12 +13406,12 @@ msgstr "Ni havas problemojn pravalorizante la procezon de garantio pri aĝo por msgid "We're having network issues, try again" msgstr "Ni havas retajn problemojn, provu denove" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Ni havas retajn problemojn, provu denove" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ni bedaŭras! La afiŝo al kiu vi respondas estis forigita." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Ni bedaŭras! Ni ne povas trovi la paĝon, kiun vi serĉis." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Kiel vi volas nomi vian startpakon?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Kio okazas?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Kiam vi tuŝetos markon, vi vidos kiuj organizoj donis konfirmon." @@ -12878,7 +13505,7 @@ msgstr "Kiam vi tuŝetos markon, vi vidos kiuj organizoj donis konfirmon." msgid "Who can interact with this post?" msgstr "Kiu povas interagi kun ĉi tiu afiŝo?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Kiu povas aliĝi al ĉi tiu grupa babilejo kaj kiel" @@ -12887,13 +13514,13 @@ msgstr "Kiu povas aliĝi al ĉi tiu grupa babilejo kaj kiel" msgid "Who can reply" msgstr "Kiu povas respondi" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Kiu povas konfirmi?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ups!" @@ -12939,7 +13566,7 @@ msgstr "Kial ĉi tiu startpako estu reviziita?" msgid "Why should this user be reviewed?" msgstr "Kial ĉi tiu uzanto estu reviziita?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Ĉu vi volas bloki ĉi tiun uzanton kaj/aŭ forigi ĉi tiun konversacion?" @@ -12951,7 +13578,7 @@ msgstr "" 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Ĉu vi volas konservi ĉi tion kiel malneto por redakti ĝin poste?" msgid "Write a post" msgstr "Tajpu afiŝon" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Tajpu afiŝon" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Tajpu vian respondon" @@ -12978,7 +13605,8 @@ msgstr "Verkistoj" msgid "Wrong DID returned from server. Received: {0}" msgstr "Malĝusta DID sendita de servilo. Ricevita: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Neĝusta speco de konversacio" @@ -13005,11 +13633,11 @@ msgstr "Jes, forigu mian konton" msgid "Yes, delete this starter pack" msgstr "Jes, forigu ĉi tiun startpakon" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Jes, malligi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Jes, kaŝi" @@ -13030,17 +13658,17 @@ 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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" -msgstr "" +msgstr "Vi blokas {0}" #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "You are blocking the chat owner" -msgstr "" +msgstr "Vi blokas la babilejan posedanton" #: src/components/dms/MessagesListBlockedFooter.tsx:83 msgid "You are blocking this person" -msgstr "" +msgstr "Vi blokas ĉi tiun personon" #: src/components/forms/HostingProvider.tsx:46 msgid "You are creating an account on" @@ -13068,7 +13696,7 @@ msgstr "Vi tujelsendas" msgid "You are no longer live" msgstr "Vi ne plu tujelsendas" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Vi ne rajtas alŝuti videaĵojn." @@ -13117,21 +13745,30 @@ msgstr "Vi ĉiam povas supozi permeson kaj forigi viajn datumojn" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Vi povas elekti ĉu sciigoj havas sonon en la babilejaj agordoj ene de la apo" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Vi povas daŭrigi daŭrantajn konversaciojn sendepende de la agordo kiun vi elektos." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Vi nun povas elekti ricevi sciigojn kiam specifaj homoj afiŝos. Se estas iu pri kiu vi volas akuratajn ĝisdatigojn, iru al ties profilo kaj trovu la novan sonorilan piktogramon apud la sekvi-butono." +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Vi nun povas ensaluti per via nova pasvorto." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn." @@ -13139,11 +13776,11 @@ msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Vi povas konservi malnetojn maksimume nur 1000 signojn longajn. Ĉu vi volas forĵeti ĉi tiun afiŝon antaŭ ol vidi viajn malnetojn?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Vi povas elekti nur unu GIF-on samtempe." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Vi povas elekti nur unu videaĵon samtempe." @@ -13153,12 +13790,12 @@ msgstr "Vi povas reaktivigi vian konton por daŭrigi ensaluton. Via profilo kaj #: src/components/dms/MessagesListBlockedFooter.tsx:93 msgid "You can read chat history but can’t send new messages." -msgstr "" +msgstr "Vi povas legi babilejan historion sed ne povas sendi novajn mesaĝojn." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Vi povas elekti ĝis {MAX_IMAGES, plural, other {# bildojn}} entute." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,7 +13803,12 @@ msgstr "Vi povas elekti ĝis {MAX_IMAGES, plural, other {# bildojn}} entute." msgid "You can update this later from your settings." msgstr "Vi povas ĝisdatigi ĉi tion poste en viaj agordoj." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Vi havas neniun konservitan fluon." msgid "You got here first" msgstr "Vi alvenis ĉi tien unue" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Vi devas aĝi almenaŭ 13 jarojn por uzi Bluesky. Legu niajn <0>uzokondiĉojn por pliaj informoj." @@ -13332,11 +13982,12 @@ msgstr "Vi devas aĝi almenaŭ 13 jarojn por uzi Bluesky. Legu niajn <0>uzokondi msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vi devas sekvi almenaŭ sep aliajn homojn por generi startpakon." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Vi devas permesi aliron al via bildbiblioteko por konservi QR-kodon" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Vi devas permesi aliron al via aŭdvida biblioteko." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Vi reagis per {0}" @@ -13368,8 +14023,13 @@ msgstr "Vi reagis per {0} al {target}" msgid "You recently changed your birthdate" msgstr "Vi lastatempe ŝanĝis vian naskiĝdaton" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Vi elsalutos el ĉiuj viaj kontoj." @@ -13378,11 +14038,11 @@ msgstr "Vi elsalutos el ĉiuj viaj kontoj." msgid "You will no longer receive notifications for {0}" msgstr "Vi ne plu ricevos sciigojn pri {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Vi ne plu ricevos sciigojn pri ĉi tiu fadeno" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Vi nun ricevos sciigojn pri ĉi tiu fadeno" @@ -13390,12 +14050,12 @@ msgstr "Vi nun ricevos sciigojn pri ĉi tiu fadeno" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Retmesaĝe vi ricevos \"restarigan kodon\". Enigu tiun kodon ĉi tien, poste entajpu vian novan pasvorton." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Vi ne povos aliĝi ree, krom se vi estos invitota." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Vi: {message}" @@ -13429,6 +14089,10 @@ msgstr "Vi ekricevos sciigojn pri {0}!" msgid "You'll stay updated with these feeds" msgstr "Vi estos ĝisdata kun ĉi tiuj fluoj" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Vi estas en vico" @@ -13453,7 +14117,7 @@ msgstr "Vi malpermesis aliron al viaj kontaktoj" #: src/state/shell/progress-guide.tsx:237 msgid "You've found some people to follow" -msgstr "Vi trovis kelkajn personojn por sekvi" +msgstr "Vi trovis kelkajn homojn por sekvi" #: src/components/FocusScope/index.tsx:112 msgid "You've reached the end of the active content." @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Vi atingis la maksimuman nombron da malnetoj" @@ -13475,11 +14139,11 @@ msgstr "Vi atingis la maksimuman nombron da permesitaj petoj. Bonvolu reprovi po msgid "You've reached the start of the active content." msgstr "Vi atingis la komencon de la aktiva enhavo." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da bajtoj)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vi atingis vian tagan limon por videaĵ-alŝutoj (tro da videaĵoj)" @@ -13499,10 +14163,18 @@ msgstr "Via konto estis forigita, ĝis! ✌️" msgid "Your account has been suspended" msgstr "Via konto estis suspendita" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Via konto ne estas sufiĉe malnova por alŝuti videaĵojn. Bonvolu reprovi poste." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Via konta deponejo enhavanta ĉiujn publikajn datum-rikordojn estas elŝutebla kiel \"CAR\"-dosiero. Tiu dosiero ne enhavas aŭdvidaĵajn enkorpigaĵojn kiel bildoj aŭ viaj privataj datumoj kiuj devas esti elŝutotaj aparte." @@ -13519,7 +14191,7 @@ msgstr "Via apelacio estas sendita. Se via apelacio sukcesos, vi ricevos retmesa msgid "Your birth date" msgstr "Via naskiĝdato" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Viaj babilejoj estis malŝaltitaj" @@ -13527,11 +14199,11 @@ msgstr "Viaj babilejoj estis malŝaltitaj" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Via elekto estos memorota por estontecaj ligiloj. Vi povas ŝanĝi ĝin iam ajn en agordoj." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Via kontakto {firstAuthorLink} estas ĉe Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Via kontakto {firstAuthorName} estas ĉe Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Via retpoŝtadreso" msgid "Your email appears to be invalid." msgstr "Via retpoŝtadreso ŝajnas esti nevalida." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Via retpoŝtadreso ankoraŭ ne estas konfirmita. Bonvolu konfirmi vian retpoŝtadreson por ĝui ĉiujn funkciojn de Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Via fluo de sekvatoj estas malplena! Eksekvu pli da homoj por ekscii, ki msgid "Your full handle will be <0>@{0}" msgstr "Via tuta identigilo estos <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Via loko estis ĝisdatigita." msgid "Your muted words" msgstr "Viaj silentigitaj vortoj" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Via nomo, profilbildo kaj la nomo de la grupa babilejo videblos al ĉiuj." +#: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Via afiŝo estis sendita" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Viaj afiŝoj estis senditaj" @@ -13635,7 +14307,7 @@ msgstr "Viaj afiŝoj estis senditaj" msgid "Your preferred language" msgstr "Via preferata lingvo" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Via profilbildo" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Via respondo estis sendita" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Via raporto estos sendota al <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Via raporto estos sendota al <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Viaj elektitaj interesoj helpas nin havigi al vi enhavon, kiu gravas al vi." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 ffde01d494..7a753e6f10 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -21,9 +21,13 @@ 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 currently selected. #: src/components/InterestTabs.tsx:330 msgid "\"{interestsDisplayName}\" category (active)" -msgstr "" +msgstr "Categoría \"{interestsDisplayName}\" (activa)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(enlace de invitación al chat)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(contiene contenido incrustado)" @@ -49,7 +53,7 @@ msgstr "{0, plural, one {# siguiendo} other {# siguiendo}}" #. placeholder {0}: item.count #: src/components/contacts/screens/ViewMatches.tsx:268 msgid "{0, plural, one {# friend found!} other {# friends found!}}" -msgstr "" +msgstr "{0, plural, one {¡# amigo encontrado!} other {¡# amigos encontrados!}}" #. placeholder {0}: diff.value #: src/lib/hooks/useTimeAgo.ts:159 @@ -72,9 +76,9 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# me gusta} other {# me gusta}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" -msgstr "" +msgstr "{0, plural, one {# miembro} other {# miembros}}" #. placeholder {0}: diff.value #: src/lib/hooks/useTimeAgo.ts:149 @@ -86,11 +90,16 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mes} other {# meses}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# nueva solicitud para unirse} other {# nuevas solicitudes para unirse}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" -msgstr "" +msgstr "{0, plural, one {# persona reaccionó} other {# personas reaccionaron}} – {1}" #. placeholder {0}: quoteCount ?? 0 #: src/screens/Post/PostQuotes.tsx:34 @@ -109,17 +118,17 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento sin leer} other {# elementos sin leer}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" -msgstr "" +msgstr "{0, plural, one {#min} other {#min}}" #. How many months have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -130,7 +139,7 @@ msgstr "{0, plural, one {# mes} other {# meses}}" #. placeholder {0}: draft.meta.replyCount #: src/view/com/composer/drafts/DraftItem.tsx:143 msgid "{0, plural, one {1 more post} other {# more posts}}" -msgstr "" +msgstr "{0, plural, one {1 publicación más} other {# publicaciones más}}" #. placeholder {0}: profile.followersCount || 0 #: src/components/ProfileHoverCard/index.web.tsx:444 @@ -153,29 +162,29 @@ msgstr "{0, plural, one {publicación} other {publicaciones}}" #. placeholder {0}: starterPack.joinedAllTimeCount || 0 #: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "{0, plural, other {# people have}} joined Bluesky via this starter pack!" -msgstr "" +msgstr "{0, plural, one {# persona se ha unido} other {# personas se han unido}} a Bluesky a través de este paquete de inicio!" #. placeholder {0}: starterPack.list.listItemCount - 4 #: src/components/dialogs/StarterPackDialog.tsx:362 msgid "{0, plural, other {+# more}}" -msgstr "" +msgstr "{0, plural, other {+# más}}" #. placeholder {0}: aaRegionConfig.minAccessAge #: src/screens/Signup/StepInfo/index.tsx:311 msgid "{0, plural, other {You must be # years of age or older to create an account in your region.}}" -msgstr "" +msgstr "{0, plural, one {Debes tener al menos # año para crear una cuenta en tu región.} other {Debes tener al menos # años para crear una cuenta en tu región.}}" #. 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 "" +msgstr "{0} · {1}" #. placeholder {0}: desc.name #: src/components/moderation/ContentHider.tsx:100 msgid "{0} (Account)" -msgstr "" +msgstr "{0} (Cuenta)" #. Pattern: {wordValue} in tags #. placeholder {0}: word.value @@ -190,25 +199,25 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>texto y etiquetas" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" -msgstr "" +msgstr "{0} añadido al chat" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" -msgstr "" +msgstr "{0} y {1} añadidos al chat" #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 msgid "{0} following" -msgstr "" +msgstr "{0} siguiendo" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" -msgstr "" +msgstr "{0} te tiene bloqueado" #. placeholder {0}: sanitizeHandle(profile.handle) #: src/features/liveNow/components/LiveStatusDialog.tsx:84 @@ -218,22 +227,22 @@ msgstr "{0} está en directo" #. placeholder {0}: createFullHandle(draftValue, state.userDomain) #: src/screens/Signup/StepHandle/index.tsx:186 msgid "{0} is not available" -msgstr "" +msgstr "{0} no está disponible" #. placeholder {0}: codeToLanguageName( expectedSourceLanguage, langPrefs.appLanguage, ) #: src/lib/translation/index.tsx:314 msgid "{0} is not supported by your device." -msgstr "" +msgstr "{0} no es compatible con tu dispositivo." #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:83 msgid "{0} joined" -msgstr "" +msgstr "{0} se unió" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:84 msgid "{0} joined the group" -msgstr "" +msgstr "{0} se unió al grupo" #. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) #: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 @@ -243,12 +252,12 @@ msgstr "{0} se han unido esta semana" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:96 msgid "{0} left" -msgstr "" +msgstr "{0} salió" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:97 msgid "{0} left the group" -msgstr "" +msgstr "{0} salió del grupo" #. placeholder {0}: formatTime(currentTime) #. placeholder {1}: formatTime(duration) @@ -264,60 +273,85 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reaccionó con {1}" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:57 msgid "{0} was added" -msgstr "" +msgstr "{0} fue añadido" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:58 msgid "{0} was added to the group" -msgstr "" +msgstr "{0} fue añadido al grupo" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:70 msgid "{0} was removed" -msgstr "" +msgstr "{0} fue eliminado" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:71 msgid "{0} was removed from the group" -msgstr "" +msgstr "{0} fue eliminado del grupo" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" -msgstr "" +msgstr "{0}, {1} y {memberCount, plural, one {# persona más} other {# personas más}} añadidos al chat" #. 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 "" +msgstr "{0}, un feed de {1}, le gusta a {2}" #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') #: src/view/com/feeds/FeedSourceCard.tsx:192 msgid "{0}, a list by {1}" -msgstr "" +msgstr "{0}, una lista de {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {miembro} other {miembros}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} miembros" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,31 +377,56 @@ msgstr "{0} min." msgid "{0}s" msgstr "{0} s" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {No hay solicitudes para unirse} one {# solicitud para unirse} other {# solicitudes para unirse}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" -msgstr "" +msgstr "{count, plural, one {# actualización del chat} other {# actualizaciones del chat}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# nueva solicitud para unirse} other {# nuevas solicitudes para unirse}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" -msgstr "" +msgstr "{count, plural, one {# solicitud} other {# solicitudes}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento sin leer} other {# elementos sin leer}}" -#. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 -msgid "{count}+" -msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Actualiza la página para verlo.} other {Actualiza la página para verlos todos.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Esta publicación tiene # foto.} other {Esta publicación tiene # fotos.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Actualiza tu aplicación para verlo.} other {Actualiza tu aplicación para verlos todos.}}" + +#. 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 "{count, plural, one {#+ solicitud para unirse} other {#+ solicitudes para unirse}}" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:56 +msgid "{count}+" +msgstr "{count}+" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" -msgstr "" +msgstr "{count}+ solicitudes" #: src/components/dms/DateDivider.tsx:60 msgid "{date} at {time}" -msgstr "" +msgstr "{date} a las {time}" #: src/lib/generate-starterpack.ts:104 #: src/screens/StarterPack/Wizard/index.tsx:189 @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te siguieron" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gusta tu feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gusta tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "A {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gusta tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} eliminaron sus verificaciones de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} han republicado tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} han republicado tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} se han inscrito a tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te han verificado" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} también te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} le gusta tu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} le gusta tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "A {firstAuthorLink} le gusta tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} eliminó su verificación de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} republicó tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} republicó tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} se inscribió con tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} te verificó" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te siguieron" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "A {firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} les gustó tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} eliminaron sus verificaciones de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} republicaron tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} se han inscrito con tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} y {additionalAuthorsCount, plural, one {{formattedAuthorsCount} más} other {{formattedAuthorsCount} más}} te verificaron" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} también te siguió" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "A {firstAuthorName} le gusta tu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} le gusta tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "A {firstAuthorName} le gusta tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} eliminó su verificación de tu cuenta" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} republicó tu publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} republicó tu republicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} se inscribió con tu paquete de inicio" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} te verificó" @@ -538,18 +597,18 @@ msgstr "{firstAuthorName} te verificó" msgid "{following} following" msgstr "{following} siguiendo" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" -msgstr "" +msgstr "No se puede añadir a {handle}" #: src/components/dialogs/SearchablePeopleList.tsx:459 msgid "{handle} can't be messaged" msgstr "No se puede enviar un mensaje a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" -msgstr "" +msgstr "No se pueden enviar mensajes a {handle}" #: src/features/liveNow/utils.ts:15 msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesStri msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# hora} other {# horas}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}+ nuevas solicitudes para unirse" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ nuevas solicitudes para unirse" + #. 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!" @@ -566,24 +635,24 @@ msgstr "Se han unido {joinedAllTimeCount, plural, other {# usuarios}}." #: src/view/com/composer/videos/SubtitleDialog.tsx:138 msgid "{MAX_ALT_TEXT, plural, other {Alt text must be less than # characters.}}" -msgstr "" +msgstr "{MAX_ALT_TEXT, plural, one {El texto alternativo debe tener menos de # carácter.} other {El texto alternativo debe tener menos de # caracteres.}}" #: src/screens/Profile/Header/EditProfileDialog.tsx:380 msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" -msgstr "" +msgstr "{MAX_DESCRIPTION, plural, one {La descripción es demasiado larga. El número máximo de caracteres es #.} other {La descripción es demasiado larga. El número máximo de caracteres es #.}}" #: 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 "" +msgstr "{MAX_DISPLAY_NAME, plural, one {El nombre para mostrar es demasiado largo. El número máximo de caracteres es #.} other {El nombre para mostrar es demasiado largo. El número máximo de caracteres es #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" -msgstr "" +msgstr "{MAX_HIDDEN_REPLIES, plural, one {Puedes ocultar un máximo de # respuesta.} other {Puedes ocultar un máximo de # respuestas.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -592,36 +661,36 @@ msgstr "{minutes, plural, one {# minuto} other {# minutos}}" #. placeholder {0}: reaction.value #: src/components/dms/getReactionInfo.ts:45 msgid "{name} reacted {0} to {target}" -msgstr "" +msgstr "{name} reaccionó con {0} a {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" -msgstr "" +msgstr "{name}: {message}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:76 msgid "{name}'s favorite feeds and people - join me!" -msgstr "" +msgstr "Los feeds y personas favoritas de {name}. ¡Únete!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:49 msgid "{name}'s starter pack" -msgstr "" +msgstr "Paquete de inicio de {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# notificacion no leída} other {# notificaciones no leídas}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" -msgstr "" +msgstr "{numMatches, plural, one {# contacto encontrado} other {# contactos encontrados}}" #: src/components/NewskieDialog.tsx:115 msgid "{profileName} joined Bluesky {timeAgoString} ago" -msgstr "" +msgstr "{profileName} se unió a Bluesky hace {timeAgoString}" #: src/components/NewskieDialog.tsx:112 msgid "{profileName} joined Bluesky using a starter pack {timeAgoString} ago" -msgstr "" +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 @@ -629,14 +698,14 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" -msgstr "" +msgstr "{requestCount, plural, one {# solicitud} other {# solicitudes}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" -msgstr "" +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 @@ -656,6 +725,12 @@ msgstr "{userName} está verificado" msgid "{userName}'s verifications" msgstr "Verificaciones de {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,43 +754,43 @@ msgstr "Se ha incluido a <0>{0}, <1>{1}, y {2, plural, one {# más} othe #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {siguiendo} other {siguiendo}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {me gusta} other {me gusta}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicaciones}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" -msgstr "" +msgstr "<0>{0} {1, plural, one {guardado} other {guardados}}" #. placeholder {0}: getName(items[0]) #. placeholder {1}: getName(items[1] /* [0] is self, skip it */) @@ -736,9 +811,9 @@ msgid "<0>{0} members" msgstr "<0>{0} miembros" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" -msgstr "" +msgstr "<0>{displayName}<1/><2> te añadió" #: src/screens/Hashtag.tsx:226 #: src/screens/Search/SearchResults.tsx:315 @@ -747,7 +822,7 @@ msgstr "<0>Inicia sesión<1> o <2>crea una cuenta<3> <4>para acc #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 msgid "<0>Tap here to update your location with GPS." -msgstr "" +msgstr "<0>Toca aquí para actualizar tu ubicación con GPS." #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #: src/screens/StarterPack/Wizard/index.tsx:494 @@ -782,7 +857,7 @@ msgstr "7 días" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:17 msgid "A collection of popular feeds you can find on Bluesky, including News, Booksky, Game Dev, Blacksky, and Fountain Pens" -msgstr "" +msgstr "Una colección de feeds populares que puedes encontrar en Bluesky, incluyendo News, Booksky, Game Dev, Blacksky y Fountain Pens" #. If last message does not contain text, fall back to "{user} reacted to {a message}" #: src/components/dms/getReactionInfo.ts:33 @@ -791,20 +866,25 @@ msgstr "un mensaje" #: src/components/contacts/screens/PhoneInput.tsx:102 msgid "A network error occurred. Please check your internet connection" -msgstr "" +msgstr "Se produjo un error de red. Por favor, verifica tu conexión a internet" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." -msgstr "" +msgstr "Se produjo un error de red. Por favor, verifica tu conexión a internet." #: src/components/contacts/screens/VerifyNumber.tsx:143 msgid "A new code has been sent" -msgstr "" +msgstr "Se ha enviado un nuevo código" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Una nueva forma de verificar" @@ -816,22 +896,22 @@ msgstr "Una captura de pantalla de una publicación de @esb.lol, que muestra que #. 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 "" +msgstr "Una captura de pantalla de una publicación con el nuevo botón al lado del botón de compartir que te permite guardar la publicación a tus marcadores. La publicación es de @jcsalterego.bsky.social y dice \"inventado un sábado que inmediatamente sigue el lunes\"." #: 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 "" +msgstr "Una captura de pantalla de un perfil con un ícono de campana al lado del botón de seguir, indicando la nueva función de notificaciones de actividad." #. 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 "" +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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Un destinatario seleccionado no es seguido por el remitente." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -840,25 +920,44 @@ msgstr "Acerca de" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:100 msgid "Abusive or discriminatory behavior" -msgstr "" +msgstr "Comportamiento abusivo o discriminatorio" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Aceptar" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Aceptar" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Aceptar la solicitud de chat" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Aceptar solicitud para unirse" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Aceptar la solicitud" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 msgid "Accept this language suggestion" -msgstr "" +msgstr "Aceptar esta sugerencia de idioma" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Conversaciones aceptadas" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "¡Acceso solicitado! El propietario del grupo revisará tu solicitud." #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 @@ -866,11 +965,11 @@ msgstr "" msgid "Accessibility" msgstr "Accesibilidad" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,28 +977,28 @@ msgstr "Ajustes de accesibilidad" msgid "Account" msgstr "Cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Cuenta bloqueada" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Cuenta seguida" #: src/lib/strings/errors.ts:34 msgid "Account has been suspended" -msgstr "" +msgstr "La cuenta ha sido suspendida" #: src/lib/strings/errors.ts:37 msgid "Account is deactivated" -msgstr "" +msgstr "La cuenta está desactivada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,50 +1019,46 @@ msgstr "Opciones de la cuenta" #: src/components/dialogs/ServerInput.tsx:138 msgid "Account provider" -msgstr "" +msgstr "Proveedor de cuenta" #: src/screens/Settings/Settings.tsx:671 msgid "Account removed from quick access" msgstr "Cuenta eliminada del acceso rápido" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Cuenta desbloqueada" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Has dejado de seguir a esta cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Cuenta no silenciada" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Las cuentas con una marca de verificación ondeada <0><1/> pueden verificar a otras. Bluesky se encarga de seleccionar a estas cuentas de confianza." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Actividad de otras personas" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notificaciones de actividad" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Añadir" @@ -999,8 +1094,8 @@ msgstr "Añadir una cuenta" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,18 +1107,18 @@ msgstr "Añadir un texto alternativo (opcional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Añadir otra cuenta" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Añadir otra publicación" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" -msgstr "" +msgstr "Añadir otra publicación al hilo" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:102 msgid "Add app password" @@ -1035,42 +1130,42 @@ msgstr "Añadir contraseña de app" msgid "Add App Password" msgstr "Añadir contraseña de app" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" -msgstr "" +msgstr "Añadir etiqueta de automatización a la cuenta" #: src/components/dms/EmojiReactionPicker.web.tsx:31 msgid "Add emoji reaction" msgstr "Añadir reacción con emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" -msgstr "" +msgstr "Añadir miembros al chat de grupo" #: src/view/com/feeds/ComposerPrompt.tsx:224 msgid "Add image" -msgstr "" +msgstr "Añadir imagen" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" -msgstr "" +msgstr "Agregar multimedia a la publicación" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "" +msgstr "Añadir miembros" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Añadir más detalles (opcional)" #: src/screens/Settings/LanguageSettings.tsx:218 #: src/screens/Settings/LanguageSettings.tsx:223 msgid "Add more languages…" -msgstr "" +msgstr "Añadir más idiomas…" #: src/components/dialogs/MutedWords.tsx:330 msgid "Add mute word with chosen settings" @@ -1091,6 +1186,10 @@ msgstr "Añadir personas" msgid "Add people to list" msgstr "Añadir personas a la lista" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Añadir personas con un enlace" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Añadir reacción" @@ -1122,13 +1221,13 @@ msgstr "Añadir a las listas" #: src/components/PostControls/BookmarkButton.tsx:144 msgid "Add to saved posts" -msgstr "" +msgstr "Añadir a publicaciones guardadas" #: src/components/dialogs/StarterPackDialog.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:346 #: src/view/com/profile/ProfileMenu.tsx:349 msgid "Add to starter packs" -msgstr "" +msgstr "Añadir a paquetes de inicio" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:166 msgid "Add user to list" @@ -1136,16 +1235,16 @@ msgstr "Añadir usuario a la lista" #: src/ageAssurance/components/NoAccessScreen.tsx:234 msgid "Add your birthdate" -msgstr "" +msgstr "Añade tu fecha de nacimiento" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" -msgstr "" +msgstr "Añadido por {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" -msgstr "" +msgstr "Añadido mediante enlace de invitación" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:113 #: src/view/com/modals/UserAddRemoveLists.tsx:163 @@ -1154,25 +1253,25 @@ msgstr "Añadido a la lista" #: src/components/dialogs/StarterPackDialog.tsx:274 msgid "Added to starter pack" -msgstr "" +msgstr "Añadido al paquete de inicio" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:225 #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:230 msgid "Adding members to list..." -msgstr "" +msgstr "Añadiendo miembros a la lista..." #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:116 msgid "Additional details (limit 1000 characters)" msgstr "Detalles adicionales (máximo 1000 caracteres)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Detalles adicionales (máximo 300 caracteres)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" -msgstr "" +msgstr "Administrador" #: src/view/com/composer/labels/LabelsBtn.tsx:155 msgid "Adult" @@ -1180,7 +1279,7 @@ msgstr "Solo para adultos" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:66 msgid "Adult content" -msgstr "" +msgstr "Contenido para adultos" #: src/components/moderation/ContentHider.tsx:131 #: src/lib/moderation/useGlobalLabelStrings.ts:34 @@ -1204,7 +1303,7 @@ msgstr "Etiquetas de contenido para adultos" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 msgid "Adult sexual abuse content" -msgstr "" +msgstr "Contenido de abuso sexual a adultos" #: src/screens/Moderation/index.tsx:457 msgid "Advanced" @@ -1228,12 +1327,12 @@ msgstr "Solicitud de verificación de edad enviada" msgid "Age assurance only takes a few minutes" msgstr "La verificación de edad tarda unos pocos minutos" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@ejemplo.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,9 +1340,9 @@ msgstr "Todas" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" -msgstr "" +msgstr "Todas {0}" #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 #: src/screens/StarterPack/StarterPackScreen.tsx:400 @@ -1252,7 +1351,7 @@ msgstr "¡Se han seguido todas las cuentas!" #: src/components/contacts/screens/ViewMatches.tsx:144 msgid "All friends followed!" -msgstr "" +msgstr "¡Sigues a todos tus amigos!" #: src/components/dialogs/LanguageSelectDialog.tsx:255 #: src/screens/Search/components/SearchLanguageDropdown.tsx:65 @@ -1263,7 +1362,7 @@ msgstr "Todos los idiomas" #: src/screens/Settings/LanguageSettings.tsx:189 msgid "All languages will be shown in your feeds." -msgstr "" +msgstr "Se mostrarán todos los idiomas en tus feeds." #: src/view/screens/Feeds.tsx:700 msgid "All the feeds you've saved, right in one place." @@ -1276,22 +1375,22 @@ msgstr "Permitir el acceso a tus mensajes directos" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:451 msgid "Allow anyone to reply" -msgstr "" +msgstr "Permitir que cualquiera pueda responder" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" -msgstr "" +msgstr "Permitir mensajes directos de" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" -msgstr "" +msgstr "Permitir invitaciones a chats de grupo de" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 msgid "Allow location access" -msgstr "" +msgstr "Permitir acceso a la ubicación" #: src/screens/Settings/ActivityPrivacySettings.tsx:53 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:92 @@ -1300,11 +1399,11 @@ msgstr "Permite que las otras personas reciban notificaciones de tus publicacion #: src/components/dialogs/PostInteractionSettingsDialog.tsx:504 msgid "Allow people you follow to reply" -msgstr "" +msgstr "Permitir que las personas a las que sigues puedan responder" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:518 msgid "Allow people you mention to reply" -msgstr "" +msgstr "Permitir que las personas a las que mencionas puedan responder" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:636 msgid "Allow quote posts" @@ -1313,11 +1412,11 @@ msgstr "Permitir citas" #. placeholder {0}: list.name #: src/components/dialogs/PostInteractionSettingsDialog.tsx:598 msgid "Allow users in {0} to reply" -msgstr "" +msgstr "Permitir que los usuarios de {0} puedan responder" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:490 msgid "Allow your followers to reply" -msgstr "" +msgstr "Permitir que tus seguidores puedan responder" #: src/screens/Settings/AppPasswords.tsx:201 msgid "Allows access to direct messages" @@ -1331,19 +1430,19 @@ msgstr "¿Ya tienes un código?" #: src/components/WelcomeModal.tsx:192 msgid "Already have an account?" -msgstr "" +msgstr "¿Ya tienes una cuenta?" #. placeholder {0}: account.handle #: src/screens/Login/ChooseAccountForm.tsx:46 msgid "Already signed in as @{0}" msgstr "Ya has iniciado sesión como @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Texto alternativo" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "El texto alternativo permite describir las imágenes para los usuarios ciegos o con problemas de visión. Además, ayuda a dar más contexto para todas las personas." @@ -1387,14 +1486,14 @@ msgstr "Se ha producido un error" msgid "An error occurred" msgstr "Se produjo un error" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Se produjo un error al comprimir el video." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:223 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:69 msgid "An error occurred while fetching suggested accounts." -msgstr "" +msgstr "Se produjo un error al obtener cuentas sugeridas." #: src/state/queries/explore-feed-previews.tsx:183 msgid "An error occurred while fetching the feed." @@ -1407,7 +1506,7 @@ msgstr "Se produjo un error al generar tu paquete de inicio. ¿Quieres intentarl #. placeholder {0}: cleanError(err) #: src/components/contacts/screens/ViewMatches.tsx:243 msgid "An error occurred while hiding suggestion. {0}" -msgstr "" +msgstr "Se produjo un error al ocultar la sugerencia. {0}" #: src/components/Post/Embed/VideoEmbed/index.tsx:149 msgid "An error occurred while loading the video. Please try again later." @@ -1419,9 +1518,10 @@ msgstr "Se produjo un error mientras cargaba el video. Vuelve a intentarlo." #: src/components/dialogs/PostInteractionSettingsDialog.tsx:581 msgid "An error occurred while loading your lists :/" -msgstr "" +msgstr "Se produjo un error al cargar tus listas :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Error al guardar el código QR." @@ -1432,50 +1532,54 @@ msgstr "Error al guardar el código QR." msgid "An error occurred while trying to follow all" msgstr "Se produjo un error mientras intentabas seguir a todos" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" -msgstr "" +msgstr "Se produjo un error al subir el video. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." -msgstr "" +msgstr "Se produjo un error al subir el video. Por favor, verifica tu conexión a internet e inténtalo de nuevo." #. 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 "" +msgstr "Se produjo un error. {0}" #: 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 "" +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 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" -msgstr "" +msgstr "Una ilustración de varias publicaciones de Bluesky junto con los iconos de republicar, me gusta y comentar" + +#: 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 "Una ilustración de la aplicación de Bluesky con un avión de papel volando hacia afuera, representando la invitación a amigos" #: 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 "Una ilustración que muestra que Bluesky selecciona a verificadores de confianza, los cuales verifican las cuentas de usuarios individuales." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -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 "Un enlace de invitación permite a las personas unirse a este chat de grupo sin ser añadidas directamente. Tú controlas quién puede unirse al chat. Puedes deshabilitar el enlace en cualquier momento." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "Un problema no presente en estas opciones" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Se produjo un problema al crear el chat de grupo. Inténtalo de nuevo." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,18 +1589,18 @@ msgstr "Se produjo un problema mientras intentaba abrir el chat" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Ocurrió un problema. Inténtalo de nuevo." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Una simulación de un iPhone mostrando la aplicación de Bluesky abierta con el perfil de un usuario verificado con una marca de verificación junto a su nombre para mostrar." #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:165 msgid "An unknown error occurred." -msgstr "" +msgstr "Se ha producido un error desconocido." #: src/components/moderation/ModerationDetailsDialog.tsx:138 #: src/lib/moderation/useModerationCauseDescription.ts:145 @@ -1509,11 +1613,11 @@ msgstr "y" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:88 msgid "Animal sexual abuse" -msgstr "" +msgstr "Abuso sexual a animales" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:130 msgid "Animal welfare" -msgstr "" +msgstr "Bienestar animal" #: src/lib/interests.ts:52 msgid "Animals" @@ -1525,7 +1629,7 @@ msgstr "GIF animado" #: src/components/PolicyUpdateOverlay/Badge.tsx:33 msgid "Announcement" -msgstr "" +msgstr "Anuncio" #: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:39 msgid "Announcing verification on Bluesky" @@ -1533,21 +1637,25 @@ msgstr "La verificación llega a Bluesky" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 msgid "Anyone" -msgstr "" +msgstr "Cualquiera" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137 msgid "Anyone can interact" -msgstr "" +msgstr "Cualquiera puede interactuar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Cualquiera puede unirse" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" -msgstr "" +msgstr "Cualquiera puede unirse al instante" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" -msgstr "" +msgstr "Cualquiera puede solicitar unirse" #: src/screens/Settings/ActivityPrivacySettings.tsx:112 #: src/screens/Settings/ActivityPrivacySettings.tsx:117 @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "Cualquier persona que me siga" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "" +msgstr "Quien lo tenga ya no podrá unirse ni solicitar unirse. Siempre puedes crear uno nuevo." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1569,7 +1677,7 @@ msgstr "Icono de la app" #: src/screens/Settings/LanguageSettings.tsx:107 #: src/screens/Settings/LanguageSettings.tsx:123 msgid "App language" -msgstr "" +msgstr "Idioma de la aplicación" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 msgid "App Password" @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contraseñas de app" @@ -1614,11 +1722,11 @@ msgstr "Apelar la etiqueta de \"{0}\"" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 msgid "Appeal livestream suspension" -msgstr "" +msgstr "Apelar suspensión de transmisión en vivo" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Apelación enviada" @@ -1632,14 +1740,14 @@ msgstr "Apelar la suspensión" msgid "Appeal Suspension" msgstr "Apelar la suspensión" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apelar esta decisión" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1654,30 +1762,30 @@ msgstr "Aplicar feeds recomendados predeterminados" #: src/screens/Settings/Settings.tsx:506 #: src/screens/Settings/Settings.tsx:508 msgid "Apply Pull Request" -msgstr "" +msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Publicación archivada" #: src/screens/Settings/components/DeleteAccountDialog.tsx:327 msgid "Are you really, really sure?" -msgstr "" +msgstr "¿Estás realmente, realmente seguro?" #. placeholder {0}: appPassword.name #: src/screens/Settings/AppPasswords.tsx:210 msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "¿Seguro que quieres eliminar la contraseña de app \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" +msgstr "¿Estás seguro de que quieres eliminar este mensaje? El mensaje se eliminará para ti, pero no para los otros participantes." #: src/screens/StarterPack/StarterPackScreen.tsx:684 msgid "Are you sure you want to delete this starter pack?" @@ -1688,23 +1796,29 @@ msgstr "¿Quieres eliminar este paquete de inicio?" msgid "Are you sure you want to discard your changes?" msgstr "¿Quieres descartar tus cambios?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" -msgstr "" +msgstr "¿Estás seguro de que quieres salir de {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "¿Quieres salir de esta conversación?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "¿Quieres salir de esta conversación? Los mensajes se eliminarán para ti, pero no para la otra persona." +#: src/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 "¿Estás seguro de que quieres salir de esta conversación? Tus mensajes se eliminarán para ti, pero no para los otros participantes." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "¿Quieres eliminar esto de tus feeds?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "¿Quieres descartar esta publicación?" @@ -1724,18 +1838,18 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Desnudez artística o no erótica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Asignar un tema para el algoritmo" #: src/screens/Settings/components/ChangePasswordDialog.tsx:209 msgid "At least 8 characters" -msgstr "" +msgstr "Al menos 8 caracteres" #: src/screens/Settings/components/DeleteAccountDialog.tsx:338 msgid "AT Protocol FAQ" -msgstr "" +msgstr "Preguntas frecuentes de AT Protocol" #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" @@ -1745,17 +1859,17 @@ msgstr "Aurora" #: src/components/BotAccountAlert.tsx:32 #: src/components/BotBadge.tsx:63 msgid "Automated account" -msgstr "" +msgstr "Cuenta automatizada" #: src/screens/Settings/AccountSettings.tsx:157 #: src/screens/Settings/AccountSettings.tsx:160 msgid "Automation label" -msgstr "" +msgstr "Etiqueta de automatización" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" -msgstr "" +msgstr "Etiqueta de automatización" #: src/screens/Settings/ContentAndMediaSettings.tsx:118 #: src/screens/Settings/ContentAndMediaSettings.tsx:124 @@ -1765,14 +1879,14 @@ msgstr "Reproducir videos y GIFs automáticamente" #. Shown next to an available username suggestion in the account creation flow #: src/screens/Signup/StepHandle/HandleSuggestions.tsx:73 msgid "Available" -msgstr "" +msgstr "Disponible" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,25 +1912,25 @@ msgstr "" msgid "Back" msgstr "Atrás" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Volver a los chats" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:216 msgid "Banned activities or security violations" -msgstr "" +msgstr "Actividades prohibidas o violaciones de seguridad" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:227 msgid "Banned user returning" -msgstr "" +msgstr "Regreso de un usuario baneado" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:259 msgid "Based on your device's location, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "Según la ubicación de tu dispositivo, creemos que estás en <0>{region}. Esta estimación puede ser inexacta si estás usando una VPN." #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265 msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "Según tu red, creemos que estás en <0>{region}. Esta estimación puede ser inexacta si estás usando una VPN." #: src/view/screens/Lists.tsx:35 #: src/view/screens/ModerationModlists.tsx:35 @@ -1832,101 +1948,96 @@ msgstr "Para publicar o responder, debes verificar tu correo electrónico." 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Para aceptar esta solicitud de chat, debes verificar tu correo electrónico." #: src/components/activity-notifications/SubscribeProfileButton.tsx:59 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." -msgstr "" +msgstr "Antes de que puedas recibir notificaciones de los posts de {name}, debes verificar tu correo electrónico." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Para contactar a otro usuario, debes verificar tu correo electrónico." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 msgid "Begin" -msgstr "" +msgstr "Iniciar" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 msgid "Begin age assurance process" -msgstr "" +msgstr "Comenzar proceso de verificación de edad" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 msgid "Begin the age assurance process by completing the fields below." -msgstr "" +msgstr "Comience el proceso de verificación de edad completando los campos debajo." #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 msgid "Beta Feature" -msgstr "" +msgstr "Función beta" #: src/components/dialogs/BirthDateSettings.tsx:163 msgid "Birthdate" -msgstr "" +msgstr "Fecha de nacimiento" #: src/screens/Settings/AccountSettings.tsx:147 msgid "Birthday" msgstr "Cumpleaños" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" -msgstr "" +msgstr "Bloquear a {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloquear cuenta" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" -msgstr "" - -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "¿Bloquear cuenta?" +msgstr "¿Bloquear la cuenta?" #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloquear cuentas" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Bloquear y eliminar" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Bloquear y salir" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Bloquear lista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bloquear o denunciar" @@ -1936,9 +2047,9 @@ msgstr "¿Bloquear estas cuentas?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloquear usuario" @@ -1946,17 +2057,17 @@ msgstr "Bloquear usuario" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloquear usuario" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" -msgstr "" +msgstr "Bloquear al usuario o eliminar esta conversación" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Bloquear al usuario o salir de esta conversación" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloqueado" @@ -1964,14 +2075,12 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Si bloqueas a una cuenta no podrán responder en tus hilos, mencionarte ni interactuar contigo de ninguna manera." @@ -1987,7 +2096,7 @@ msgstr "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a t msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "El bloqueo es público. Las cuentas bloqueadas no podrán responder en tus hilos, mencionarte ni interactuar contigo." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Si bloqueas a un etiquetador aún podrán seguir aplicando etiquetas a tu cuenta, pero evitará que respondan en tus hilos, te mencionen o interactúen contigo." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky no puede confirmar la autenticidad de la fecha declarada." @@ -2011,7 +2120,7 @@ msgstr "Bluesky Clásico™" #: 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 "" +msgstr "Bluesky ayuda a los amigos a encontrarse mediante la creación de una huella digital codificada, llamada \"hash\", y luego busca los hash coincidentes." #: src/components/dialogs/ServerInput.tsx:214 msgid "Bluesky is an open network where you can choose your hosting provider. If you're a developer, you can host your own server." @@ -2027,23 +2136,27 @@ msgstr "¡Bluesky es mejor con amigos!" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:43 msgid "Bluesky is more fun with friends" -msgstr "" +msgstr "Bluesky es más divertido con amigos" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." -msgstr "" +msgstr "¡Bluesky es más divertido con amigos! Importa tus contactos para ver quién ya está aquí." #: src/components/contacts/screens/ViewMatches.tsx:315 msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" -msgstr "" +msgstr "Bluesky es más divertido con amigos. ¿Quieres invitar a algunos de los tuyos? <0/>" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "Bluesky necesita acceso a la cámara para escanear códigos QR de otros perfiles." #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Términos de servicio de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." -msgstr "" +msgstr "Bluesky almacena tus contactos como datos codificados. Eliminar tus contactos borrará estos datos inmediatamente." #: src/components/StarterPack/ProfileStarterPacks.tsx:340 msgid "Bluesky will choose a set of recommended accounts from people in your network." @@ -2053,7 +2166,7 @@ msgstr "Bluesky elegirá un conjunto de cuentas recomendadas de personas en su r msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky no mostrará tu perfil o posts a usuarios que no hayan iniciado sesión. Es posible que otras apps no respeten esta solicitud. Esto no hace que tu cuenta sea privada." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verificará proactivamente cuentas destacadas y auténticas." @@ -2079,16 +2192,20 @@ msgstr "Libros" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 msgid "Breaking site rules" -msgstr "" +msgstr "Incumplimiento de las normas del sitio" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Reúne hasta 50 amigos en un solo chat." #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" -msgstr "" +msgstr "Explorar feeds personalizados" #: src/components/FeedInterstitials.tsx:535 msgid "Browse more accounts" -msgstr "" +msgstr "Explorar más cuentas" #: src/components/FeedInterstitials.tsx:665 msgid "Browse more feeds on the Explore page" @@ -2135,35 +2252,45 @@ msgstr "Negocios" #: src/screens/Bookmarks/index.tsx:302 msgid "Button to go back to the home timeline" -msgstr "" +msgstr "Botón para volver a la línea de tiempo principal" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Por {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Por <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Por <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." -msgstr "" +msgstr "Al hacer clic en \"Continuar\" reconoces que entiendes y aceptas estas actualizaciones." #: src/components/contacts/screens/PhoneInput.tsx:297 msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" -msgstr "" +msgstr "Al continuar, das tu consentimiento para este uso. Puedes cambiar de opinión en cualquier momento desde los ajustes. <0>Más información" #: src/screens/Signup/StepInfo/Policies.tsx:76 msgid "By creating an account you agree to the <0>Privacy Policy." @@ -2181,10 +2308,14 @@ msgstr "Al crear una cuenta, aceptas los <0>Términos de servicio." msgid "By you" msgstr "Tuyos" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Cámara" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Se necesita acceso a la cámara" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2192,15 +2323,18 @@ msgstr "Cámara" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Cámara" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Cámara" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancelar" @@ -2248,9 +2384,9 @@ msgstr "Cancelar la reactivación y cerrar la sesión" msgid "Cancel search" msgstr "Cancelar búsqueda" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "No se puede interactuar con un usuario bloqueado" @@ -2264,13 +2400,13 @@ msgstr "Subtítulos (.vtt)" msgid "Captions & alt text" msgstr "Subtítulos y texto alternativo" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" -msgstr "" +msgstr "carrusel" #: src/components/RichTextTag.tsx:53 msgid "Cashtag {tag}" -msgstr "" +msgstr "Cashtag {tag}" #: src/components/Post/Translated/index.tsx:439 #: src/screens/Settings/components/Email2FAToggle.tsx:31 @@ -2297,34 +2433,34 @@ msgstr "Cambiar el idioma de la aplicación" msgid "Change Handle" msgstr "Cambiar nombre de usuario" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Cambiar el servicio de moderación" #: src/screens/Settings/components/ChangePasswordDialog.tsx:262 #: src/screens/Settings/components/ChangePasswordDialog.tsx:268 msgid "Change password" -msgstr "" +msgstr "Cambiar contraseña" #: src/screens/Settings/components/ChangePasswordDialog.tsx:165 msgid "Change password dialog" -msgstr "" +msgstr "Diálogo de cambio de contraseña" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" -msgstr "" +msgstr "Cambiar categoría de la denuncia" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Cambiar la razón de la denuncia" #: src/components/Post/Translated/index.tsx:424 msgid "Change the source language" -msgstr "" +msgstr "Cambiar el idioma de origen" #: src/screens/Settings/components/ChangePasswordDialog.tsx:58 msgid "Change your password" -msgstr "" +msgstr "Cambia tu contraseña" #: src/screens/Settings/AppIconSettings/index.tsx:219 msgid "Changes app icon" @@ -2337,101 +2473,116 @@ msgstr "Cambia el proveedor de alojamiento" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:179 msgid "Changes saved" -msgstr "" +msgstr "Cambios guardados" #: 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 "" +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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chat eliminado" #: src/components/dms/getSystemMessageInfo.ts:108 msgid "Chat ended" -msgstr "" +msgstr "Chat finalizado" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "El enlace de invitación al chat ya no está disponible" #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" -msgstr "" +msgstr "Chat bloqueado" #: src/lib/hooks/useNotificationHandler.ts:148 msgid "Chat messages - silent" -msgstr "" +msgstr "Mensajes de chat - silencioso" #: src/lib/hooks/useNotificationHandler.ts:139 msgid "Chat messages - sound" -msgstr "" +msgstr "Mensajes de chat - sonido" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat silenciado" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Chat no encontrado." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +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 +msgid "Chat recipient is not followed by the sender." +msgstr "El destinatario del chat no es seguido por el remitente." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Bandeja de solicitudes de chat" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Solicitudes de chat" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Ajustes de chat" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Configuración de chat" #: src/components/dms/getSystemMessageInfo.ts:115 msgid "Chat title changed" -msgstr "" +msgstr "Título del chat cambiado" #. placeholder {0}: data.newName #: src/components/dms/getSystemMessageInfo.ts:114 msgid "Chat title changed to {0}" -msgstr "" +msgstr "Título del chat cambiado a {0}" #: src/components/dms/getSystemMessageInfo.ts:106 msgid "Chat unlocked" -msgstr "" +msgstr "Chat desbloqueado" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat no silenciado" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" #: src/screens/Settings/components/DeleteAccountDialog.tsx:233 msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" -msgstr "" +msgstr "Revisa <0>{currentEmail} para ver el correo electrónico con el código de confirmación para introducir abajo:" #: src/screens/SignupQueued.tsx:79 #: src/screens/SignupQueued.tsx:83 @@ -2444,11 +2595,11 @@ msgstr "Te hemos enviado un código de inicio de sesión a tu correo. Introdúce #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:161 msgid "Child safety" -msgstr "" +msgstr "Seguridad infantil" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:165 msgid "Child Sexual Abuse Material (CSAM)" -msgstr "" +msgstr "Material de abuso sexual infantil (CSAM)" #: src/screens/Settings/components/ChangeHandleDialog.tsx:401 msgid "Choose domain verification method" @@ -2464,7 +2615,7 @@ msgstr "Elige para mi" #: src/components/dialogs/LanguageSelectDialog.tsx:199 msgid "Choose languages" -msgstr "" +msgstr "Elegir idiomas" #: src/screens/StarterPack/Wizard/index.tsx:201 msgid "Choose People" @@ -2473,19 +2624,19 @@ msgstr "Elige a la gente" #: src/view/com/composer/select-language/PostLanguageSelect.tsx:75 #: src/view/com/composer/select-language/PostLanguageSelect.tsx:136 msgid "Choose post languages" -msgstr "" +msgstr "Elegir idiomas de la publicación" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:108 msgid "Choose this color as your avatar" msgstr "Elige este color como tu avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." -msgstr "" +msgstr "Elige quién puede unirse a este chat de grupo y cómo." #: src/components/contacts/components/InviteInfo.tsx:57 msgid "Choose who to invite" -msgstr "" +msgstr "Elige a quién invitar" #: src/components/dialogs/ServerInput.tsx:134 msgid "Choose your account provider" @@ -2514,7 +2665,7 @@ msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)" #. 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 "" +msgstr "Limpiar búsqueda de GIF" #: src/screens/Settings/AboutSettings.tsx:127 #: src/screens/Settings/AboutSettings.tsx:131 @@ -2527,7 +2678,7 @@ msgstr "Borrar consulta de búsqueda" #: src/view/com/feeds/MissingFeed.tsx:88 msgid "Click for information" -msgstr "" +msgstr "Clic para obtener información" #: src/view/screens/Support.tsx:35 msgid "click here" @@ -2535,52 +2686,52 @@ msgstr "clic aquí" #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 msgid "Click here to add people to this group chat" -msgstr "" +msgstr "Haz clic aquí para añadir personas a este chat de grupo" #: src/ageAssurance/components/NoAccessScreen.tsx:129 msgid "Click here to contact our support team" -msgstr "" +msgstr "Haz clic aquí para contactar con nuestro equipo de soporte" #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 msgid "Click here to create or manage an invite link for this group chat" -msgstr "" +msgstr "Haz clic aquí para crear o gestionar un enlace de invitación para este chat de grupo" #: src/ageAssurance/components/NoAccessScreen.tsx:263 msgid "Click here to delete your account" -msgstr "" +msgstr "Haz clic aquí para eliminar tu cuenta" #: src/ageAssurance/components/NoAccessScreen.tsx:254 msgid "Click here to log out" -msgstr "" +msgstr "Haz clic aquí para cerrar sesión" #: src/screens/Settings/components/DeleteAccountDialog.tsx:263 #: src/screens/Settings/components/DeleteAccountDialog.tsx:272 msgid "Click here to resend the email" -msgstr "" +msgstr "Haz clic aquí para reenviar el correo electrónico" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Haz clic aquí para reiniciar el proceso de verificación." #: src/ageAssurance/components/NoAccessScreen.tsx:109 #: src/ageAssurance/components/NoAccessScreen.tsx:231 msgid "Click here to update your birthdate" -msgstr "" +msgstr "Haz clic aquí para actualizar tu fecha de nacimiento" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Haz clic aquí para actualizar tu correo electrónico" #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 msgid "Click here to view the invite link for this group chat" -msgstr "" +msgstr "Haz clic aquí para ver el enlace de invitación de este chat de grupo" #. placeholder {0}: isCashtag ? tag : `#${tag}` #: src/components/RichTextTag.tsx:56 msgid "Click to open tag menu for {0}" -msgstr "" +msgstr "Haz clic para abrir el menú de etiquetas de {0}" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Clic para reintentar mensaje fallido" @@ -2594,28 +2745,30 @@ msgstr "Clic para reintentar mensaje fallido" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Clic para reintentar mensaje fallido" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Cerrar" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Cerrar diálogo activo" @@ -2647,6 +2800,10 @@ msgstr "Cerrar diálogo activo" msgid "Close alert" msgstr "Cerrar la alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Cerrar banner" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Cerrar el cajón inferior" @@ -2657,8 +2814,10 @@ msgstr "Cerrar el cajón inferior" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Cerrar ventana" @@ -2672,41 +2831,57 @@ msgid "Close image" msgstr "Cerrar la imagen" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" -msgstr "" +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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Cerrar el menú" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Cerrar escáner" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Cerrar el banner de solicitudes entrantes" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Cierra este diálogo" #: src/components/WelcomeModal.tsx:217 msgid "Close welcome modal" -msgstr "" +msgstr "Cerrar diálogo de bienvenida" #: src/screens/Login/PasswordUpdatedForm.tsx:33 msgid "Closes password update alert" msgstr "Cierra la alerta de actualización de contraseña" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Cierra la ventana de redacción y descarta el borrador" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Colapsa la lista de usuarios" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Colapsa la lista de usuarios para una notificación en particular" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Color" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Cómics" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices de la comunidad" @@ -2740,12 +2915,12 @@ msgstr "Completa el desafío" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Escribir nueva publicación" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}" @@ -2753,11 +2928,11 @@ msgstr "Escribir publicaciones de hasta {0, plural, other {# caracteres}}" msgid "Compose reply" msgstr "Escribir la respuesta" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." -msgstr "" +msgstr "Comprimiendo GIF..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Comprimiendo video..." @@ -2767,7 +2942,7 @@ msgstr "Configuración de filtrado de contenido para la categoría: {name}" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:37 msgid "Configure live event banner" -msgstr "" +msgstr "Configurar banner de evento en directo" #: src/components/moderation/LabelPreference.tsx:254 msgid "Configured in <0>moderation settings." @@ -2780,7 +2955,7 @@ msgstr "Configurado en <0>ajustes de moderación." msgid "Confirm" msgstr "Confirmar" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2793,22 +2968,22 @@ msgstr "Código de confirmación" #: src/screens/Login/ForgotPasswordForm.tsx:140 #: src/screens/Login/LoginForm.tsx:340 msgid "Connecting to service..." -msgstr "" +msgstr "Conectando con el servicio..." #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 msgid "Connection issue" -msgstr "" +msgstr "Problema de conexión" #: src/ageAssurance/components/NoAccessScreen.tsx:334 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:146 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 msgid "Contact our moderation team" -msgstr "" +msgstr "Contacta a nuestro equipo de moderación" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:127 msgid "Contact our support team" -msgstr "" +msgstr "Contactar con nuestro equipo de soporte" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 #: src/screens/Signup/index.tsx:233 @@ -2817,21 +2992,21 @@ msgid "Contact support" msgstr "Contactar con el soporte" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" +msgstr "La sincronización de contactos no está disponible en este dispositivo, ya que la aplicación no puede acceder a tus contactos." #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:98 msgid "Contact us" -msgstr "" +msgstr "Contáctanos" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" -msgstr "" +msgstr "Contactos importados" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" -msgstr "" +msgstr "Contactos eliminados" #: src/screens/Settings/ContentAndMediaSettings.tsx:53 msgid "Content & Media" @@ -2842,7 +3017,7 @@ msgstr "Contenido y medios" msgid "Content and media" msgstr "Contenido y medios" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Contenido y medios" @@ -2860,7 +3035,7 @@ msgstr "Contenido de toda la red que podría gustarte." #: src/screens/Settings/LanguageSettings.tsx:177 msgid "Content languages" -msgstr "" +msgstr "Idiomas del contenido" #: src/components/moderation/ModerationDetailsDialog.tsx:86 #: src/lib/moderation/useModerationCauseDescription.ts:83 @@ -2869,7 +3044,7 @@ msgstr "Contenido no disponible" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:192 msgid "Content promoting or depicting self-harm" -msgstr "" +msgstr "Contenido que promueve o muestra autolesiones" #: src/components/moderation/ModerationDetailsDialog.tsx:54 #: src/components/moderation/ScreenHider.tsx:100 @@ -2889,7 +3064,7 @@ msgstr "Fondo del menú contextual, haga clic para cerrar el menú." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2902,35 +3077,35 @@ msgstr "Continuar como {0} (actualmente ha iniciado sesión)" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:28 msgid "Continue thread" -msgstr "" +msgstr "Continuar hilo" #: src/screens/PostThread/components/ThreadItemReadMoreUp.tsx:64 msgid "Continue thread..." msgstr "Continuar hilo..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" -msgstr "" +msgstr "Continuar al nombre del grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Continuar al siguiente paso" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" -msgstr "" +msgstr "Conversación" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversación eliminada" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversación eliminada" @@ -2939,15 +3114,22 @@ msgstr "Conversación eliminada" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Saliste de la conversación" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Conversación no encontrada." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada al portapapeles" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "¡Copiado!" msgid "Copies build version to clipboard" msgstr "Copia la versión de la compilación al portapapeles" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Copia la URL canónica del perfil al portapapeles" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiar" @@ -2997,6 +3184,11 @@ msgstr "Copiar DID" msgid "Copy host" msgstr "Copiar host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Copiar enlace de invitación" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Copia el enlace a la lista" msgid "Copy link to post" msgstr "Copiar el enlace a la publicación" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copiar el enlace al perfil" @@ -3027,8 +3219,8 @@ msgstr "Copiar el enlace al perfil" msgid "Copy link to starter pack" msgstr "Copiar el enlace al paquete de inicio" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiar el texto del mensaje" @@ -3037,12 +3229,12 @@ msgstr "Copiar el texto del mensaje" msgid "Copy post at:// URI" msgstr "Copiar URI at:// de la publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiar el texto del post" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiar código QR" @@ -3052,44 +3244,60 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de derechos de autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "No se pudo capturar el código QR" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" -msgstr "" +msgstr "No se pudo conectar con el feed personalizado" #: src/view/com/feeds/MissingFeed.tsx:134 msgid "Could not connect to feed service" -msgstr "" +msgstr "No se pudo conectar con el servicio del feed" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "No se pudo copiar. Por favor, inténtalo de nuevo" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "No se pudo descargar. Por favor, inténtalo de nuevo" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" -msgstr "" +msgstr "No se pudo obtener la publicación" #: src/view/com/feeds/MissingFeed.tsx:183 msgid "Could not find profile" -msgstr "" +msgstr "No se pudo encontrar el perfil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." -msgstr "" +msgstr "No se pudieron seguir todas las coincidencias. Verifica tu conexión de red." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" -msgstr "" +msgstr "No se pudieron seguir todas las coincidencias. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "No se pudo salir de este chat" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "No se pudo salir del chat." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "No se pudo cargar este feed" @@ -3100,7 +3308,11 @@ msgstr "No se pudo cargar este feed" msgid "Could not load list" msgstr "No se pudo cargar esta lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "No se pudo cargar el perfil" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "No se pudo silenciar el chat" @@ -3108,38 +3320,46 @@ msgstr "No se pudo silenciar el chat" msgid "Could not process your video" msgstr "No se pudo procesar tu video" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "No se pudo eliminar al miembro." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" -msgstr "" +msgstr "No se pudieron guardar los cambios: {0}" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "No se pudo compartir. Por favor, inténtalo de nuevo" #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" -msgstr "" +msgstr "No se pudo actualizar la configuración de notificaciones" #. placeholder {0}: cleanError(err) #: src/components/contacts/screens/GetContacts.tsx:171 msgid "Could not upload contacts. {0}" -msgstr "" +msgstr "No se pudieron subir los contactos. {0}" #: src/components/contacts/screens/GetContacts.tsx:165 msgid "Could not upload contacts. You need to re-verify your phone number to proceed" -msgstr "" +msgstr "No se pudieron subir los contactos. Necesitas volver a verificar tu número de teléfono para continuar" #. 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 "" +msgstr "No se pudieron cargar los GIF" #: src/components/InternationalPhoneCodeSelect.tsx:80 msgid "Country code" -msgstr "" +msgstr "Código de país" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Crear" @@ -3147,26 +3367,26 @@ msgstr "Crear" #: src/view/com/lists/ProfileLists.tsx:166 #: src/view/com/lists/ProfileLists.tsx:167 msgid "Create a list" -msgstr "" +msgstr "Crear una lista" #: src/screens/StarterPack/StarterPackScreen.tsx:620 msgid "Create a list from this starter pack" -msgstr "" +msgstr "Crear una lista a partir de este paquete de inicio" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" #: src/view/screens/Profile.tsx:562 #: src/view/screens/Profile.tsx:563 msgid "Create a Starter Pack" -msgstr "" +msgstr "Crear un paquete de inicio" #: src/components/StarterPack/ProfileStarterPacks.tsx:303 msgid "Create a starter pack for me" @@ -3174,13 +3394,14 @@ msgstr "Crea un paquete de inicio para mí" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Crea un avatar" @@ -3206,58 +3427,59 @@ msgstr "Crea un avatar" msgid "Create another" msgstr "Crea otro" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" -msgstr "" +msgstr "Crear chat de grupo" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 msgid "Create list" -msgstr "" +msgstr "Crear lista" #: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Create list from members" -msgstr "" +msgstr "Crear lista a partir de los miembros" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:148 #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:152 msgid "Create list from starter pack" -msgstr "" +msgstr "Crear lista a partir del paquete de inicio" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:367 msgid "Create moderation list" -msgstr "" +msgstr "Crear lista de moderación" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crear una cuenta nueva" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" -msgstr "" +msgstr "Crear o modificar un enlace de invitación para este chat de grupo" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Crea un reporte de {0}" #: src/components/dialogs/StarterPackDialog.tsx:108 #: src/components/dialogs/StarterPackDialog.tsx:205 msgid "Create starter pack" -msgstr "" +msgstr "Crea paquete de inicio" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:366 msgid "Create user list" -msgstr "" +msgstr "Crear lista de usuarios" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Creada {0}" @@ -3270,6 +3492,10 @@ msgstr "Se ha bloqueado al creador" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Chat actual" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3285,11 +3511,11 @@ msgstr "Personaliza tu experiencia en Bluesky" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:200 msgid "Dangerous challenges or activities" -msgstr "" +msgstr "Desafíos o actividades peligrosas" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:204 msgid "Dangerous substances or drug abuse" -msgstr "" +msgstr "Sustancias peligrosas o abuso de drogas" #: src/components/dialogs/Embed.tsx:164 #: src/components/dialogs/Embed.tsx:166 @@ -3311,6 +3537,14 @@ msgstr "Tema oscuro" msgid "Date of birth" msgstr "Fecha de nacimiento" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Amanecer" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Día" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3327,11 +3561,11 @@ msgstr "Panel de depuración" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 msgid "Decline this language suggestion" -msgstr "" +msgstr "Rechazar esta sugerencia de idioma" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 msgid "Deepfake adult content" -msgstr "" +msgstr "Contenido para adultos deepfake" #: src/screens/Settings/AppearanceSettings.tsx:156 msgid "Default" @@ -3341,8 +3575,8 @@ msgstr "Por Defecto" msgid "Default icons" msgstr "Iconos por defecto" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3359,7 +3593,7 @@ msgstr "Eliminar la cuenta" #: src/screens/Settings/components/DeleteAccountDialog.tsx:183 #: src/screens/Settings/components/DeleteAccountDialog.tsx:230 msgid "Delete account “{currentHandle}”" -msgstr "" +msgstr "Eliminar la cuenta \"{currentHandle}\"" #: src/screens/Settings/AppPasswords.tsx:187 msgid "Delete app password" @@ -3369,8 +3603,8 @@ msgstr "Borrar la contraseña de app" msgid "Delete app password?" msgstr "¿Borrar la contraseña de app?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Eliminar el chat" @@ -3378,19 +3612,19 @@ msgstr "Eliminar el chat" msgid "Delete chat declaration record" msgstr "Borrar registro de declaración de chat" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" -msgstr "" +msgstr "Eliminar contactos" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Eliminar la conversación" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Borrar para mi" @@ -3399,11 +3633,11 @@ msgstr "Borrar para mi" msgid "Delete list" msgstr "Borrar la lista" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Borrar mensaje" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Borrar mensaje para mi" @@ -3411,9 +3645,9 @@ msgstr "Borrar mensaje para mi" msgid "Delete my account" msgstr "Eliminar mi cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Borrar la publicación" @@ -3430,30 +3664,30 @@ msgstr "¿Borrar paquete de inicio?" msgid "Delete this list?" msgstr "¿Borrar esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "¿Borrar esta publicación?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Eliminado" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Cuenta eliminada" #: src/components/contacts/screens/PhoneInput.tsx:286 msgid "Deleted by Plivo after verification" -msgstr "" +msgstr "Eliminado por Plivo después de la verificación" #: 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 "" +msgstr "Lista eliminada" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:453 #: src/components/SendErrorReportDialog.tsx:78 @@ -3464,19 +3698,19 @@ msgstr "Descripción" #: src/components/SendErrorReportDialog.tsx:82 msgid "Description (1000 characters max)" -msgstr "" +msgstr "Descripción (máx. 1000 caracteres)" #: src/view/com/composer/GifAltText.tsx:156 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 msgid "Descriptive alt text" msgstr "Texto descriptivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Desvincular cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "¿Desvincular cita?" @@ -3497,7 +3731,7 @@ msgstr "Opciones para desarrolladores" #: src/lib/translation/index.tsx:303 msgid "Device failed to translate :(" -msgstr "" +msgstr "El dispositivo no pudo traducir :(" #: src/components/WhoCanReply.tsx:222 msgid "Dialog: adjust who can interact with this post" @@ -3507,21 +3741,21 @@ msgstr "Ajustar quién puede interactuar con esta publicación" msgid "Dim" msgstr "Tenue" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" -msgstr "" +msgstr "Deshabilitar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Desactivar la autenticación de doble factor" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:414 msgid "Disable captions" -msgstr "" +msgstr "Desactivar subtítulos" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Desactivar la autenticación de doble factor por correo electrónico" @@ -3534,22 +3768,22 @@ msgstr "Desactivar la autenticación de doble factor por correo electrónico" msgid "Disable haptic feedback" msgstr "Desactivar la retroalimentación háptica" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" -msgstr "" +msgstr "Deshabilitar enlace" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 msgid "Disable quote posts of this post" -msgstr "" +msgstr "Deshabilitar las citas de esta publicación" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:465 msgid "Disable replies entirely" -msgstr "" +msgstr "Desactivar respuestas por completo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" -msgstr "" +msgstr "¿Deshabilitar este enlace de invitación?" #: src/lib/moderation/useLabelBehaviorDescription.ts:35 #: src/lib/moderation/useLabelBehaviorDescription.ts:45 @@ -3560,9 +3794,9 @@ msgstr "Deshabilitado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,21 +3807,21 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "¿Descartar cambios?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "¿Descartar publicación?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" -msgstr "" +msgstr "Desconectar Germ DM" #: src/screens/Settings/components/PwiOptOut.tsx:88 #: src/screens/Settings/components/PwiOptOut.tsx:92 @@ -3603,21 +3837,22 @@ msgstr "Descubre nuevos feeds personalizados" #: src/screens/Search/Explore.tsx:453 msgid "Discover new feeds" -msgstr "" +msgstr "Descubrir nuevos feeds" #: src/view/screens/Feeds.tsx:723 msgid "Discover New Feeds" msgstr "Descubrir nuevos feeds" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Descartar" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" -msgstr "" +msgstr "Descartar banner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Descartar error" @@ -3632,7 +3867,7 @@ msgstr "Descartar intereses" #: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 msgid "Dismiss live event banner" -msgstr "" +msgstr "Descartar banner de evento en directo" #: src/components/interstitials/TrendingVideos.tsx:90 msgid "Dismiss this section" @@ -3640,7 +3875,11 @@ msgstr "Ocultar esta sección" #: src/components/FeedInterstitials.tsx:349 msgid "Dismiss this suggestion" -msgstr "" +msgstr "Descartar esta sugerencia" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Descarta el escáner QR" #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 @@ -3654,7 +3893,7 @@ msgstr "Nombre para mostrar" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." -msgstr "" +msgstr "Olvídate de los trolls y el clickbait. Encuentra personas y conversaciones reales que te importan." #: src/screens/Settings/components/ChangeHandleDialog.tsx:405 #: src/screens/Settings/components/ChangeHandleDialog.tsx:407 @@ -3673,15 +3912,15 @@ msgstr "No incluye desnudez." msgid "Domain verified!" msgstr "¡Dominio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "¿No tienes código o necesitas uno nuevo? <0>Haz clic aquí." #: src/screens/Settings/components/DeleteAccountDialog.tsx:269 msgid "Don’t see a code? <0>Click here to resend." -msgstr "" +msgstr "¿No ves un código? <0>Haz clic aquí para reenviarlo." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "¿No has recibido un correo electrónico? <0>Haz clic aquí para reenviarlo." @@ -3692,7 +3931,7 @@ msgstr "No volver a mostrar" #: 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 "" +msgstr "¡No te preocupes! Todos los mensajes y configuraciones existentes están guardados y estarán disponibles después de que verifiques que eres adulto." #: src/components/contacts/components/InviteInfo.tsx:73 #: src/components/contacts/components/InviteInfo.tsx:79 @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Doble toque para cerrar el diálogo" @@ -3737,43 +3981,51 @@ msgstr "Doble toque para cerrar el diálogo" msgid "Double tap to like" msgstr "Pulsa dos veces para indicar que te gusta" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Descargar" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Descargar Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Descargar archivo CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Descargar archivo CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" -msgstr "" +msgstr "Descargar datos del chat" #: src/screens/Settings/components/ExportCarDialog.tsx:154 msgctxt "button" msgid "Download chat data" -msgstr "" +msgstr "Descargar datos del chat" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" -msgstr "" +msgstr "Descargar imagen" + +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Descargar código QR de invitación" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Descargar datos del perfil" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Descargar datos del perfil" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" -msgstr "" +msgstr "Doxing" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 "" +msgstr "Borradores" #: src/view/com/composer/text-input/TextInput.web.tsx:366 msgid "Drop to add images" @@ -3781,12 +4033,16 @@ msgstr "Arrastra para agregar imágenes" #: 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 "" +msgstr "Debido a las leyes de tu región, algunas funciones de Bluesky están actualmente restringidas hasta que puedas verificar que eres mayor de edad." #: src/components/dialogs/MutedWords.tsx:162 msgid "Duration:" msgstr "Duración:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Atardecer" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "p. ej. alice" @@ -3809,23 +4065,22 @@ msgstr "p. ej. Grandes usuarios" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:371 msgid "e.g. Spammers" -msgstr "" +msgstr "p. ej. Spammers" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:374 msgid "e.g. The posters who never miss." -msgstr "" +msgstr "p. ej. Usuarios que siempre aciertan." #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:375 msgid "e.g. Users that repeatedly reply with ads." -msgstr "" +msgstr "p. ej. Usuarios que constantemente responden con publicidad." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:196 msgid "Eating disorders" -msgstr "" +msgstr "Trastornos alimentarios" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editar avatar" @@ -3847,19 +4102,19 @@ msgstr "Editar avatar" msgid "Edit Feeds" msgstr "Editar Feeds" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" -msgstr "" +msgstr "Editar nombre del grupo" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editar la imagen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editar ajustes de interacción" @@ -3868,9 +4123,18 @@ msgstr "Editar ajustes de interacción" msgid "Edit interests" msgstr "Modificar los intereses" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Editar enlace de invitación" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Editar enlace de invitación" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" -msgstr "" +msgstr "Editar ajustes del enlace" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 @@ -3884,21 +4148,16 @@ msgstr "Editar el estado del directo" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 msgid "Edit moderation list" -msgstr "" +msgstr "Editar lista de moderación" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar mis feeds" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" -msgstr "" - -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" +msgstr "Editar nombre" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" @@ -3912,12 +4171,12 @@ msgstr "Editar ajustes de interacción de la publicación" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Editar el perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editar el perfil" @@ -3925,19 +4184,20 @@ msgstr "Editar el perfil" msgid "Edit starter pack" msgstr "Editar paquete de inicio" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" -msgstr "" +msgstr "Edita el nombre de este chat de grupo" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:363 msgid "Edit user list" -msgstr "" +msgstr "Editar lista de usuarios" #: src/components/WhoCanReply.tsx:116 msgid "Edit who can reply" msgstr "Editar quién puede responder" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Edita tu paquete de inicio" @@ -3971,13 +4231,13 @@ msgstr "Dirección de correo electrónico" msgid "Email Resent" msgstr "Correo electrónico reenviado" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Correo electrónico enviado" #: src/screens/Settings/components/DeleteAccountDialog.tsx:260 msgid "Email sent! <0>Click here to resend." -msgstr "" +msgstr "¡Correo enviado! <0>Haz clic aquí para reenviarlo." #: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 msgid "Email verification complete!" @@ -4006,8 +4266,8 @@ msgstr "Incrusta esta publicación en tu sitio web. Simplemente copia el siguien msgid "Embedded video player" msgstr "Reproductor de video incrustado" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Activar" @@ -4023,9 +4283,9 @@ msgstr "Mostrar contenido para adultos" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 msgid "Enable captions" -msgstr "" +msgstr "Activar subtítulos" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Activar la autenticación de doble factor por correo electrónico" @@ -4038,19 +4298,18 @@ msgstr "Activar medios externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." -msgstr "" +msgstr "Activa las notificaciones de una cuenta visitando su perfil y pulsando el <0>icono de campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" -msgstr "" +msgstr "Activar notificaciones push" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:629 msgid "Enable quote posts of this post" -msgstr "" +msgstr "Habilitar las citas de esta publicación" #: src/components/dialogs/EmbedConsent.tsx:90 msgid "Enable this source only" @@ -4076,11 +4335,11 @@ msgstr "Fin del feed" #: src/view/com/composer/videos/SubtitleDialog.tsx:182 msgid "Ensure you have selected a language for each caption file." -msgstr "" +msgstr "Asegúrate de haber seleccionado un idioma para cada archivo de subtítulos." #: src/components/contacts/screens/VerifyNumber.tsx:231 msgid "Enter 6-digit code that was sent to your phone number" -msgstr "" +msgstr "Introduce el código de 6 dígitos enviado a tu número de teléfono" #: src/screens/Login/SetNewPasswordForm.tsx:149 msgid "Enter a password" @@ -4091,8 +4350,8 @@ msgstr "Ingresa una contraseña" msgid "Enter a word or tag" msgstr "Ingresa una palabra o etiqueta" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Ingresa el código" @@ -4103,7 +4362,7 @@ msgstr "Entrar en la pantalla completa" #: src/components/contacts/screens/VerifyNumber.tsx:226 msgid "Enter the 6-digit code sent to {prettyNumber}" -msgstr "" +msgstr "Introduce el código de 6 dígitos enviado a {prettyNumber}" #: src/screens/Settings/components/ChangeHandleDialog.tsx:382 msgid "Enter the domain you want to use" @@ -4119,7 +4378,7 @@ msgstr "Introduce el nombre de usuario o dirección de correo electrónico que u #: src/components/dialogs/BirthDateSettings.tsx:164 msgid "Enter your birthdate" -msgstr "" +msgstr "Introduce tu fecha de nacimiento" #: src/screens/Login/ForgotPasswordForm.tsx:101 #: src/screens/Signup/StepInfo/index.tsx:240 @@ -4143,26 +4402,26 @@ msgstr "Entra en pantalla completa" msgid "Entertainment" msgstr "Ocio" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." -msgstr "" +msgstr "Error al obtener los datos más recientes." #: src/screens/PostThread/components/ThreadError.tsx:27 msgid "Error loading post" -msgstr "" +msgstr "Error cargando publicación" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:154 msgid "Error loading preference" -msgstr "" +msgstr "Error cargando preferencia" #: src/view/com/feeds/MissingFeed.tsx:201 msgid "Error message" -msgstr "" +msgstr "Mensaje de error" #: src/screens/Settings/components/ExportCarDialog.tsx:47 #: src/screens/Settings/components/ExportCarDialog.tsx:80 @@ -4185,25 +4444,25 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" -msgstr "" +msgstr "Todo lo demás" #: src/components/dialogs/MutedWords.tsx:320 msgid "Exclude users you follow" @@ -4217,28 +4476,28 @@ msgstr "Excluye a los usuarios que sigues" msgid "Exit fullscreen" msgstr "Salir de pantalla completa" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expandir el texto alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expandir lista de usuarios" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 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 msgid "Expand post text" -msgstr "" +msgstr "Expandir el texto de la publicación" #: src/screens/VideoFeed/index.tsx:983 msgid "Expands or collapses post text" msgstr "Amplía o reduce el texto de la publicación" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Se esperaba que el uri resolviera a un registro" @@ -4277,26 +4536,23 @@ msgstr "Medios explícitos o potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imágenes sexuales explícitas." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: 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 msgid "Explore the app" -msgstr "" - -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" +msgstr "Explora la aplicación" +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" -msgstr "" +msgstr "Exportar mis datos de chat" #: src/screens/Settings/AccountSettings.tsx:170 #: src/screens/Settings/AccountSettings.tsx:174 @@ -4305,7 +4561,7 @@ msgstr "Exportar mis datos" #: src/screens/Settings/components/ExportCarDialog.tsx:97 msgid "Export my profile data" -msgstr "" +msgstr "Exportar mis datos de perfil" #: src/screens/Settings/ContentAndMediaSettings.tsx:86 #: src/screens/Settings/ContentAndMediaSettings.tsx:89 @@ -4322,71 +4578,76 @@ 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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencias sobre Medios Externos" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:146 msgid "Extremist content" -msgstr "" +msgstr "Contenido extremista" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Error al aceptar el chat" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Error al aceptar la solicitud para unirse" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Error al añadir una reacción de emoji" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" -msgstr "" +msgstr "Error al añadir miembros" #: src/components/dialogs/StarterPackDialog.tsx:280 msgid "Failed to add to starter pack" -msgstr "" +msgstr "Error al añadir al paquete de inicio" #: src/screens/Settings/components/ChangeHandleDialog.tsx:605 msgid "Failed to change handle. Please try again." msgstr "Error al cambiar nombre de usuario. Por favor vuelve a intentarlo." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" -msgstr "" +msgstr "Error al copiar el enlace" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 msgid "Failed to create app password. Please try again." msgstr "Error al crear contraseña de app. Vuelve a intentarlo." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Error al crear la conversación" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" -msgstr "" +msgstr "Error al crear el enlace de invitación" #: src/screens/StarterPack/Wizard/index.tsx:250 #: src/screens/StarterPack/Wizard/index.tsx:260 msgid "Failed to create starter pack" msgstr "Error al crear el paquete de inicio" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Error al eliminar el chat" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Error al eliminar el mensaje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Error al eliminar la publicación, vuelve a intentarlo" @@ -4394,52 +4655,60 @@ msgstr "Error al eliminar la publicación, vuelve a intentarlo" msgid "Failed to delete starter pack" msgstr "Error al eliminar el paquete de inicio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" -msgstr "" +msgstr "Error al deshabilitar el enlace de invitación" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" -msgstr "" +msgstr "Error al desconectar Germ DM. Error: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" -msgstr "" +msgstr "Error al editar el nombre del chat de grupo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" -msgstr "" +msgstr "Error al editar el enlace de invitación" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" -msgstr "" +msgstr "Error al habilitar el enlace de invitación" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:143 msgid "Failed to follow all suggested accounts, please try again" -msgstr "" +msgstr "Error al seguir todas las cuentas sugeridas, por favor inténtalo de nuevo" #: src/components/contacts/screens/ViewMatches.tsx:148 msgid "Failed to follow all your friends, please try again" -msgstr "" +msgstr "No se pudo seguir a todos tus amigos. Inténtalo de nuevo" #: src/components/contacts/screens/ViewMatches.tsx:236 msgid "Failed to hide suggestion, please check your internet connection" -msgstr "" +msgstr "No se pudo ocultar la sugerencia. Por favor, verifica tu conexión a internet" + +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Error al ignorar la solicitud para unirse" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Error al unirse al chat de grupo. Inténtalo de nuevo." #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" -msgstr "" +msgstr "Error al abrir la aplicación de SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" -msgstr "" +msgstr "Error al salir del chat de grupo" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Error al cargar las conversaciones" @@ -4447,7 +4716,7 @@ msgstr "Error al cargar las conversaciones" #: src/screens/Search/Explore.tsx:575 #: src/screens/Search/Explore.tsx:621 msgid "Failed to load feeds" -msgstr "" +msgstr "Error al cargar los feeds" #: src/screens/Search/Explore.tsx:489 #: src/screens/Search/Explore.tsx:544 @@ -4456,19 +4725,10 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Error al cargar las preferencias de feeds" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." -msgstr "" +msgstr "Error al cargar la configuración de notificaciones." #: src/screens/Messages/components/MessageListError.tsx:22 msgid "Failed to load past messages" @@ -4480,7 +4740,7 @@ msgstr "Error al cargar las preferencias." #: src/components/dialogs/SearchablePeopleList.tsx:292 msgid "Failed to load profiles" -msgstr "" +msgstr "Error al cargar los perfiles" #: src/screens/Search/Explore.tsx:482 #: src/screens/Search/Explore.tsx:537 @@ -4493,66 +4753,71 @@ msgstr "Error al cargar los feeds sugeridos" msgid "Failed to load suggested follows" msgstr "Error al cargar las sugerencias de seguimiento" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" -msgstr "" +msgstr "Error al bloquear el chat de grupo" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Error al marcar todas las solicitudes como leídas" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" -msgstr "" +msgstr "Error al silenciar el chat de grupo" #: src/state/queries/pinned-post.ts:75 msgid "Failed to pin post" msgstr "Error al fijar la publicación" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" -msgstr "" +msgstr "Error al reconectar Germ DM. Error: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." -msgstr "" +msgstr "Error al eliminar los datos debido a un error de red. Por favor, verifica tu conexión a internet." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" -msgstr "" +msgstr "Error al eliminar los datos. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Error al eliminar una reacción de emoji" #: src/components/dialogs/StarterPackDialog.tsx:293 msgid "Failed to remove from starter pack" -msgstr "" +msgstr "Error al eliminar del paquete de inicio" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" -msgstr "" +msgstr "Error al eliminar al miembro del chat de grupo" #: src/components/verification/VerificationRemovePrompt.tsx:34 msgid "Failed to remove verification" msgstr "Error al eliminar la verificación" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Error al retirar tu solicitud. Inténtalo de nuevo." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." -msgstr "" +msgstr "Error al determinar la ubicación. Inténtalo de nuevo." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" -msgstr "" +msgstr "Error al guardar el borrador" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" -msgstr "" +msgstr "Error al guardar la imagen" #. placeholder {0}: String(e) #: src/lib/media/save-image.ios.ts:27 @@ -4569,40 +4834,40 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Error al guardar tus intereses." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Error al enviar el correo electrónico, vuelve a intentarlo." #: src/components/SendErrorReportDialog.tsx:52 msgid "Failed to send report" -msgstr "" +msgstr "Error al enviar la denuncia" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Error al enviar la apelación. Por favor, inténtalo de nuevo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Error al cambiar el estado de silencio del hilo, vuelve a intentarlo" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" -msgstr "" +msgstr "Error al desbloquear el chat de grupo" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 msgid "Failed to unpin list" -msgstr "" +msgstr "Error al dejar de fijar la lista" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Error al actualizar los ajustes de autenticación de doble factor por correo electrónico" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Error al actualizar el correo electrónico, vuelve a intentarlo." @@ -4612,9 +4877,9 @@ msgstr "Error al actualizar los feeds" #: src/state/queries/activity-subscriptions.ts:101 msgid "Failed to update notification declaration" -msgstr "" +msgstr "Error al actualizar la declaración de notificación" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Error al actualizar los ajustes" @@ -4635,13 +4900,13 @@ msgstr "Error al verificar el nombre de usuario. Intenta nuevamente." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:47 msgid "Fake account or bot" -msgstr "" +msgstr "Cuenta falsa o bot" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:55 msgid "False information about elections" -msgstr "" +msgstr "Información falsa sobre elecciones" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,20 +4914,20 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed por {0}" #: src/view/com/feeds/MissingFeed.tsx:153 msgid "Feed creator" -msgstr "" +msgstr "Creador del feed" #: src/view/com/feeds/MissingFeed.tsx:190 msgid "Feed identifier" -msgstr "" +msgstr "Identificador del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menú de feed" @@ -4672,36 +4937,36 @@ msgstr "Alternar Feed" #: src/view/com/feeds/MissingFeed.tsx:74 msgid "Feed unavailable" -msgstr "" +msgstr "Feed no disponible" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Comentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" -msgstr "" +msgstr "Comentarios enviados al operador del feed" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" #: src/screens/SavedFeeds.tsx:227 #: src/screens/SavedFeeds.tsx:398 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." -msgstr "" +msgstr "Los feeds son algoritmos personalizados que los usuarios construyen con un poco de experiencia en codificación. <0>Consulta esta guía para más información." #: src/components/FeedCard.tsx:313 #: src/screens/SavedFeeds.tsx:92 @@ -4739,25 +5004,25 @@ msgstr "Filtrar la búsqueda por idioma (actualmente: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" -msgstr "" +msgstr "Filtra de quién recibes notificaciones" #: src/screens/Onboarding/StepFinished/index.tsx:335 msgid "Finalizing" msgstr "Finalizando" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" -msgstr "" +msgstr "¡Por fin!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." -msgstr "" +msgstr "¡Por fin! Lleva un registro de las publicaciones que te importan. Guárdalas para volver a verlas cuando quieras." #: src/lib/interests.ts:60 msgid "Finance" -msgstr "" +msgstr "Finanzas" #: src/view/com/posts/CustomFeedEmptyState.tsx:67 #: src/view/com/posts/CustomFeedEmptyState.tsx:72 @@ -4768,24 +5033,22 @@ msgstr "" msgid "Find accounts to follow" msgstr "Buscar cuentas para seguir" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "" +msgid "Find and invite friends" +msgstr "Encontrar e invitar amigos" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Buscar contactos" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 msgid "Find my friends" -msgstr "" +msgstr "Encontrar a mis amigos" #. Starter packs suggested to the user for them to follow #: src/components/ProgressGuide/FollowDialog.tsx:72 @@ -4795,26 +5058,30 @@ msgstr "" msgid "Find people to follow" msgstr "Buscar a gente para seguir" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Encuentra personas que conoces" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Buscar publicaciones, usuarios y feeds en Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" -msgstr "" +msgstr "Encuentra a tus amigos" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" -msgstr "" +msgstr "Encuentra a tus amigos en Bluesky verificando tu número de teléfono y haciendo coincidir con tus contactos. Protegemos tu información y tú controlas lo que sucede a continuación. <0>Más información" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 msgid "Find your people" -msgstr "" +msgstr "Encuentra a tu gente" #: src/components/contacts/screens/GetContacts.tsx:281 msgid "Finding friends..." -msgstr "" +msgstr "Buscando amigos..." #: src/screens/StarterPack/Wizard/index.tsx:206 msgid "Finish" @@ -4837,34 +5104,34 @@ msgstr "Blanco" #: src/components/contacts/components/OTPInput.tsx:55 msgid "Focus code input" -msgstr "" +msgstr "Enfocar la entrada del código" #: src/lib/hotkeys/index.tsx:73 msgid "Focus the search field" -msgstr "" +msgstr "Enfocar el campo de búsqueda" #. User is not following this account, click to follow #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Seguir" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Seguir {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" -msgstr "" +msgstr "Seguir a {displayName}" #: src/screens/VideoFeed/index.tsx:845 msgid "Follow {handle}" @@ -4876,7 +5143,7 @@ msgstr "Sigue 10 cuentas" #: src/components/ProgressGuide/List.tsx:75 msgid "Follow 10 people to get started" -msgstr "" +msgstr "Sigue a 10 personas para comenzar" #: src/components/ProgressGuide/List.tsx:116 msgid "Follow 7 accounts" @@ -4892,8 +5159,8 @@ msgstr "Seguir esta cuenta" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4901,24 +5168,24 @@ msgstr "Seguir a todos" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:291 msgid "Follow all accounts" -msgstr "" +msgstr "Seguir todas las cuentas" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Seguir también" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 msgid "Followed all accounts!" -msgstr "" +msgstr "¡Seguiste todas las cuentas!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" -msgstr "" +msgstr "Sigues a todas las coincidencias" #. placeholder {0}: slice[0].profile.displayName #: src/components/KnownFollowers.tsx:233 @@ -4944,8 +5211,12 @@ msgstr "Seguido por <0>{0} y <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1}, y {2, plural, one {# más} other {# más}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Los seguidores pueden unirse" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conoces" @@ -4960,10 +5231,10 @@ msgstr "Seguidores que conoces" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Siguiendo" @@ -4977,14 +5248,14 @@ msgstr "Siguiendo" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Siguiendo {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" -msgstr "" +msgstr "Siguiendo a {displayName}" #: src/screens/VideoFeed/index.tsx:844 msgid "Following {handle}" @@ -4995,19 +5266,16 @@ msgstr "Siguiendo {handle}" msgid "Following feed preferences" msgstr "Preferencias del feed de cuentas que sigues" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias del feed de cuentas que sigues" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te sigue" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Te sigue" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Fuente" @@ -5022,11 +5290,11 @@ msgstr "Comida" #: src/ageAssurance/components/NoAccessScreen.tsx:96 msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." -msgstr "" +msgstr "Para cuentas organizativas, usa la fecha de nacimiento de la persona responsable de la cuenta." #: src/screens/Settings/components/DeleteAccountDialog.tsx:186 msgid "For security reasons, we’ll need to send a confirmation code to your email address <0>{currentEmail}." -msgstr "" +msgstr "Por razones de seguridad, necesitamos enviar un código de confirmación a tu dirección de correo electrónico <0>{currentEmail}." #: 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." @@ -5050,7 +5318,7 @@ msgstr "Para siempre" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:30 msgid "Forget the noise" -msgstr "" +msgstr "Olvídate del ruido" #: src/screens/Login/index.tsx:172 #: src/screens/Login/index.tsx:188 @@ -5065,13 +5333,18 @@ msgstr "¿Olvidaste tu contraseña?" msgid "Forgot?" msgstr "¿La olvidaste?" +#. 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 "¡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 msgid "Free your feed" -msgstr "" +msgstr "Libera tu feed" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" -msgstr "" +msgstr "De" #: src/screens/Hashtag.tsx:124 msgid "From @{sanitizedAuthor}" @@ -5086,82 +5359,86 @@ msgstr "De <0/>" msgid "Generate a starter pack" msgstr "Genera un paquete de inicio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "" +msgstr "Generar enlace de invitación" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" -msgstr "" +msgstr "Generar nuevo enlace de invitación" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" -msgstr "" +msgstr "Generar nuevo enlace" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" -msgstr "" +msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" -msgstr "" +msgstr "Germ DM desconectado" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" -msgstr "" +msgstr "Enlace de Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" -msgstr "" +msgstr "Germ DM reconectado" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obtiene ayuda" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." -msgstr "" +msgstr "Recibe una notificación cuando alguien te siga." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." -msgstr "" +msgstr "Recibe una notificación cuando a alguien le guste tu publicación." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +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:285 msgid "Get notifications when people mention you." -msgstr "" +msgstr "Recibe una notificación cuando alguien te mencione." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." -msgstr "" +msgstr "Recibe una notificación cuando alguien cite tus publicaciones." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Recibe una notificación cuando alguien responda a tus mensajes." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Recibe una notificación cuando alguien republique publicaciones que hayas republicado." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 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:333 +msgid "Get notifications when people repost your reposts." +msgstr "Recibe notificaciones cuando alguien republique tus republicaciones." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Recibe una notificación de nuevas publicaciones" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Recibe notificaciones de mensajes y respuestas de cuentas que elijas." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Recibe una notificación cuando {name} publique" @@ -5174,33 +5451,33 @@ msgstr "Recibe notificaciones de la actividad de esta cuenta" msgid "Get notified when {name} posts" msgstr "Recibe una notificación cuando {name} publique" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" -msgstr "" +msgstr "Recibe una notificación cuando alguien publique" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Comenzar" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" -msgstr "" +msgstr "GIF subido" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Ponle cara a tu perfil" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:142 msgid "Glorification of violence" -msgstr "" +msgstr "Glorificación de la violencia" #: src/components/dialogs/LinkWarning.tsx:127 #: src/components/dialogs/LinkWarning.tsx:133 @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Volver" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Volver" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Volver al paso anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ir al inicio" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ir al inicio" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ir al inicio" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5266,13 +5541,13 @@ msgstr "Empezar el directo" #: src/view/com/profile/ProfileMenu.tsx:367 #: src/view/com/profile/ProfileMenu.tsx:387 msgid "Go live (disabled)" -msgstr "" +msgstr "Transmitir en vivo (deshabilitado)" #: src/features/liveNow/components/GoLiveDialog.tsx:175 msgid "Go live for" msgstr "Empezar el directo para" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Ir al perfil de {firstAuthorName}" @@ -5281,49 +5556,56 @@ msgstr "Ir al perfil de {firstAuthorName}" #: src/components/ageAssurance/AgeRestrictedScreen.tsx:82 #: src/screens/Moderation/index.tsx:237 msgid "Go to account settings" -msgstr "" +msgstr "Ir a la configuración de la cuenta" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ir a la conversación con {0}" #: src/view/com/posts/PostFeedReason.tsx:39 msgid "Go to feed" -msgstr "" +msgstr "Ir al feed" #: src/screens/Login/ForgotPasswordForm.tsx:174 msgid "Go to next" msgstr "Ir al siguiente" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ir al perfil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" -msgstr "" +msgstr "Ir al chat de grupo llamado \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ir al perfil del usuario" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" -msgstr "" +msgstr "Ir al perfil del usuario" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 msgid "Going live is currently disabled for your account" -msgstr "" +msgstr "Transmitir en vivo está actualmente deshabilitado para tu cuenta" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "" +msgstr "Entendido" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Conceder acceso" #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 @@ -5334,68 +5616,84 @@ msgstr "Contenido explícito" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:138 msgid "Graphic violent content" -msgstr "" +msgstr "Contenido violento gráfico" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:169 msgid "Grooming or predatory behavior" -msgstr "" +msgstr "Grooming o comportamiento depredador" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Chat de grupo" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" -msgstr "" +msgstr "Diálogo del enlace de invitación del chat de grupo" + +#: src/screens/Messages/ConversationSettings/index.tsx:417 +msgctxt "toast" +msgid "Group chat locked" +msgstr "Chat de grupo bloqueado" + +#: src/screens/Messages/ConversationSettings/index.tsx:382 +msgctxt "toast" +msgid "Group chat muted" +msgstr "Chat de grupo silenciado" + +#: src/screens/Messages/ConversationSettings/index.tsx:369 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "Nombre del chat de grupo actualizado" + +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "Ajustes del chat de grupo" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "Chat de grupo desbloqueado" #: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" -msgid "Group chat locked" -msgstr "" - -#: src/screens/Messages/ConversationSettings/index.tsx:352 -msgctxt "toast" -msgid "Group chat muted" -msgstr "" - -#: src/screens/Messages/ConversationSettings/index.tsx:340 -msgctxt "toast" -msgid "Group chat name updated" -msgstr "" - -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 -msgid "Group chat settings" -msgstr "" - -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 -msgctxt "toast" -msgid "Group chat unlocked" -msgstr "" - -#: src/screens/Messages/ConversationSettings/index.tsx:354 -msgctxt "toast" msgid "Group chat unmuted" -msgstr "" +msgstr "Chat de grupo no silenciado" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Chats de grupo" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Los chats de grupo solo están disponibles para usuarios mayores de 18 años." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Los chats de grupo solo pueden tener un máximo de {0, plural, one {# persona} other {# personas}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" -msgstr "" +msgstr "El grupo está bloqueado" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" -msgstr "" +msgstr "Nombre del grupo" + +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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.}}" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" -msgstr "" +msgstr "Hackeo o ataques al sistema" #: src/state/shell/progress-guide.tsx:221 #: src/state/shell/progress-guide.tsx:231 @@ -5421,14 +5719,14 @@ msgid "Handle too long. Please try a shorter one." msgstr "Nombre de usuario demasiado largo. Intente con uno más corto." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" -msgstr "" +msgstr "Ahora mismo" #. 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 "" +msgstr "GIF alegres" #: src/screens/Settings/AccessibilitySettings.tsx:86 msgid "Haptics" @@ -5436,17 +5734,17 @@ msgstr "Vibración" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:99 msgid "Harassment or hate" -msgstr "" +msgstr "Acoso u odio" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:189 msgid "Harmful or high-risk activities" -msgstr "" +msgstr "Actividades dañinas o de alto riesgo" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:162 msgid "Harming or endangering minors" -msgstr "" +msgstr "Daño o puesta en peligro de menores" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Etiqueta" @@ -5456,16 +5754,16 @@ msgstr "Etiqueta {tag}" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 msgid "Hate speech" -msgstr "" +msgstr "Discurso de odio" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "¿Tienes un código? <0>Haz clic aquí." #: src/screens/Signup/StepInfo/index.tsx:320 msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." -msgstr "" +msgstr "¿Tenemos mal tu ubicación? <0>Toca aquí para actualizar tu ubicación con GPS." #: src/screens/Signup/index.tsx:231 msgid "Having trouble?" @@ -5473,17 +5771,17 @@ msgstr "¿Tienes problemas?" #: src/components/contacts/screens/PhoneInput.tsx:290 msgid "Held by Bluesky for 7 days to prevent abuse, then deleted" -msgstr "" +msgstr "Retenido por Bluesky durante 7 días para prevenir abusos y luego eliminado" #: src/screens/Settings/Settings.tsx:247 #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Ayuda" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5494,15 +5792,15 @@ msgstr "¡Aquí tienes tu contraseña de app!" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:74 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:120 msgid "Hey there 👋" -msgstr "" +msgstr "Hola 👋" #: src/ageAssurance/components/NoAccessScreen.tsx:173 msgid "Hey there!" -msgstr "" +msgstr "¡Hola!" #: src/ageAssurance/components/NoAccessScreen.tsx:213 msgid "Hi there!" -msgstr "" +msgstr "¡Hola!" #: src/components/VideoPostCard.tsx:178 #: src/components/VideoPostCard.tsx:462 @@ -5522,7 +5820,7 @@ msgstr "Lista oculta" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Lista oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -5539,7 +5837,7 @@ msgstr "Ocultar" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:139 #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:146 msgid "Hide all events" -msgstr "" +msgstr "Ocultar todos los eventos" #: src/components/dialogs/Embed.tsx:124 msgid "Hide customization options" @@ -5547,24 +5845,24 @@ msgstr "Ocultar las opciones de personalización" #: src/components/dms/SystemMessageGroup.tsx:57 msgid "Hide group chat updates" -msgstr "" +msgstr "Ocultar actualizaciones del chat de grupo" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 msgid "Hide lists" -msgstr "" +msgstr "Ocultar listas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ocultar el post para mí" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ocultar respuesta para todos" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ocultar la respuesta para mí" @@ -5575,23 +5873,23 @@ msgstr "Ocultar esta tarjeta" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:127 #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:134 msgid "Hide this event" -msgstr "" +msgstr "Ocultar este evento" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "¿Ocultar esta publicación?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "¿Ocultar esta respuesta?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" -msgstr "" +msgstr "Ocultar traducción" #: src/components/interstitials/Trending.tsx:115 msgid "Hide trending topics" @@ -5606,7 +5904,7 @@ msgstr "¿Quieres ocultar las tendencias?" msgid "Hide trending videos?" msgstr "¿Quieres ocultar los videos populares?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ocultar lista de usuarios" @@ -5620,9 +5918,13 @@ msgstr "Ocultar las marcas de verificación" msgid "Hides the content" msgstr "Oculta el contenido" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Oculta el banner promocional de invitar amigos" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." -msgstr "" +msgstr "Mmm, parece que has iniciado sesión con una <0>Contraseña de la aplicación. Para establecer tu fecha de nacimiento, deberás iniciar sesión con la contraseña principal de tu cuenta o pedirle a quien controle esta cuenta que lo haga." #: 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." @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, parece que estamos teniendo problemas para cargar estos datos. Co msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, no conseguimos cargar ese servicio de moderación." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "¡Espera! Estamos dando acceso a videos gradualmente, y aún estás en la lista de espera. ¡Vuelve a consultar pronto!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Inicio" @@ -5683,7 +5981,7 @@ msgstr "Destacando" #: src/components/contacts/components/InviteInfo.tsx:54 msgid "How it works:" -msgstr "" +msgstr "Cómo funciona:" #: src/components/dialogs/InAppBrowserConsent.tsx:63 #: src/components/dialogs/InAppBrowserConsent.tsx:67 @@ -5692,15 +5990,15 @@ msgstr "¿Cómo deberíamos abrir este enlace?" #: src/components/contacts/screens/PhoneInput.tsx:279 msgid "How we use your number:" -msgstr "" +msgstr "Cómo usamos tu número:" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:150 msgid "Human trafficking" -msgstr "" +msgstr "Trata de personas" #: 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 "" +msgstr "Doy mi consentimiento para que Bluesky utilice mis contactos para descubrir amigos en común y para retener datos codificados hasta que elija no participar." #: src/screens/Settings/components/DisableEmail2FADialog.tsx:134 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:137 @@ -5719,19 +6017,19 @@ msgstr "Lo entiendo" #. 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 "" +msgstr "Estoy en Bluesky como {0}, ¡búscame! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Si el texto alternativo es largo, alterna el estado expandido del texto alternativo." #: src/screens/Settings/LanguageSettings.tsx:235 msgid "If none are selected, all languages will be shown in your feeds." -msgstr "" +msgstr "Si no seleccionas ninguno, se mostrarán todos los idiomas en tus feeds." #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:121 msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." -msgstr "" +msgstr "Si tienes 18 años o más y quieres intentarlo de nuevo, haz clic en el botón a continuación y usa un método de verificación diferente si hay uno disponible en tu región. Si tienes preguntas o dudas, <0>nuestro equipo de soporte puede ayudarte." #: src/screens/Signup/StepInfo/index.tsx:337 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." @@ -5739,15 +6037,15 @@ msgstr "Si aún no eres un adulto según las leyes de tu país, tu padre, madre #: src/ageAssurance/components/NoAccessScreen.tsx:125 msgid "If you believe your birthdate is incorrect, please <0>contact our support team." -msgstr "" +msgstr "Si crees que tu fecha de nacimiento es incorrecta, <0>contacta con nuestro equipo de soporte." #: src/ageAssurance/components/NoAccessScreen.tsx:106 msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." -msgstr "" +msgstr "Si crees que tu fecha de nacimiento es incorrecta, puedes actualizarla <0>haciendo clic aquí." #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:118 msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media." -msgstr "" +msgstr "Si decides ocultar todos los eventos, siempre puedes volver a activarlos desde <0>Ajustes → Contenido y multimedia." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 msgid "If you delete this list, you won't be able to recover it." @@ -5757,26 +6055,25 @@ msgstr "Si eliminas esta lista, no podrás recuperarla." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tienes tu propio dominio, puedes usarlo como tu nombre de usuario. Este permite auto-verificar tu identidad. <0>obtén más información." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Si necesitas actualizar tu correo electrónico, <0>haz clic aquí." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Si eliminas esta publicación, no podrás recuperarla." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." -msgstr "" +msgstr "Si actualizas tu dirección de correo electrónico, la verificación de doble factor por correo electrónico será deshabilitada." #: 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 "Si deseas cambiar tu contraseña, te enviaremos un código para verificar que esta es tu cuenta." -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." -msgstr "" +msgstr "Si quieres restringir quién puede recibir notificaciones de la actividad de tu cuenta, puedes cambiarlo en <0>Configuración → Privacidad y Seguridad." #: src/components/dialogs/ServerInput.tsx:210 msgid "If you're a developer, you can host your own server." @@ -5786,25 +6083,25 @@ msgstr "Si eres desarrollador/a, puedes alojar tu propio servidor." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Si estás intentando cambiar tu nombre de usuario o correo electrónico, hazlo antes de desactivar tu cuenta." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imagen" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" -msgstr "" +msgstr "Imagen {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" -msgstr "" +msgstr "Imagen {0} de {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" -msgstr "" +msgstr "Imagen {0} de {imageCount}" #: src/screens/Settings/AboutSettings.tsx:67 msgid "Image cache cleared" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Caché de imágenes limpiado, {0} liberado" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" -msgstr "" +msgstr "Galería de imágenes, {0} imágenes" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." -msgstr "" +msgstr "La imagen está oculta debido a tus ajustes de moderación." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." -msgstr "" +msgstr "Imagen no disponible." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "" +msgstr "Opciones de la imagen" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5845,76 +6142,80 @@ msgstr "Imagen guardada" #: src/components/Lightbox/Lightbox.web.tsx:82 msgid "Image viewer" -msgstr "" +msgstr "Visor de imágenes" #: src/lib/media/save-image.ts:51 msgid "Images cannot be saved unless permission is granted to access your photo library." -msgstr "" +msgstr "No se pueden guardar imágenes a menos que se conceda permiso para acceder a tu galería de fotos." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:51 msgid "Impersonation" -msgstr "" +msgstr "Suplantación de identidad" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" -msgstr "" +msgstr "Importar contactos" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" -msgstr "" +msgstr "Importar contactos" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Importa contactos o invita a tus amigos" #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" -msgstr "" +msgstr "Importa contactos para encontrar a tus amigos" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" -msgstr "" +msgstr "Importado el {0}" #: src/ageAssurance/components/NoAccessScreen.tsx:216 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 "" +msgstr "Para ofrecerte una experiencia apropiada para tu edad, necesitamos saber tu fecha de nacimiento. Esto se hace una sola vez y tus datos se mantendrán privados." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" -msgstr "" +msgstr "En la aplicación" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" -msgstr "" +msgstr "Notificaciones en la aplicación" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "En la aplicación, todos" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "En la aplicación, personas a las que sigues" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "En la aplicación, push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "En la aplicación, push, todos" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "En la aplicación, push, personas a las que sigues" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" -msgstr "" +msgstr "Bandeja de entrada vacía" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "La bandeja de entrada está vacía" @@ -5944,54 +6245,67 @@ msgstr "Ajustes de interacción" #: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:33 msgid "Introducing activity notifications" -msgstr "" +msgstr "Presentamos las notificaciones de actividad" #: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:49 msgid "Introducing drafts" -msgstr "" +msgstr "Presentamos los borradores" #: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:56 msgid "Introducing finding friends via contacts" -msgstr "" +msgstr "Presentamos la búsqueda de amigos a través de contactos" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Presentamos los chats de grupo" #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" -msgstr "" +msgstr "Presentamos las publicaciones guardadas, también conocidos como borradores" #: src/screens/Login/LoginForm.tsx:153 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 msgid "Invalid 2FA confirmation code." msgstr "Código de confirmación de autenticación de doble factor no válido." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Código de chat de grupo no válido." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Nombre de usuario inválido. Por favor intenta uno diferente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." -msgstr "" +msgstr "Ajustes de interacción no válidos." #: src/components/contacts/phone-number.ts:33 #: src/components/contacts/screens/PhoneInput.tsx:142 msgid "Invalid phone number" -msgstr "" +msgstr "Número de teléfono no válido" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "El tema de la denuncia no es válido" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Solicitud de retirada no válida." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Código de Verificación no válido" #: src/components/contacts/screens/ViewMatches.tsx:587 msgid "Invite" -msgstr "" +msgstr "Invitar" #: src/components/contacts/screens/ViewMatches.tsx:567 msgid "Invite {name} to join Bluesky" -msgstr "" +msgstr "Invitar a {name} a unirse a Bluesky" #: src/screens/Signup/StepInfo/index.tsx:190 msgid "Invite code" @@ -6001,52 +6315,74 @@ msgstr "Código de invitación" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Invitar amigos" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" -msgstr "" +msgstr "Invitar amigos" #: src/components/contacts/screens/ViewMatches.tsx:301 msgid "Invite friends <0/>" -msgstr "" +msgstr "Invitar amigos <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" -msgstr "" +msgstr "Enlace de invitación" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Enlace de invitación" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Enlace de invitación copiado" #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" -msgstr "" +msgstr "Enlace de invitación creado" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" -msgstr "" +msgstr "Enlace de invitación deshabilitado" #: src/components/dms/getSystemMessageInfo.ts:126 msgid "Invite link edited" -msgstr "" +msgstr "Enlace de invitación editado" #: src/components/dms/getSystemMessageInfo.ts:132 msgid "Invite link enabled" -msgstr "" +msgstr "Enlace de invitación habilitado" #: src/components/StarterPack/ShareDialog.tsx:83 msgid "Invite people to this starter pack!" msgstr "¡Invita a personas a este paquete de inicio!" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Invita a tus amigos" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Invita a tus amigos a seguir tus feeds y personas favoritas" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" -msgstr "" +msgstr "Invitado" #: src/screens/StarterPack/Wizard/StepDetails.tsx:34 msgid "Invites, but personal" @@ -6054,11 +6390,11 @@ msgstr "Invitaciones más personales" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "¿Tu ubicación no es precisa? <0>Toca aquí para actualizar tu ubicación con GPS. " #: 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 "" +msgstr "Parece que algunos de tus contactos aún no han intentado encontrarte aquí. Puedes invitarlos personalmente personalizando un borrador de mensaje que te proporcionaremos." #: src/screens/Signup/StepInfo/index.tsx:370 msgid "It's correct" @@ -6067,14 +6403,14 @@ msgstr "Es correcto" #. placeholder {0}: getName(items[0]) #: src/screens/StarterPack/Wizard/index.tsx:483 msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." -msgstr "" +msgstr "¡Solo está <0>{0} por ahora! Agrega más personas a tu paquete de inicio buscando arriba." #: 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 "¡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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Tarea ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Tarea ID: {0}" msgid "Jobs" msgstr "Tareas" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Unirse" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Tareas" msgid "Join Bluesky" msgstr "Únete a Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Unirse al chat de grupo" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Solicitud para unirse retirada." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,19 +6450,24 @@ msgstr "Únete a la conversación" msgid "Journalism" msgstr "Periodismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" -msgstr "" +msgstr "Seguir editando" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:230 msgid "Keep me posted" -msgstr "" +msgstr "Mantenerme informado" + +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Expulsar miembro" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" -msgstr "" +msgstr "Sitio web de KWS" #. placeholder {0}: sanitizeDisplayName(desc.source!) #: src/components/moderation/ContentHider.tsx:251 @@ -6143,7 +6499,7 @@ msgstr "Etiquetas en tu cuenta" msgid "Labels on your content" msgstr "Etiquetas en tu contenido" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Ajustes de Idiomas" @@ -6160,12 +6516,12 @@ msgstr "Más grande" #: src/ageAssurance/components/NoAccessScreen.tsx:377 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201 msgid "Last initiated {timeAgo} ago" -msgstr "" +msgstr "Última iniciación hace {timeAgo}" #: src/ageAssurance/components/NoAccessScreen.tsx:375 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199 msgid "Last initiated just now" -msgstr "" +msgstr "Última iniciación justo ahora" #: src/screens/Hashtag.tsx:99 #: src/screens/Search/SearchResults.tsx:64 @@ -6174,14 +6530,14 @@ msgid "Latest" msgstr "Último" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 "" +msgstr "Más información" #: src/components/moderation/ScreenHider.tsx:147 msgid "Learn More" @@ -6189,7 +6545,7 @@ msgstr "Aprender más" #: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 msgid "Learn more about age assurance" -msgstr "" +msgstr "Más información acerca la verificación de edad" #: src/view/com/auth/SplashScreen.web.tsx:167 msgid "Learn more about Bluesky" @@ -6197,14 +6553,14 @@ msgstr "Más información sobre Bluesky" #: src/components/contacts/components/InviteInfo.tsx:33 msgid "Learn more about how inviting friends works" -msgstr "" +msgstr "Más información sobre cómo funciona invitar a amigos" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" -msgstr "" +msgstr "Más información sobre la importación de contactos" #: src/components/dialogs/ServerInput.tsx:220 msgid "Learn more about self hosting your PDS." @@ -6217,11 +6573,11 @@ msgstr "Más información sobre la moderación aplicada a este contenido" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." -msgstr "" +msgstr "Más información de estos cambios y como puedes compartir tus pensamientos con nosotros <0>leyendo nuestra publicación de blog." #: 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 "" +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 @@ -6229,54 +6585,56 @@ msgid "Learn more about this warning" msgstr "Más información sobre esta advertencia" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" -msgstr "" +msgstr "Más información sobre la verificación en Bluesky" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 msgid "Learn more about what is public on Bluesky." msgstr "Más información sobre qué es público en Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" -msgstr "" +msgstr "Más información sobre tu enlace de Germ DM" #: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 msgid "Learn more in your <0>account settings." -msgstr "" +msgstr "Más información en tus <0>ajustes de cuenta." #: src/components/dialogs/ServerInput.tsx:222 #: src/components/moderation/ContentHider.tsx:259 msgid "Learn more." msgstr "Aprender más." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Dejar" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Dejar chat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Dejar conversación" @@ -6284,21 +6642,30 @@ msgstr "Dejar conversación" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Dejar conversación" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" -msgstr "" +msgstr "Salir del chat de grupo" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" -msgstr "" +msgstr "Salir de este chat de grupo" #: src/components/dialogs/LinkWarning.tsx:83 #: src/components/dialogs/LinkWarning.tsx:91 msgid "Leaving Bluesky" msgstr "Salir de Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Saliste del chat de grupo." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "quedan." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Me gusta" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Like ({0, plural, one {# me gusta} other {# me gusta}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Dar \"me gusta\" a este feed" @@ -6358,8 +6721,8 @@ msgstr "Dar \"me gusta\" a este feed" msgid "Like this labeler" msgstr "Dar \"me gusta\" a este etiquetador" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Le gusta a" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Le gusta a {0, plural, one {# usuario} other {# usuarios}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Le gusta a {likeCount, plural, one {# usuario} other {# usuarios}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Me gusta" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" -msgstr "" +msgstr "Me gusta de tus republicaciones" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "\"Me gusta\" en esta publicación" @@ -6409,17 +6768,17 @@ msgstr "\"Me gusta\" en esta publicación" msgid "Linear" msgstr "Lineal" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" -msgstr "" +msgstr "Enlace copiado al portapapeles" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:397 msgid "List avatar" -msgstr "" +msgstr "Avatar de la lista" #: src/screens/ProfileList/components/SubscribeMenu.tsx:48 msgctxt "toast" @@ -6443,11 +6802,11 @@ msgstr "Lista tuya" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:127 msgid "List created, but failed to add some members" -msgstr "" +msgstr "Lista creada, pero no se pudieron añadir algunos miembros" #: src/view/com/feeds/MissingFeed.tsx:155 msgid "List creator" -msgstr "" +msgstr "Creador de la lista" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 msgctxt "toast" @@ -6456,11 +6815,11 @@ msgstr "Lista eliminada" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 msgid "List description" -msgstr "" +msgstr "Descripción de la lista" #: 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 "" +msgstr "La descripción de la lista es demasiado larga. {DESCRIPTION_MAX_GRAPHEMES, plural, one {Máximo # carácter.} other {Máximo # caracteres.}}" #: src/screens/List/ListHiddenScreen.tsx:133 msgid "List has been hidden" @@ -6472,7 +6831,7 @@ msgstr "Lista oculta" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:438 msgid "List must have a name." -msgstr "" +msgstr "La lista debe tener un nombre." #: src/screens/ProfileList/components/SubscribeMenu.tsx:33 msgctxt "toast" @@ -6481,11 +6840,11 @@ msgstr "Lista silenciada" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 msgid "List name" -msgstr "" +msgstr "Nombre de la lista" #: 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 "" +msgstr "El nombre de la lista es demasiado largo. {DISPLAY_NAME_MAX_GRAPHEMES, plural, one {Longitud máxima: # carácter.} other {Longitud máxima: # caracteres.}}" #: src/screens/ProfileList/components/Header.tsx:115 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 @@ -6499,18 +6858,18 @@ msgctxt "toast" msgid "List unmuted" msgstr "La lista ya no está silenciada" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listas" #: src/view/com/lists/MyLists.tsx:72 msgid "Lists allow you to see content from your favorite people." -msgstr "" +msgstr "Las listas te permiten ver el contenido de tus personas favoritas." #: src/components/dms/BlockedByListDialog.tsx:38 msgid "Lists blocking this user:" @@ -6519,42 +6878,42 @@ msgstr "Listas bloqueando este usuario:" #. 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 "" +msgstr "EN VIVO" #. 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 "" +msgstr "Evento en directo ahora mismo: {0}" #: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:51 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 msgid "Live event hidden" -msgstr "" +msgstr "Evento en directo oculto" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:106 msgid "Live event options" -msgstr "" +msgstr "Opciones de evento en directo" #: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 msgid "Live event unhidden" -msgstr "" +msgstr "Evento en directo visible" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:110 msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." -msgstr "" +msgstr "Los eventos en directo aparecen de vez en cuando cuando sucede algo emocionante. Si quieres, puedes ocultar este evento en particular, o todos los eventos en esta ubicación de la interfaz de la app." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" -msgstr "" +msgstr "La función en vivo está en beta" #: src/features/liveNow/components/EditLiveDialog.tsx:149 #: src/features/liveNow/components/EditLiveDialog.tsx:153 #: src/features/liveNow/components/GoLiveDialog.tsx:131 #: src/features/liveNow/components/GoLiveDialog.tsx:135 msgid "Live link" -msgstr "" +msgstr "Enlace en vivo" #: src/screens/Search/Explore.tsx:90 msgid "Load more" @@ -6581,47 +6940,47 @@ msgstr "Cargar publicaciones nuevas" #: src/screens/Messages/components/MessageInput.web.tsx:202 msgctxt "placeholder" msgid "Loading chat…" -msgstr "" +msgstr "Cargando chat…" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 msgid "Loading lists..." -msgstr "" +msgstr "Cargando listas..." #: src/components/dialogs/PostInteractionSettingsDialog.tsx:279 msgid "Loading post interaction settings..." -msgstr "" +msgstr "Cargando ajustes de interacción de la publicación..." #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:60 msgid "Loading..." msgstr "Cargando..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" -msgstr "" +msgstr "Bloquear" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" -msgstr "" +msgstr "Bloquear chat de grupo" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" -msgstr "" +msgstr "¿Bloquear chat de grupo?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" -msgstr "" +msgstr "Bloquear este chat de grupo" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" -msgstr "" +msgstr "Bloqueado" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Registro" #: src/components/AccountList.tsx:189 msgid "Logged out" -msgstr "" +msgstr "Sesión cerrada" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 msgid "Logged-out visibility" @@ -6632,14 +6991,14 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo de <0>@sawaratsuki.bsky.social" #. placeholder {0}: isCashtag ? tag : `#${tag}` #: src/components/RichTextTag.tsx:55 msgid "Long press to open tag menu for {0}" -msgstr "" +msgstr "Mantén pulsado para abrir el menú de etiquetas de {0}" #: src/screens/Login/SetNewPasswordForm.tsx:124 msgid "Looks like XXXXX-XXXXX" @@ -6660,11 +7019,11 @@ msgstr "Parece que te falta un feed de cuentas que sigues. <0>Haz clic aquí par #. 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 "" +msgstr "GIF de amor" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" -msgstr "" +msgstr "Ajusta la configuración de correo electrónico de tu cuenta" #: src/components/StarterPack/ProfileStarterPacks.tsx:311 msgid "Make one for me" @@ -6687,24 +7046,22 @@ msgstr "Gestionar los ajustes de verificación" msgid "Manage your muted words and tags" msgstr "Gestiona tus palabras y etiquetas silenciadas" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Marcar todo como leído" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcar como leído" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Se ha marcado todo como leído" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "En otro momento" @@ -6716,36 +7073,36 @@ msgstr "Multimedia" #. placeholder {0}: draft.draft.deviceName #: src/view/com/composer/drafts/DraftItem.tsx:119 msgid "Media stored on {0}" -msgstr "" +msgstr "Contenido multimedia almacenado en {0}" #: src/view/com/composer/drafts/DraftItem.tsx:117 msgid "Media stored on another device" -msgstr "" +msgstr "Contenido multimedia almacenado en otro dispositivo" #: src/view/com/composer/labels/LabelsBtn.tsx:206 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:302 +msgid "Member removed from group chat." +msgstr "Miembro eliminado del chat de grupo." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" -msgstr "" +msgstr "Miembros" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." -msgstr "" - -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" +msgstr "Los miembros aún pueden leer el historial del chat, pero no pueden enviar nuevos mensajes." #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "usuarios mencionados" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menciones" @@ -6756,41 +7113,41 @@ msgstr "Menú" #: src/screens/Messages/components/MessageInput.tsx:178 msgid "Message" -msgstr "" +msgstr "Mensaje" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" -msgstr "" +msgstr "Mensaje" #. placeholder {0}: profile.handle #: src/components/dms/MessageProfileButton.tsx:99 msgid "Message {0}" msgstr "Mensaje {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" -msgstr "" +msgstr "Enviar mensaje a {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mensaje eliminado" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mensaje eliminado" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." -msgstr "" +msgstr "Error al enviar el mensaje." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Mensaje de @{0}: {1}" @@ -6811,23 +7168,23 @@ msgstr "El mensaje es muy largo" #: src/screens/Messages/components/MessageComposer.tsx:89 msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -msgstr "" +msgstr "El mensaje es demasiado largo ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Opciones del mensaje" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mensajes" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." -msgstr "" +msgstr "Los mensajes de esta persona están ocultos mientras te tenga bloqueado." -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." -msgstr "" +msgstr "Los mensajes de esta persona están ocultos mientras la tengas bloqueada." #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" @@ -6836,21 +7193,17 @@ msgstr "Medianoche" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:177 msgid "Minor harassment or bullying" -msgstr "" - -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" +msgstr "Acoso o intimidación a un menor" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" -msgstr "" +msgstr "Engañoso" #: src/view/com/composer/drafts/DraftItem.tsx:131 msgid "Missing media" -msgstr "" +msgstr "Contenido multimedia faltante" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -6858,7 +7211,7 @@ msgstr "Moderación" #: src/screens/Settings/Settings.tsx:189 #: src/screens/Settings/Settings.tsx:192 msgid "Moderation and content filters" -msgstr "" +msgstr "Moderación y filtros de contenido" #: src/components/moderation/ModerationDetailsDialog.tsx:142 msgid "Moderation details" @@ -6894,7 +7247,7 @@ msgstr "Lista de moderación actualizada" msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderación" @@ -6903,7 +7256,7 @@ msgstr "Listas de moderación" msgid "moderation settings" msgstr "ajustes de moderación" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Estados de moderación" @@ -6924,22 +7277,22 @@ msgstr "Más feeds" #: src/view/com/composer/select-language/PostLanguageSelect.tsx:125 #: src/view/com/composer/select-language/PostLanguageSelect.tsx:128 msgid "More languages..." -msgstr "" +msgstr "Más idiomas..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Más opciones" #: src/screens/SavedFeeds.tsx:488 msgid "Move feed down" -msgstr "" +msgstr "Mover feed abajo" #: src/screens/SavedFeeds.tsx:478 msgid "Move feed up" -msgstr "" +msgstr "Mover feed arriba" #: src/lib/interests.ts:64 msgid "Movies" @@ -6949,7 +7302,7 @@ msgstr "Cine" msgid "Music" msgstr "Música" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silenciar" @@ -6963,10 +7316,10 @@ msgstr "Silenciar" #: src/components/RichTextTag.tsx:154 #: src/components/RichTextTag.tsx:170 msgid "Mute {0}" -msgstr "" +msgstr "Silenciar {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Silenciar esta cuenta" msgid "Mute accounts" msgstr "Silenciar cuentas" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silenciar la conversación" @@ -6994,9 +7347,9 @@ msgstr "Silenciar la lista" msgid "Mute these accounts?" msgstr "¿Silenciar estas cuentas?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" -msgstr "" +msgstr "Silenciar este chat de grupo" #: src/components/dialogs/MutedWords.tsx:194 msgid "Mute this word for 24 hours" @@ -7022,25 +7375,29 @@ msgstr "Silenciar esta palabra solo en etiquetas" msgid "Mute this word until you unmute it" msgstr "Silenciar esta palabra hasta que la vuelvas a habilitar." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silenciar el hilo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silenciar palabras y etiquetas" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Silencia, sal o elimina personas en cualquier momento. Es tu chat." + +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Muted" -msgstr "" +msgstr "Silenciado" #: src/screens/Moderation/index.tsx:314 msgid "Muted accounts" msgstr "Cuentas silenciadas" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuentas silenciadas" @@ -7062,14 +7419,18 @@ msgstr "Palabras y etiquetas silenciadas" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Nadie puede ver a quién silencias. Las cuentas silenciadas pueden interactuar contigo, pero no verás sus publicaciones en tu feed o notificaciones." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Chats de grupo en común" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" -msgstr "" +msgstr "Mi fecha de nacimiento" #: src/screens/StarterPack/Wizard/StepDetails.tsx:77 msgid "My favorite feeds and people - join me!" -msgstr "" +msgstr "Mis feeds y personas favoritas. ¡Únete!" #: src/view/screens/Feeds.tsx:697 msgid "My Feeds" @@ -7077,7 +7438,7 @@ msgstr "Mis feeds" #: src/screens/StarterPack/Wizard/StepDetails.tsx:49 msgid "My starter pack" -msgstr "" +msgstr "Mi paquete de inicio" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:416 msgid "Name" @@ -7104,19 +7465,20 @@ msgstr "Ir al paquete de inicio" msgid "Navigates to the next screen" msgstr "Navega a la siguiente pantalla" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navega a tu perfil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" +msgstr "¿Necesitas denunciar una violación de derechos de autor, una solicitud legal o un problema de cumplimiento normativo?" #: src/screens/Settings/components/ChangeHandleDialog.tsx:585 msgid "Nevermind, create a handle for me" msgstr "Da igual, crea un nombre de usuario por mí" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "Nuevo" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" -msgstr "" +msgstr "{postsCount, plural, one {nueva publicación} other {nuevas publicaciones}} de {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" -msgstr "" +msgstr "{postsCount, plural, one {nueva publicación} other {nuevas publicaciones}} de {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nuevo chat" #. placeholder {0}: createSanitizedDisplayName(members[0]) #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 msgid "New chat with {0}" -msgstr "" +msgstr "Nuevo chat con {0}" #. 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 "" +msgstr "Nuevo chat con {0} y {1}" #. 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 "" +msgstr "Nuevo chat con {0}, {1} y {memberCount, plural, one {{memberCount} más} other {{memberCount} más}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Nueva dirección de correo electrónico" @@ -7171,34 +7533,32 @@ msgstr "Nueva dirección de correo electrónico" #: 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 "Nueva característica" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" -msgstr "" +msgstr "Nuevos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" -msgstr "" +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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Nuevo chat de grupo" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" -msgstr "" +msgstr "Nuevo chat de grupo con:" #: src/screens/Settings/components/ChangeHandleDialog.tsx:228 #: src/screens/Settings/components/ChangeHandleDialog.tsx:236 @@ -7227,22 +7587,22 @@ msgid "New post" msgstr "Nueva publicación" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nueva publicación" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " -msgstr "" +msgstr "Nuevas publicaciones de {firstAuthorLink} y <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} otra persona} other {{formattedAuthorsCount} otras personas}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" -msgstr "" +msgstr "Nuevas publicaciones de {firstAuthorName} y <>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} otro} other {{formattedAuthorsCount} otros}}" #: src/components/dialogs/StarterPackDialog.tsx:202 msgid "New starter pack" -msgstr "" +msgstr "Nuevo paquete de inicio" #: src/components/NewskieDialog.tsx:122 msgid "New user info dialog" @@ -7262,8 +7622,8 @@ msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,9 +7644,13 @@ msgstr "Siguiente" msgid "Next image" msgstr "Imagen nueva" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Noche" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." -msgstr "" +msgstr "Sin anuncios, sin rastreo invasivo, sin trampas de interacción. Bluesky respeta tu tiempo y atención." #: src/screens/Settings/AppPasswords.tsx:108 msgid "No app passwords yet" @@ -7294,15 +7658,15 @@ msgstr "Aún no hay contraseñas de app" #: src/components/contacts/screens/ViewMatches.tsx:681 msgid "No contacts found" -msgstr "" +msgstr "No se encontraron contactos" #: src/components/contacts/screens/ViewMatches.tsx:659 msgid "No contacts with the name “{query}” found" -msgstr "" +msgstr "No se encontraron contactos con el nombre \"{query}\"" #: src/view/com/feeds/ProfileFeedgens.tsx:161 msgid "No custom feeds yet" -msgstr "" +msgstr "Aún no hay feeds personalizados" #: src/screens/Settings/components/ChangeHandleDialog.tsx:410 #: src/screens/Settings/components/ChangeHandleDialog.tsx:412 @@ -7311,33 +7675,33 @@ msgstr "Sin panel de DNS" #: src/view/com/composer/drafts/DraftsListDialog.tsx:143 msgid "No drafts yet" -msgstr "" +msgstr "Aún no hay borradores" #: src/features/liveNow/components/EditLiveDialog.tsx:141 msgid "No expiry set" -msgstr "" +msgstr "Sin caducidad establecida" #: src/screens/StarterPack/Wizard/StepFeeds.tsx:122 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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" -msgstr "" +msgstr "Aún no hay seguidores" #. 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 "" +msgstr "No se encontraron GIF para \"{query}\"." #. 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 "" +msgstr "No hay GIF para mostrar ahora mismo. Inténtalo de nuevo en un momento." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" -msgstr "" +msgstr "Sin imagen" #: src/components/LikedByList.tsx:84 #: src/view/com/post-thread/PostLikedBy.tsx:84 @@ -7347,70 +7711,70 @@ msgstr "Todavía no tiene \"me gusta\"" #: src/view/com/lists/ProfileLists.tsx:160 msgid "No lists" -msgstr "" +msgstr "Sin listas" #. 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:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Ya no sigues a {0}" #: src/view/screens/Profile.tsx:471 msgid "No media yet" -msgstr "" +msgstr "Aún no hay contenido multimedia" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "No hay mensajes aún" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." -msgstr "" +msgstr "Basta de algoritmos llenos de basura para el doomscrolling. Encuentra feeds que funcionen para ti, no contra ti." #: src/components/contacts/screens/ViewMatches.tsx:563 msgid "No name" -msgstr "" +msgstr "Sin nombre" #: src/view/com/notifications/NotificationFeed.tsx:125 msgid "No notifications yet!" msgstr "No hay notificaciones" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" -msgstr "" +msgstr "Nadie" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" -msgstr "" +msgstr "Nadie" #: 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 "" +msgstr "Nadie" #: src/components/WhoCanReply.tsx:303 msgid "No one but the author can quote this post." msgstr "Nadie, excepto el autor, puede citar esta publicación." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" -msgstr "" +msgstr "Nadie puede enviar mensajes" #: src/screens/Notifications/ActivityList.tsx:43 msgid "No posts here" -msgstr "" +msgstr "No hay publicaciones aquí" #: src/screens/Profile/Sections/Feed.tsx:81 #: src/view/screens/Profile.tsx:430 msgid "No posts yet" -msgstr "" +msgstr "Aún no hay publicaciones" #: src/view/com/post-thread/PostQuotes.tsx:107 msgid "No quotes yet" @@ -7419,11 +7783,11 @@ msgstr "No hay citas aún" #. 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 "" +msgstr "Aún no hay GIF recientes. Elige uno para verlo aquí." #: src/view/screens/Profile.tsx:456 msgid "No replies yet" -msgstr "" +msgstr "Aún no hay respuestas" #: src/view/com/post-thread/PostRepostedBy.tsx:90 msgid "No reposts yet" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Sin resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sin resultados" @@ -7446,8 +7810,8 @@ msgstr "Sin resultados" msgid "No results for \"{0}\"." msgstr "No hay resultados para \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "No se encontraron resultados" @@ -7457,7 +7821,7 @@ msgstr "No se han encontrado resultados para \"{query}\"" #: src/screens/Search/SearchResults.tsx:178 msgid "No results found for “<0>{query}”." -msgstr "" +msgstr "No se encontraron resultados para \"<0>{query}\"." #: src/screens/Search/Explore.tsx:832 msgid "No results." @@ -7465,7 +7829,7 @@ msgstr "No hay resultados." #: src/view/screens/Profile.tsx:557 msgid "No Starter Packs yet" -msgstr "" +msgstr "Aún no hay paquetes de inicio" #: src/components/dialogs/EmbedConsent.tsx:100 #: src/components/dialogs/EmbedConsent.tsx:107 @@ -7474,11 +7838,11 @@ msgstr "No gracias" #: src/lib/translation/index.tsx:308 msgid "No translation received from your device." -msgstr "" +msgstr "No se recibió ninguna traducción de tu dispositivo." #: src/view/screens/Profile.tsx:498 msgid "No video posts yet" -msgstr "" +msgstr "Aún no hay publicaciones con video" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:471 msgid "Nobody" @@ -7503,35 +7867,35 @@ msgstr "No se encontró a nadie. Intenta buscar a otra persona." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:80 msgid "Non-consensual intimate imagery" -msgstr "" +msgstr "Imágenes íntimas no consentidas" #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" msgstr "Desnudez no sexual" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "No disponible en esta plataforma" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." -msgstr "" +msgstr "No disponible en esta plataforma." #: src/components/KnownFollowers.tsx:254 msgid "Not followed by anyone you’re following" -msgstr "" +msgstr "No lo sigue nadie a quien estés siguiendo" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "No encontrado" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "" +msgstr "¿No estás listo para publicar? Guarda tus mejores ideas en Borradores hasta que llegue el momento adecuado." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -7541,51 +7905,38 @@ msgstr "Nota: Bluesky es una red abierta y pública. Esta configuración solo li #: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:135 msgid "Note: This post is only visible to logged-in users." -msgstr "" +msgstr "Nota: Esta publicación solo es visible para los usuarios que han iniciado sesión." #: src/screens/Bookmarks/components/EmptyState.tsx:36 #: src/screens/Bookmarks/index.tsx:299 msgid "Nothing saved yet" -msgstr "" +msgstr "Aún no se ha guardado nada" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ajustes de notificaciones" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sonidos de notificación" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificaciones" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ahora" @@ -7597,11 +7948,11 @@ msgstr "Desnudez" #: src/components/contacts/phone-number.ts:43 msgid "Number should be a mobile number" -msgstr "" +msgstr "El número debe ser un número móvil" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Apagar" @@ -7623,9 +7974,10 @@ msgstr "Aceptar" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Está bien" @@ -7638,7 +7990,7 @@ msgstr "Respuestas antiguas primero" #: src/screens/Settings/AccountSettings.tsx:164 msgid "On" -msgstr "" +msgstr "Activado" #: src/components/StarterPack/QrCode.tsx:86 msgid "on<0><1/><2><3/>" @@ -7648,35 +8000,35 @@ msgstr "en<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Reiniciar introducción" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Uno de los destinatarios seleccionados no permite chats de grupo." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Uno de los destinatarios seleccionados te ha bloqueado y no se le puede enviar mensajes." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imágenes." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." -msgstr "" +msgstr "Uno o más de los archivos seleccionados no son compatibles." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "" +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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 "" +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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Falta el texto alternativo en uno o más videos." @@ -7685,6 +8037,26 @@ msgstr "Falta el texto alternativo en uno o más videos." msgid "Only {0} can reply." msgstr "Solo {0} puede responder." +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Solo los administradores pueden aceptar solicitudes para unirse." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Solo los administradores pueden ignorar solicitudes para unirse." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Solo los seguidores pueden unirse a este chat de grupo." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Solo seguidores a quienes sigo" msgid "Only image files are supported" msgstr "Solo se admiten archivos de imagen" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Solo las personas que sigue {0} pueden unirse." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Solo las personas que sigue el propietario del chat pueden unirse" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo se admiten archivos WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Solo se admiten archivos WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "¡Uy, algo ha salido mal!" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7712,26 +8098,31 @@ msgstr "¡Uy, algo ha salido mal!" msgid "Oops!" msgstr "¡Uy!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Abrir el creador de avatares" #: src/view/com/feeds/ComposerPrompt.tsx:202 msgid "Open camera" -msgstr "" +msgstr "Abrir cámara" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Abrir chat" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" -msgstr "" +msgstr "Abrir opciones de miembro del chat para {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Abrir las opciones de conversación" #: src/view/com/composer/drafts/DraftItem.tsx:69 msgid "Open draft" -msgstr "" +msgstr "Abrir borrador" #: src/components/Layout/Header/index.tsx:167 msgid "Open drawer menu" @@ -7739,16 +8130,16 @@ msgstr "Abrir el menú lateral" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Abrir el selector de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Abrir el menú de opciones del feed" @@ -7758,15 +8149,24 @@ msgstr "Abrir la lista completa de emoji" #: src/screens/Profile/components/GermButton.tsx:75 msgid "Open Germ DM" -msgstr "" +msgstr "Abrir Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Abrir chat de grupo" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" -msgstr "" +msgstr "Abrir ajustes del chat de grupo" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Abrir en Google Translate" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "Abrir enlace a {niceUrl}" @@ -7790,19 +8190,23 @@ msgstr "Abrir" msgid "Open post options menu" msgstr "Abrir menú de opciones de la publicación" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" -msgstr "" +msgstr "Abrir perfil" + +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "Abrir escáner de código QR" #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" -msgstr "" +msgstr "Abrir ajustes" #: src/components/PostControls/ShareMenu/index.tsx:98 msgid "Open share menu" -msgstr "" +msgstr "Abrir menú de compartir" #: src/screens/StarterPack/StarterPackScreen.tsx:582 msgid "Open starter pack menu" @@ -7817,10 +8221,14 @@ msgstr "Abrir pagina de histórico" msgid "Open system log" msgstr "Abrir el registro del sistema" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Abrir este chat de grupo" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" -msgstr "" +msgstr "Abre el feed {0}" #: src/view/com/composer/labels/LabelsBtn.tsx:63 msgid "Opens a dialog to add a content warning to your post" @@ -7828,7 +8236,11 @@ msgstr "Abre un diálogo para agregar una advertencia de contenido a tu publicac #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:154 msgid "Opens a dialog to choose who can interact with this post" -msgstr "" +msgstr "Abre un diálogo para elegir quién puede interactuar con esta publicación" + +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "Abre una lista de temas de color para la tarjeta QR" #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Abrir cámara del dispositivo" @@ -7856,26 +8268,28 @@ msgstr "Abrir la ventana de redacción" #: src/view/com/feeds/ComposerPrompt.tsx:203 msgid "Opens device camera" -msgstr "" +msgstr "Abre la cámara del dispositivo" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "" +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Abre la galería del dispositivo para seleccionar hasta {MAX_GALLERY_IMAGES, plural, one {# imagen} other {# imágenes}}, o un solo video o GIF." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" -msgstr "" +msgstr "Abre la imagen completa" #: src/screens/Settings/Settings.tsx:248 msgid "Opens helpdesk in browser" @@ -7883,16 +8297,16 @@ msgstr "Abre el centro de ayuda en el navegador" #: src/view/com/feeds/ComposerPrompt.tsx:225 msgid "Opens image picker" -msgstr "" +msgstr "Abre el selector de imágenes" #. placeholder {0}: link?.href ?? '' #: src/components/dialogs/LinkWarning.tsx:113 msgid "Opens link {0}" -msgstr "" +msgstr "Abre el enlace {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" -msgstr "" +msgstr "Abre el diálogo de estado en vivo" #: src/screens/Login/LoginForm.tsx:259 msgid "Opens password reset form" @@ -7900,28 +8314,35 @@ msgstr "Abre el formulario de restablecimiento de contraseña" #: src/view/com/composer/select-language/PostLanguageSelect.tsx:200 msgid "Opens post language settings" -msgstr "" +msgstr "Abre la configuración de idioma de la publicación" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" -msgstr "" +msgstr "Abre el perfil" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "Abre los ajustes para encontrar e invitar amigos" #. 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 "" +msgstr "Abre el diálogo del selector de GIF" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "Abre la hoja de invitar amigos para compartir tu perfil" #: src/view/com/feeds/ComposerPrompt.tsx:148 msgid "Opens the post composer" -msgstr "" +msgstr "Abre el editor de publicaciones" #: src/view/com/composer/drafts/DraftItem.tsx:70 msgid "Opens this draft in the composer" -msgstr "" +msgstr "Abre este borrador en el editor" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Abre este perfil" @@ -7965,65 +8386,66 @@ msgstr "Otra cuenta" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:181 msgid "Other child safety issue" -msgstr "" +msgstr "Otro problema de seguridad infantil" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:208 msgid "Other dangerous content" -msgstr "" +msgstr "Otro contenido peligroso" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:119 msgid "Other harassing or hateful content" -msgstr "" +msgstr "Otro contenido de acoso u odio" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:59 msgid "Other misleading content" -msgstr "" +msgstr "Otro contenido engañoso" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:231 msgid "Other network rule-breaking" -msgstr "" +msgstr "Otra infracción de las reglas de la red" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:92 msgid "Other sexual violence content" -msgstr "" +msgstr "Otro contenido de violencia sexual" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:154 msgid "Other violent content" -msgstr "" +msgstr "Otro contenido violento" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:51 msgid "Our blog post" -msgstr "" +msgstr "Nuestra publicación de blog" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "El equipo de moderación ha recibido tu denuncia." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nuestros moderadores han revisado denuncias y han decidido deshabilitar tu acceso a los chats en Bluesky." #: src/components/dialogs/StarterPackDialog.tsx:384 msgid "Owner" -msgstr "" +msgstr "Propietario" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "El propietario debe bloquear el grupo antes de salir." + +#: 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 "Página no encontrada" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Página no encontrada" - #. 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 "" +msgstr "GIF de fiesta" #: src/screens/Login/LoginForm.tsx:228 #: src/screens/Settings/AccountSettings.tsx:126 @@ -8035,7 +8457,7 @@ msgstr "Contraseña" #: src/screens/Settings/components/ChangePasswordDialog.tsx:70 msgid "Password changed" -msgstr "" +msgstr "Contraseña cambiada" #: src/screens/Settings/components/ChangePasswordDialog.tsx:125 msgid "Password must be at least 8 characters long." @@ -8056,7 +8478,7 @@ msgstr "Pausar" #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:36 msgid "Pause GIF" -msgstr "" +msgstr "Pausar GIF" #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 msgid "Pause video" @@ -8068,48 +8490,48 @@ msgstr "Pausar video" msgid "People" msgstr "Personas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" -msgstr "" +msgstr "Las personas que sigue {ownerName} pueden unirse al instante" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" -msgstr "" +msgstr "Las personas que sigue {ownerName} pueden solicitar unirse" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Personas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Personas siguiendo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Personas a las que sigo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" -msgstr "" +msgstr "Las personas que sigo pueden unirse al instante" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" -msgstr "" +msgstr "Las personas que sigo pueden solicitar unirse" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 msgid "People you follow" -msgstr "" +msgstr "Personas a las que sigues" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:524 msgid "People you mention" -msgstr "" +msgstr "Personas a las que mencionas" #: src/lib/media/save-image.ts:59 msgid "Permission to access your photo library was denied. Please enable it in your system settings." -msgstr "" +msgstr "El permiso para acceder a tu galería de fotos fue denegado. Por favor, actívalo en la configuración de tu sistema." #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Person toggle" @@ -8117,7 +8539,7 @@ msgstr "Alternar persona" #: src/components/contacts/components/InviteInfo.tsx:60 msgid "Personalize the message" -msgstr "" +msgstr "Personalizar el mensaje" #: src/lib/interests.ts:68 msgid "Pets" @@ -8126,23 +8548,27 @@ msgstr "Mascotas" #: src/components/contacts/screens/PhoneInput.tsx:192 #: src/components/contacts/screens/PhoneInput.tsx:204 msgid "Phone number" -msgstr "" +msgstr "Número de teléfono" #: src/components/contacts/screens/VerifyNumber.tsx:304 msgid "Phone number verified" -msgstr "" +msgstr "Número de teléfono verificado" #: src/lib/interests.ts:69 msgid "Photography" msgstr "Fotografía" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Elige un tema de color" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imágenes destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Anclar el feed" @@ -8152,12 +8578,12 @@ msgstr "Anclar el feed" msgid "Pin to home" msgstr "Anclar en inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Anclar en inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Anclar en tu perfil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Anclado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} anclados en inicio" @@ -8192,7 +8618,7 @@ msgstr "Reproducir {0}" #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:36 msgid "Play GIF" -msgstr "" +msgstr "Reproducir GIF" #: src/components/Post/Embed/VideoEmbed/index.tsx:130 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 @@ -8225,7 +8651,7 @@ msgstr "Añade las etiquetas de advertencia sobre el contenido multimedia que va #: 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 "" +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 msgid "Please choose your handle." @@ -8236,17 +8662,17 @@ msgstr "Por favor, elige tu identificador." msgid "Please choose your password." msgstr "Por favor, elige tu contraseña." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" +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 msgid "Please complete the verification captcha." msgstr "Por favor, completa la verificación CAPTCHA." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." -msgstr "" +msgstr "Por favor, confirma tu dirección de correo electrónico para subir videos." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 #: src/screens/Signup/StepInfo/index.tsx:140 @@ -8265,16 +8691,16 @@ msgstr "Escribe una contraseña. Debe tener al menos 8 caracteres." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Introduce un nombre único para esta contraseña de app o utiliza el que generamos aleatoriamente." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "" +msgstr "Ingresa un código válido." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." -msgstr "" +msgstr "Ingresa una dirección de correo electrónico válida." #: src/components/dialogs/MutedWords.tsx:89 msgid "Please enter a valid word, tag, or phrase to mute" @@ -8282,20 +8708,20 @@ msgstr "Por favor, introduce una palabra, etiqueta, o frase válida para silenci #: 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 "" +msgstr "Ingresa una dirección de correo electrónico válida y no temporal. Puede que necesites acceder a este correo electrónico en el futuro." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." -msgstr "" +msgstr "Ingresa el código que te enviamos a <0>{0} abajo." #: src/screens/Settings/components/ChangePasswordDialog.tsx:66 msgid "Please enter the code you received and the new password you would like to use." -msgstr "" +msgstr "Ingresa el código que recibiste y la nueva contraseña que deseas utilizar." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." -msgstr "" +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/StepInfo/index.tsx:123 @@ -8306,9 +8732,9 @@ msgstr "Introduce tu correo electrónico." msgid "Please enter your invite code." msgstr "Introduce tu código de invitación." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." -msgstr "" +msgstr "Ingresa tu nueva dirección de correo electrónico." #: src/screens/Login/LoginForm.tsx:96 msgid "Please enter your password" @@ -8323,26 +8749,26 @@ msgstr "Escribe tu nombre de usuario" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Por favor, explica por qué crees que esta etiqueta fue aplicada incorrectamente por {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Por favor, explica por qué crees que tus chats fueron deshabilitados incorrectamente" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:124 msgid "Please explain why you think your Go Live access was incorrectly disabled." -msgstr "" +msgstr "Por favor, explica por qué crees que tu acceso a Transmitir en vivo se deshabilitó incorrectamente." #: 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 "" +msgstr "Por favor, vuelve atrás o activa este elemento para volver al inicio del contenido activo." #: 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 "" +msgstr "Por favor, proporciona cualquier detalle adicional que creas que los moderadores puedan necesitar para evaluar correctamente tu estado de verificación de edad." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:303 msgid "Please select a language" -msgstr "" +msgstr "Selecciona un idioma" #: src/components/moderation/ReportDialog/action.ts:32 msgid "Please select a moderation service" @@ -8358,21 +8784,25 @@ msgstr "Selecciona un motivo para esta denuncia" msgid "Please sign in as @{0}" msgstr "Por favor, ingresa como @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "Por favor, usa la aplicación móvil de Bluesky para escanear un código QR." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." -msgstr "" +msgstr "Por favor, usa la aplicación nativa para importar tus contactos." #: src/screens/FindContactsFlowScreen.tsx:63 msgid "Please use the native app to sync your contacts." -msgstr "" +msgstr "Por favor, usa la aplicación nativa para sincronizar tus contactos." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" -msgstr "" +msgstr "Verifica tu correo electrónico" #: src/lib/hooks/useCreateSupportLink.ts:29 msgid "Please write your message below:" -msgstr "" +msgstr "Escribe tu mensaje abajo:" #: src/lib/interests.ts:70 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:220 @@ -8383,7 +8813,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -8396,40 +8826,40 @@ msgstr "Publicar" #: src/view/screens/Profile.tsx:475 #: src/view/screens/Profile.tsx:476 msgid "Post a photo" -msgstr "" +msgstr "Publica una foto" #: src/view/screens/Profile.tsx:502 #: src/view/screens/Profile.tsx:503 msgid "Post a video" -msgstr "" +msgstr "Publica un video" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publicar Todo" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" -msgstr "" +msgstr "Publicar de todas formas" #: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 msgid "Post blocked" -msgstr "" +msgstr "Publicación bloqueada" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Publicación por {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Publicación eliminada" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Error al subir la publicación. Por favor, verifica tu conexión a internet y vuelve a intentarlo." @@ -8454,20 +8884,24 @@ msgstr "Publicación ocultada por ti" msgid "Post interaction settings" msgstr "Ajustes de interacción de la publicación" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ajustes de interacción de la publicación" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Publícalo en Bluesky o compártelo en cualquier sitio." + #. 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 "" +msgstr "Selección del idioma de la publicación" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" -msgstr "" +msgstr "Publicar enlace" #: src/screens/PostThread/components/ThreadError.tsx:33 #: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 @@ -8481,7 +8915,7 @@ msgstr "Publicación fijado" #: src/components/PostControls/BookmarkButton.tsx:67 msgid "Post saved" -msgstr "" +msgstr "Publicación guardada" #: src/state/queries/pinned-post.ts:61 msgctxt "toast" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,29 +8938,26 @@ 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:217 -msgid "Posts, Replies" -msgstr "Publicaciones, respuestas" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" -msgstr "" +msgstr "Enlace potencialmente engañoso" #: src/components/dialogs/LinkWarning.tsx:82 msgid "Potentially misleading link warning" -msgstr "" +msgstr "Advertencia de enlace potencialmente engañoso" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:292 msgid "Preferred language" -msgstr "" +msgstr "Idioma preferido" #: src/screens/Messages/components/MessageListError.tsx:18 msgid "Press to attempt reconnection" msgstr "Presiona para reintentar la conexión" -#: src/components/Error.tsx:61 +#: 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 "Presiona para reintentar" @@ -8536,9 +8966,9 @@ msgstr "Presiona para reintentar" msgid "Press to view followers of this account that you also follow" msgstr "Presiona para ver los seguidores de esta cuenta que también sigues." -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" -msgstr "" +msgstr "Vista previa" #: src/components/Lightbox/Lightbox.web.tsx:197 msgid "Previous image" @@ -8547,7 +8977,7 @@ msgstr "Imagen previa" #: src/screens/Settings/LanguageSettings.tsx:141 #: src/screens/Settings/LanguageSettings.tsx:157 msgid "Primary language" -msgstr "" +msgstr "Idioma principal" #: src/view/shell/desktop/RightNav.tsx:118 #: src/view/shell/desktop/RightNav.tsx:119 @@ -8559,42 +8989,41 @@ msgstr "Privacidad" msgid "Privacy and security" msgstr "Privacidad y seguridad" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Política de privacidad" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:173 msgid "Privacy violation of a minor" -msgstr "" +msgstr "Violación de la privacidad de un menor" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." -msgstr "" +msgstr "Procesando GIF..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Procesando video..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Procesando..." @@ -8602,20 +9031,21 @@ msgstr "Procesando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Perfil" #: src/screens/Profile/Header/Shell.tsx:164 msgid "Profile banner placeholder" -msgstr "" +msgstr "Marcador de banner del perfil" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" -msgstr "" +msgstr "Perfil no encontrado" #: src/screens/Profile/Header/EditProfileDialog.tsx:186 msgctxt "toast" @@ -8624,68 +9054,65 @@ msgstr "Perfil actualizado" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:223 msgid "Promoting or selling prohibited items or services" -msgstr "" +msgstr "Promoción o venta de artículos o servicios prohibidos" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:165 msgid "Psst! You can edit who can interact with this post." -msgstr "" +msgstr "¡Pst! Puedes editar quién puede interactuar con esta publicación." #: src/view/com/lists/MyLists.tsx:77 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:1677 +#: src/view/com/composer/Composer.tsx:1792 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:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publicar las publicaciones" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publicar las respuestas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publicar la respuesta" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notificaciones push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "Push, todos" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "Push, personas a las que sigues" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "¡Código QR copiado a tu portapapeles!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "¡El código QR ha sido descargado!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "¡Código QR guardado en tu galería!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Citar la publicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "La cita se vinculado de nuevo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "La cita se ha desvinculado correctamente" @@ -8711,12 +9138,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citas de esta publicación" @@ -8726,29 +9153,29 @@ msgstr "Límite de velocidad excedido - has intentado cambiar tu nombre de usuar #: src/components/contacts/screens/PhoneInput.tsx:109 msgid "Rate limit exceeded. Please try again later." -msgstr "" +msgstr "Se ha excedido el límite de intentos. Por favor, inténtalo de nuevo en unos minutos." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Vincular cita de nuevo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" -msgstr "" +msgstr "Volver a habilitar el enlace de invitación" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" -msgstr "" +msgstr "Volver a habilitar el enlace" #: src/components/dms/EmojiReactionPicker.tsx:80 msgid "React with {emoji}" msgstr "React con {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" -msgstr "" +msgstr "Reacciones" #: src/screens/Deactivated.tsx:133 msgid "Reactivate your account" @@ -8757,15 +9184,15 @@ msgstr "Reactivar tu cuenta" #. placeholder {0}: item.moreReplies #: src/screens/PostThread/components/ThreadItemReadMore.tsx:93 msgid "Read {0, plural, one {# more reply} other {# more replies}}" -msgstr "" +msgstr "Leer {0, plural, one {# respuesta más} other {# respuestas más}}" #: src/screens/Search/SearchResults.tsx:189 msgctxt "english-only-resource" msgid "read about how to use search filters" -msgstr "" +msgstr "leer sobre cómo usar los filtros de búsqueda" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leer la publicación del blog (en inglés)" @@ -8783,7 +9210,7 @@ msgstr "Leer más respuestas" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:113 msgid "Read our blog post" -msgstr "" +msgstr "Leer nuestra publicación de blog" #: src/view/com/auth/SplashScreen.web.tsx:172 msgid "Read the Bluesky blog" @@ -8801,37 +9228,37 @@ msgstr "Leer los Términos y Condiciones de Bluesky" #: src/components/WelcomeModal.tsx:149 msgid "Real conversations." -msgstr "" +msgstr "Conversaciones reales." #: src/components/WelcomeModal.tsx:147 msgid "Real people." -msgstr "" +msgstr "Personas reales." #: src/screens/Takendown.tsx:158 #: src/screens/Takendown.tsx:166 msgid "Reason for appeal" msgstr "Motivo del recurso" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Recibir notificaciones en la aplicación" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Recibir notificaciones push" #. 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 "" +msgstr "GIF recientes" #: src/screens/Search/components/SearchHistory.tsx:49 msgid "Recent searches" -msgstr "" +msgstr "Búsquedas recientes" #: src/components/dialogs/LanguageSelectDialog.tsx:249 msgid "Recently used" -msgstr "" +msgstr "Usados recientemente" #: src/screens/Search/modules/ExploreRecommendations.tsx:55 msgid "Recommended" @@ -8841,17 +9268,31 @@ msgstr "Recomendaciones" msgid "Reconnect" msgstr "Reconectar" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Actualiza la página para verlo." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Rechazar" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Rechazar" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Rechazar la solicitud de chat" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Rechazar solicitud para unirse" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Recargar conversaciones" @@ -8863,6 +9304,8 @@ msgstr "Recargar conversaciones" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8872,15 +9315,20 @@ msgstr "Eliminar" #: src/components/dms/ChatProfileTabs.tsx:153 msgid "Remove {displayName} from group chat" -msgstr "" +msgstr "Eliminar a {displayName} del chat de grupo" #: src/components/StarterPack/Wizard/WizardListCard.tsx:62 msgid "Remove {displayName} from starter pack" msgstr "Eliminar a {displayName} del paquete de inicio" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" -msgstr "" +msgstr "Eliminar a {displayName} de este chat de grupo" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "¿Eliminar a {displayName}?" #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" @@ -8891,31 +9339,32 @@ msgstr "Eliminar {historyItem}" msgid "Remove account" msgstr "Eliminar la cuenta" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" -msgstr "" +msgstr "Eliminar todos los contactos" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Eliminar adjunto" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Eliminar Avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Eliminar Banner" #: src/view/com/composer/videos/SubtitleDialog.tsx:286 msgid "Remove caption file" -msgstr "" +msgstr "Eliminar archivo de subtítulos" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Eliminar incrustado" @@ -8929,12 +9378,12 @@ msgstr "Eliminar feed" msgid "Remove feed?" msgstr "¿Eliminar feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" -msgstr "" +msgstr "Eliminar del chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8953,13 +9402,13 @@ msgstr "Eliminar de los feeds guardados" #: src/components/PostControls/BookmarkButton.tsx:143 #: src/screens/Bookmarks/index.tsx:259 msgid "Remove from saved posts" -msgstr "" +msgstr "Eliminar de publicaciones guardadas" #: src/components/FeedCard.tsx:373 msgid "Remove from your feeds?" msgstr "¿Eliminar de tus feeds?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Eliminar la imagen" @@ -8982,9 +9431,9 @@ msgid "Remove repost" msgstr "Eliminar republicación" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" -msgstr "" +msgstr "Eliminar sugerencia" #: src/view/com/posts/PostFeedErrorMessage.tsx:219 msgid "Remove this feed from your saved feeds" @@ -8992,7 +9441,7 @@ msgstr "Eliminar este feed de tus feeds guardados" #: src/screens/Moderation/index.tsx:473 msgid "Remove unavailable moderation services" -msgstr "" +msgstr "Eliminar servicios de moderación no disponibles" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:167 msgid "Remove user from list" @@ -9009,11 +9458,11 @@ msgstr "Eliminar la verificación" msgid "Remove your verification for this account?" msgstr "¿Eliminar tu verificación para esta cuenta?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Eliminado por el autor" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Eliminado por ti" @@ -9029,13 +9478,13 @@ msgstr "Eliminado de mis feeds guardados" #: src/components/PostControls/BookmarkButton.tsx:107 #: src/screens/Bookmarks/index.tsx:217 msgid "Removed from saved posts" -msgstr "" +msgstr "Eliminada de publicaciones guardadas" #: src/components/dialogs/StarterPackDialog.tsx:287 msgid "Removed from starter pack" -msgstr "" +msgstr "Eliminado del paquete de inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9043,7 +9492,7 @@ msgstr "Eliminado de tus feeds" #: src/screens/Moderation/index.tsx:187 msgid "Removed unavailable services" -msgstr "" +msgstr "Servicios no disponibles eliminados" #: src/components/verification/VerificationRemovePrompt.tsx:32 msgid "Removed verification" @@ -9051,15 +9500,15 @@ msgstr "Verificación eliminada" #: src/components/dialogs/MutedWords.tsx:541 msgid "Renew" -msgstr "" +msgstr "Renovar" #: src/components/dialogs/MutedWords.tsx:547 msgid "Renew duration" -msgstr "" +msgstr "Renovar duración" #: src/components/dialogs/MutedWords.tsx:531 msgid "Renew mute word" -msgstr "" +msgstr "Renovar palabra silenciada" #: src/view/com/posts/FeedShutdownMsg.tsx:134 #: src/view/com/posts/FeedShutdownMsg.tsx:138 @@ -9069,29 +9518,28 @@ msgstr "Reemplaza con Descubrir" #: src/components/Post/PostRepliedTo.tsx:39 msgctxt "description" msgid "Replied to <0><1/>" -msgstr "" +msgstr "Respondió a <0><1/>" #: src/components/Post/PostRepliedTo.tsx:28 msgctxt "description" msgid "Replied to a blocked post" -msgstr "" +msgstr "Respondió a una publicación bloqueada" #: src/components/Post/PostRepliedTo.tsx:30 msgctxt "description" msgid "Replied to a post" -msgstr "" +msgstr "Respondió a una publicación" #: src/components/Post/PostRepliedTo.tsx:36 msgctxt "description" msgid "Replied to you" -msgstr "" +msgstr "Te respondió" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Respuestas" @@ -9104,14 +9552,14 @@ msgstr "Respuestas deshabilitadas" msgid "Replies to this post are disabled." msgstr "Las respuestas en esta publicación estan deshabilitadas." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Responder" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# respuesta} other {# respuestas}})" @@ -9125,10 +9573,6 @@ msgstr "Respuesta ocultada por el autor del hilo" msgid "Reply Hidden by You" msgstr "Respuesta ocultada por ti" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notificaciones de respuestas" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "La configuración de respuestas es elegida por el autor del hilo" @@ -9137,18 +9581,18 @@ msgstr "La configuración de respuestas es elegida por el autor del hilo" msgid "Reply sorting" msgstr "Orden de las respuestas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidad de la respuesta actualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "La respuesta se ha ocultado correctamente" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Denunciar" @@ -9157,20 +9601,20 @@ msgstr "Denunciar" msgid "Report account" msgstr "Denunciar la cuenta" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Denunciar conversación" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Ventana de denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Denunciar feed" @@ -9179,18 +9623,18 @@ msgstr "Denunciar feed" msgid "Report list" msgstr "Denunciar la lista" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Denunciar mensaje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Denunciar la publicación" #: src/components/SendErrorReportDialog.tsx:47 msgid "Report sent" -msgstr "" +msgstr "Denuncia enviada" #: src/screens/StarterPack/StarterPackScreen.tsx:657 #: src/screens/StarterPack/StarterPackScreen.tsx:660 @@ -9199,32 +9643,32 @@ msgstr "Denunciar paquete de inicio" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Denuncia enviada" #: src/components/moderation/ReportDialog/copy.ts:51 #: src/components/moderation/ReportDialog/copy.ts:65 msgid "Report this conversation" -msgstr "" +msgstr "Denunciar esta conversación" #: src/components/moderation/ReportDialog/copy.ts:37 msgid "Report this feed" msgstr "Denunciar este feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" -msgstr "" +msgstr "Denunciar este chat de grupo" #: src/components/moderation/ReportDialog/copy.ts:31 msgid "Report this list" msgstr "Denunciar esta lista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" -msgstr "" +msgstr "Denunciar esta transmisión en vivo" #: src/components/moderation/ReportDialog/copy.ts:57 msgid "Report this message" @@ -9256,10 +9700,6 @@ msgstr "Republicar" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republicar ({0, plural, one {# republicación} other {# republicaciones}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notificaciones de republicaciones" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9274,7 +9714,7 @@ msgstr "Republicado por" #: src/view/com/posts/PostFeedReason.tsx:78 #: src/view/com/posts/PostFeedReason.tsx:97 msgid "Reposted by {reposter}" -msgstr "" +msgstr "Republicado por {reposter}" #: src/view/com/posts/PostFeedReason.tsx:78 #: src/view/com/posts/PostFeedReason.tsx:95 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Republicado por ti" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Republicaciones" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Republicaciones de esta publicación" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Republicaciones de tus republicaciones" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notificaciones de republicaciones de tus republicaciones" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Solicitar acceso al chat de grupo" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Solicitud aprobada." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" -msgstr "" +msgstr "Solicitar código" + +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Solicitud ignorada." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Solicitar unirse" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Solicitado" #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" -msgstr "" +msgstr "Solicitudes" + +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Solicitudes para unirse" #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Requerir texto alternativo antes de publicar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Requerir un código por correo electrónico antes de iniciar sesión con tu cuenta." @@ -9328,19 +9791,29 @@ msgstr "Requerido para este proveedor" msgid "Required in your region" msgstr "Requerido en tu región" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Retirar solicitud" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Retirar solicitud para unirse al chat de grupo" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Reenviar" #: src/components/contacts/screens/VerifyNumber.tsx:365 #: src/components/contacts/screens/VerifyNumber.tsx:382 msgid "Resend code" -msgstr "" +msgstr "Reenviar código" #. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') #: src/components/contacts/screens/VerifyNumber.tsx:372 msgid "Resend code in <0>00:{0}" -msgstr "" +msgstr "Reenviar código en <0>00:{0}" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 #: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 @@ -9358,7 +9831,7 @@ msgstr "Reenviar correo de verificación" #: src/screens/Settings/Settings.tsx:490 #: src/screens/Settings/Settings.tsx:492 msgid "Reset activity subscription nudge" -msgstr "" +msgstr "Restablecer el aviso de suscripción a la actividad" #: src/screens/Login/SetNewPasswordForm.tsx:118 msgid "Reset code" @@ -9373,10 +9846,10 @@ msgstr "Restablecer el estado de incorporación" msgid "Reset password" msgstr "Restablecer contraseña" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" -msgstr "" +msgstr "Resincronizar contactos" #: src/screens/Login/LoginForm.tsx:330 msgid "Retries signing in" @@ -9391,17 +9864,18 @@ msgstr "Reintenta la última acción, que presentó un error" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Reintenta la última acción, que presentó un error" msgid "Retry" msgstr "Reintentar" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Reintentar cargar opciones de denuncia" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Volver a la página anterior" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volver a la página anterior" @@ -9444,17 +9918,17 @@ msgstr "Vuelve al paso anterior" #. 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 "" +msgstr "GIF tristes" #: 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:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9471,7 +9945,7 @@ msgstr "Guardar" #: src/components/dialogs/BirthDateSettings.tsx:193 msgid "Save birthdate" -msgstr "" +msgstr "Guardar fecha de nacimiento" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:198 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:207 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar cambios" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" -msgstr "" +msgstr "¿Guardar cambios?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" -msgstr "" +msgstr "Guardar borrador" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" -msgstr "" +msgstr "¿Guardar borrador?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,56 +9985,66 @@ msgstr "Guardar imagen" msgid "Save new handle" msgstr "Guardar nuevo nombre de usuario" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Guardar código QR" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:649 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:655 msgid "Save these options for next time" -msgstr "" +msgstr "Guardar estas opciones para la próxima vez" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Guardar en mis feeds" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" -msgstr "" +msgstr "Guardadas" #: src/screens/SavedFeeds.tsx:198 #: src/screens/SavedFeeds.tsx:375 msgid "Saved Feeds" msgstr "Feeds guardados" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" -msgstr "" +msgstr "Publicaciones guardadas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado en tus feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "¡Di hola!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" -msgstr "" +msgstr "Saluda a alguien" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:43 msgid "Scam" -msgstr "" +msgstr "Estafa" + +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Escanear" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Escanear código QR" #: src/lib/interests.ts:71 msgid "Science" @@ -9566,28 +10052,28 @@ msgstr "Ciencia" #: src/components/InterestTabs.tsx:255 msgid "Scroll left" -msgstr "" +msgstr "Desplazar a la izquierda" #: src/components/InterestTabs.tsx:289 msgid "Scroll right" -msgstr "" +msgstr "Desplazar a la derecha" #: src/screens/ProfileList/AboutSection.tsx:132 msgid "Scroll to top" msgstr "Desplazar hacia arriba" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Buscar en las publicaciones de @{0}" @@ -9598,7 +10084,7 @@ msgstr "Buscar por nombre o interés" #: src/components/contacts/screens/ViewMatches.tsx:356 msgid "Search contacts" -msgstr "" +msgstr "Buscar contactos" #: src/view/screens/Feeds.tsx:437 msgid "Search feeds" @@ -9607,12 +10093,12 @@ msgstr "Buscar feeds" #. 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 "" +msgstr "Buscar \"{interestsDisplayName}\"" #. 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 "" +msgstr "Buscar \"{interestsDisplayName}\" (activo)" #: src/screens/Search/components/AutocompleteResults.tsx:54 msgid "Search for \"{searchText}\"" @@ -9632,7 +10118,7 @@ msgstr "Buscar más feeds" #: src/components/dms/components/UserSearchInput.tsx:43 msgid "Search for people" -msgstr "" +msgstr "Buscar personas" #: src/screens/Search/Shell.tsx:388 msgid "Search for posts, users, or feeds" @@ -9646,28 +10132,28 @@ msgstr "Buscar GIFs" #: src/screens/Hashtag.tsx:224 #: src/screens/Search/SearchResults.tsx:313 msgid "Search is currently unavailable when logged out" -msgstr "" +msgstr "La búsqueda no está disponible actualmente cuando has cerrado sesión" #. 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 "" +msgstr "Buscar en KLIPY" #: src/components/dialogs/LanguageSelectDialog.tsx:232 #: src/components/dialogs/LanguageSelectDialog.tsx:233 msgid "Search languages" -msgstr "" +msgstr "Buscar idiomas" #: src/screens/Profile/ProfileSearch.tsx:36 msgid "Search my posts" msgstr "Buscar en mis publicaciones" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Buscar en sus publicaciones" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,25 +10163,25 @@ msgstr "Buscar perfiles" msgid "Search..." msgstr "Buscar..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Busca perfiles" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Se requiere un paso de seguridad" #. placeholder {0}: isCashtag ? tag : `#${tag}` #: src/components/RichTextTag.tsx:114 msgid "See {0} posts" -msgstr "" +msgstr "Ver {0} publicaciones" #. placeholder {0}: isCashtag ? tag : `#${tag}` #: src/components/RichTextTag.tsx:131 msgid "See {0} posts by user" -msgstr "" +msgstr "Ver {0} publicaciones del usuario" #: src/components/RichTextTag.tsx:122 msgid "See {tag} posts" @@ -9720,16 +10206,16 @@ msgstr "Ver empleos en Bluesky" #: src/components/FeedInterstitials.tsx:491 #: src/components/FeedInterstitials.tsx:549 msgid "See more" -msgstr "" +msgstr "Ver más" #: src/components/FeedInterstitials.tsx:472 msgid "See more suggested profiles" -msgstr "" +msgstr "Ver más perfiles sugeridos" #: src/view/com/profile/ProfileFollows.tsx:190 #: src/view/com/profile/ProfileFollows.tsx:191 msgid "See suggested accounts" -msgstr "" +msgstr "Ver cuentas sugeridas" #: src/screens/SavedFeeds.tsx:232 #: src/screens/SavedFeeds.tsx:403 @@ -9743,25 +10229,25 @@ msgstr "Control deslizante. Usa las flechas del teclado para avanzar o retrocede #. 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 msgid "Select \"{interestsDisplayName}\" category" -msgstr "" +msgstr "Seleccionar la categoría \"{interestsDisplayName}\"" #. Accessibility label for a username suggestion in the account creation flow #. placeholder {0}: suggestion.handle #: src/screens/Signup/StepHandle/HandleSuggestions.tsx:43 msgid "Select {0}" -msgstr "" +msgstr "Elegir {0}" #: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 msgid "Select {langName}" -msgstr "" +msgstr "Elegir {langName}" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 msgid "Select a color" msgstr "Selecciona un color" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" -msgstr "" +msgstr "Selecciona un motivo" #: src/screens/Login/ChooseAccountForm.tsx:81 msgid "Select account" @@ -9790,11 +10276,11 @@ msgstr "Elegir el idioma de la aplicación" #: src/view/com/composer/videos/SubtitleFilePicker.tsx:60 #: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 msgid "Select caption file (.vtt)" -msgstr "" +msgstr "Seleccionar archivo de subtítulos (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 msgid "Select chat \"{name}\"" -msgstr "" +msgstr "Seleccionar chat \"{name}\"" #: src/screens/Settings/LanguageSettings.tsx:195 #: src/screens/Settings/LanguageSettings.tsx:233 @@ -9811,11 +10297,11 @@ msgstr "Selecciona de una cuenta existente" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 msgid "Select from your lists" -msgstr "" +msgstr "Seleccionar de tus listas" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" -msgstr "" +msgstr "Seleccionar de tus listas <0>{numberOfListsSelected, plural, one {(# seleccionada)} other {(# seleccionadas)}}" #. Accessibility label for the button in the post composer that opens the GIF picker dialog. #: src/view/com/composer/photos/SelectGifBtn.tsx:38 @@ -9828,9 +10314,9 @@ msgstr "Seleccionar GIF" msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" -msgstr "" +msgstr "Seleccionar miembros del chat de grupo" #: src/components/dialogs/MutedWords.tsx:151 msgid "Select how long to mute this word for." @@ -9840,7 +10326,7 @@ msgstr "Selecciona por cuánto tiempo se debería silenciar esta palabra." #: src/components/LanguageSelect.tsx:37 #: src/components/LanguageSelect.tsx:38 msgid "Select language" -msgstr "" +msgstr "Seleccionar idioma" #: src/view/com/composer/videos/SubtitleDialog.tsx:273 msgid "Select language..." @@ -9850,13 +10336,13 @@ msgstr "Seleccionar idioma..." msgid "Select languages" msgstr "Seleccionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Seleccionar servicio de moderación" #: src/view/com/composer/select-language/PostLanguageSelect.tsx:91 msgid "Select post language" -msgstr "" +msgstr "Elegir el idioma de la publicación" #: src/screens/Settings/LanguageSettings.tsx:152 msgid "Select primary language" @@ -9864,7 +10350,7 @@ msgstr "Elegir el idioma principal" #: src/components/InternationalPhoneCodeSelect.tsx:68 msgid "Select telephone code" -msgstr "" +msgstr "Seleccionar código telefónico" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:84 msgid "Select the {emojiName} emoji as your avatar" @@ -9872,12 +10358,12 @@ msgstr "Seleccionar el emoji {emojiName} como tu avatar" #: src/components/Post/Translated/index.tsx:446 msgid "Select the source language" -msgstr "" +msgstr "Selecciona el idioma de origen" #: 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 "" +msgstr "Elige hasta 3 idiomas usados en esta publicación" #: src/components/dialogs/MutedWords.tsx:251 msgid "Select what content this mute word should apply to." @@ -9904,26 +10390,26 @@ msgstr "Selecciona tus intereses entre las siguientes opciones" msgid "Select your preferred language for translations in your feed." msgstr "Elige a qué idioma deseas traducir las publicaciones de tu feed." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Elegir los canales de notificación que prefieres" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." -msgstr "" +msgstr "No es compatible seleccionar varios tipos de medios." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:188 msgid "Self-harm or dangerous behaviors" -msgstr "" +msgstr "Autolesiones o conductas peligrosas" #: src/components/contacts/screens/PhoneInput.tsx:255 #: src/components/contacts/screens/PhoneInput.tsx:260 msgid "Send code" -msgstr "" +msgstr "Enviar código" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Enviar correo" @@ -9933,13 +10419,13 @@ msgstr "Enviar correo" #: src/screens/Settings/AboutSettings.tsx:118 #: src/screens/Settings/AboutSettings.tsx:121 msgid "Send error report" -msgstr "" +msgstr "Enviar informe de error" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Enviar comentarios" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Enviar mensaje" @@ -9952,15 +10438,15 @@ msgstr "Enviar la publicación a {name}" msgid "Send post to..." msgstr "Enviar publicación a..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Enviar denuncia a {title}" #: src/components/contacts/components/InviteInfo.tsx:63 msgid "Send the message from your phone" -msgstr "" +msgstr "Envía el mensaje desde tu teléfono" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,13 +10460,13 @@ msgid "Send via direct message" msgstr "Enviar por mensaje directo" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" -msgstr "" +msgstr "Enviado a las {0}" #: src/components/contacts/screens/PhoneInput.tsx:283 msgid "Sent to our phone number verification provider Plivo" -msgstr "" +msgstr "Enviado a Plivo, nuestro proveedor de verificación de números de teléfono" #: src/components/dialogs/ServerInput.tsx:174 msgid "Server address" @@ -9997,7 +10483,7 @@ msgstr "Establecer la contraseña nueva" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:481 msgid "Set precisely which groups of people can reply to your post" -msgstr "" +msgstr "Define con precisión qué grupos de personas pueden responder a tu publicación" #: src/screens/Onboarding/Layout.tsx:48 msgid "Set up your account" @@ -10005,66 +10491,66 @@ msgstr "Configura tu cuenta" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:431 msgid "Set who can reply to your post" -msgstr "" +msgstr "Define quién puede responder a tu publicación" #: src/ageAssurance/components/NoAccessScreen.tsx:223 msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" -msgstr "" +msgstr "¡Establece tu fecha de nacimiento abajo y volverás a publicar y explorar en un momento!" #: src/screens/Login/ForgotPasswordForm.tsx:109 msgid "Sets email for password reset" msgstr "Establece el correo electrónico para restablecer la contraseña" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ajustes" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" -msgstr "" +msgstr "Configuración para la actividad de otros" #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:85 msgid "Settings for allowing others to be notified of your posts" msgstr "Permitir que los demás reciban notificaciones de tus publicaciones" -#: src/screens/Settings/NotificationSettings/index.tsx:122 -msgid "Settings for like notifications" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:155 -msgid "Settings for mention notifications" -msgstr "" - #: src/screens/Settings/NotificationSettings/index.tsx:133 -msgid "Settings for new follower notifications" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:231 -msgid "Settings for notifications for everything else" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:202 -msgid "Settings for notifications for likes of your reposts" -msgstr "" - -#: src/screens/Settings/NotificationSettings/index.tsx:217 -msgid "Settings for notifications for reposts of your reposts" -msgstr "" +msgid "Settings for like notifications" +msgstr "Configuración para notificaciones de me gusta" #: src/screens/Settings/NotificationSettings/index.tsx:166 -msgid "Settings for quote notifications" -msgstr "" +msgid "Settings for mention notifications" +msgstr "Configuración para notificaciones de menciones" #: src/screens/Settings/NotificationSettings/index.tsx:144 -msgid "Settings for reply notifications" -msgstr "" +msgid "Settings for new follower notifications" +msgstr "Configuración para notificaciones de nuevos seguidores" + +#: src/screens/Settings/NotificationSettings/index.tsx:238 +msgid "Settings for notifications for everything else" +msgstr "Configuración para notificaciones de todo lo demás" + +#: src/screens/Settings/NotificationSettings/index.tsx:212 +msgid "Settings for notifications for likes of your reposts" +msgstr "Configuración para notificaciones de me gusta de tus republicaciones" + +#: src/screens/Settings/NotificationSettings/index.tsx:225 +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:177 +msgid "Settings for quote notifications" +msgstr "Configuración para notificaciones de citas" + +#: src/screens/Settings/NotificationSettings/index.tsx:155 +msgid "Settings for reply notifications" +msgstr "Configuración para notificaciones de respuestas" + +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" -msgstr "" +msgstr "Configuración para notificaciones de republicaciones" #: src/screens/ModerationInteractionSettings/index.tsx:103 msgctxt "toast" @@ -10079,34 +10565,42 @@ msgstr "Actividad sexual o desnudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente sugestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Compartir" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Compartir de todas maneras" #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 msgid "Share author DID" -msgstr "" +msgstr "Compartir el DID del autor" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" -msgstr "" +msgstr "Compartir imagen" + +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Compartir enlace de invitación" #: 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 "Compartir enlace" @@ -10114,6 +10608,11 @@ msgstr "Compartir enlace" msgid "Share link dialog" msgstr "Ventana para compartir enlace" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Compartir mi perfil" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Compartir el URI at:// de la publicación" msgid "Share QR code" msgstr "Compartir código QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Compartir este feed" @@ -10142,16 +10641,16 @@ msgstr "Comparte este paquete de inicio y ayuda a las personas a unirse a tu com #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Compartir por..." #: src/components/contacts/screens/GetContacts.tsx:232 msgid "Share your contacts to find friends" -msgstr "" +msgstr "Comparte tus contactos para encontrar amigos" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" @@ -10167,18 +10666,18 @@ msgstr "Ver texto alternativo" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Ver de todas maneras" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" -msgstr "" +msgstr "Mostrar etiqueta de automatización" #: src/lib/moderation/useLabelBehaviorDescription.ts:30 #: src/lib/moderation/useLabelBehaviorDescription.ts:66 @@ -10195,10 +10694,10 @@ msgstr "Mostrar opciones de personalización" #: src/components/dms/SystemMessageGroup.tsx:57 msgid "Show group chat updates" -msgstr "" +msgstr "Mostrar actualizaciones del chat de grupo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Mostrar menos como esto" @@ -10208,19 +10707,19 @@ msgstr "Mostrar lista de todas maneras" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:534 msgid "Show lists of users to select from" -msgstr "" +msgstr "Mostrar listas de usuarios para seleccionar" #: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:28 #: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:38 msgid "Show live events in your Discover Feed" -msgstr "" +msgstr "Mostrar eventos en directo en tu feed de Discover" #: src/components/Post/ShowMoreTextButton.tsx:52 msgid "Show More" msgstr "Ver más" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mostrar más como esto" @@ -10230,7 +10729,7 @@ msgstr "Mostrar más respuestas" #: src/screens/Settings/ThreadPreferences.tsx:99 msgid "Show post replies in a threaded tree view" -msgstr "" +msgstr "Mostrar las respuestas a las publicaciones en una vista de árbol con hilos" #: src/screens/Settings/FollowingFeedPreferences.tsx:108 #: src/screens/Settings/FollowingFeedPreferences.tsx:118 @@ -10246,8 +10745,8 @@ msgstr "Mostrar respuestas" msgid "Show replies as" msgstr "Mostrar las respuestas como" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Mostrar respuesta para todos" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Mostrar advertencia y filtrar de los feeds" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" -msgstr "" +msgstr "Mostrar cuando estés en directo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Muestra información sobre la fecha de creación de esta publicación" @@ -10297,15 +10796,17 @@ msgstr "Muestra el contenido" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Iniciar sesión o crear una cuenta" msgid "Sign in or create your account to join the conversation!" msgstr "¡Inicia sesión o crea una cuenta para unirte a la conversación!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Inicia sesión para aceptar la invitación." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Iniciar sesión en una cuenta que no está en la lista" @@ -10337,10 +10842,14 @@ msgstr "Iniciar sesión en una cuenta que no está en la lista" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sesión en Bluesky o crea una nueva cuenta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Inicia sesión para solicitar acceso a este chat de grupo." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" -msgstr "" +msgstr "Inicia sesión para ver la publicación" #: src/screens/Settings/Settings.tsx:265 #: src/screens/Settings/Settings.tsx:267 @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Cerrar sesión" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Cerrar sesión" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "¿Cerrar sesión?" @@ -10389,41 +10898,41 @@ msgstr "Saltar" #: src/components/contacts/screens/PhoneInput.tsx:160 #: src/components/contacts/screens/VerifyNumber.tsx:202 msgid "Skip contact sharing and continue to the app" -msgstr "" +msgstr "Omitir la compartición de contactos y continuar a la aplicación" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" -msgstr "" +msgstr "¿Omitir publicaciones vacías?" #: src/screens/Onboarding/StepFinished/index.tsx:288 #: src/screens/Onboarding/StepFinished/index.tsx:314 msgid "Skip introduction and start using your account" -msgstr "" +msgstr "Saltar introducción y empezar a usar tu cuenta" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:278 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:102 msgid "Skip to next step" -msgstr "" +msgstr "Saltar al siguiente paso" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" -msgstr "" +msgstr "diapositiva" #: src/screens/Settings/AppearanceSettings.tsx:152 msgid "Smaller" msgstr "Más pequeño" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Posponer el recordatorio" #: src/view/com/composer/drafts/DraftsListDialog.tsx:155 msgid "So many thoughts, you should post one" -msgstr "" +msgstr "Tantas ideas, deberías publicar una" #: src/components/WelcomeModal.tsx:151 msgid "Social media you control." -msgstr "" +msgstr "Red social que tú controlas." #: src/lib/interests.ts:58 msgid "Software Dev" @@ -10431,7 +10940,7 @@ msgstr "Programación" #: src/screens/Moderation/index.tsx:466 msgid "Some moderation services in your list are no longer available." -msgstr "" +msgstr "Algunos servicios de moderación de tu lista ya no están disponibles." #: src/components/verification/VerificationsDialog.tsx:122 msgid "Some of your verifications are invalid." @@ -10447,57 +10956,62 @@ msgstr "Algunas personas pueden responder" #: src/components/dms/getSystemMessageInfo.ts:86 msgid "Someone joined" -msgstr "" +msgstr "Alguien se unió" #: src/components/dms/getSystemMessageInfo.ts:87 msgid "Someone joined the group" -msgstr "" +msgstr "Alguien se unió al grupo" #: src/components/dms/getSystemMessageInfo.ts:99 msgid "Someone left" -msgstr "" +msgstr "Alguien salió" #: src/components/dms/getSystemMessageInfo.ts:100 msgid "Someone left the group" -msgstr "" +msgstr "Alguien salió del grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Alguien reaccionó con {0}" #. placeholder {0}: reaction.value #: src/components/dms/getReactionInfo.ts:47 msgid "Someone reacted {0} to {target}" -msgstr "" +msgstr "Alguien reaccionó con {0} a {target}" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" -msgstr "" +msgstr "Alguien fue añadido" #: src/components/dms/getSystemMessageInfo.ts:61 msgid "Someone was added to the group" -msgstr "" +msgstr "Alguien fue añadido al grupo" #: src/components/dms/getSystemMessageInfo.ts:73 msgid "Someone was removed" -msgstr "" +msgstr "Alguien fue eliminado" #: src/components/dms/getSystemMessageInfo.ts:74 msgid "Someone was removed from the group" -msgstr "" +msgstr "Alguien fue eliminado del grupo" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Hay algo nuevo aquí" + +#: 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 "Hubo un problema con los datos que intentaste denunciar. Por favor, contacta con el soporte." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Se produjo un error" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10515,19 +11029,19 @@ msgstr "¡Se produjo un error!" #: src/screens/PostThread/components/ThreadError.tsx:28 msgid "Something went wrong. Please try again in a moment." -msgstr "" +msgstr "Algo salió mal. Por favor, inténtalo de nuevo en un momento." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Se produjo un error. Inténtalo de nuevo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "¿Algo va mal? Avísanos." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:231 msgid "Sorry, we're unable to load account suggestions at this time." -msgstr "" +msgstr "Lo sentimos, no podemos cargar las sugerencias de cuentas en este momento." #: src/App.native.tsx:139 #: src/App.web.tsx:118 @@ -10557,18 +11071,23 @@ msgstr "Spam" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 msgid "Spam or other inauthentic behavior or deception" -msgstr "" +msgstr "Spam u otro comportamiento no auténtico o engaño" #: src/lib/interests.ts:72 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 msgid "Sports" msgstr "Deportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." -msgstr "" +msgstr "Inicia una conversación y aparecerá aquí." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Iniciar un chat de grupo" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Iniciar un nuevo chat" @@ -10582,17 +11101,17 @@ msgstr "Empieza a añadir personas" msgid "Start adding people!" msgstr "¡Empieza a añadir personas!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" -msgstr "" +msgstr "Iniciar chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -10626,11 +11145,11 @@ msgstr "Los paquetes de inicio te permiten compartir fácilmente tus feeds y per #: src/components/StarterPack/ProfileStarterPacks.tsx:105 msgid "Starter packs let you share your favorite feeds and people with your friends." -msgstr "" +msgstr "Los paquetes de inicio te permiten compartir tus feeds y personas favoritas con tus amigos." #: src/view/screens/Profile.tsx:555 msgid "Starter Packs let you share your favorite feeds and people with your friends." -msgstr "" +msgstr "Los paquetes de inicio te permiten compartir tus feeds y personas favoritas con tus amigos." #: src/screens/Settings/AboutSettings.tsx:103 #: src/screens/Settings/AboutSettings.tsx:106 @@ -10652,16 +11171,16 @@ msgstr "Almacenamiento limpio, necesitas reiniciar la aplicación ahora." #: src/components/contacts/screens/PhoneInput.tsx:294 msgid "Stored as part of a secure code for matching with others" -msgstr "" +msgstr "Almacenado como parte de un código seguro para hacer coincidencias con otros" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Libro de cuentos" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" +msgstr "¿Transmitiendo en Twitch? Activa tu estado de en directo en Bluesky para añadir una insignia a tu avatar. Al tocarla, la gente irá directamente a tu transmisión." #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:122 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:128 @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Enviar" @@ -10684,9 +11203,9 @@ msgstr "Enviar apelación" msgid "Submit Appeal" msgstr "Enviar apelación" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Enviar denuncia" @@ -10695,15 +11214,15 @@ msgid "Subscribe" msgstr "Suscribirse" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" -msgstr "" +msgstr "Suscribirse en {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" -msgstr "" +msgstr "Suscríbete a {publicationTitle} en {0}" #. placeholder {0}: labelerInfo.creator.handle #: src/screens/Profile/Sections/Labels.tsx:231 @@ -10712,7 +11231,7 @@ msgstr "Suscríbete a @{0} para usar estas etiquetas:" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:252 msgid "Subscribe to account activity" -msgstr "" +msgstr "Suscribirse a la actividad de la cuenta" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:347 msgid "Subscribe to Labeler" @@ -10729,25 +11248,29 @@ msgstr "Suscribirse a esta lista" #: src/ageAssurance/components/RedirectOverlay.tsx:252 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:160 msgid "Success" -msgstr "" +msgstr "Éxito" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "¡Éxito!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "¡Te has unido al chat de grupo correctamente!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificado correctamente" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" -msgstr "" +msgstr "Sugerido" #: src/screens/Search/Explore.tsx:375 msgid "Suggested accounts" -msgstr "" +msgstr "Cuentas sugeridas" #. Accounts suggested to the user for them to follow #: src/components/FeedInterstitials.tsx:469 @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Atardecer" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10778,22 +11301,22 @@ msgstr "Soporte" #: 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 "" +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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Las cuentas suspendidas no pueden participar en un chat de grupo." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Las cuentas suspendidas no pueden participar en el chat." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Cambiar a otra cuenta" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Cambiar cuentas" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Cambiar a {0}" @@ -10824,29 +11347,33 @@ msgstr "Registro del sistema" msgid "Tags only" msgstr "Solo etiquetas" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Lleva la conversación a un lugar privado." + #: 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 "" +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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" -msgstr "" +msgstr "Toca para más detalles" #: src/view/com/feeds/MissingFeed.tsx:90 msgid "Tap for information" -msgstr "" +msgstr "Toca para obtener información" #: src/view/com/feeds/MissingFeed.tsx:45 msgid "Tap for more information" -msgstr "" +msgstr "Toca para obtener más información" #: src/screens/Signup/StepInfo/index.tsx:323 msgid "Tap here to update your location with GPS." -msgstr "" +msgstr "Toca aquí para actualizar tu ubicación con GPS." #: 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 "" +msgstr "Toca para confirmar que entiendes y aceptas estas actualizaciones y continúa usando Bluesky" #: src/components/ContextMenu/Backdrop.ios.tsx:54 #: src/components/ContextMenu/Backdrop.ios.tsx:80 @@ -10854,39 +11381,57 @@ msgstr "" msgid "Tap to close context menu" msgstr "Toca para cerrar el menú contextual" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Toca para copiar este enlace de invitación" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Toca para descartar" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Toca para unirte a este chat de grupo inmediatamente" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Toca para abrir este chat de grupo" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" -msgstr "" +msgstr "Toca para eliminar" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" -msgstr "" +msgstr "Toca para eliminar tu reacción {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" -msgstr "" +msgstr "Toca para reintentar" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" -msgstr "" +msgstr "Toca para mostrar las reacciones {0}" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" -msgstr "" +msgstr "Toca para mostrar todas las reacciones" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" -msgstr "" +msgstr "Toca para ver las reacciones" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 msgid "Targeted harassment" -msgstr "" +msgstr "Acoso dirigido" #: src/state/shell/progress-guide.tsx:236 msgid "Task complete - 10 follows!" @@ -10914,7 +11459,7 @@ msgstr "Cuéntanos un poco más" #: src/screens/Settings/components/DeleteAccountDialog.tsx:214 msgid "Temporarily deactivate your account" -msgstr "" +msgstr "Desactivar temporalmente tu cuenta" #: src/view/shell/desktop/RightNav.tsx:125 #: src/view/shell/desktop/RightNav.tsx:126 @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Términos de servicio" @@ -10939,13 +11484,13 @@ msgstr "Texto y etiquetas" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campo de introducción de texto" #: src/view/com/posts/ShowLessFollowup.tsx:39 msgid "Thank you for your feedback! It has been sent to the feed operator." -msgstr "" +msgstr "¡Gracias por tus comentarios! Estos han sido enviados al operador del feed." #: src/components/intents/VerifyEmailIntentDialog.tsx:77 msgid "Thanks, you have successfully verified your email address. You can close this dialog." @@ -10954,7 +11499,7 @@ msgstr "Gracias, has verificado tu dirección de correo electrónico exitosament #: src/ageAssurance/components/NoAccessScreen.tsx:423 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:247 msgid "Thanks! You're all set." -msgstr "" +msgstr "¡Gracias! Ya está todo listo." #: src/screens/Settings/components/ChangeHandleDialog.tsx:500 msgid "That contains the following:" @@ -10971,7 +11516,7 @@ msgstr "No se pudo encontrar ese paquete de inicio." #: src/screens/Signup/StepHandle/index.tsx:81 msgid "That username is already taken" -msgstr "" +msgstr "Este nombre de usuario ya está en uso" #: src/view/com/post-thread/PostQuotes.tsx:135 msgid "That's all, folks!" @@ -10981,9 +11526,9 @@ msgstr "¡Eso es todo, amigos!" msgid "That's everything!" msgstr "¡Se acabó!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "La cuenta podrá interactuar contigo tras desbloquearla." @@ -10999,7 +11544,7 @@ msgstr "El autor de este hilo ha ocultado esta respuesta." #: 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 "" +msgstr "La fecha de nacimiento que has introducido significa que tienes menos de 18 años. Ciertos contenidos y características pueden no estar disponibles para ti." #: src/screens/Moderation/index.tsx:415 msgid "The Bluesky web application" @@ -11039,7 +11584,7 @@ msgstr "Las siguientes etiquetas se aplicaron a tu contenido." #: src/features/liveNow/components/GoLiveDialog.tsx:162 msgid "The following services are enabled for your account: {allowedServices}" -msgstr "" +msgstr "Los siguientes servicios están habilitados para tu cuenta: {allowedServices}" #: 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." @@ -11047,20 +11592,25 @@ msgstr "Estos serán los ajustes por defecto cuando crees una nueva publicación #: 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 "" +msgstr "Las leyes de tu región requieren que verifiques que eres adulto para acceder a ciertas funciones. Toca para más información." + +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "Se ha alcanzado el límite de miembros." #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" -msgstr "" +msgstr "La publicación a la que estás respondiendo fue marcada como escrita en {suggestedLanguageName} por su autor. ¿Quieres responder en <0>{suggestedLanguageName}?" #: src/view/screens/PrivacyPolicy.tsx:29 msgid "The Privacy Policy has been moved to <0/>" msgstr "La Política de Privacidad se ha trasladado a <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "" +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "El video seleccionado es mayor a {VIDEO_MAX_SIZE_MB} MB. Por favor, inténtalo de nuevo con un archivo más pequeño." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11091,7 +11641,7 @@ msgstr "El código de verificación que has proporcionado es inválido. Por favo #: 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 "" +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 msgid "Theme" @@ -11099,11 +11649,11 @@ msgstr "Tema" #: 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 "" +msgstr "Hay un límite a la frecuencia con la que puedes cambiar tu fecha de nacimiento. Es posible que tengas que esperar uno o dos días antes de actualizarla de nuevo." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." -msgstr "" +msgstr "No hay un enlace de invitación para este chat de grupo." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." @@ -11112,13 +11662,16 @@ msgstr "No hay límite de tiempo para la desactivación de la cuenta, vuelve cua #. 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 "" +msgstr "Hubo un problema al cargar los GIF. Verifica tu conexión e inténtalo de nuevo." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 msgid "There was a problem with your internet connection, please try again" -msgstr "" +msgstr "Hubo un problema con tu conexión a internet, inténtalo de nuevo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Hubo un problema al contactar con el servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Hubo un problema al actualizar tus feeds, por favor verifica tu conexión a internet e inténtalo de nuevo." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Ocurrió un problema {0}" @@ -11215,12 +11768,20 @@ msgstr "¡Ha habido una oleada de nuevos usuarios en Bluesky! Activaremos tu cue #: src/components/dialogs/PostInteractionSettingsDialog.tsx:660 msgid "These are your default settings" -msgstr "" +msgstr "Estos son tus ajustes predeterminados" #: src/screens/Settings/FollowingFeedPreferences.tsx:66 msgid "These settings only apply to the Following feed." msgstr "Estos ajustes solo aplican para el feed Following." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "Es el propietario de este chat" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} ha sido marcada:" @@ -11231,7 +11792,7 @@ msgstr "Esta cuenta tiene una marca de verificación porque ha sido verificada p #: src/components/BotAccountAlert.tsx:27 msgid "This account has been marked as automated by its owner." -msgstr "" +msgstr "Esta cuenta ha sido marcada como automatizada por su propietario." #: src/components/verification/VerificationsDialog.tsx:94 msgid "This account has one or more attempted verifications, but it is not currently verified." @@ -11254,27 +11815,37 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Esta apelación será enviada a <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Esta apelación será enviada al servicio de moderación de Bluesky." #: 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 "" +msgstr "Este autor ha elegido que sus publicaciones sean visibles solo para personas que hayan iniciado sesión." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" +msgstr "Este botón permite a otros abrir la aplicación Germ DM para enviarte un mensaje. Puedes gestionar su visibilidad desde la aplicación Germ DM, o puedes desconectar por completo tu cuenta de Bluesky de Germ DM haciendo clic en el botón a continuación." #: src/screens/Messages/components/ChatEnded.tsx:49 msgid "This chat has ended" -msgstr "" +msgstr "Este chat ha finalizado" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Este chat está lleno" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" -msgstr "" +msgstr "Este chat está bloqueado" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "Este chat está bloqueado por una acción de moderación" #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" @@ -11282,11 +11853,11 @@ msgstr "Este chat fue desconectado" #: src/components/contacts/screens/VerifyNumber.tsx:106 msgid "This code is invalid. Resend to get a new code." -msgstr "" +msgstr "Este código no es válido. Reenvía para obtener un nuevo código." #: src/screens/Settings/components/ChangePasswordDialog.tsx:145 msgid "This confirmation code is not valid. Please try again." -msgstr "" +msgstr "Este código de confirmación no es válido. Inténtalo de nuevo." #: src/lib/moderation/useGlobalLabelStrings.ts:19 msgid "This content has been hidden by the moderators." @@ -11310,17 +11881,21 @@ msgstr "Este contenido no está disponible porque uno de los usuarios involucrad msgid "This content is not viewable without a Bluesky account." msgstr "Este contenido no se puede ver sin una cuenta de Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Esta conversación está bloqueada." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Esta conversación es con una cuenta eliminada o desactivada. Presiona para ver opciones" #: src/view/com/composer/drafts/DraftItem.tsx:240 msgid "This draft will be permanently deleted." -msgstr "" +msgstr "Este borrador se eliminará de forma permanente." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." -msgstr "" +msgstr "Este correo electrónico ya está asociado con tu cuenta." #: 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?" @@ -11356,30 +11931,42 @@ msgstr "Este feed está vacío." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Este feed ya no está en línea. Estamos mostrando <0>Descubrir en su lugar." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "Este grupo está bloqueado por una acción de moderación sobre el propietario" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." -msgstr "" +msgstr "Esta imagen no se pudo usar. Prueba con un formato diferente, como .jpg o .png." #: src/components/dialogs/BirthDateSettings.tsx:62 msgid "This information is private and not shared with other users." -msgstr "" +msgstr "Esta información es privada y no es compartida con otros usuarios." + +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Este enlace de invitación ha sido deshabilitado." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Este enlace de invitación no es válido" #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" -msgstr "" +msgstr "Este es un estado vacío" #: src/features/liveNow/components/EditLiveDialog.tsx:178 #: src/features/liveNow/components/GoLiveDialog.tsx:155 msgid "This is not a valid link" msgstr "Este enlace no es válido" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Esta etiqueta permite que todos sepan que esta cuenta es automatizada. Si está activada, esta etiqueta aparece junto al nombre de la cuenta en su perfil y publicaciones. Se puede activar o desactivar en cualquier momento." #: src/components/moderation/ModerationDetailsDialog.tsx:184 msgid "This label was applied by the author." @@ -11410,15 +11997,19 @@ msgstr "Es posible que el nombre o la descripción de esta lista (creada por ti) msgid "This list is empty." msgstr "Esta lista está vacía" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 -msgid "This message is hidden because this user is blocking you." -msgstr "" +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Este mensaje está oculto" +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." -msgstr "" +msgstr "Este mensaje está oculto porque tienes bloqueado a este usuario." #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." @@ -11426,15 +12017,15 @@ msgstr "Este servicio de moderación no está disponible. Consulta más detalles #: src/components/moderation/ModerationDetailsDialog.tsx:161 msgid "This moderation was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Esta moderación se aplicó a toda la cuenta del usuario y aparecerá en todas las publicaciones." #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "This person is blocking you" -msgstr "" +msgstr "Esta persona te tiene bloqueado" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación declara haber sido creada en <0>{0}, pero fue vista por primera vez por Bluesky en <1>{1}." @@ -11448,27 +12039,28 @@ msgstr "Esta publicación solo es visible para los usuarios que han iniciado ses #: src/screens/Bookmarks/index.tsx:255 msgid "This post was deleted by its author" -msgstr "" +msgstr "Esta publicación fue eliminada por su autor" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "El autor de esta publicación ha deshabilitado las citas." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil solo es visible para las personas que han iniciado sesión. No podrán verlo quienes no hayan iniciado sesión." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Esta respuesta se colocará en una sección oculta al final de tu hilo. Las notificaciones de respuestas posteriores se silenciarán, tanto para ti como para los demás." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." -msgstr "" +msgstr "Esta pantalla solo está disponible para conversaciones de grupo." #: src/screens/Signup/StepInfo/Policies.tsx:32 msgid "This service has not provided terms of service or a privacy policy." @@ -11476,7 +12068,7 @@ msgstr "Este servicio no ha proporcionado términos de servicio ni una política #: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." -msgstr "" +msgstr "Este servicio no es compatible mientras la función En directo esté en beta. Servicios permitidos: {formatted}." #: src/screens/Settings/components/ChangeHandleDialog.tsx:469 msgid "This should create a domain record at:" @@ -11484,28 +12076,28 @@ msgstr "Esto debería crear un registro de dominio en:" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:214 msgid "This should only take a few minutes." -msgstr "" +msgstr "Esto solo debería llevar unos minutos." #: src/components/verification/VerificationCreatePrompt.tsx:94 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Este usuario no tiene seguidores." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Este usuario te ha bloqueado y no se le puede enviar mensajes." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Este usuario ha desactivado el chat y no se le puede enviar mensajes." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11531,11 +12123,11 @@ msgstr "Este usuario no sigue a nadie." #: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 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 "" +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)." #: 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 "" +msgstr "Esto creará una nueva lista con el mismo nombre, descripción y miembros que este paquete de inicio." #. placeholder {0}: word.value #: src/components/dialogs/MutedWords.tsx:454 @@ -11544,14 +12136,14 @@ msgstr "Esto eliminará \"{0}\" de tus palabras silenciadas. Siempre puedes aña #: src/screens/Settings/components/DeleteAccountDialog.tsx:330 msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." -msgstr "" +msgstr "Esto eliminará de forma irreversible tu cuenta de Bluesky <0>{currentHandle} y todos los datos asociados. Ten en cuenta que esto afectará a cualquier otro servicio de <1>AT Protocol que uses con esta cuenta." #. placeholder {0}: account.handle #: src/screens/Settings/Settings.tsx:668 msgid "This will remove @{0} from the quick access list." msgstr "Esto eliminará @{0} de la lista de acceso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Esto eliminará tu publicación de esta cita para todos los usuarios y la reemplazará con un marcador de posición." @@ -11574,13 +12166,13 @@ msgstr "Preferencias de hilos" msgid "Threaded" msgstr "En hilos" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferencias de hilos" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 msgid "Threats or incitement" -msgstr "" +msgstr "Amenazas o incitación" #. placeholder {0}: Number(time) || 0 #: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 @@ -11589,25 +12181,25 @@ msgstr "Tiempo restante: {0, plural, one {# segundo} other {# segundos}}" #: src/components/SendErrorReportDialog.tsx:68 msgid "Title" -msgstr "" +msgstr "Título" #: src/components/SendErrorReportDialog.tsx:71 msgid "Title (100 characters max)" -msgstr "" +msgstr "Título (máx. 100 caracteres)" #: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 msgid "To disable the email 2FA method, please verify your access to the email address." msgstr "Para desactivar el método de autenticación de doble factor por correo electrónico, por favor, asegúrate de que puedes acceder a la dirección de correo." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Para desactivar tu método de autenticación de doble factor por correo electrónico, comprueba que puedes acceder a <0>{0}" #: src/ageAssurance/components/NoAccessScreen.tsx:251 msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." -msgstr "" +msgstr "Para cerrar sesión, <0>haz clic aquí. O si lo prefieres, puedes <1>eliminar tu cuenta." #: src/components/dms/DateDivider.tsx:27 msgid "Today" @@ -11623,15 +12215,15 @@ msgstr "Activa/desactiva el sonido" #: src/components/contacts/screens/VerifyNumber.tsx:123 msgid "Too many attempts. Please wait a few minutes and try again." -msgstr "" +msgstr "Demasiados intentos. Espera unos minutos e inténtalo de nuevo." #: src/components/contacts/screens/VerifyNumber.tsx:176 msgid "Too many codes sent. Please wait a few minutes and try again." -msgstr "" +msgstr "Se enviaron demasiados códigos. Espera unos minutos e inténtalo de nuevo." #: 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 "" +msgstr "Demasiados contactos: has excedido el número de contactos que puedes importar para encontrar a tus amigos" #: src/screens/Hashtag.tsx:88 #: src/screens/Search/SearchResults.tsx:54 @@ -11646,35 +12238,35 @@ msgstr "Destacados" msgid "Top replies first" msgstr "Respuestas destacadas primero" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traducir" #: src/components/Post/Translated/index.tsx:326 msgid "Translated" -msgstr "" +msgstr "Traducido" #: src/components/Post/Translated/index.tsx:113 msgid "Translating" -msgstr "" +msgstr "Traduciendo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" -msgstr "" +msgstr "Traduciendo…" #: src/lib/translation/index.tsx:305 msgid "Translation to the same language is unavailable on your device." -msgstr "" +msgstr "La traducción al mismo idioma no está disponible en tu dispositivo." #: src/screens/Settings/ThreadPreferences.tsx:87 #: src/screens/Settings/ThreadPreferences.tsx:92 @@ -11688,11 +12280,11 @@ msgstr "Tendencias" #. 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 "" +msgstr "GIF en tendencia" #: src/view/shell/desktop/SidebarTrendingTopics.tsx:57 msgid "Trending options" -msgstr "" +msgstr "Opciones de tendencias" #: src/components/interstitials/TrendingVideos.tsx:87 msgid "Trending Videos" @@ -11700,26 +12292,40 @@ msgstr "Videos populares" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 msgid "Trolling" -msgstr "" +msgstr "Trolleo" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confianza se construye a partir de las relaciones, las comunidades y los contextos compartidos. Por ello, también nombramos a <0>verificadores de confianza: organizaciones que pueden verificar cuentas directamente." #: src/screens/Search/SearchResults.tsx:186 msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." -msgstr "" +msgstr "Prueba con un término de búsqueda diferente o <0>lee sobre cómo usar los filtros de búsqueda." + +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Intentar de nuevo" #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Intentar de nuevo" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Inténtalo de nuevo en un momento." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" -msgstr "" +msgstr "Probar con Google Translate" + +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Pruébalo" #: src/lib/interests.ts:74 msgid "TV" @@ -11739,7 +12345,7 @@ msgstr "Tipo:" #: 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 "" +msgstr "No se puede acceder a la ubicación. Tendrás que ir a los ajustes del sistema para activar los servicios de ubicación para Bluesky." #: src/lib/hooks/useCleanError.ts:30 #: src/lib/strings/errors.ts:12 @@ -11749,7 +12355,7 @@ msgstr "No es posible conectarse. Comprueba tu conexión a Internet e inténtalo #: 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 "" +msgstr "No se pudo contactar con tu servicio. Por favor, comprueba tu conexión a Internet e inténtalo de nuevo." #: src/screens/Login/ForgotPasswordForm.tsx:70 #: src/screens/Login/index.tsx:96 @@ -11763,66 +12369,75 @@ msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Interne msgid "Unable to delete" msgstr "No se puede eliminar" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "No se pueden obtener las solicitudes para unirse." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "No se pudo encontrar a un destinatario seleccionado." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "No se pudo encontrar al destinatario seleccionado." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" -msgstr "" +msgstr "No se puede resolver el nombre de usuario" #: src/screens/Settings/Settings.tsx:515 msgid "Unapply Pull Request" -msgstr "" +msgstr "Desaplicar Pull Request" #: src/screens/Settings/Settings.tsx:517 msgid "Unapply Pull Request {currentChannel}" -msgstr "" +msgstr "Desaplicar Pull Request {currentChannel}" #: src/components/ageAssurance/AgeRestrictedScreen.tsx:43 msgid "Unavailable" -msgstr "" +msgstr "No disponible" #: src/view/com/feeds/MissingFeed.tsx:127 msgid "Unavailable feed information" -msgstr "" +msgstr "Información del feed no disponible" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" -msgstr "" +msgstr "Desbloquear a {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desbloquear la cuenta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "¿Desbloquear la cuenta?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "¿Desbloquear la cuenta?" @@ -11837,15 +12452,15 @@ msgstr "Desbloquear la lista" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" -msgstr "" +msgstr "Deshacer" #: src/components/PostControls/BookmarkButton.tsx:43 msgctxt "Button label to undo saving/removing a post from saved posts." msgid "Undo" -msgstr "" +msgstr "Deshacer" #: src/components/PostControls/RepostButton.web.tsx:67 #: src/components/PostControls/RepostButton.web.tsx:74 @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Deshacer la republicación ({0, plural, one {# republicación} other {# republicaciones}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Dejar de seguir a {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Dejar de seguir esta cuenta" @@ -11872,25 +12487,17 @@ msgstr "Dejar de seguir esta cuenta" msgid "Unfollows the user" msgstr "Deja de seguir al usuario" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Desafortunadamente, los etiquetadores a los que te suscribiste no soportan este tipo de denuncia." #: src/ageAssurance/components/NoAccessScreen.tsx:200 msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." -msgstr "" +msgstr "Lamentablemente, la fecha de nacimiento que has guardado en tu perfil indica que eres demasiado joven para acceder a Bluesky." #: src/ageAssurance/components/NoAccessScreen.tsx:185 msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" +msgstr "Lamentablemente, tu edad declarada indica que no tienes la edad suficiente para acceder a Bluesky en tu región." #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" @@ -11898,29 +12505,29 @@ msgstr "Verificador desconocido" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:72 msgid "Unlabeled adult content" -msgstr "" +msgstr "Contenido para adultos sin etiquetar" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:68 msgid "Unlabeled, abusive, or non-consensual adult content" -msgstr "" +msgstr "Contenido para adultos sin etiquetar, abusivo o no consentido" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "No me gusta" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "No me gusta ({0, plural, one {# me gusta} other {# me gusta}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" -msgstr "" +msgstr "Desbloquear chat" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" -msgstr "" +msgstr "Desbloquear este chat de grupo" #: src/screens/ProfileList/components/Header.tsx:180 #: src/screens/ProfileList/components/Header.tsx:187 @@ -11937,16 +12544,16 @@ msgstr "Dejar de silenciar" #: src/components/RichTextTag.tsx:153 #: src/components/RichTextTag.tsx:169 msgid "Unmute {0}" -msgstr "" +msgstr "Dejar de silenciar {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Dejar de silenciar la cuenta" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Dejar de silenciar la conversación" @@ -11955,12 +12562,12 @@ msgstr "Dejar de silenciar la conversación" msgid "Unmute list" msgstr "Dejar de silenciar la lista" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" -msgstr "" +msgstr "Dejar de silenciar este chat de grupo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Dejar de silenciar el hilo" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Desfijar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desfijar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Desfijar de inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Desfijar del perfil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Desfijar lista de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} desfijado de inicio" @@ -12006,7 +12613,7 @@ msgstr "Desfijado de tus feeds" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:105 msgid "Unpinned list" -msgstr "" +msgstr "Lista desfijada" #: src/screens/Settings/Settings.tsx:482 #: src/screens/Settings/Settings.tsx:484 @@ -12030,13 +12637,17 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" -msgstr "" +msgstr "Contenido del portapapeles no admitido" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" -msgstr "" +msgstr "Tipo de video no aceptado: {mimeType}" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Hasta 50 personas" #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 @@ -12047,29 +12658,37 @@ msgstr "Actualizar" msgid "Update <0>{displayName} in Lists" msgstr "Actualizar <0>{displayName} en listas" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Actualizar aplicación" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Actualizar el correo electrónico" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" +msgstr "Actualizar enlace de invitación" #: src/screens/Settings/components/ChangeHandleDialog.tsx:544 #: src/screens/Settings/components/ChangeHandleDialog.tsx:565 msgid "Update to {domain}" msgstr "Actualizar a {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Actualiza tu aplicación" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Actualiza tu aplicación para verlo." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Actualizar tu correo electrónico" @@ -12078,19 +12697,19 @@ msgstr "Actualizar tu correo electrónico" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 msgid "Update your location" -msgstr "" +msgstr "Actualizar tu ubicación" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Error al actualizar el adjunto de la cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizar la visibilidad de la respuesta falló" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Sube una foto en su lugar" @@ -12098,39 +12717,40 @@ msgstr "Sube una foto en su lugar" msgid "Upload a text file to:" msgstr "Carga un archivo de texto en:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Subir desde la cámara" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Subir desde tus archivos" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Subir desde la biblioteca" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." -msgstr "" +msgstr "Subiendo GIF..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Subiendo imágenes..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Subiendo miniatura del enlace..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Subiendo video..." @@ -12167,14 +12787,14 @@ msgstr "Utilízala para iniciar sesión en la otra app junto a tu nombre de usua #: 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 "" +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 msgid "user" -msgstr "" +msgstr "usuario" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Usuario bloqueado" @@ -12211,9 +12831,9 @@ msgid "User list by {0}" msgstr "Lista de usuarios por {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" -msgstr "" +msgstr "Lista de usuarios por {0}" #: src/view/com/modals/UserAddRemoveLists.tsx:213 msgid "User list by you" @@ -12231,15 +12851,15 @@ msgstr "Lista de usuarios actualizada" #: src/screens/Signup/StepHandle/index.tsx:231 msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" -msgstr "" +msgstr "El nombre de usuario no puede tener más de {MAX_SERVICE_HANDLE_LENGTH, plural, other {# caracteres}}" #: src/screens/Signup/StepHandle/index.tsx:215 msgid "Username cannot begin or end with a hyphen" -msgstr "" +msgstr "El nombre de usuario no puede comenzar o terminar con un guion" #: src/screens/Signup/StepHandle/index.tsx:219 msgid "Username must only contain letters (a-z), numbers, and hyphens" -msgstr "" +msgstr "El nombre de usuario solo debe contener letras (a-z), números y guiones" #: src/screens/Login/LoginForm.tsx:200 msgid "Username or email address" @@ -12255,15 +12875,15 @@ msgstr "usuarios seguidos por <0>@{0}" msgid "users following <0>@{0}" msgstr "usuarios siguiendo a <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" -msgstr "" +msgstr "Usuarios que sigo" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" -msgstr "" +msgstr "Usuarios que sigo" #: src/screens/Settings/components/ChangeHandleDialog.tsx:451 msgid "Value:" @@ -12277,7 +12897,7 @@ msgstr "Error al verificar, inténtalo de nuevo." msgid "Verification settings" msgstr "Ajustes de verificación" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Ajustes de verificación" @@ -12300,15 +12920,15 @@ msgstr "Verificar la cuenta" #: src/ageAssurance/components/NoAccessScreen.tsx:360 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:184 msgid "Verify again" -msgstr "" +msgstr "Verificar de nuevo" #. 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" -msgstr "" +msgstr "Verificar código" #: src/screens/Settings/components/ChangeHandleDialog.tsx:546 #: src/screens/Settings/components/ChangeHandleDialog.tsx:567 @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificar registro DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verificar el código del correo electrónico" @@ -12329,12 +12949,12 @@ msgstr "Ventana de verificación de correo electrónico" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:172 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:186 msgid "Verify now" -msgstr "" +msgstr "Verificar ahora" #: src/components/contacts/screens/PhoneInput.tsx:175 #: src/components/contacts/screens/VerifyNumber.tsx:217 msgid "Verify phone number" -msgstr "" +msgstr "Verificar número de teléfono" #: src/screens/Settings/components/ChangeHandleDialog.tsx:547 #: src/screens/Settings/components/ChangeHandleDialog.tsx:569 @@ -12347,9 +12967,9 @@ msgstr "¿Verificar esta cuenta?" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 msgid "Verify your age" -msgstr "" +msgstr "Verifica tu edad" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12358,16 +12978,16 @@ msgstr "Verifica tu correo electrónico" #: src/ageAssurance/components/RedirectOverlay.tsx:297 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 msgid "Verifying" -msgstr "" +msgstr "Verificando" #: src/ageAssurance/components/RedirectOverlay.tsx:165 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:75 msgid "Verifying your age assurance status" -msgstr "" +msgstr "Verificando tu estado de verificación de edad" #: src/components/contacts/screens/VerifyNumber.tsx:307 msgid "Verifying..." -msgstr "" +msgstr "Verificando..." #. placeholder {0}: env.APP_VERSION #: src/screens/Settings/AboutSettings.tsx:137 @@ -12380,11 +13000,11 @@ msgstr "Versión {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "El video no se pudo procesar" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Feed de videos" @@ -12396,7 +13016,7 @@ msgstr "Video de {0}: {text}" #. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) #: src/screens/VideoFeed/index.tsx:1103 msgid "Video from {0}. Tap to play or pause the video" -msgstr "" +msgstr "Video de {0}. Toca para reproducir o pausar el video" #: src/lib/interests.ts:62 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 @@ -12419,7 +13039,7 @@ msgstr "Video no encontrado." msgid "Video settings" msgstr "Configuración del video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video subido" @@ -12432,20 +13052,20 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." -msgstr "" +msgstr "Los videos deben durar menos de 3 minutos." -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" -msgstr "" +msgstr "Ver" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" -msgstr "" +msgstr "Ver {0}" #. placeholder {0}: profile.handle #: src/screens/Profile/Header/Shell.tsx:257 @@ -12455,31 +13075,26 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Ver el perfil de {0}" #. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) #: src/components/ProfileCard.tsx:149 msgid "View {0}’s profile" -msgstr "" +msgstr "Ver el perfil de {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" -msgstr "" +msgstr "Ver el perfil de {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" -msgstr "" - -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" +msgstr "Ver {publicationTitle}" #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" @@ -12503,9 +13118,17 @@ msgstr "Ver detalles" msgid "View full thread" msgstr "Ver hilo completo" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" -msgstr "" +msgstr "Ver solicitudes entrantes de chat de grupo" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Ver solicitudes entrantes" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Ver solicitudes entrantes para unirse a este chat de grupo" #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" @@ -12520,11 +13143,11 @@ msgstr "Ver más" #: src/components/interstitials/TrendingVideos.tsx:228 msgid "View more trending videos" -msgstr "" +msgstr "Ver más videos populares" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" -msgstr "" +msgstr "Ver publicación" #: src/components/ProfileHoverCard/index.web.tsx:465 #: src/components/ProfileHoverCard/index.web.tsx:485 @@ -12537,22 +13160,22 @@ msgstr "Ver perfil" #: src/screens/Profile/Header/Shell.tsx:163 msgid "View profile banner" -msgstr "" +msgstr "Ver banner del perfil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" -msgstr "" +msgstr "Ver publicación" #: src/view/com/profile/ProfileSubpageHeader.tsx:108 msgid "View the avatar" msgstr "Ver el avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" -msgstr "" +msgstr "Ver el enlace de invitación de este chat de grupo" #. placeholder {0}: labeler.creator.handle #: src/components/LabelingServiceCard/index.tsx:164 @@ -12563,7 +13186,7 @@ msgstr "Ver el servicio de etiquetado proporcionado por @{0}" msgid "View this user's verifications" msgstr "Ver las verificaciones de este usuario" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Ver usuarios a los que les gusta este feed" @@ -12596,8 +13219,8 @@ msgstr "Ver tus cuentas silenciadas" msgid "View your verifications" msgstr "Ver tus verificaciones" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Muestra la imagen a tamaño completo" @@ -12607,11 +13230,11 @@ msgstr "Muestra el video en modo inmersivo" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 msgid "Violence" -msgstr "" +msgstr "Violencia" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 msgid "Violent or threatening content" -msgstr "" +msgstr "Contenido violento o amenazante" #: src/components/dialogs/LinkWarning.tsx:112 #: src/components/dialogs/LinkWarning.tsx:122 @@ -12640,46 +13263,50 @@ msgstr "Advertir contenido" msgid "Warn content and filter from feeds" msgstr "Advertir contenido y filtrar de los feeds" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Ver" #: src/components/contacts/screens/GetContacts.tsx:253 msgid "We apply the highest privacy standards, and never share or sell your contact information." -msgstr "" +msgstr "Aplicamos los más altos estándares de privacidad y nunca compartimos ni vendemos tu información de contacto." #: 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 "" +msgstr "No pudimos conectarnos al servicio que proporciona este feed personalizado. Puede estar experimentando problemas temporales o no estar disponible de forma permanente." #: src/view/com/feeds/MissingFeed.tsx:147 msgid "We could not find this list. It was probably deleted." -msgstr "" +msgstr "No hemos podido encontrar esta lista. Probablemente fue eliminada." #: src/screens/Hashtag.tsx:259 msgid "We couldn't find any results for that tag." -msgstr "" +msgstr "No hemos encontrado ningún resultado para esa etiqueta." #: src/screens/Topic.tsx:167 msgid "We couldn't find any results for that topic." msgstr "No hemos encontrado resultados para ese tema." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "No pudimos cargar esta conversación" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "No pudimos cargar las solicitudes para unirse a esta conversación" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" -msgstr "" +msgstr "No pudimos cargar los ajustes de esta conversación" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" -msgstr "" +msgstr "Eliminamos los hashes después de hacer las coincidencias" #: src/components/contacts/components/InviteInfo.tsx:67 msgid "We don't store your friends' phone numbers or send any messages" -msgstr "" +msgstr "No almacenamos los números de teléfono de tus amigos ni enviamos ningún mensaje" #: src/screens/SignupQueued.tsx:163 msgid "We estimate {estimatedTime} until your account is ready." @@ -12687,7 +13314,7 @@ msgstr "Estimamos {estimatedTime} hasta que tu cuenta esté lista." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you won’t need to do it again. When you’re done, you'll be brought back to continue using Bluesky." -msgstr "" +msgstr "Nos hemos asociado con <0>KWS para gestionar la verificación de edad. Cuando hagas clic en \"Comenzar\" abajo, KWS te enviará por correo electrónico las instrucciones para completar el proceso de verificación. Si tu dirección de correo electrónico ya se ha utilizado para verificar tu edad para otro juego o servicio que usa KWS, no tendrás que hacerlo de nuevo. Cuando hayas terminado, volverás para seguir usando Bluesky." #. placeholder {0}: currentAccount?.email #: src/components/intents/VerifyEmailIntentDialog.tsx:102 @@ -12696,15 +13323,15 @@ msgstr "Hemos enviado otro correo electrónico de verificación a <0>{0}." #: 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 "" +msgstr "Necesitamos verificar tu número antes de buscar a tus amigos. Se enviará un código de verificación a este número." #: src/components/contacts/screens/GetContacts.tsx:241 msgid "We never keep plain phone numbers" -msgstr "" +msgstr "Nunca conservamos números de teléfono sin codificar" #: src/components/contacts/screens/GetContacts.tsx:247 msgid "We only suggest follows if both people consent" -msgstr "" +msgstr "Solo sugerimos seguir si ambas personas dan su consentimiento" #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." @@ -12715,21 +13342,21 @@ msgid "We recommend selecting at least two interests." msgstr "Te recomendamos que elijas al menos dos intereses." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Hemos enviado un correo electrónico a <0>{0} con un enlace. Haz clic en el enlace para completar la verificación del correo electrónico." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "No pudimos determinar si tienes permiso para cargar videos. Inténtalo de nuevo." #: 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 "" +msgstr "No pudimos cargar la configuración de verificación de edad para tu región, probablemente debido a un error de red. Algunos contenidos y funciones pueden no estar disponibles temporalmente. Por favor, inténtalo de nuevo más tarde." #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "We were unable to load your birthdate preferences. Please try again." -msgstr "" +msgstr "No pudimos cargar tus preferencias de fecha de nacimiento. Por favor, inténtalo de nuevo." #: src/screens/Moderation/index.tsx:492 msgid "We were unable to load your configured labelers at this time." @@ -12738,18 +13365,18 @@ msgstr "No pudimos cargar tus etiquetadores configurados en este momento." #: 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 "" +msgstr "No pudimos recibir la verificación debido a un problema de conexión. Puede llegar más tarde. Si lo hace, tu cuenta se actualizará automáticamente." #: src/screens/SignupQueued.tsx:167 msgid "We will let you know when your account is ready." msgstr "Te informaremos cuando tu cuenta esté lista." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." -msgstr "" +msgstr "Te avisaremos cuando encontremos a tus amigos." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vamos a enviar un correo electrónico a <0>{0} con un enlace. Haz clic en el enlace para completar la verificación del correo electrónico." @@ -12759,43 +13386,43 @@ msgstr "Usaremos esta información para personalizar tu experiencia." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." -msgstr "" +msgstr "También estamos actualizando nuestras <0>Pautas de la comunidad, ¡y queremos tu opinión! Estas nuevas pautas entrarán en vigor el 15 de octubre de 2025." #: 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 "" +msgstr "También estamos actualizando nuestras Pautas de la comunidad, ¡y queremos tu opinión! Estas nuevas pautas entrarán en vigor el 15 de octubre de 2025." #: 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 "" +msgstr "Estamos confirmando tu estado de verificación de edad con nuestros servidores. Esto solo debería llevar unos segundos." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." -msgstr "" +msgstr "Estamos teniendo problemas al inicializar la verificación de edad para tu cuenta. <0>Contacta soporte para obtener ayuda." #: src/components/dialogs/SearchablePeopleList.tsx:127 #: src/components/ProgressGuide/FollowDialog.tsx:195 msgid "We're having network issues, try again" msgstr "Estamos teniendo problemas de red, inténtalo de nuevo" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" -msgstr "" +msgstr "Estamos teniendo problemas de red, inténtalo de nuevo" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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:136 msgid "We’re so excited to have you join us!" -msgstr "" +msgstr "¡Es nuestro placer tenerte aquí!" #: src/ageAssurance/components/NoAccessScreen.tsx:416 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 msgid "We're sorry, but based on your device's location, you are currently located in a region that requires age assurance." -msgstr "" +msgstr "Lo sentimos, pero basado en la ubicación de tu dispositivo, actualmente estás en una ubicación que requiere verificación de edad." #: 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}." @@ -12808,18 +13435,18 @@ msgstr "Lo sentimos, pero no pudimos cargar tus palabras silenciadas en este mom #: src/screens/Search/SearchResults.tsx:339 #: src/screens/Search/SearchResults.tsx:472 msgid "We’re sorry, but your search could not be completed. Please try again in a few minutes." -msgstr "" +msgstr "Lo sentimos, no se pudo completar tu búsqueda. Inténtalo de nuevo en unos minutos." #: src/components/ageAssurance/AgeRestrictedScreen.tsx:62 msgid "We're sorry, you cannot access this screen at this time." -msgstr "" +msgstr "Lo sentimos, no puedes acceder a esta pantalla en este momento." -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "¡Lo sentimos! Se ha eliminado la publicación a la que estás respondiendo." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "¡Lo sentimos! No encontramos la página que buscabas." @@ -12829,24 +13456,24 @@ msgstr "¡Lo sentimos! Solo puedes suscribirte a veinte etiquetadores, y has alc #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." -msgstr "" +msgstr "Estamos actualizando nuestras <0>Condiciones de servicio, <1>Política de privacidad, y <2>Política de copyright, a partir del 15 de septiembre de 2025." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 msgid "We're updating our policies" -msgstr "" +msgstr "Estamos actualizando nuestras políticas" #: 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 "" +msgstr "Estamos actualizando nuestras Condiciones de servicio, Política de privacidad y Política de copyright, a partir del 15 de septiembre de 2025." #: 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 "" +msgstr "Estamos actualizando nuestras Condiciones de servicio, Política de privacidad y Política de copyright, a partir del 15 de septiembre de 2025. También estamos actualizando nuestras Pautas de la comunidad, ¡y queremos tu opinión! Estas nuevas pautas entrarán en vigor el 15 de octubre de 2025. Conoce más sobre estos cambios y cómo compartir tus opiniones con nosotros leyendo nuestra entrada de blog." #: 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 "" +msgstr "Hemos confirmado tu estado de verificación de edad. Ya puedes cerrar este diálogo." #: src/screens/Deactivated.tsx:117 msgid "Welcome back!" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "¿Cómo quieres llamar a tu paquete de inicio?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "¿Qué hay de nuevo?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Si tocas en una verificación, verás qué organizaciones la han concedido." @@ -12878,22 +13505,22 @@ msgstr "Si tocas en una verificación, verás qué organizaciones la han concedi msgid "Who can interact with this post?" msgstr "¿Quién puede interactuar con esta publicación?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" -msgstr "" +msgstr "Quién puede unirse a este chat de grupo y cómo" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 #: src/components/WhoCanReply.tsx:116 msgid "Who can reply" msgstr "Quién puede responder" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "¿Quién puede verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "¡Vaya!" @@ -12909,7 +13536,7 @@ msgstr "¿Por qué quieres apelar?" #: src/components/moderation/ReportDialog/copy.ts:52 #: src/components/moderation/ReportDialog/copy.ts:66 msgid "Why should this conversation be reviewed?" -msgstr "" +msgstr "¿Por qué crees que esta conversación debe ser revisada?" #: src/components/moderation/ReportDialog/copy.ts:38 msgid "Why should this feed be reviewed?" @@ -12921,7 +13548,7 @@ msgstr "¿Por qué crees que esta lista debe ser revisada?" #: src/components/moderation/ReportDialog/copy.ts:20 msgid "Why should this livestream be reviewed?" -msgstr "" +msgstr "¿Por qué crees que esta transmisión en vivo debe ser revisada?" #: src/components/moderation/ReportDialog/copy.ts:58 msgid "Why should this message be reviewed?" @@ -12939,33 +13566,33 @@ msgstr "¿Por qué crees que este paquete de inicio debe ser revisado?" msgid "Why should this user be reviewed?" msgstr "¿Por qué crees que este usuario debe ser revisado?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" -msgstr "" +msgstr "¿Quieres bloquear a este usuario o eliminar esta conversación?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "¿Quieres bloquear a este usuario o salir de esta conversación?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 msgid "Would you like to save this as a draft before viewing your drafts?" -msgstr "" +msgstr "¿Quieres guardarlo como borrador antes de ver tus borradores?" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" -msgstr "" +msgstr "¿Quieres guardarlo como borrador para editarlo más tarde?" #: src/view/screens/Profile.tsx:434 #: src/view/screens/Profile.tsx:435 msgid "Write a post" -msgstr "" +msgstr "Escribe una publicación" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Escribe una publicación" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Escribe una respuesta" @@ -12978,9 +13605,10 @@ msgstr "Escritores y escritoras" msgid "Wrong DID returned from server. Received: {0}" msgstr "DID equivocado devuelto por el servidor. Se recibió: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" -msgstr "" +msgstr "Tipo de conversación incorrecto" #: src/features/liveNow/components/EditLiveDialog.tsx:154 #: src/features/liveNow/components/GoLiveDialog.tsx:136 @@ -12990,7 +13618,7 @@ msgstr "www.midirecto.tv" #. 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 "" +msgstr "GIF de afirmación" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 @@ -12999,17 +13627,17 @@ msgstr "Sí, desactivar" #: src/screens/Settings/components/DeleteAccountDialog.tsx:348 msgid "Yes, delete my account" -msgstr "" +msgstr "Sí, eliminar mi cuenta" #: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Yes, delete this starter pack" msgstr "Sí, eliminar este paquete de inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Sí, separar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Sí, ocultar" @@ -13027,20 +13655,20 @@ msgstr "Tú eres un verificador de confianza" #: src/ageAssurance/components/NoAccessScreen.tsx:176 msgid "You are accessing Bluesky from a region that legally requires us to verify your age before allowing you to access the app." -msgstr "" +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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" -msgstr "" +msgstr "Tienes bloqueado a {0}" #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "You are blocking the chat owner" -msgstr "" +msgstr "Tienes bloqueado al propietario del chat" #: src/components/dms/MessagesListBlockedFooter.tsx:83 msgid "You are blocking this person" -msgstr "" +msgstr "Has bloqueado a esta persona" #: src/components/forms/HostingProvider.tsx:46 msgid "You are creating an account on" @@ -13048,12 +13676,12 @@ msgstr "Estás creando una cuenta en" #: 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 "" +msgstr "Actualmente tienes bloqueada la función Transmitir en vivo. Para apelar esta decisión de moderación, por favor envía el formulario a continuación." #: src/ageAssurance/components/NoAccessScreen.tsx:330 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:142 msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." -msgstr "" +msgstr "Actualmente no puedes acceder al flujo de verificación de edad de Bluesky. Por favor, <0>contacta a nuestro equipo de moderación si crees que esto es un error." #: src/screens/SignupQueued.tsx:160 msgid "You are in line." @@ -13068,13 +13696,13 @@ msgstr "Estás emitiendo en directo" msgid "You are no longer live" msgstr "Ya no estás emitiendo en directo" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "No tienes permiso para subir videos." #: src/view/com/profile/ProfileFollows.tsx:181 msgid "You are not following anyone yet" -msgstr "" +msgstr "Aún no sigues a nadie" #: src/features/liveNow/index.tsx:315 msgid "You are now live!" @@ -13098,7 +13726,7 @@ msgstr "Puedes modificar tus intereses desde los ajustes de \"Contenido y medios #: src/screens/Settings/components/DeleteAccountDialog.tsx:211 msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "" +msgstr "También puedes <0>desactivar temporalmente tu cuenta. 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/posts/FollowingEmptyState.tsx:60 #: src/view/com/posts/FollowingEndOfFeed.tsx:61 @@ -13107,45 +13735,54 @@ msgstr "También puedes descubrir nuevos Feeds personalizados para seguir." #: 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 "" +msgstr "También puedes descargar los datos de tu chat como un archivo \"JSONL\". Este archivo solo incluye los mensajes que tú has enviado y no incluye los mensajes que has recibido." #: src/components/contacts/screens/GetContacts.tsx:250 msgid "You can always opt out and delete your data" -msgstr "" +msgstr "Siempre puedes optar por no participar y eliminar tus datos" #: src/lib/hooks/useNotificationHandler.ts:135 msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Puedes elegir si las notificaciones de chat tienen sonido en la configuración del chat dentro de la aplicación" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puedes continuar las conversaciones en curso independientemente de la configuración que elijas." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "" +msgstr "Ahora puedes elegir recibir una notificación cuando personas específicas publiquen. Si hay alguien de quien quieres recibir actualizaciones a tiempo, ve a su perfil y busca el nuevo icono de campana cerca del botón de seguir." + +#: 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 "Ahora puedes invitar a amigos con un enlace o código QR. Comparte el enlace en cualquier sitio o deja que escaneen el código para unirse a ti en Bluesky." #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Ahora puedes iniciar sesión con tu nueva contraseña." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." -msgstr "" +msgstr "Solo puedes guardar borradores de hasta 1000 caracteres." #: 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 "" +msgstr "Solo puedes guardar borradores de hasta 1000 caracteres. ¿Quieres descartar esta publicación antes de ver tus borradores?" + +#: src/view/com/composer/SelectMediaButton.tsx:437 +msgid "You can only select one GIF at a time." +msgstr "Solo puedes seleccionar un GIF a la vez." #: src/view/com/composer/SelectMediaButton.tsx:431 -msgid "You can only select one GIF at a time." -msgstr "" - -#: src/view/com/composer/SelectMediaButton.tsx:425 msgid "You can only select one video at a time." -msgstr "" +msgstr "Solo puedes seleccionar un video a la vez." #: 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." @@ -13153,12 +13790,12 @@ msgstr "Puedes reactivar tu cuenta para continuar iniciando sesión. Tu perfil y #: src/components/dms/MessagesListBlockedFooter.tsx:93 msgid "You can read chat history but can’t send new messages." -msgstr "" +msgstr "Puedes leer el historial del chat, pero no enviar nuevos mensajes." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "" +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,14 +13803,19 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Puedes cambiar esta opción en Ajustes." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +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 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Aún no puedes crear un chat de grupo." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." -msgstr "" +msgstr "No puedes actualizar tu fecha de nacimiento mientras usas una contraseña de la aplicación. Por favor, inicia sesión con tu contraseña principal para actualizar tu fecha de nacimiento." #: src/screens/Profile/KnownFollowers.tsx:103 msgid "You don't follow any users who follow @{name}." @@ -13181,7 +13823,7 @@ msgstr "No sigues a ningún usuario que siga a @{name}." #: src/components/dialogs/PostInteractionSettingsDialog.tsx:589 msgid "You don't have any lists yet." -msgstr "" +msgstr "Aún no tienes ninguna lista." #: src/screens/SavedFeeds.tsx:153 #: src/screens/SavedFeeds.tsx:343 @@ -13195,7 +13837,11 @@ msgstr "No tienes ningún feed guardado." #: src/components/contacts/screens/ViewMatches.tsx:312 msgid "You got here first" -msgstr "" +msgstr "Llegaste aquí primero" + +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Has sido eliminado previamente de este grupo y no puedes unirte con este enlace." #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 @@ -13205,7 +13851,7 @@ msgstr "Has bloqueado a este usuario. No puedes ver su contenido." #: 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 "" +msgstr "Has completado el proceso de Verificación de Edad, pero según los resultados, no podemos asegurar que tengas 18 años o más. Debido a las leyes de tu región, ciertas funciones de Bluesky deben permanecer restringidas hasta que puedas verificar que eres adulto." #: src/view/screens/Notifications.tsx:291 msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." @@ -13227,7 +13873,7 @@ msgstr "Has ocultado esta publicación." #: 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 "" +msgstr "Has marcado esta cuenta como automatizada. Puedes quitarla en cualquier momento desde los ajustes de tu cuenta." #: src/components/moderation/ModerationDetailsDialog.tsx:108 #: src/lib/moderation/useModerationCauseDescription.ts:100 @@ -13244,7 +13890,7 @@ msgstr "No tienes listas." #: src/components/dialogs/StarterPackDialog.tsx:102 msgid "You have no starter packs." -msgstr "" +msgstr "No tienes paquetes de inicio." #: 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." @@ -13266,13 +13912,13 @@ 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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" -msgstr "" +msgstr "Tienes cambios sin guardar en este borrador, ¿quieres guardarlos?" #: src/view/com/composer/drafts/DraftsButton.tsx:105 msgid "You have unsaved changes. Would you like to save them before viewing your drafts?" -msgstr "" +msgstr "Tienes cambios sin guardar. ¿Te gustaría guardarlos antes de ver tus borradores?" #: src/components/StarterPack/ProfileStarterPacks.tsx:292 msgid "You haven't created a starter pack yet!" @@ -13280,11 +13926,11 @@ msgstr "¡Aún no has creado un paquete de inicio!" #: src/view/com/lists/ProfileLists.tsx:159 msgid "You haven't created any lists yet." -msgstr "" +msgstr "Aún no has creado ninguna lista." #: src/view/com/feeds/ProfileFeedgens.tsx:160 msgid "You haven't made any custom feeds yet." -msgstr "" +msgstr "Aún no has creado ningún feed personalizado." #: src/components/dialogs/MutedWords.tsx:407 msgid "You haven't muted any words or tags yet" @@ -13298,15 +13944,15 @@ msgstr "Has ocultado esta respuesta." #. 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 "" +msgstr "Ya iniciaste este flujo, hace {0}. Los correos electrónicos pueden tardar hasta 5 minutos en llegar a tu bandeja de entrada. Por favor, considera esperar unos minutos antes de intentarlo de nuevo." #: src/components/NewskieDialog.tsx:107 msgid "You joined Bluesky {timeAgoString} ago" -msgstr "" +msgstr "Te uniste a Bluesky hace {timeAgoString}" #: src/components/NewskieDialog.tsx:104 msgid "You joined Bluesky using a starter pack {timeAgoString} ago" -msgstr "" +msgstr "Te uniste a Bluesky usando un paquete de inicio hace {timeAgoString}" #: src/components/moderation/LabelsOnMeDialog.tsx:84 msgid "You may appeal non-self labels if you feel they were placed in error." @@ -13324,26 +13970,35 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "Debes ser propietario del chat para eliminar a un miembro." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." -msgstr "" +msgstr "Debes tener al menos 13 años para usar Bluesky. Lee nuestros <0>Términos del servicio para más información." #: src/components/StarterPack/ProfileStarterPacks.tsx:365 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir al menos a siete personas más para generar un paquete de inicio." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Debes otorgar acceso a tu biblioteca de fotos para guardar un código QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." -msgstr "" +msgstr "Necesitas permitir el acceso a tu biblioteca multimedia." #: src/components/dialogs/EmailDialog/screens/Manage2FA/index.tsx:23 msgid "You need to verify your email address before you can enable email 2FA." msgstr "Necesitas verificar tu dirección de correo electrónico antes de activar la autenticación de doble factor por correo electrónico." +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "Eres el propietario de este chat" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,35 +14009,40 @@ 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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Reaccionaste con {0}" #. placeholder {0}: reaction.value #: src/components/dms/getReactionInfo.ts:43 msgid "You reacted {0} to {target}" -msgstr "" +msgstr "Reaccionaste con {0} a {target}" #: src/components/dialogs/BirthDateSettings.tsx:92 #: src/components/dialogs/BirthDateSettings.tsx:102 msgid "You recently changed your birthdate" -msgstr "" +msgstr "Cambiaste tu fecha de nacimiento recientemente" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Solicitaste unirte" #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Se cerrará la sesión de todas tus cuentas." #. placeholder {0}: sanitizeHandle(profile.handle, '@') #: src/components/activity-notifications/SubscribeProfileDialog.tsx:140 msgid "You will no longer receive notifications for {0}" -msgstr "" +msgstr "Ya no recibirás notificaciones de {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Ya no recibirás notificaciones de este hilo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Ahora recibirás notificaciones de este hilo" @@ -13390,14 +14050,14 @@ msgstr "Ahora recibirás notificaciones de este hilo" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Hemos enviado un código de restablecimiento a tu correo. Introdúcelo aquí y, después, introduce tu nueva contraseña." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." -msgstr "" +msgstr "No podrás volver a unirte a menos que te inviten." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" -msgstr "" +msgstr "Tú: {message}" #: src/screens/Signup/index.tsx:152 msgid "You'll follow the suggested users and feeds once you finish creating your account!" @@ -13418,17 +14078,21 @@ msgstr "Comenzarás a seguir a estas personas de inmediato" #: 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 "" +msgstr "Tendrás que ir a los Ajustes del sistema para Bluesky y dar permiso si quieres usar esta función." #. placeholder {0}: sanitizeHandle(profile.handle, '@') #: src/components/activity-notifications/SubscribeProfileDialog.tsx:172 msgid "You'll start receiving notifications for {0}!" -msgstr "" +msgstr "¡Empezarás a recibir notificaciones de {0}!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:281 msgid "You'll stay updated with these feeds" msgstr "Te mantendrás actualizado con estos feeds" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "Tú tienes el control" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Ya estás en cola" @@ -13440,7 +14104,7 @@ msgstr "Has iniciado sesión con una contraseña de app. Utiliza tu contraseña #: src/components/moderation/LabelsOnMeDialog.tsx:262 msgid "You've already appealed this label and it's being reviewed by our moderation team." -msgstr "" +msgstr "Ya has apelado esta etiqueta y nuestro equipo de moderación la está revisando." #: src/components/moderation/ModerationDetailsDialog.tsx:112 #: src/lib/moderation/useModerationCauseDescription.ts:109 @@ -13449,7 +14113,7 @@ msgstr "Has elegido ocultar una palabra o etiqueta dentro de esta publicación." #: src/components/contacts/screens/GetContacts.tsx:313 msgid "You've denied access to your contacts" -msgstr "" +msgstr "Has denegado el acceso a tus contactos" #: src/state/shell/progress-guide.tsx:237 msgid "You've found some people to follow" @@ -13457,15 +14121,15 @@ msgstr "Has encontrado algunas personas a las que seguir" #: src/components/FocusScope/index.tsx:112 msgid "You've reached the end of the active content." -msgstr "" +msgstr "Has llegado al final del contenido activo." #: src/view/com/posts/FollowingEndOfFeed.tsx:42 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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" -msgstr "" +msgstr "Has alcanzado el número máximo de borradores" #: src/lib/hooks/useCleanError.ts:68 msgid "You've reached the maximum number of requests allowed. Please try again later." @@ -13473,13 +14137,13 @@ msgstr "Has alcanzado el número máximo de solicitudes permitidas. Inténtalo d #: src/components/FocusScope/index.tsx:88 msgid "You've reached the start of the active content." -msgstr "" +msgstr "Has alcanzado el inicio del contenido activo." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Has alcanzado tu límite diario de carga de videos (demasiados bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Has alcanzado tu límite diario de carga de videos (demasiados videos)" @@ -13493,16 +14157,24 @@ msgstr "Tu cuenta" #: src/screens/Settings/components/DeleteAccountDialog.tsx:128 msgid "Your account has been deleted, see ya! ✌️" -msgstr "" +msgstr "¡Tu cuenta ha sido eliminada, hasta luego! ✌️" #: src/screens/Takendown.tsx:142 msgid "Your account has been suspended" msgstr "Se ha suspendido tu cuenta" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tu cuenta aún no tiene suficiente antigüedad para subir videos. Inténtalo de nuevo más tarde." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Tu cuenta es demasiado nueva" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Tu repositorio de cuenta, que contiene todos los registros de datos públicos, puede ser descargado como un archivo \"CAR\". Este archivo no incluye archivos multimedia incrustados, como imágenes, ni tus datos privados, que deben ser obtenidos por separado." @@ -13519,7 +14191,7 @@ msgstr "Hemos recibido tu apelación. Si se acepta, te avisaremos por correo ele msgid "Your birth date" msgstr "Tu fecha de nacimiento" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Tus chats han sido deshabilitados" @@ -13527,17 +14199,17 @@ msgstr "Tus chats han sido deshabilitados" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Recordaremos tu preferencia para enlaces futuros. Puedes cambiarla cuando quieras en Ajustes." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" -msgstr "" +msgstr "Tu contacto {firstAuthorLink} está en Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" -msgstr "" +msgstr "Tu contacto {firstAuthorName} está en Bluesky" #: src/components/contacts/screens/ViewMatches.tsx:454 msgid "Your contact {name}" -msgstr "" +msgstr "Tu contacto {name}" #. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') #: src/screens/Settings/components/ChangeHandleDialog.tsx:531 @@ -13546,13 +14218,13 @@ msgstr "Tu nombre de usuario actual, <0>{0}, quedará automáticamente reser #: src/screens/Moderation/index.tsx:231 msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." -msgstr "" +msgstr "Tu edad declarada es menor de 18 años. Algunos ajustes a continuación pueden estar deshabilitados. Si esto fue un error, puedes editar tu fecha de nacimiento en los <0>ajustes de la cuenta." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 msgid "Your email" -msgstr "" +msgstr "Tu correo electrónico" #: src/screens/Login/ForgotPasswordForm.tsx:53 #: src/screens/Settings/components/ChangePasswordDialog.tsx:82 @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Tu correo electrónico parece no ser válido." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Aún no has verificado tu correo electrónico. Hazlo para poder disfrutar de todas las funciones de Bluesky." @@ -13582,7 +14254,7 @@ msgstr "¡Tu feed de Siguiendo esta vacío! Sigue a más usuarios para ver sus p msgid "Your full handle will be <0>@{0}" msgstr "Tu nombre de usuario completo será <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13601,59 +14273,59 @@ msgstr "Tus intereses nos ayudan a encontrar aquello que te gusta." #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:69 msgid "Your live event preferences have been updated." -msgstr "" +msgstr "Se han actualizado tus preferencias de eventos en directo." #: src/screens/Signup/StepInfo/index.tsx:353 msgid "Your location has been updated." -msgstr "" +msgstr "Tu ubicación se ha actualizado." #: src/components/dialogs/MutedWords.tsx:378 msgid "Your muted words" msgstr "Tus palabras silenciadas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -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 "Tu nombre, avatar, el nombre del chat de grupo y el número de miembros serán visibles para todos." #: 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 "" +msgstr "¡Tu contraseña ha sido cambiada con éxito! Por favor, utiliza tu nueva contraseña cuando inicies sesión en Bluesky a partir de ahora." #: src/screens/Signup/StepInfo/index.tsx:157 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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" -msgstr "" +msgstr "Tu publicación fue enviada" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" -msgstr "" +msgstr "Tus publicaciones fueron enviadas" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:289 msgid "Your preferred language" -msgstr "" +msgstr "Tu idioma preferido" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" -msgstr "" +msgstr "Tu foto de perfil" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 msgid "Your profile picture surrounded by concentric circles of other users' profile pictures" -msgstr "" +msgstr "Tu foto de perfil rodeada de círculos concéntricos con fotos de perfil de otros usuarios" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." msgstr "Tu perfil, publicaciones, feeds y listas dejarán de ser visibles para otros usuarios de Bluesky. Puedes reactivar tu cuenta en cualquier momento iniciando sesión." -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" -msgstr "" +msgstr "Tu respuesta fue enviada" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Se enviará tu denuncia a <0>{0}." @@ -13661,9 +14333,9 @@ msgstr "Se enviará tu denuncia a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Los intereses que selecciones nos ayudarán a ofrecerte contenido interesante para ti." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." -msgstr "" +msgstr "Tu hilo tiene publicaciones vacías que se omitirán. Las publicaciones restantes se publicarán como un hilo." #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/eu/messages.po b/src/locale/locales/eu/messages.po index 036574c20d..ba35763f17 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Basque\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" kategoria (aktiboa)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(txat gonbidapen-esteka)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(kapsulatutako edukia dauka)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {gogoko #} other {# gogoko}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {kide #} other {# kide}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {minutu #} other {# minutu}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {hilabete #} other {# hilabete}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {sartzeko eskaera berri #} other {# sartzeko eskaera berri}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {pertsona #-ek} other {# pertsonek}} erreakzionatu du/dute – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {segundu #} other {# segundu}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {Elementu bat} other {# elementu}} irakurri gabe" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {m#} other {#m}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> <1>testu eta etiketetan" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} txatera gehitu da" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} eta {1} txatera gehitu dira" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} jarraitzen" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0}-k blokeatzen zaitu" @@ -264,7 +273,7 @@ msgstr "50etik {0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} erreakzioantu du {1}" @@ -290,7 +299,7 @@ msgstr "{0} taldetik kendu da" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, {1}-ren zerrenda" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0}-ren abatarra" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}-ren abatarra" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {kide} other {kide}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} kide" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}min" msgid "{0}s" msgstr "{0}seg" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Ez dago sartzeko eskaerarik} one {Sartzeko eskaera #} other {# sartzeko eskaera}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {txat eguneraketa #} other {# txat eguneraketa}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {sartzeko eskaera berri #} other {# sartzeko eskaera berri}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {eskaera #} other {# eskaera}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {Elementu bat} other {# elementu}} irakurri gabe" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Freskatu orria ikusteko.} other {Freskatu orria guztiak ikusteko.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Post honek argazki # dauka.} other {Post honek # argazki ditu.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Zure aplikazioa eguneratu ikusteko.} other {Zure aplikazioa eguneratu guztiak ikusteko.}}" + +#. 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 "{count, plural, other {#+ sarrera eskaera}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ eskaera" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {ordu} other {ordu}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minutu} other {minutu}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} jarraitzen dizute" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure neurrira egindako feeda gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure posta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berposta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure postari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berpostari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure abio multzoan izena eman dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} egiaztatu zaituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} bueltan jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} zure neurrira egindako feeda gustoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} zure posta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink}-k zure berposta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} zure postari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink}-k zure berpostari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} zure abio multzoan izena eman du" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink}-k egiaztatu zaitu" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} jarraitzen dizute" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure neurrira egindako feeda gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure posta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berposta gogoko dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure postari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} zure berpostari berpost egin diote" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount} } other {beste {formattedAuthorsCount}}} zure abio multzoan izena eman dute" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}} egiaztatu zaituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} bueltan jarraitzen dizu" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} zure neurrira egindako feeda gustoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} zure posta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName}-k zure berposta gogoko du" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} zure kontuaren egiaztapenak kendu dituzte" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} zure postari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName}-k zure berpostari berpost egin dio" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} zure abio multzoan izena eman du" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName}-k egiaztatu zaitu" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName}-k egiaztatu zaitu" msgid "{following} following" msgstr "{following} jarraitzen" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} ezin da gehitu" @@ -547,7 +606,7 @@ msgstr "{handle} ezin da gehitu" msgid "{handle} can't be messaged" msgstr "{handle} ezin zaio mezua bidali" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} ezin zaio mezua bidali" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {ordu {minutesString} #} other {# ordu {minutesStrin msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {ordu #} other {# ordu}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}+ sarrera eskaera berri" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ sarrera eskaera berri" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {Azalpena luzeegia da. Gehienezko karakt msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Bistaratzeko izena luzeegia da. Gehienezko karaktere kopurua # da.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Gehienez # erantzun ezkuta ditzakezu.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} {0} erreakzioantu du {target}-i" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name}-ren feed eta pertsona gogokoenak - elkartu niri!" msgid "{name}'s starter pack" msgstr "{name}-ren abio multzoa" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {Elementu bat} other {# elementu}} irakurri gabe" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Kontaktu # aurkitua} other {# kontaktu aurkituta}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {eskaera #} other {# eskaera}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ eskaera" @@ -656,6 +725,12 @@ msgstr "{userName} egiaztatuta dago" msgid "{userName}'s verifications" msgstr "{userName}-ren egiaztapenak" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, eta {2, plural, one {beste #} other {beste #}} z #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {jarraitzaile} other {jarraitzaile}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {jarraitzen} other {jarraitzen}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {gogoko} other {gogoko}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {aipamen} other {aipamen}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {berpost} other {berpost}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {gordeta} other {gordeta}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} kide" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>-k gehitu zaitu" @@ -795,8 +870,13 @@ msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexi #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexioa." @@ -804,7 +884,7 @@ msgstr "Sareko errore bat gertatu da. Mesedez, egiaztatu zure Interneteko konexi msgid "A new code has been sent" msgstr "Kode berri bat bidali da" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Egiaztatzeko modu berri bat" @@ -827,11 +907,11 @@ msgstr "Jarraitu botoiaren ondoan kanpai ikono bat duen profil orri baten pantai 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Hautatutako hartzailea ez du bidaltzaileak jarraitzen." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Jokabide abusiboa edo diskriminatzailea" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Onartu" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Onartu" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Onartu txateatzeko eskaera" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Onartu sartzeko eskaera" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Onartu Eskaera" @@ -860,17 +950,26 @@ msgstr "Onartu Eskaera" msgid "Accept this language suggestion" msgstr "Onartu hizkuntza-iradokizun hau" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Onartutako elkarrizketak" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Sarbidea eskatu da! Taldearen jabeak zure eskaera berrikusiko du." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Erabilerraztasun" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Erabilerraztasun Doikuntzak" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Erabilerraztasun Doikuntzak" msgid "Account" msgstr "Kontua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Kontua blokeatuta" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Kontua jarraituta" @@ -899,7 +998,7 @@ msgstr "Kontua bertan behera utzi da" msgid "Account is deactivated" msgstr "Kontua desaktibatuta dago" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Kontu hornitzailea" msgid "Account removed from quick access" msgstr "Kontua ezabatua sarrera azkarretik" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Kontua desblokeatuta" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Kontua jarraitzeari utzita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Kontua desmutututa" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Egiaztapen-marka urdin ondulatua <0><1/> duten kontuek beste batzuk egiazta ditzakete. Egiaztatzaile fidagarri hauek Blueskyk hautatzen ditu." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Beste batzuen jarduera" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Jarduera jakinarazpenak" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Gehitu" @@ -999,8 +1094,8 @@ msgstr "Gehitu kontua" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Gehitu aukerazko testua (hautazkoa)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Gehitu beste kontu bat" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Gehitu beste post bat" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Gehitu beste post bat harira" @@ -1035,7 +1130,7 @@ msgstr "Gehitu aplikazio pasahitza" msgid "Add App Password" msgstr "Gehitu Aplikazio Pasahitza" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Gehitu automatizazio etiketa kontuan" @@ -1043,7 +1138,7 @@ msgstr "Gehitu automatizazio etiketa kontuan" msgid "Add emoji reaction" msgstr "Gehitu emoji erreakzioa" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Gehitu txat taldeko kideak" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Gehitu irudia" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Gehitu multimedia postari" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Gehitu kideak" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Gehitu xehetasun gehiago (hautazkoa)" @@ -1091,6 +1186,10 @@ msgstr "Gehitu jendea" msgid "Add people to list" msgstr "Gehitu jendea zerrendara" +#: 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 "Gehitu Erreakzioa" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Gehitu zure jaiotze data" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "{0}-k gehitua" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Gonbidapen-esteka bidez gehituta" @@ -1165,12 +1264,12 @@ msgstr "Kideak zerrendara gehitzen..." msgid "Additional details (limit 1000 characters)" msgstr "Xehetasun gehiago (1000 karaktere gehienez)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Xehetasun gehiago (300 karaktere gehienez)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Administratzailea" @@ -1228,12 +1327,12 @@ msgstr "Adinaren berme-eskaera aurkeztu da" msgid "Age assurance only takes a few minutes" msgstr "Adina bermatzeko minutu gutxi batzuk besterik ez dira behar" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "ane@adibidea.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Guztiak" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Dena {0}" @@ -1278,13 +1377,13 @@ msgstr "Baimendu sarrera zure mezu zuzenetara" msgid "Allow anyone to reply" msgstr "Utzi edonori erantzuten" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Baimendu mezu zuzenak hemendik" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Baimendu txat taldeko gonbidapenak hemendik" @@ -1338,12 +1437,12 @@ msgstr "Dagoeneko kontu bat daukazu?" msgid "Already signed in as @{0}" msgstr "Dagoeneko izena emanda @{0} bezala" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "AUKERAZKO TESTUA" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Aukerazko Testua" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Aukerazko testuak itsu eta ikusmen urriko erabiltzaileentzako irudiak deskribatzen ditu eta guztientzako testuingurua ematen laguntzen du." @@ -1387,7 +1486,7 @@ msgstr "Errore bat gertatu da" msgid "An error occurred" msgstr "Errore bat gertatu da" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Errore bat gertatu da bideoa konprimitzean." @@ -1421,7 +1520,8 @@ msgstr "Errore bat gertatu da bideoa kargatzean. Mesedez, saiatu berriro." msgid "An error occurred while loading your lists :/" msgstr "Errore bat gertatu da zure zerrendak kargatzean :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Errore bat gertatu da QR kodea gordetzean!" @@ -1432,11 +1532,11 @@ msgstr "Errore bat gertatu da QR kodea gordetzean!" msgid "An error occurred while trying to follow all" msgstr "Errore bat gertatu da guztiak jarraitzen saiatzean" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Errore bat gertatu da bideoa igotzean. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Errore bat gertatu da bideoa igotzean. Egiaztatu Interneteko konexioa eta saiatu berriro." @@ -1456,26 +1556,30 @@ msgstr "Kontaktu-liburu batetik Bluesky aplikaziora doazen erabiltzaile-abatarra 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" +#: 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 "Bluesky-k egiaztatzaile fidagarriak hautatzen dituela erakusten duen ilustrazio bat, eta egiaztatzaile fidagarriek, berriz, erabiltzaile-kontuak egiaztatzen dituztela." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Gonbidapen-esteka batek txat taldean sartzeko aukera ematen dio jendeari zuzenean gehitu gabe. Esteka nork erabil dezakeen eta zure onespenaren beharra kontrolatzen dituzu. Esteka edozein unetan desgai dezakezu." +#: 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 "Gonbidapen-esteka batek txat taldean sartzeko aukera ematen dio jendeari zuzenean gehitu gabe. Txatean nor sar daitekeen kontrolatzen duzu. Esteka edozein unetan desgai dezakezu." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "Aukera hauetan sartzen ez den arazo bat" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Arazo bat gertatu da txat taldea sortzean. Mesedez, saiatu berriro." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Arazo bat gertatu da txata irekitzen saiatzean" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Arazo bat gertatu da. Mesedez, saiatu berriro." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Bluesky aplikazioa irekita erakusten duen iPhone baten maketa egiaztatutako erabiltzaile baten profilean kontrol-marka urdin batekin bistaratzeko izenaren ondoan." @@ -1539,13 +1643,17 @@ msgstr "Edonor" msgid "Anyone can interact" msgstr "Edozeinek elkarreragin dezake" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Edonor sar daiteke" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Edonork bat egin dezake berehala" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Edonork eska dezake bat egiteko" @@ -1555,11 +1663,11 @@ msgstr "Edonork eska dezake bat egiteko" msgid "Anyone who follows me" msgstr "Niri jarraitzen didan edonor" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "Daukan edonork ezingo du gehiago sartu edo sartzeko eskaera egin. Beti sor dezakezu berri bat." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Aplikazioaren pasahitzaren izenek 4 karaktere izan behar dituzte gutxien msgid "App passwords" msgstr "Aplikazio pasahitzak" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Aplikazio Pasahitzak" @@ -1618,7 +1726,7 @@ msgstr "Zuzeneko emankizunaren etenaldiaren aurkako helegitea" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Apelazioa bidalita" @@ -1632,14 +1740,14 @@ msgstr "Apelazioa geldiarazi" msgid "Appeal Suspension" msgstr "Apelazioa Geldiarazi" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apelatu erabaki hau" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Aplikatu Tira Eskaera" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "{0}-tik artxibatuta" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Gordetako posta" @@ -1675,7 +1783,7 @@ msgstr "Benetan, benetan ziur al zaude?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ziur zaude \"{0}\" aplikazioaren pasahitza ezabatu nahi duzula?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Ziur zaude mezu hau ezabatu nahi duzula? Mezua zuretzako ezabatuko da, baina ez beste parte-hartzaileentzat." @@ -1688,23 +1796,29 @@ msgstr "Ziur zaude abio multzo hau ezabatu nahi duzula?" msgid "Are you sure you want to discard your changes?" msgstr "Ziur zaude zure aldaketak baztertu nahi dituzula?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Ziur zaude {groupName} utzi nahi duzula?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Ziur zaude elkarrizketa hau utzi nahi duzula?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "Ziur zaude elkarrizketa hau utzi nahi duzula? Zure mezuak ezabatuko dira zuretzako, baina ez beste parte-hartzaileentzat." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Ziur zaude hau zure feedetatik ezabatu nahi duzula?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Ziur zaude post hau baztertu nahi duzula?" @@ -1724,8 +1838,8 @@ msgstr "Artea" msgid "Artistic or non-erotic nudity." msgstr "Biluztasun artistikoa edo ez erotikoa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Algoritmoari gaia esleitu" @@ -1752,7 +1866,7 @@ msgstr "Kontu automatizatua" msgid "Automation label" msgstr "Automatizazio etiketa" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatizazio Etiketa" @@ -1767,12 +1881,12 @@ msgstr "Bideo eta GIF erreprodukzio automatikoa" msgid "Available" msgstr "Eskuragarri" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Eskuragarri" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Eskuragarri" msgid "Back" msgstr "Atzera" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Itzuli Txatetara" @@ -1832,7 +1948,7 @@ msgstr "Post bat sortu edo erantzun aurretik, zure posta elektronikoa egiaztatu msgid "Before creating a starter pack, you must first verify your email." msgstr "Abio multzo bat sortu aurretik, zure posta elektronikoa egiaztatu behar duzu." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Txateatzeko eskaera hau onartu aurretik, zure posta elektronikoa egiaztatu behar duzu." @@ -1840,13 +1956,14 @@ msgstr "Txateatzeko eskaera hau onartu aurretik, zure posta elektronikoa egiazta msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "{name}-ren posten jakinarazpenak jaso aurretik, zure helbide elektronikoa egiaztatu behar duzu." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Beste erabiltzaile bati mezua bidali aurretik, zure posta elektronikoa egiaztatu behar duzu." @@ -1874,59 +1991,53 @@ msgstr "Jaiotze data" msgid "Birthday" msgstr "Urtebetetzea" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blokeatu" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Blokeatu {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Kontua blokeatu" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Kontua blokeatu?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Kontua Blokeatu?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Kontuak blokeatu" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Blokeatu eta ezabatu" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Blokeatu eta utzi" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Blokeo zerrenda" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blokeatu edo salatu" @@ -1936,9 +2047,9 @@ msgstr "Kontu hauek blokeatu?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blokeatu erabiltzailea" @@ -1946,17 +2057,17 @@ msgstr "Blokeatu erabiltzailea" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blokeatu erabiltzailea" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Blokeatu erabiltzailea eta/edo ezabatu elkarrizketa hau" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Blokeatu erabiltzailea eta/edo utzi elkarrizketa hau" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blokeatua" @@ -1964,14 +2075,12 @@ msgstr "Blokeatua" msgid "Blocked accounts" msgstr "Blokeatutako kontuak" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokeatutako Kontuak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin." @@ -1987,7 +2096,7 @@ msgstr "Blokeatzeak ez dio etiketatzaile honi eragotziko etiketak zure kontuan a msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokeatzea publikoa da. Blokeatutako kontuek ezin dute zure harietan erantzun, zu aipatu edo zurekin elkarreragin." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blokeatzeak ez du eragotziko etiketak zure kontuan aplikatzea, baina kontu honek zure harietan erantzutea edo zurekin elkarreragitea eragotziko du." @@ -2000,7 +2109,7 @@ msgstr "Blog-a" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky-k ezin du baieztatu erreklamatutako dataren benetakotasuna." @@ -2029,7 +2138,7 @@ msgstr "Bluesky hobea da lagunekin!" msgid "Bluesky is more fun with friends" msgstr "Bluesky dibertigarriagoa da lagunekin" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky dibertigarriagoa da lagunekin! Inportatu zure kontaktuak dagoeneko hemen nor dagoen ikusteko." @@ -2037,11 +2146,15 @@ msgstr "Bluesky dibertigarriagoa da lagunekin! Inportatu zure kontaktuak dagoene msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky dibertigarriagoa da lagunekin. Zure lagunetako batzuk gonbidatu nahi dituzu? <0/>" +#: 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 "Bluesky Sozial Zerbitzu Baldintzak" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky-k zure sareko pertsonen artean gomendatutako kontu multzo bat au msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky-k ez die zure profila eta postak erakutsiko saioa hasita ez duten erabiltzaileei. Baliteke beste aplikazio batzuek eskaera hau ez onartzea. Horrek ez du zure kontua pribatu bihurtzen." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky-k modu proaktiboan egiaztatuko ditu kontu aipagarriak eta benetakoak." @@ -2081,6 +2194,10 @@ msgstr "Liburuak" msgid "Breaking site rules" msgstr "Guneko arauak haustea" +#: 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" @@ -2137,25 +2254,35 @@ msgstr "Negozio" msgid "Button to go back to the home timeline" msgstr "Hasierako denbora-lerrora itzultzeko botoia" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "{0}-gatik" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "<0>{0}-gatik" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "<0>@{0}-gatik" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "<0>{ownerDisplayName}-rena" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Kontua sortzean <0>Zerbitzu Baldintzak onartzen dituzu." msgid "By you" msgstr "Zugatik" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Utzi" @@ -2248,9 +2384,9 @@ msgstr "Utzi berriro aktibatzea eta amaitu saioa" msgid "Cancel search" msgstr "Utzi bilaketa" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Ezin da blokeatutako erabiltzaile batekin elkarreragin" @@ -2264,7 +2400,7 @@ msgstr "Epigrafeak (.vtt)" msgid "Captions & alt text" msgstr "Epigrafeak eta aukerazko testua" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "karrusela" @@ -2297,7 +2433,7 @@ msgstr "Aldatu aplikazioaren hizkuntza" msgid "Change Handle" msgstr "Aldatu Erabiltzailea" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Aldatu moderazio zerbitzua" @@ -2310,11 +2446,11 @@ msgstr "Aldatu pasahitza" msgid "Change password dialog" msgstr "Pasahitza aldatzeko elkarrizketa-koadroa" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Txostenaren kategoria aldatu" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Aldatu salaketa arrazoia" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Txateatu" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Txata ezabatuta" @@ -2361,6 +2497,12 @@ msgstr "Txata ezabatuta" msgid "Chat ended" msgstr "Txata bukatuta" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Txateko gonbidapen-esteka jada ez dago erabilgarri" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Txata itxita" @@ -2373,35 +2515,44 @@ msgstr "Txat mezuak - isilak" msgid "Chat messages - sound" msgstr "Txat mezuak - soinuarekin" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Txata mutututa" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Txata ez da aurkitu." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "Txataren jabeek ezin dute txat talde bat utzi." + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "Txataren hartzailea ez du bidaltzaileak jarraitzen." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Txateatzeko eskaeren sarrera-ontzia" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Txateatzeko eskaerak" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Txataren ezarpenak" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Txataren Ezarpenak" @@ -2418,14 +2569,14 @@ msgstr "Txataren izenburua {0}-ra aldatuta" msgid "Chat unlocked" msgstr "Txata irekita" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Txata desmutututa" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Txatak" @@ -2479,7 +2630,7 @@ msgstr "Aukeratu posten hizkuntzak" msgid "Choose this color as your avatar" msgstr "Aukeratu kolore hau zure abatar gisa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Aukeratu nork eta nola batu daitekeen txat talde honetara." @@ -2558,7 +2709,7 @@ msgstr "Egin klik hemen saioa amaitzeko" msgid "Click here to resend the email" msgstr "Egin klik hemen mezu elektronikoa berriro bidaltzeko" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Egin klik hemen egiaztapen-prozesua berrabiarazteko." @@ -2567,7 +2718,7 @@ msgstr "Egin klik hemen egiaztapen-prozesua berrabiarazteko." msgid "Click here to update your birthdate" msgstr "Egin klik hemen zure jaiotze data eguneratzeko" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Egin klik hemen zure posta elektronikoa eguneratzeko" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" @@ -2594,28 +2745,30 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Egin klik huts egindako mezua berriro bidaltzen saiatzeko" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Itxi" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Itxi elkarrizketa-koadro aktiboa" @@ -2647,6 +2800,10 @@ msgstr "Itxi elkarrizketa-koadro aktiboa" msgid "Close alert" msgstr "Itxi alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Itxi bannerra" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Itxi beheko tiradera" @@ -2657,8 +2814,10 @@ msgstr "Itxi beheko tiradera" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Itxi elkarrizketa-koadroa" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Itxi irudia" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Itxi menua" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Itxi sarrera eskaeren bannerra" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Itxi elkarrizketa-koadro hau" @@ -2695,18 +2866,22 @@ msgstr "Itxi ongietorri modala" msgid "Closes password update alert" msgstr "Pasahitzak eguneratzeko alerta ixten du" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Post-konpositorea ixten du eta post-zirriborroa baztertzen du" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Tolestu erabiltzaileen zerrenda" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Jakinarazpen jakin baterako erabiltzaileen zerrenda tolesten du" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Komikiak" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Komunitate-gidalerroak" @@ -2740,12 +2915,12 @@ msgstr "Osatu erronka" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Idatzi post berria" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak" @@ -2753,11 +2928,11 @@ msgstr "Idatzi {0, plural, other {# karaktere}} gehienezko postak" msgid "Compose reply" msgstr "Idatzi erantzuna" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "GIFa konprimitzen..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Bideoa konprimitzen..." @@ -2780,7 +2955,7 @@ msgstr "<0>Moderazio-ezarpenetan konfiguratuta." msgid "Confirm" msgstr "Berretsi" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Jarri laguntzarekin harremanetan" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Kontaktuen sinkronizazioa ez dago erabilgarri gailu honetan, aplikazioak ezin baititu zure kontaktuetara sartu." @@ -2825,11 +3000,11 @@ msgstr "Kontaktuen sinkronizazioa ez dago erabilgarri gailu honetan, aplikazioak msgid "Contact us" msgstr "Jarri gurekin harremanetan" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Kontaktuak inportatu dira" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Kontaktuak kendu dira" @@ -2842,7 +3017,7 @@ msgstr "Edukiak eta Media" msgid "Content and media" msgstr "Edukiak eta media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Edukiak eta Media" @@ -2889,7 +3064,7 @@ msgstr "Testuinguru-menuaren atzeko planoa, egin klik menua ixteko." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Jarraitu haria" msgid "Continue thread..." msgstr "Jarraitu haria..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Jarraitu taldearen izenera" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Jarraitu hurrengo urratsera" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Elkarrizketa" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Elkarrizketa ezabatuta" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Elkarrizketa ezabatuta" @@ -2939,15 +3114,22 @@ msgstr "Elkarrizketa ezabatuta" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Elkarrizketa utzita" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Ez da elkarrizketa aurkitu." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Konpilazio bertsioa arbelean kopiatu da" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopiatuta!" msgid "Copies build version to clipboard" msgstr "Eraikitze-bertsioa arbelean kopiatzen du" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopiatu" @@ -2997,6 +3184,11 @@ msgstr "Kopiatu DID" msgid "Copy host" msgstr "Kopiatu ostalaria" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Kopiatu esteka zerrendara" msgid "Copy link to post" msgstr "Kopiatu esteka postera" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Kopiatu esteka profilera" @@ -3027,8 +3219,8 @@ msgstr "Kopiatu esteka profilera" msgid "Copy link to starter pack" msgstr "Kopiatu abio multzoaren esteka" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Kopiatu mezuaren testua" @@ -3037,12 +3229,12 @@ msgstr "Kopiatu mezuaren testua" msgid "Copy post at:// URI" msgstr "Kopiatu posta at:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Kopiatu postaren testua" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Kopiatu QR kodea" @@ -3052,11 +3244,15 @@ msgstr "Kopiatu TXT erregistroaren balioa" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Copyright Politika" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Ezin izan da feed pertsonalizatura konektatu" @@ -3065,7 +3261,15 @@ msgstr "Ezin izan da feed pertsonalizatura konektatu" msgid "Could not connect to feed service" msgstr "Ezin izan da feed zerbitzura konektatu" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Ezin izan da posta eskuratu" @@ -3073,23 +3277,27 @@ msgstr "Ezin izan da posta eskuratu" msgid "Could not find profile" msgstr "Ezin izan da profila aurkitu" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Ezin izan dira bat datozen guztiak jarraitu - mesedez, egiaztatu zure sareko konexioa." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Ezin izan dira bat datozen guztiak jarraitu. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Ezin izan da txata utzi" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "Ezin izan da txata utzi." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Ezin izan da feeda kargatu" @@ -3100,7 +3308,11 @@ msgstr "Ezin izan da feeda kargatu" msgid "Could not load list" msgstr "Ezin izan da zerrenda kargatu" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Ezin izan da txata mututu" @@ -3108,11 +3320,19 @@ msgstr "Ezin izan da txata mututu" msgid "Could not process your video" msgstr "Ezin izan da zure bideoa prozesatu" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "Ezin izan da kidea kendu." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Ezin izan dira aldaketak gorde: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Ezin izan dira jakinarazpenen ezarpenak eguneratu" @@ -3139,7 +3359,7 @@ msgstr "Herrialde kodea" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Sortu" @@ -3153,13 +3373,13 @@ msgstr "Sortu zerrenda bat" msgid "Create a list from this starter pack" msgstr "Sortu zerrenda bat abio multzo honetatik" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Sortu abio multzo bat" @@ -3174,13 +3394,14 @@ msgstr "Sortu niretzat abio multzo bat" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Sortu abatar bat horren ordez" @@ -3206,7 +3427,7 @@ msgstr "Sortu abatar bat horren ordez" msgid "Create another" msgstr "Sortu beste bat" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Sortu txat taldea" @@ -3228,19 +3449,20 @@ msgstr "Sortu zerrenda abio multzotik" msgid "Create moderation list" msgstr "Sortu moderazio-zerrenda" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Sortu kontu berria" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Sortu edo aldatu gonbidapen-esteka bat txat talde honetarako" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Sortu salaketa {0}rentzat" @@ -3256,8 +3478,8 @@ msgstr "Sortu erabiltzaile-zerrenda" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Sortuta {0}" @@ -3270,6 +3492,10 @@ msgstr "Sortzailea blokeatu egin da" msgid "Culture" msgstr "Kultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Uneko txata" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Gai iluna" msgid "Date of birth" msgstr "Jaiotze data" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Lehenetsia" msgid "Default icons" msgstr "Ikono lehenetsiak" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Ezabatu aplikazioaren pasahitza" msgid "Delete app password?" msgstr "Aplikazioaren pasahitza ezabatu nahi duzu?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Ezabatu txata" @@ -3378,19 +3612,19 @@ msgstr "Ezabatu txata" msgid "Delete chat declaration record" msgstr "Ezabatu txat-adierazpenaren erregistroa" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Kontaktuak ezabatu" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Ezabatu elkarrizketa" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Ezabatu niretzat" @@ -3399,11 +3633,11 @@ msgstr "Ezabatu niretzat" msgid "Delete list" msgstr "Ezabatu zerrenda" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Ezabatu mezua" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Ezabatu mezua niretzat" @@ -3411,9 +3645,9 @@ msgstr "Ezabatu mezua niretzat" msgid "Delete my account" msgstr "Ezabatu nire kontua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Ezabatu posta" @@ -3430,17 +3664,17 @@ msgstr "Abio multzoa ezabatu nahi duzu?" msgid "Delete this list?" msgstr "Zerrenda hau ezabatu nahi duzu?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Post hau ezabatu nahi duzu?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Ezabatu da" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Ezabatutako Kontua" @@ -3471,12 +3705,12 @@ msgstr "Deskribapena (gehienez 1000 karaktere)" msgid "Descriptive alt text" msgstr "Aukerazko testu deskribatzailea" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Kendu aipamena" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Postaren aipamena kendu?" @@ -3507,13 +3741,13 @@ msgstr "Elkarrizketa: egokitu mezu honekin nork elkarreragin dezakeen" msgid "Dim" msgstr "Lausotu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Desgaitu" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Desgaitu 2FA" @@ -3521,7 +3755,7 @@ msgstr "Desgaitu 2FA" msgid "Disable captions" msgstr "Desgaitu azpitituluak" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Desgaitu 2FA posta elektronikoa" @@ -3534,8 +3768,8 @@ msgstr "Desgaitu 2FA posta elektronikoa" msgid "Disable haptic feedback" msgstr "Desgaitu feedback haptikoa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Desgaitu esteka" @@ -3547,7 +3781,7 @@ msgstr "Desgaitu post honen aipamen postak" msgid "Disable replies entirely" msgstr "Desgaitu erantzunak erabat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Gonbidapen-esteka hau desgaitu?" @@ -3560,9 +3794,9 @@ msgstr "Desgaituta" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Baztertu" msgid "Discard changes?" msgstr "Aldaketak baztertu?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Posta baztertu?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Deskonektatu Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Aurkitu feed berriak" msgid "Discover New Feeds" msgstr "Aurkitu Feed Berriak" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Baztertu" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Baztertu bannerra" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Baztertu errorea" @@ -3642,6 +3877,10 @@ msgstr "Baztertu atal hau" msgid "Dismiss this suggestion" msgstr "Baztertu iradokizun hau" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Ez du biluztasunik." msgid "Domain verified!" msgstr "Domeinua egiaztatu da!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Ez duzu koderik edo berri bat behar duzu? <0>Egin klik hemen." @@ -3681,7 +3920,7 @@ msgstr "Ez duzu koderik edo berri bat behar duzu? <0>Egin klik hemen." msgid "Don’t see a code? <0>Click here to resend." msgstr "Ez duzu koderik ikusten? <0>Egin klik hemen berriro bidaltzeko." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Ez duzu mezu elektronikorik ikusten? <0>Egin klik hemen berriro bidaltzeko." @@ -3700,16 +3939,21 @@ msgstr "Ez kezkatu! Mezu eta ezarpen guztiak gordeta daude eta heldua zarela egi #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Eginda" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Sakatu birritan elkarrizketa-koadroa ixteko" @@ -3737,19 +3981,14 @@ msgstr "Sakatu birritan elkarrizketa-koadroa ixteko" msgid "Double tap to like" msgstr "Kolpetxo bikoitza gogoko emateko" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Deskargatu Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Deskargatu CAR fitxategia" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Deskargatu CAR fitxategia" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Deskargatu txataren datuak" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Deskargatu txataren datuak" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Deskargatu irudia" +#: 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 "Deskargatu profilaren datuak" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Deskargatu profilaren datuak" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Doxxing-a" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Zure eskualdeko legeak direla eta, Bluesky-n ezaugarri batzuk mugatuta d msgid "Duration:" msgstr "Iraupena:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "adib. alice" @@ -3823,9 +4079,8 @@ msgstr "adib. Iragarkiekin behin eta berriz erantzuten duten erabiltzaileak." msgid "Eating disorders" msgstr "Elikadura-nahasmenduak" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editatu" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editatu abatarra" @@ -3847,19 +4102,19 @@ msgstr "Editatu abatarra" msgid "Edit Feeds" msgstr "Editatu Feedak" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Editatu taldearen izena" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editatu irudia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editatu interakzio-ezarpenak" @@ -3868,7 +4123,16 @@ msgstr "Editatu interakzio-ezarpenak" msgid "Edit interests" msgstr "Editatu interesak" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Editatu gonbidapen-esteka" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Editatu gonbidapen-esteka" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Editatu estekaren ezarpenak" @@ -3886,20 +4150,15 @@ msgstr "Zuzeneko egoera editatu" msgid "Edit moderation list" msgstr "Editatu moderazio zerrenda" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editatu Nire Feedak" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Editatu izena" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Editatu {0}-ren jakinarazpenak" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editatu Jendea" @@ -3912,12 +4171,12 @@ msgstr "Editatu posten interakzio-ezarpenak" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Editatu profila" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editatu Profila" @@ -3925,7 +4184,8 @@ msgstr "Editatu Profila" msgid "Edit starter pack" msgstr "Editatu abio multzoa" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Editatu txat taldearen izena" @@ -3937,7 +4197,7 @@ msgstr "Editatu erabiltzaile zerrenda" msgid "Edit who can reply" msgstr "Editatu nork erantzun dezakeen" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Editatu zure abio multzoa" @@ -3971,7 +4231,7 @@ msgstr "Email helbidea" msgid "Email Resent" msgstr "Posta elektronikoa Birbidali" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Posta elektronikoa bidalia!" @@ -4006,8 +4266,8 @@ msgstr "Txertatu post hau zure webgunean. Kopiatu hurrengo kode zatia eta itsats msgid "Embedded video player" msgstr "Bideo erreproduzitzailea txertatua" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Gaitu" @@ -4025,7 +4285,7 @@ msgstr "Gaitu helduentzako edukia" msgid "Enable captions" msgstr "Gaitu azpitituluak" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Gaitu 2FA posta elektronikoa" @@ -4038,13 +4298,12 @@ msgstr "Gaitu kanpoko multimedia" msgid "Enable media players for" msgstr "Gaitu multimedia-erreproduzitzaileak" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Kontu baten jakinarazpenak gaitzeko, bisitatu haren profila eta sakatu <0>kanpai ikonoa <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Gaitu push jakinarazpenak" @@ -4091,8 +4350,8 @@ msgstr "Sartu pasahitz bat" msgid "Enter a word or tag" msgstr "Sartu hitz edo etiketa bat" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Sartu kodea" @@ -4143,12 +4402,12 @@ msgstr "Pantaila osora sartzen da" msgid "Entertainment" msgstr "Entretenimendua" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Errorea" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Errorea azken datuak lortzean." @@ -4185,23 +4444,23 @@ msgstr "Denek erantzun dezakete" msgid "Everybody can reply to this post." msgstr "Denek erantzun dezakete post honi." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Edonork" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Edonork" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Edonork" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Beste guztia" @@ -4217,16 +4476,16 @@ msgstr "Jarraitzen dituzun erabiltzaileak baztertzen ditu" msgid "Exit fullscreen" msgstr "Irten pantaila osotik" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Zabaldu aukerazko testua" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Zabaldu erabiltzaileen zerrenda" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Zabaldu edo tolestu erantzuten ari zaren post osoa" @@ -4238,7 +4497,7 @@ msgstr "Zabaldu postaren testua" msgid "Expands or collapses post text" msgstr "Postaren testua zabaldu edo tolesten du" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Erregistro batean ebaztea espero zen uri-a" @@ -4277,10 +4536,10 @@ msgstr "Esplizituak edo kezkagarriak izan daitezkeen multimediak." msgid "Explicit sexual images." msgstr "Sexu-irudi esplizituak." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Arakatu" @@ -4289,11 +4548,8 @@ msgstr "Arakatu" msgid "Explore the app" msgstr "Arakatu aplikazioa" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Esportatu txateko datuak" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Esportatu nire txateko datuak" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Kanpoko Multimedia Hobespenak" @@ -4331,18 +4587,22 @@ msgstr "Kanpoko Multimedia Hobespenak" msgid "Extremist content" msgstr "Eduki muturrekoa" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Ezin izan da txata onartu" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Ezin izan da onartu sartzeko eskaera" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Errorea emoji erreakzioa gehitzean" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Ezin izan dira kideak gehitu" @@ -4354,7 +4614,8 @@ msgstr "Ezin izan da abio multzora gehitu" msgid "Failed to change handle. Please try again." msgstr "Ezin izan da handle-a aldatu. Mesedez, saiatu berriro." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Ezin izan da esteka kopiatu" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Ezin izan da sortu aplikazioaren pasahitza. Mesedez, saiatu berriro." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Ezin izan da elkarrizketa sortu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Ezin izan da sortu gonbidapen-esteka" @@ -4376,17 +4637,17 @@ msgstr "Ezin izan da sortu gonbidapen-esteka" msgid "Failed to create starter pack" msgstr "Ezin izan da sortu abio multzoa" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Ezin izan da txata ezabatu" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Ezin izan da mezua ezabatu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro" @@ -4394,24 +4655,24 @@ msgstr "Ezin izan da posta ezabatu. Mesedez, saiatu berriro" msgid "Failed to delete starter pack" msgstr "Ezin izan da abio multzoa ezabatu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Ezin izan da desgaitu gonbidapen-esteka" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Germ DM deskonektatzeak huts egin du. Errorea: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Ezin izan da txat taldearen izena editatu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Ezin izan da editatu gonbidapen-esteka" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Ezin izan da gaitu gonbidapen-esteka" @@ -4427,19 +4688,27 @@ msgstr "Ezin izan dira zure lagun guztiak jarraitu, mesedez, saiatu berriro" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Ezin izan da iradokizuna ezkutatu, egiaztatu zure Interneteko konexioa" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Ezin izan da baztertu batzeko eskaera" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Ezin izan da txat taldean sartu. Mesedez, saiatu berriro." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Ezin izan da SMS aplikazioa abiarazi" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Ezin izan da txat taldea utzi" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Ezin izan dira elkarrizketak kargatu" @@ -4456,17 +4725,8 @@ msgstr "Ezin izan dira feedak kargatu" msgid "Failed to load feeds preferences" msgstr "Ezin izan dira kargatu feeden hobespenak" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Ezin izan dira jakinarazpenen ezarpenak kargatu." @@ -4493,16 +4753,15 @@ msgstr "Ezin izan dira iradokitako feedak kargatu" msgid "Failed to load suggested follows" msgstr "Ezin izan dira kargatu iradokitako jarraipenak" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Ezin izan da txat taldea itxi" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Ezin izan dira eskaera guztiak irakurri gisa markatu" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Ezin izan da txat taldea mututu" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Ezin izan da posta ainguratu" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Germ DM berriro konektatzeak huts egin du. Errorea: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Sare-errore baten ondorioz datuak ezabatzea ezinezkoa izan da. Mesedez, egiaztatu zure Interneteko konexioa." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Ezin izan dira datuak ezabatu. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Errorea emoji errakzioa kentzerakoan" @@ -4534,7 +4793,8 @@ msgstr "Errorea emoji errakzioa kentzerakoan" msgid "Failed to remove from starter pack" msgstr "Ezin izan da abio multzotik kendu" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Ezin izan da txat taldeko kidea ezabatu" @@ -4542,15 +4802,20 @@ msgstr "Ezin izan da txat taldeko kidea ezabatu" msgid "Failed to remove verification" msgstr "Ezin izan da egiaztapena kendu" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Ezin izan da zure eskaera bertan behera utzi. Mesedez, saiatu berriro." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Ezin izan da kokapena ebatzi. Mesedez, saiatu berriro." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Ezin izan da zirriborroa gorde" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Ezin izan da irudia gorde" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Ezin izan dira zure interesak gorde." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Ezin izan da posta elektronikoa bidali. Mesedez, saiatu berriro." @@ -4580,16 +4845,16 @@ msgstr "Ezin izan da salaketa bidali" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Ezin izan da apelazioa bidali. Mesedez, saiatu berriro." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Ezin izan da mututu/ez mututu haria. Mesedez, saiatu berriro" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Ezin izan da txat taldea ireki" @@ -4597,12 +4862,12 @@ msgstr "Ezin izan da txat taldea ireki" msgid "Failed to unpin list" msgstr "Ezin izan da zerrenda ainguratik kendu" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Ezin izan dira 2FA posta elektroniko ezarpenak eguneratu" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Ezin izan da posta elektronikoa eguneratu. Mesedez, saiatu berriro." @@ -4614,7 +4879,7 @@ msgstr "Ezin izan dira feedak eguneratu" msgid "Failed to update notification declaration" msgstr "Ezin izan da jakinarazpen-adierazpena eguneratu" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Ezin izan dira ezarpenak eguneratu" @@ -4641,7 +4906,7 @@ msgstr "Kontu faltsua edo bot-a" msgid "False information about elections" msgstr "Hauteskundeei buruzko informazio faltsua" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feeda" @@ -4649,7 +4914,7 @@ msgstr "Feeda" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "{0}-ren feeda" @@ -4662,7 +4927,7 @@ msgstr "Feed sortzailea" msgid "Feed identifier" msgstr "Feed identifikatzailea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Feed menua" @@ -4676,25 +4941,25 @@ msgstr "Feeda ez dago erabilgarri" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedbacka" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Iritzia feedaren operadoreari bidali zaio" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feedak" @@ -4739,7 +5004,7 @@ msgstr "Iragazi bilaketa hizkuntzaren arabera (oraingoa: {currentLanguageLabel}) 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:166 msgid "Filter who you receive notifications from" msgstr "Iragazi noren jakinarazpenak jasotzen dituzun" @@ -4747,11 +5012,11 @@ msgstr "Iragazi noren jakinarazpenak jasotzen dituzun" msgid "Finalizing" msgstr "Amaitzen" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Azkenean!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Azkenean! Jarrai itzazu zuretzako garrantzitsuak diren postak. Gorde itzazu edozein unetan berriro ikusteko." @@ -4768,19 +5033,17 @@ msgstr "Finantzak" msgid "Find accounts to follow" msgstr "Aurkitu jarraitu beharreko kontuak" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Bilatu Kontaktuak" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Bilatu Lagunak" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Bilatu lagunak kontaktuetatik" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Bilatu Kontaktuak" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Bilatu nire lagunak" msgid "Find people to follow" msgstr "Aurkitu jarraitzeko jendea" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Aurkitu postak, erabiltzaileak eta feedak Bluesky-n" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Bilatu zure lagunak" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Aurkitu zure lagunak Bluesky-n zure telefono zenbakia egiaztatuz eta zure kontaktuekin bat etorriz. Zure informazioa babesten dugu eta zuk kontrolatzen duzu zer gertatzen den ondoren. <0>Informazio gehiago" @@ -4847,22 +5114,22 @@ msgstr "Fokua jarri bilaketa-eremuan" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Jarraitu" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Jarraitu {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Jarraitu {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Jarraitu kontua" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Jarraitu kontu guztiak" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Jarraitu bueltan" @@ -4916,7 +5183,7 @@ msgstr "Jarraitu bueltan" msgid "Followed all accounts!" msgstr "Kontu guztiak jarraituta!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Bat datozen guztiak jarraituta" @@ -4944,8 +5211,12 @@ msgstr "Jarraitua <0>{0}-gatik eta <1>{1}-gatik" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Jarraitua <0>{0}-gatik, <1>{1}-gatik eta {2, plural, one {#-gatik} other {#-gatik}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Jarraitzaileak sar daitezke" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Ezagutzen dituzun @{0}-ren jarraitzaileak" @@ -4960,10 +5231,10 @@ msgstr "Ezagutzen dituzun jarraitzaileak" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Jarraitzen" @@ -4977,12 +5248,12 @@ msgstr "Jarraitzen" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Jarraitzen {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "{displayName}-ri jarraitzen" @@ -4995,19 +5266,16 @@ msgstr "{handle}-ri jarraitzen" msgid "Following feed preferences" msgstr "Jarraitzen dituzun feeden hobespenak" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Jarraitzen dituzun Feeden Hobespenak" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Jarraitzen dizu" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Jarraitzen Dizu" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Letra-tipoa" @@ -5065,11 +5333,16 @@ msgstr "Pasahitza ahaztu duzu?" msgid "Forgot?" msgstr "Ahaztuta?" +#. 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:12 msgid "Free your feed" msgstr "Askatu zure feeda" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Nondik" @@ -5086,82 +5359,86 @@ msgstr "<0/>-tik" msgid "Generate a starter pack" msgstr "Abio multzo bat sortu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Sortu gonbidapen-esteka" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Sortu gonbidapen-esteka berria" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Sortu esteka berria" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germen DM deskonektatuta" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germen DM Esteka" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germen DM berriro konektatuta" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Laguntza" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Jaso jakinarazpenak jendeak jarraitzen zaituenean." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Jaso jakinarazpenak jendeari berpostatu dituzun postak gustatzen zaizkionean." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Jaso jakinarazpenak jendeari zure postak gustatzen zaizkionean." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "Jaso jakinarazpenak jendeari zure berpostak gustatzen zaizkionean." + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Jaso jakinarazpenak jendea aipatzen zaituenean." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Jaso jakinarazpenak jendeak zure postak aipatzen dituenean." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Jaso jakinarazpenak jendeak zure postak erantzuten dituenean." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Jaso jakinarazpenak jendeak zure berpostak berriro berpostatzen dituenean." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Jaso jakinarazpenak jendeak zure postak berpostatzen dituenean." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Jaso jakinarazpenak jendeak zure berpostak berpostatzen dituenean." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Jaso jakinarazpenak post berriei buruz" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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" @@ -5174,27 +5451,27 @@ msgstr "Jaso kontu honen jardueraren jakinarazpenak" msgid "Get notified when {name} posts" msgstr "Jaso jakinarazpena {name}-k posteatzen duenean" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Jaso jakinarazpena norbaitek posteatzen duenean" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Hasi" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIFa igo da" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Eman aurpegia zure profilari" @@ -5213,20 +5490,20 @@ msgstr "Indarkeriaren gorazarrea" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Itzuli" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Itzuli" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Itzuli aurreko urratsera" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Joan hasierara" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Joan hasierara" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Joan Hasierara" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Zuzenean jarri (desgaituta)" msgid "Go live for" msgstr "Zuzenera joan" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Joan {firstAuthorName}-ren profilera" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Joan kontuaren ezarpenetara" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Joan {0}rekin elkarrizketara" @@ -5296,23 +5571,23 @@ msgstr "Joan feedera" msgid "Go to next" msgstr "Joan hurrengora" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Joan profilera" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Joan \"{chatName}\" izeneko txat taldera" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Joan erabiltzailearen profilera" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Joan erabiltzailearen profilera" @@ -5320,11 +5595,18 @@ msgstr "Joan erabiltzailearen profilera" msgid "Going live is currently disabled for your account" msgstr "Zure kontuan desgaituta dago zuzeneko emanaldia" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Ulertu dut" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Eduki grafiko bortitza" msgid "Grooming or predatory behavior" msgstr "Jokabide harrapari edo grooming-a" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Txat taldea" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Txat taldearen gonbidapen-esteka elkarrizketa-koadroa" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Txat taldea itxita dago" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Txat taldea mutututa dago" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Txat taldearen izena eguneratu da" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Txat taldearen ezarpenak" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Txat taldea irekita dago" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Txat taldea desmututa dago" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Txat taldeak ez daude oraindik eskuragarri" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Txat taldeak eskuragarri daude orain" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Txat taldeak 18 urte edo gehiagoko erabiltzaileentzat bakarrik daude eskuragarri." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Txat taldetan gehienez {0, plural, other {# pertsona}} egon daitezke." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Taldea itxita dago" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Taldearen izena" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Hacking edo sistema erasoak" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Handle luzeegia. Mesedez, saiatu laburrago batekin." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Orain gertatzen ari da" @@ -5446,7 +5744,7 @@ msgstr "Jarduera kaltegarriak edo arrisku handikoak" msgid "Harming or endangering minors" msgstr "Adingabeei kalte egitea edo arriskuan jartzea" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Traola" @@ -5458,8 +5756,8 @@ msgstr "{tag} traola" msgid "Hate speech" msgstr "Gorrotozko diskurtsoa" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Baduzu koderik? <0>Egin klik hemen." @@ -5479,11 +5777,11 @@ msgstr "Bluesky-k 7 egunez gordetzen du gehiegikeria saihesteko, eta gero ezabat #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Laguntza" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Ezkutuko zerrenda" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Ezkutuko zerrenda" msgid "Hide" msgstr "Ezkutatu" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ezkutatu" @@ -5553,18 +5851,18 @@ msgstr "Ezkutatu txat taldearen eguneraketak" msgid "Hide lists" msgstr "Ezkutatu zerrendak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ezkutatu posta niretzat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ezkutatu erantzuna guztientzako" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ezkutatu erantzuna niretzat" @@ -5577,19 +5875,19 @@ msgstr "Ezkutatu txartel hau" msgid "Hide this event" msgstr "Ezkutatu gertaera hau" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ezkutatu post hau?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ezkutatu erantzun hau?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Ezkutatu itzulpena" @@ -5606,7 +5904,7 @@ msgstr "Joera-gaiak ezkutatu?" msgid "Hide trending videos?" msgstr "Joera-bideoak ezkutatu?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ezkutatu erabiltzaile zerrenda" @@ -5620,6 +5918,10 @@ msgstr "Ezkutatu egiaztapen-bereizgarriak" msgid "Hides the content" msgstr "Edukia ezkutatzen du" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, badirudi <0>Aplikazio Pasahitz batekin sinatu duzula. Jaiotze data ezartzeko, zure kontu nagusiaren pasahitzarekin sinatu beharko duzu, edo kontu hau kontrolatzen duenari eskatu hori egin dezala." @@ -5652,19 +5954,15 @@ msgstr "Mmmmm, badirudi arazoak ditugula datu hauek kargatzeko. Ikus behean xehe msgid "Hmmmm, we couldn't load that moderation service." msgstr "Mmmmm, ezin izan dugu kargatu moderazio-zerbitzu hori." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Eutsi! Pixkanaka bideorako sarbidea ematen ari gara, eta ilaran zain zaude oraindik. Begiratu berriro laster!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Geldi hor! Ezaugarri hau ez dago oraindik eskuragarri zuretzat. Mesedez, saiatu berriro geroago." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Hasiera" @@ -5721,7 +6019,7 @@ msgstr "Ulertzen dut" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Bluesky-n nago {0} gisa - zatoz nire bila! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Autazko testua luzea bada, autazko testuaren hedapen egoera aldatzen du" @@ -5757,15 +6055,15 @@ msgstr "Zerrenda hau ezabatzen baduzu, ezin izango duzu berreskuratu." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Zure domeinua baduzu, hori erabil dezakezu handle gisa. Honek zure nortasuna egiaztatzeko aukera ematen dizu. <0>Lortu informazio gehiago hemen." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Zure posta elektronikoa eguneratu behar baduzu, <0>egin klik hemen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Post hau kentzen baduzu, ezin izango duzu berreskuratu." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Zure helbide elektronikoa eguneratzen baduzu, posta elektronikoaren 2FA desgaitu egingo da." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Zure kontuaren jardueraren jakinarazpenak nork jaso ditzakeen mugatu nahi baduzu, hau alda dezakezu <0>Ezarpenak → Pribatutasuna eta Segurtasuna atalean." @@ -5786,23 +6083,23 @@ msgstr "Garatzailea bazara, zure zerbitzari propioa osta dezakezu." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Zure handle edo posta elektronikoa aldatzen saiatzen ari bazara, egin hori desaktibatu aurretik." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Irudia" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Irudia {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Irudia {0} / {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Irudia {0} / {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Irudien cachea garbituta, {0} askatuta" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Irudi galeria, {0} irudi" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Irudia ezkutatuta dago zure moderazio-ezarpenengatik." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Irudia ez dago erabilgarri." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Irudiaren aukerak" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Imitazioa" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Inportatu kontaktuak" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Inportatu Kontaktuak" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Inportatu kontaktuak zure lagunak aurkitzeko" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Inportatua {0}-n" @@ -5881,40 +6182,40 @@ msgstr "Inportatua {0}-n" 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 "Adinari egokitutako esperientzia eskaintzeko, zure jaiotze data jakin behar dugu. Behin bakarrik egingo da, eta zure datuak pribatuan gordeko dira." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Aplikazioan" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Jakinarazpenak aplikazioan" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Aplikazioan, Guztiontzat" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "Aplikazioan, guztiontzat" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Aplikazioan, Jarraitzen duzun jendea" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "Aplikazioan, jarraitzen duzun jendea" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Aplikazioan, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "Aplikazioan, push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Aplikazioan, Push, Guztiontzat" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "Aplikazioan, push, guztiontzat" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Aplikazioan, Push, Jarraitzen duzun jendea" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "Aplikazioan, push, jarraitzen duzun jendea" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Sarrerako ontzia hutsik" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Sarrera-ontzia hutsik!" @@ -5954,6 +6255,10 @@ msgstr "Zirriborroak aurkeztea" msgid "Introducing finding friends via contacts" msgstr "Kontaktuen bidez lagunak aurkitzea aurkeztea" +#: 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 "Gordetako postak, hau da, laster-markak, aurkeztea" @@ -5963,11 +6268,15 @@ msgstr "Gordetako postak, hau da, laster-markak, aurkeztea" msgid "Invalid 2FA confirmation code." msgstr "2FA baieztapen kode baliogabea." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Txat taldeko kode baliogabea." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Handle baliogabea. Mesedez, saiatu beste bat." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Interakzio-ezarpen baliogabeak." @@ -5977,10 +6286,15 @@ msgstr "Interakzio-ezarpen baliogabeak." msgid "Invalid phone number" msgstr "Telefono zenbaki baliogabea" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Salaketa izenburua ez da zuzena" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Bertan behera uzteko eskaera baliogabea." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Egiaztapen-kode baliogabea" @@ -6001,8 +6315,15 @@ msgstr "Gonbidapen kodea" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Gonbidatu Lagunak" @@ -6010,21 +6331,31 @@ msgstr "Gonbidatu Lagunak" msgid "Invite friends <0/>" msgstr "Gonbidatu lagunak <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Gonbidapen-esteka" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Gonbidapen-esteka" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Gonbidapen-esteka sortuta" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Gonbidapen-esteka desgaituta" @@ -6040,11 +6371,16 @@ msgstr "Gonbidapen-esteka gaituta" msgid "Invite people to this starter pack!" msgstr "Gonbidatu jendea abio multzo honetara!" +#: 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 "Gonbidatu lagunak zure gogoko feedak eta jendea jarraitzera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Gonbidatuta" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Lan ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Lan ID: {0}" msgid "Jobs" msgstr "Lanak" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Sartu" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Lanak" msgid "Join Bluesky" msgstr "Sartu Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Sartu txat taldean" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Sartzeko eskaera bertan behera utzi da." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Bat egin elkarrizketan" msgid "Journalism" msgstr "Kazetaritza" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Jarraitu editatzen" @@ -6109,6 +6460,11 @@ msgstr "Jarraitu editatzen" msgid "Keep me posted" msgstr "Mantendu nazazu informatuta" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Kidea bota" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS webgunea" @@ -6143,7 +6499,7 @@ msgstr "Etiketak zure kontuan" msgid "Labels on your content" msgstr "Etiketak zure edukian" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Hizkuntza Ezarpenak" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Azkena" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Lortu informazio gehiago lagunak gonbidatzeari buruz" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Lortu informazio gehiago kontaktuak inportatzeari buruz" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Gehiago ikasi abisu honi buruz" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Ikasi gehiago Bluesky-n egiaztapenari buruz (ingelesez)" @@ -6239,7 +6595,7 @@ msgstr "Ikasi gehiago Bluesky-n egiaztapenari buruz (ingelesez)" msgid "Learn more about what is public on Bluesky." msgstr "Gehiago ikasi Bluesky-n publikoa denari buruz." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Lortu informazio gehiago zure Germ DM estekari buruz" @@ -6252,31 +6608,33 @@ msgstr "Informazio gehiago zure <0>kontuaren ezarpenetan." msgid "Learn more." msgstr "Ikasi gehiago." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Utzi" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Utzi txata" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Utzi elkarrizketa" @@ -6284,13 +6642,14 @@ msgstr "Utzi elkarrizketa" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Utzi elkarrizketa" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Utzi txat taldea" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Utzi txat talde hau" @@ -6299,6 +6658,14 @@ msgstr "Utzi txat talde hau" msgid "Leaving Bluesky" msgstr "Bluesky uzten" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Utzi txat taldea." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "joateko utzi." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Argia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Gogoko" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gogoko ({0, plural, one {gogoko #} other {# gogoko}})" @@ -6346,11 +6713,7 @@ msgstr "10 post gogoko egin" msgid "Like 10 posts to train the Discover feed" msgstr "Aurkitu feeda trebatzeko 10 post gogoko egin" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Gustoko jakinarazpenak" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Feed hau gogoko dut" @@ -6358,8 +6721,8 @@ msgstr "Feed hau gogoko dut" msgid "Like this labeler" msgstr "Etiketatzaile hau gogoko dut" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Gogoko du" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gogoko du {0, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gogoko du {likeCount, plural, one {# erabiltzaileak} other {# erabiltzaileek}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Gogoko" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Zure berposten gustokoak" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Zure berpost jakinarazpenen gustokoak" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Gogoko post honetan" @@ -6409,11 +6768,11 @@ msgstr "Gogoko post honetan" msgid "Linear" msgstr "Lineala" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Esteka arbelean kopiatua" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Zerrenda" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Zerrenda desmutututa" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Zerrendak" @@ -6545,7 +6904,7 @@ msgstr "Zuzeneko gertaera ez ezkutatua" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Zuzeneko gertaerak noizean behin agertzen dira zerbait zirraragarria gertatzen ari denean. Nahi izanez gero, gertaera zehatz hau edo kokapen honetako gertaera guztiak ezkutatu ditzakezu zure aplikazioaren interfazean." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Zuzeneko funtzioa betan dago" @@ -6595,27 +6954,27 @@ msgstr "Posten interakzio-ezarpenak kargatzen..." msgid "Loading..." msgstr "Kargatzen..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Itxi" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Itxi txat taldea" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Txat taldea itxi?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Itxi txat talde hau" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Itxita" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Erregistroa" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social-ren logotipoa" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social-ren logotipoa" @@ -6662,7 +7021,7 @@ msgstr "Badirudi jarraipen feed bat falta zaizula. <0>Egin klik hemen bat gehitz msgid "Love GIFs" msgstr "Maitasun GIFak" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Egin doikuntzak zure kontuko posta elektronikoaren ezarpenetan" @@ -6687,24 +7046,22 @@ msgstr "Kudeatu egiaztapen-ezarpenak" msgid "Manage your muted words and tags" msgstr "Kudeatu mutututa dauden hitzak eta etiketak" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Markatu denak irakurri gisa" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Markatu irakurri gisa" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Denak irakurri gisa markatuta" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Agian beranduago" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "Kidea txat taldetik kendu da." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Kideak" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Kideek txat-historia irakur dezakete oraindik, baina ezin dute mezu berririk bidali." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Aipamen jakinarazpenak" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "aipatutako erabiltzaileak" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Aipamenak" @@ -6761,7 +7118,7 @@ msgstr "Mezua" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Mezua" @@ -6771,26 +7128,26 @@ msgstr "Mezua" msgid "Message {0}" msgstr "Mezua {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Mezua {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mezua ezabatuta" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mezua ezabatuta" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Ezin izan da bidali mezua." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "@{0}-ren mezua: {1}" @@ -6813,19 +7170,19 @@ msgstr "Mezua luzeegia da" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Mezua luzeegia da ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Mezuaren aukerak" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mezuak" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "Pertsona honen mezuak ezkutatuta daude blokeatzen dituzun bitartean." @@ -6838,10 +7195,6 @@ msgstr "Gauerdia" msgid "Minor harassment or bullying" msgstr "Adingabe bati jazarpen edo bullying-a" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Hainbat jakinarazpen" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Engainagarria" @@ -6850,7 +7203,7 @@ msgstr "Engainagarria" msgid "Missing media" msgstr "Falta diren multimediak" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderazioa" @@ -6894,7 +7247,7 @@ msgstr "Moderazio-zerrenda eguneratuta" msgid "Moderation lists" msgstr "Moderazio zerrendak" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderazio Zerrendak" @@ -6903,7 +7256,7 @@ msgstr "Moderazio Zerrendak" msgid "moderation settings" msgstr "moderazio ezarpenak" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderazio-egoerak" @@ -6928,8 +7281,8 @@ msgstr "Hizkuntza gehiago..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Aukera gehiago" @@ -6949,7 +7302,7 @@ msgstr "Pelikulak" msgid "Music" msgstr "Musika" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Mututu" @@ -6965,8 +7318,8 @@ msgstr "Mututu" msgid "Mute {0}" msgstr "Mututu {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Mututu kontua" msgid "Mute accounts" msgstr "Mututu kontuak" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Mututu elkarrizketa" @@ -6994,7 +7347,7 @@ msgstr "Mututu zerrenda" msgid "Mute these accounts?" msgstr "Kontu hauek mututu?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Mututu txat talde hau" @@ -7022,17 +7375,21 @@ msgstr "Mututu hitz hau etiketetan soilik" msgid "Mute this word until you unmute it" msgstr "Mututu hitz hau zuk mututu gabe utzi arte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Mututu haria" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Mututu hitzak eta etiketak" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "Mutututa" @@ -7040,7 +7397,7 @@ msgstr "Mutututa" msgid "Muted accounts" msgstr "Mutututako kontuak" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Mutututako Kontuak" @@ -7062,6 +7419,10 @@ msgstr "Mutututako hitzak eta etiketak" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Mututzea pribatua da. Mutututako kontuek zurekin elkarreragin dezakete, baina ez dituzu haien postak ikusiko ezta haien jakinarazpenik jasoko." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Elkarrekiko txat taldeak" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Joan abio multzora" msgid "Navigates to the next screen" msgstr "Hurrengo pantailara nabigatzen da" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Zure profilera nabigatzen du" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Copyright urraketa, eskaera legal edo araudi-betetze arazo baten berri eman behar duzu?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Berria" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{firstAuthorLink}-rena {postsCount, plural, one {post berria} other {post berriak}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{firstAuthorName}-ren {postsCount, plural, one {post berria} other {post berriak}}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Txat berria" @@ -7163,7 +7525,7 @@ msgstr "Txat berria {0} eta {1}-rekin" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Txat berria {0}, {1}, eta {memberCount, plural, one {{memberCount} gehiagorekin} other {{memberCount} gehiagorekin}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "E-posta helbide berria" @@ -7171,32 +7533,30 @@ msgstr "E-posta helbide berria" #: 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 "Ezaugarri Berria" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Jarraitzaile berrien jakinarazpenak" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Jarraitzaile berriak" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Txat talde berria" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Txat talde berria honekin:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Post berria" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Post berria" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "{firstAuthorLink} eta <0>{additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}-ren post berriak " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "{firstAuthorName} eta {additionalAuthorsCount, plural, one {beste {formattedAuthorsCount}} other {beste {formattedAuthorsCount}}}-ren post berriak" @@ -7262,8 +7622,8 @@ msgstr "Berriak" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Hurrengoa" msgid "Next image" msgstr "Hurrengo irudia" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Jarraitzailerik ez oraindik" @@ -7335,7 +7699,7 @@ msgstr "Ez da GIFik aurkitu \"{query}\"-rentzat." msgid "No GIFs to show right now. Try again in a moment." msgstr "Ez dago GIFik erakusteko une honetan. Saiatu berriro une batean." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Irudirik ez" @@ -7353,8 +7717,8 @@ msgstr "Ez dago zerrendarik" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Jada ez da {0} jarraitzen" @@ -7362,7 +7726,7 @@ msgstr "Jada ez da {0} jarraitzen" msgid "No media yet" msgstr "Oraindik ez dago multimediarik" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Oraindik ez dago mezurik" @@ -7378,12 +7742,12 @@ msgstr "Izenik gabe" msgid "No notifications yet!" msgstr "Oraindik ez dago jakinarazpenik!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Inor ez" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Inor ez" @@ -7399,7 +7763,7 @@ msgstr "Inor ez" msgid "No one but the author can quote this post." msgstr "Egileak beste inork ezin du mezu hau aipatu." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Inork ezin ditu mezuak bidali" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Ez dago emaitzarik" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ez dago emaitzarik" @@ -7446,8 +7810,8 @@ msgstr "Ez dago emaitzarik" msgid "No results for \"{0}\"." msgstr "Emaitzarik ez honentzat: \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Ez da emaitzarik aurkitu" @@ -7509,12 +7873,12 @@ msgstr "Baimenik gabeko irudi intimoak" msgid "Non-sexual Nudity" msgstr "Biluztasun ez sexuala" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Bat ere ez" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Ez dago eskuragarri plataforma honetan." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Ez da aurkitu" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Ez zaude posta argitaratzeko prest? Gorde zure ideiarik onenak Zirriborroetan, une egokia iritsi arte." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Partekatzeari buruzko oharra" @@ -7548,44 +7912,31 @@ msgstr "Oharra: Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daite msgid "Nothing saved yet" msgstr "Ez da ezer gorde oraindik" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Jakinarazpen-ezarpenak" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Jakinarazpen soinuak" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Jakinarazpenak" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Beste guztiaren jakinarazpenak, adibidez, norbait zure abio-multzo baten bidez sartzen denean." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "orain" @@ -7601,7 +7952,7 @@ msgstr "Zenbakia mugikor bat izan behar da" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Itzalita" @@ -7623,9 +7974,10 @@ msgstr "Ados" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Ados" @@ -7648,35 +8000,35 @@ msgstr "<0><1/><2><3/>-n" msgid "Onboarding reset" msgstr "Sartzea berrezarri" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Hautatutako hartzaileetako batek ez ditu txat taldeak onartzen." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Hautatutako hartzaileetako batek blokeatu zaitu eta ezin zaio mezurik bidali." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "GIF bati edo gehiagori aukerazko testua falta zaio." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Irudi bati edo gehiagori aukerazko testua falta zaio." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Hautatutako fitxategi bat edo gehiago ez dira onartzen." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Hautatutako fitxategi bat edo gehiago handiegiak dira. Gehienezko tamaina 100 MB da." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio." @@ -7685,6 +8037,26 @@ msgstr "Bideo bati edo gehiagori aukerazko testua falta zaio." msgid "Only {0} can reply." msgstr "{0}-k bakarrik erantzun dezake." +#. 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:234 +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" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Administratzaileek soilik onartu ditzakete sartzeko eskaerak." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Administratzaileek soilik baztertu ditzakete sartzeko eskaerak." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Jarraitzaileak soilik sartu daitezke txat talde honetan." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Jarraitzen ditudan jarraitzaileak bakarrik" msgid "Only image files are supported" msgstr "Irudi-fitxategiak soilik onartzen dira" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "{0}-k jarraitzen duen jendea bakarrik sar daiteke." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Txataren jabeak jarraitzen duen jendea bakarrik sar daiteke" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT (.vtt) fitxategiak soilik onartzen dira" @@ -7703,6 +8085,10 @@ msgstr "WebVTT (.vtt) fitxategiak soilik onartzen dira" msgid "Oops, something went wrong!" msgstr "Arazoren bat izan da!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Arazoren bat izan da!" msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Ireki abatar sortzailea" @@ -7720,12 +8106,17 @@ msgstr "Ireki abatar sortzailea" msgid "Open camera" msgstr "Ireki kamera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Ireki txata" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Ireki {displayName}-ri txat-kide aukerak" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Ireki elkarrizketa aukerak" @@ -7739,16 +8130,16 @@ msgstr "Ireki marrazki menua" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Ireki emoji-hautatzailea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Ireki feed aukeren menua" @@ -7760,13 +8151,22 @@ msgstr "Ireki emoji zerrenda osoa" msgid "Open Germ DM" msgstr "Ireki Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Ireki txat taldea" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Ireki txat taldearen ezarpenak" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Ireki esteka {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Ireki multzoa" msgid "Open post options menu" msgstr "Ireki post aukeren menua" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Ireki profila" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Ireki ipuin liburuaren orria" msgid "Open system log" msgstr "Ireki sistemaren erregistroa" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Ireki txat talde hau" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Zure postari eduki-abisua gehitzeko elkarrizketa-koadro bat irekitzen du msgid "Opens a dialog to choose who can interact with this post" msgstr "Post honekin nork elkarreragin dezakeen aukeratzeko elkarrizketa-koadro bat irekitzen du" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Arazketa-sarrera baten xehetasun gehigarriak irekitzen ditu" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Kamera irekitzen du gailuan" @@ -7858,22 +8270,24 @@ msgstr "Konpositorea irekitzen du" msgid "Opens device camera" msgstr "Ireki kamera gailua" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Gailuaren galeria irekitzen du gehienez {MAX_IMAGES, plural, other {# irudi}}, edo bideo edo GIF bakarra hautatzeko." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Gailuaren galeria irekitzen du gehienez {MAX_GALLERY_IMAGES, plural, other {# irudi}}, edo bideo edo GIF bakarra hautatzeko." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Fluxua irekitzen du Bluesky kontu berri bat sortzeko" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Fluxua irekitzen du lehendik duzun Bluesky kontuan saioa hasteko" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Irudi osoa irekitzen du" @@ -7890,7 +8304,7 @@ msgstr "Irudi-hautatzailea irekitzen du" msgid "Opens link {0}" msgstr "{0} esteka irekitzen du" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Zuzeneko egoeraren elkarrizketa-koadroa irekitzen du" @@ -7902,15 +8316,23 @@ msgstr "Pasahitza berrezartzeko formularioa irekitzen du" msgid "Opens post language settings" msgstr "Postaren hizkuntza ezarpenak irekitzen ditu" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Profila irekitzen du" +#: 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 "GIF hautatzailearen elkarrizketa-koadroa irekitzen du" +#: 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 "Post-konpositorea irekitzen du" @@ -7919,9 +8341,8 @@ msgstr "Post-konpositorea irekitzen du" msgid "Opens this draft in the composer" msgstr "Zirriborro hau konpositorean irekitzen du" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Profil hau irekitzen du" @@ -7997,12 +8418,12 @@ msgstr "Gure blogeko argitalpena" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Gure moderazio taldeak zure salaketa jaso du." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Gure moderatzaileek salaketak berrikusi dituzte eta Bluesky-ko txatetarako sarbidea desgaitzea erabaki dute." @@ -8010,16 +8431,17 @@ msgstr "Gure moderatzaileek salaketak berrikusi dituzte eta Bluesky-ko txatetara msgid "Owner" msgstr "Jabea" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Jabeak taldea itxi behar du irten aurretik." + +#: 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 "Orria ez da aurkitu" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Orria Ez da Aurkitu" - #. 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" @@ -8068,34 +8490,34 @@ msgstr "Pausatu bideoa" msgid "People" msgstr "Jendea" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "{ownerName}-ri jarraitzen dioten pertsonek berehala bat egin dezakete" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "@{0}-k jarraitzen duen jendea" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "@{0}-ri jarraitzen dion jendea" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Jarraitzen ditudan pertsonak" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Nik jarraitzen ditudan pertsonek berehala bat egin dezakete" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Nik jarraitzen ditudan pertsonek eska dezakete bat egiteko" @@ -8136,13 +8558,17 @@ msgstr "Telefono zenbakia egiaztatuta" msgid "Photography" msgstr "Argazkia" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Helduentzako pentsatutako irudiak." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Ainguratu feeda" @@ -8152,12 +8578,12 @@ msgstr "Ainguratu feeda" msgid "Pin to home" msgstr "Ainguratu hasierara" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Ainguratu Hasierara" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Ainguratu zure profilera" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Ainguratua" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} Hasierara ainguratua" @@ -8236,7 +8662,7 @@ msgstr "Mesedez, zure handle-a aukeratu" msgid "Please choose your password." msgstr "Mesedez, zure pasahitza aukeratu" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Mesedez, egin klik bidali dizugun mezu elektronikoan dagoen estekan zure msgid "Please complete the verification captcha." msgstr "Mesedez, bete egiaztapen-captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Mesedez, berretsi zure helbide elektronikoa bideoak kargatzeko." @@ -8265,14 +8691,14 @@ msgstr "Sartu pasahitza. Gutxienez 8 karaktereko luzera izan behar du." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Mesedez, sartu izen esklusibo bat aplikazio honen pasahitzarentzat edo erabili gure ausaz sortutakoa." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Mesedez, sartu baliozko kode bat." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Mesedez, sartu baliozko helbide elektroniko bat." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Mesedez, sartu baliozko eta ez-aldi baterako helbide elektroniko bat. Baliteke etorkizunean helbide elektroniko honetara sartu behar izatea." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Mesedez, sartu behean <0>{0} helbidera bidali dugun kodea." @@ -8293,7 +8719,7 @@ msgstr "Mesedez, sartu behean <0>{0} helbidera bidali dugun kodea." msgid "Please enter the code you received and the new password you would like to use." msgstr "Mesedez, sartu jaso duzun kodea eta erabili nahi duzun pasahitz berria." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "Mesedez, sartu zure aurreko helbide elektronikora bidali dizugun segurtasun-kodea." @@ -8306,7 +8732,7 @@ msgstr "Mesedez, sartu zure helbide elektronikoa." msgid "Please enter your invite code." msgstr "Mesedez, sartu zure gonbidapen kodea." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Mesedez, sartu zure helbide elektroniko berria." @@ -8323,7 +8749,7 @@ msgstr "Mesedez, sartu zure erabiltzaile-izena" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Mesedez, azaldu zergatik uste duzun etiketa hau gaizki aplikatu duela {0}-k" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mesedez, azaldu zergatik uste duzun zure txatak gaizki desgaitu zirela" @@ -8358,7 +8784,11 @@ msgstr "Mesedez, aukeratu arrazoi bat salaketa honetarako" msgid "Please sign in as @{0}" msgstr "Hasi saioa @{0} gisa" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Mesedez, erabili aplikazio natiboa zure kontaktuak inportatzeko." @@ -8366,7 +8796,7 @@ msgstr "Mesedez, erabili aplikazio natiboa zure kontaktuak inportatzeko." msgid "Please use the native app to sync your contacts." msgstr "Mesedez, erabili aplikazio natiboa zure kontaktuak sinkronizatzeko." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Mesedez, egiazttu zure helbide elektronikoa" @@ -8383,7 +8813,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Posteatu" @@ -8403,12 +8833,12 @@ msgstr "Argazki bat posteatu" msgid "Post a video" msgstr "Bideo bat posteatu" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Posteatu Dena" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Posteatu hala ere" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Post blokeatuta" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0}-ren posta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Posta ezabatuta" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Ezin izan da posta kargatu. Egiaztatu Interneteko konexioa eta saiatu berriro." @@ -8454,18 +8884,22 @@ msgstr "Zuk Ezkututako Posta" msgid "Post interaction settings" msgstr "Postaren elkarrekintza-ezarpenak" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Postaren Interakzio-Ezarpenak" +#: 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 "Postaren hizkuntza hautatzea" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Post esteka" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Postak mututu daitezke testuaren, etiketen edo bietan oinarrituta. Post msgid "Posts hidden" msgstr "Post ezkutuak" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "Postak, Erantzunak" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Engainagarria izan daitekeen esteka" @@ -8525,9 +8954,10 @@ msgstr "Hizkuntza hobetsia" msgid "Press to attempt reconnection" msgstr "Sakatu berriro konektatzen saiatzeko" -#: src/components/Error.tsx:61 +#: 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 "Sakatu berriro saiatzeko" @@ -8536,7 +8966,7 @@ msgstr "Sakatu berriro saiatzeko" msgid "Press to view followers of this account that you also follow" msgstr "Sakatu zuk ere jarraitzen duzun kontu honen jarraitzaileak ikusteko" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Aurrebista" @@ -8559,26 +8989,25 @@ msgstr "Pribatutasuna" msgid "Privacy and security" msgstr "Pribatutasuna eta segurtasuna" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Pribatutasun Politika" @@ -8586,15 +9015,15 @@ msgstr "Pribatutasun Politika" msgid "Privacy violation of a minor" msgstr "Adingabe baten pribatutasun urraketa" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "GIFa prozesatzen..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Bideoa prozesatzen..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Prozesatzen..." @@ -8602,10 +9031,10 @@ msgstr "Prozesatzen..." msgid "profile" msgstr "profila" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profila" @@ -8613,6 +9042,7 @@ msgstr "Profila" msgid "Profile banner placeholder" msgstr "Profileko bannerraren leku-marka" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profila ez da aurkitu" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Argitaratu posta" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Argitaratu postak" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Argitaratu erantzunak" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Argitaratu erantzuna" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Push jakinarazpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, Guztiontzat" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "Push, guztiontzat" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, Jarraitzen duzun jendea" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "Push, jarraitzen duzun jendea" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR kodea zure arbelean kopiatu da!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR kodea deskargatu da!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR kodea gorde da zure kameran!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Aipamen jakinarazpenak" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Aipamen jakinarazpenak" msgid "Quote post" msgstr "Posta aipatu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Aipatutako posta berriro erantsi da" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Aipatutako posta behar bezala kendu da" @@ -8711,12 +9138,12 @@ msgstr "Post aipamenak desgaituta daude" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Aipamenak" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Post honen aipamenak" @@ -8728,16 +9155,16 @@ msgstr "Saiakera muga gainditu da. Gehiegitan saiatu zara handle-a aldatzen denb msgid "Rate limit exceeded. Please try again later." msgstr "Tarifa-muga gainditu da. Mesedez, saiatu berriro geroago." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Erantsi berriro aipamena" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Gaitu berriro gonbidapen-esteka" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Gaitu berriro esteka" @@ -8745,8 +9172,8 @@ msgstr "Gaitu berriro esteka" msgid "React with {emoji}" msgstr "Erreakzionatu {emoji}-rekin" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Erreakzioak" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "irakurri bilaketa-iragazkiak nola erabili" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Irakurri blogeko posta" @@ -8812,11 +9239,11 @@ msgstr "Benetako jendea." msgid "Reason for appeal" msgstr "Apelazio arrazoia" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Jaso aplikazio barruko jakinarazpenak" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Jaso push jakinarazpenak" @@ -8841,17 +9268,31 @@ msgstr "Gomendatua" msgid "Reconnect" msgstr "Berriro konektatu" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Freskatu orria ikusteko." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Baztertu" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Baztertu" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Baztertu txateatzeko eskaera" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Baztertu sartzeko eskaera" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Berriz kargatu elkarrizketak" @@ -8863,6 +9304,8 @@ msgstr "Berriz kargatu elkarrizketak" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Kendu {displayName} txat taldetik" msgid "Remove {displayName} from starter pack" msgstr "Kendu {displayName} abio multzotik" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Kendu {displayName} txat talde honetatik" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Kendu {displayName}?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Kendu {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Kendu {historyItem}" msgid "Remove account" msgstr "Kendu kontua" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Kendu kontaktu guztiak" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Kendu eranskina" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Kendu Abatarra" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Kendu Bannerra" @@ -8914,8 +9362,9 @@ msgstr "Kendu Bannerra" msgid "Remove caption file" msgstr "Kendu azpitituluen fitxategia" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Kendu kapsulatzea" @@ -8929,12 +9378,12 @@ msgstr "Kendu feeda" msgid "Remove feed?" msgstr "Feeda kendu?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Kendu txatetik" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Kendu gordetako postetatik" msgid "Remove from your feeds?" msgstr "Zure feedetatik kendu?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Kendu irudia" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Kendu berposta" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Kendu iradokizuna" @@ -9009,11 +9458,11 @@ msgstr "Kendu egiaztapena" msgid "Remove your verification for this account?" msgstr "Zure egiaztapena kendu kontu honi?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Egileak kenduta" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Zuk kenduta" @@ -9035,7 +9484,7 @@ msgstr "Gordetako postetatik kendua" msgid "Removed from starter pack" msgstr "Abio multzotik kenduta" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Zuri erantzunda" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Erantzunak" @@ -9104,14 +9552,14 @@ msgstr "Erantzunak desgaituta daude" msgid "Replies to this post are disabled." msgstr "Mezu honen erantzunak desgaituta daude." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Erantzun" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Erantzuna ({0, plural, one {erantzun #} other {# erantzun}})" @@ -9125,10 +9573,6 @@ msgstr "Erantzuna Hariaren Egileak Ezkutatuta" msgid "Reply Hidden by You" msgstr "Erantzuna Zuk Ezkutatuta" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Erantzun jakinarazpenak" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Erantzun ezarpenak hariaren egileak aukeratzen ditu" @@ -9137,18 +9581,18 @@ msgstr "Erantzun ezarpenak hariaren egileak aukeratzen ditu" msgid "Reply sorting" msgstr "Erantzunak ordenatzea" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Erantzunen ikusgarritasuna eguneratu da" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Erantzuna behar bezala ezkutatu da" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Salatu" @@ -9157,20 +9601,20 @@ msgstr "Salatu" msgid "Report account" msgstr "Salatu kontua" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Salatu elkarrizketa" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Salaketaren elkarrizketa-koadroa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Salatu feeda" @@ -9179,12 +9623,12 @@ msgstr "Salatu feeda" msgid "Report list" msgstr "Salatu zerrenda" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Salatu mezua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Salatu posta" @@ -9199,8 +9643,8 @@ msgstr "Salatu abio multzoa" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Salaketa bidalia" @@ -9213,7 +9657,7 @@ msgstr "Salatu elkarrizketa hau" msgid "Report this feed" msgstr "Salatu feed hau" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Salatu txat talde hau" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Salatu zerrenda hau" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Salatu zuzeneko emankizun hau" @@ -9256,10 +9700,6 @@ msgstr "Berpostatu" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Berposta ({0, plural, one {berpost #} other {# berpost}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Berpost jakinarazpenak" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Zuk berpostatua" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Berpostak" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Berpostatu post hau" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Zure berposten berpostak" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Zure berposten berpost jakinarazpenak" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Eskatu txat talderako sarbidea" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Eskaera onartua." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Eskaera kodea" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Eskaera baztertua." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Sartzeko eskaera" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Eskaera eginda" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Eskaerak" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Sartzeko eskaerak" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Eskatu aukerazko testua argitaratu aurretik" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Eskatu posta-kode bat zure kontuan saioa hasteko." @@ -9328,7 +9791,17 @@ msgstr "Beharrezkoa hornitzaile honetarako" msgid "Required in your region" msgstr "Beharrezkoa zure eskualdean" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Bertan behera utzi eskaera" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Ezeztatu txat taldean sartzeko eskaera" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Berbidali" @@ -9373,8 +9846,8 @@ msgstr "Berrezarri sartze-egoera" msgid "Reset password" msgstr "Berrezarri pasahitza" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Kontaktuak berriro sinkronizatu" @@ -9391,17 +9864,18 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Azken ekintza berriro saiatzen da, errorea izan duena" msgid "Retry" msgstr "Saiatu berriro" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Saiatu berriro salaketa aukerak kargatzen" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Itzuli aurreko orrialdera" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Hasierako orrira itzultzen da" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Aurreko orrialdera itzultzen da" @@ -9451,10 +9925,10 @@ msgstr "GIF tristeak" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gorde aldaketak" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Gorde aldaketak?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Gorde zirriborroa" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Gorde zirriborroa?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Gorde irudia" msgid "Save new handle" msgstr "Gorde handle berria" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Gorde QR kodea" @@ -9518,13 +9994,13 @@ msgstr "Gorde QR kodea" msgid "Save these options for next time" msgstr "Gorde aukera hauek hurrengo baterako" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Gorde nire feedetan" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Gordeta" @@ -9534,25 +10010,25 @@ msgstr "Gordeta" msgid "Saved Feeds" msgstr "Gordetako Feedak" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Gordetako Postak" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Zure feedetan gordeta" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Esan kaixo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Esan kaixo norbaiti" @@ -9560,6 +10036,16 @@ msgstr "Esan kaixo norbaiti" msgid "Scam" msgstr "Iruzurra" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Zientzia" @@ -9576,18 +10062,18 @@ msgstr "Joan eskuinera" msgid "Scroll to top" msgstr "Joan gora" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Bilatu" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Bilatu @{0}-ren postak" @@ -9662,12 +10148,12 @@ msgstr "Bilatu hizkuntzak" msgid "Search my posts" msgstr "Bilatu nire postak" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Bilatu postak" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Bilatu profilak" msgid "Search..." msgstr "Bilatu..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Profilak bilatzen ditu" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Segurtasun urratsa behar da" @@ -9759,7 +10245,7 @@ msgstr "Aukeratu {langName}" msgid "Select a color" msgstr "Aukeratu kolore bat" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Aukeratu arrazoi bat" @@ -9828,7 +10314,7 @@ msgstr "Aukeratu GIF-a" msgid "Select GIF \"{0}\"" msgstr "Aukeratu GIF-a \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Hautatu txat taldeko kideak" @@ -9850,7 +10336,7 @@ msgstr "Aukeratu hizkuntza..." msgid "Select languages" msgstr "Aukeratu hizkuntzak" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Aukeratu moderazio zerbitzua" @@ -9904,11 +10390,11 @@ msgstr "Aukeratu zure interesak beheko aukeretatik" msgid "Select your preferred language for translations in your feed." msgstr "Aukeratu zure feedean itzulpenak egiteko nahi duzun hizkuntza." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Hautatu zure gogoko jakinarazpen kanalak" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Ez da onartzen hainbat euskarri mota hautatzea." @@ -9921,9 +10407,9 @@ msgstr "Autolesioak edo jokabide arriskutsuak" msgid "Send code" msgstr "Bidali kodea" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Bidali mezu elektronikoa" @@ -9935,11 +10421,11 @@ msgstr "Bidali mezu elektronikoa" msgid "Send error report" msgstr "Bidali errore salaketa" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Bidali iritzia" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Bidali mezua" @@ -9952,7 +10438,7 @@ msgstr "Bidali posta {name}-ri" msgid "Send post to..." msgstr "Bidali posta hona..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Bidali salaketa {title}-ra" @@ -9960,7 +10446,7 @@ msgstr "Bidali salaketa {title}-ra" msgid "Send the message from your phone" msgstr "Bidali mezua zure telefonotik" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Bidali mezu zuzenaren bidez" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Bidalia hemen: {0}" @@ -10015,14 +10501,14 @@ msgstr "Ezarri zure jaiotze data behean eta berehala argitaratu eta arakatzen ja msgid "Sets email for password reset" msgstr "Pasahitza berrezartzeko posta elektronikoa ezartzen du" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Besteen jardueraren ezarpenak" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Gustoko jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Aipamen jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Jarraitzile berrien jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Beste guztiaren jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Zure berpost gustokoen jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Zure berpost berposten jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Aipamen jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Erantzun jakinarazpenen ezarpenak" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Berpost jakinarazpenen ezarpenak" @@ -10079,16 +10565,19 @@ msgstr "Sexu-jarduera edo biluztasun erotikoa." msgid "Sexually Suggestive" msgstr "Sexu Lizuna" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Partekatu" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Partekatu hala ere" @@ -10097,16 +10586,21 @@ msgstr "Partekatu hala ere" msgid "Share author DID" msgstr "Partekatu egilearen DID" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Partekatu irudia" +#: 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 "Partekatu esteka" @@ -10114,6 +10608,11 @@ msgstr "Partekatu esteka" msgid "Share link dialog" msgstr "Partekatu estekaren elkarrizketa-koadroa" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Partekatu posta hemen:// URI" msgid "Share QR code" msgstr "Partekatu QR kodea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Partekatu feed hau" @@ -10142,8 +10641,8 @@ msgstr "Partekatu abio multzo hau eta lagundu jendea zure Bluesky komunitatean s #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Partekatu hemen..." @@ -10151,7 +10650,7 @@ msgstr "Partekatu hemen..." msgid "Share your contacts to find friends" msgstr "Partekatu zure kontaktuak lagunak aurkitzeko" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Partekatutako Hobespenen Probatzailea" @@ -10167,16 +10666,16 @@ msgstr "Erakutsi aukerazko testua" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Erakutsi hala ere" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Erakutsi automatizazio etiketa" @@ -10197,8 +10696,8 @@ msgstr "Erakutsi pertsonalizazio-aukerak" msgid "Show group chat updates" msgstr "Erakutsi txat taldearen eguneraketak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Erakutsi honelako gutxiago" @@ -10219,8 +10718,8 @@ msgstr "Erakutsi zuzeneko gertaerak zure Discover Feedean" msgid "Show More" msgstr "Erakutsi gehiago" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Erakutsi horrelako gehiago" @@ -10246,8 +10745,8 @@ msgstr "Erakutsi erantzunak" msgid "Show replies as" msgstr "Erakutsi erantzunak honela" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Erakutsi erantzuna guztientzako" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Erakutsi feedetako abisua eta iragazkia" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Erakutsi zuzenean zaudenean" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Post hau noiz sortu zenari buruzko informazioa erakusten du" @@ -10297,15 +10796,17 @@ msgstr "Edukia erakusten du" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Hasi saioa edo sortu kontua" msgid "Sign in or create your account to join the conversation!" msgstr "Hasi saioa edo sortu zure kontua elkarrizketan sartzeko!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Hasi saioa gonbidapena onartzeko." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Hasi saioa zerrendan ez dagoen kontuan" @@ -10337,8 +10842,12 @@ msgstr "Hasi saioa zerrendan ez dagoen kontuan" msgid "Sign in to Bluesky or create a new account" msgstr "Hasi saioa Bluesky-n edo sortu kontu berri bat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Hasi saioa txat talde honetarako sarbidea eskatzeko." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Hasi saioa posta ikusteko" @@ -10348,9 +10857,9 @@ msgstr "Hasi saioa posta ikusteko" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Amaitu saioa" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Amaitu saioa" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Saioa amaitu?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Post hutsak saltatu?" @@ -10405,7 +10914,7 @@ msgstr "Saltatu sarrera eta hasi zure kontua erabiltzen" msgid "Skip to next step" msgstr "Hurrengo urratsera joan" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "diapositiba" @@ -10413,7 +10922,7 @@ msgstr "diapositiba" msgid "Smaller" msgstr "Txikiagoa" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Gogorarazpena atzeratzen du" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Norbaitek taldea utzi du" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Norbaitek erreakzionatu du {0}" @@ -10487,17 +10996,22 @@ msgstr "Norbait kendua izan da" msgid "Someone was removed from the group" msgstr "Norbait taldetik kendu da" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Zerbait berria dago hemen" + +#: 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 "Zerbait ez zegoen ondo salatzen saiatzen ari zaren datuekin. Mesedez, jarri laguntzarekin harremanetan." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Zerbait gaizki joan da" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Arazoren bat izan da!" msgid "Something went wrong. Please try again in a moment." msgstr "Arazoren bat izan da. Mesedez, saiatu berriro geroago." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Arazoren bat izan da. Mesedez, saiatu berriro." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Zerbait gaizki? Jakinaraziguzu." @@ -10564,11 +11078,16 @@ msgstr "Spam-a edo bestelako jokabide edo engainu faltsuak" msgid "Sports" msgstr "Kirolak" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Hasi elkarrizketa bat, eta hemen agertuko da." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Txat berria hasi" @@ -10582,17 +11101,17 @@ msgstr "Hasi jendea gehitzen" msgid "Start adding people!" msgstr "Hasi jendea gehitzen!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Txata hasi" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Txat berria hasi {displayName}-rekin" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Abio Multzoa" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Ipuin liburua" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Twitch-en erreproduzitzen ari zara? Ezarri zure zuzeneko egoera Bluesky-n zure avatarrari txapa bat gehitzeko. Sakatzean jendea zuzenean zure erreprodukziora eramango du." @@ -10671,8 +11190,8 @@ msgstr "Twitch-en erreproduzitzen ari zara? Ezarri zure zuzeneko egoera Bluesky- #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Bidali" @@ -10684,9 +11203,9 @@ msgstr "Bidali apelazioa" msgid "Submit Appeal" msgstr "Bidali Apelazioa" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Bidali salaketa" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Harpidetu" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "Harpidetu {0}-n" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "Harpidetu {publicationTitle}-ra {0}-n" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Arrakasta" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Arrakasta!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Txat taldean sartu zara!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Behar bezala egiaztatu da" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Iradokitakoa" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Ilunabarra" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Laguntza" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Ezaugarri honen laguntza ez dago oraindik zure herrialdean gaituta! Mesedez, saiatu berriro geroago." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Etenda dauden kontuek ezin dute txat taldean parte hartu." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Etenda dauden kontuek ezin dute txatean parte hartu." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Aldatu kontua" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Kontuak aldatu" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Aldatu {0}-ra" @@ -10824,11 +11347,15 @@ msgstr "Sistemaren erregistroa" msgid "Tags only" msgstr "Etiketak soilik" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Sakatu xehetasunak ikusteko" @@ -10854,33 +11381,51 @@ msgstr "Sakatu eguneratze hauek ulertu eta onartzen dituzula onartzeko eta Blues msgid "Tap to close context menu" msgstr "Ukitu testuinguru-menua ixteko" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Sakatu gonbidapen-esteka hau kopiatzeko" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Sakatu baztertzeko" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Sakatu txat talde honetan berehala sartzeko" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Sakatu txat talde hau irekitzeko" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Sakatu ezabatzeko" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Sakatu zure {0} erreakzioa ezabatzeko" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "Sakatu txat talde honetan sartzeko sarbidea eskatzeko" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "Sakatu berriro saiatzeko" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Sakatu {0} erreakzio erakusteko" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Sakatu erreakzio guztiak erakusteko" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Sakatu erreakzioak ikusteko" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Zerbitzu-Baldintzak" @@ -10939,7 +11484,7 @@ msgstr "Testua eta etiketak" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Testua idazteko eremua" @@ -10981,9 +11526,9 @@ msgstr "Hori da guztia, lagunok!" msgid "That's everything!" msgstr "Hori da dena!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Kontua zurekin elkarreragin ahal izango du desblokeatu ondoren." @@ -11049,6 +11594,11 @@ msgstr "Hurrengo ezarpenak zure lehenetsitakoak bezala erabiliko dira post berri msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Zure eskualdeko legeek heldua zarela egiaztatzea eskatzen dute funtzio batzuetara sartzeko. Sakatu informazio gehiago lortzeko." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "Kideen mugara iritsi da." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Erantzuten ari zaren posta {suggestedLanguageName} hizkuntzan idatzita dagoela markatu du egileak. <0>{suggestedLanguageName} hizkuntzan erantzun nahi al duzu?" @@ -11057,10 +11607,10 @@ msgstr "Erantzuten ari zaren posta {suggestedLanguageName} hizkuntzan idatzita d msgid "The Privacy Policy has been moved to <0/>" msgstr "Pribatutasun-politika <0/>-ra eraman da" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "Hautatutako bideoa {videoSize} MB baino handiagoa da. Mesedez, saiatu berriro fitxategi txikiago batekin." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "Hautatutako bideoa {VIDEO_MAX_SIZE_MB} MB baino handiagoa da. Mesedez, saiatu berriro fitxategi txikiago batekin." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Gaia" 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 "Muga bat dago zure jaiotze data aldatzeko maiztasunean. Baliteke egun bat edo bi itxaron behar izatea berriro eguneratu aurretik." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Ez dago gonbidapen-estekarik txat talde honetarako." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Arazo bat izan da GIFak kargatzen. Egiaztatu konexioa eta saiatu berriro." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Arazo bat izan da postak eskuratzean. Sakatu hemen berriro saiatzeko." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Arazo bat izan da feedak eguneratzean. Egiaztatu Interneteko konexioa eta saiatu berriro." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Arazo bat egon da! {0}" @@ -11221,6 +11774,14 @@ msgstr "Hauek dira zure ezarpen lehenetsiak" msgid "These settings only apply to the Following feed." msgstr "Ezarpen hauek Jarraitzen feedari soilik aplikatzen zaizkio." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "Txat honen jabeak dira" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} hau markatu da:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Apelazio hau <0>{sourceName} helbidera bidaliko da." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Apelazio hau Bluesky-ren moderazio zerbitzura bidaliko da." @@ -11263,7 +11824,7 @@ msgstr "Apelazio hau Bluesky-ren moderazio zerbitzura bidaliko da." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Egile honek bere postak saioa hasita duten pertsonentzat bakarrik ikusgai jartzea aukeratu du." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Botoi honek Germ DM aplikazioa irekitzeko aukera ematen die beste batzuei mezu bat bidaltzeko. Bere ikusgarritasuna Germ DM aplikaziotik kudea dezakezu, edo zure Bluesky kontua Germ DM-tik guztiz deskonektatu dezakezu beheko botoian klik eginez." @@ -11271,11 +11832,21 @@ msgstr "Botoi honek Germ DM aplikazioa irekitzeko aukera ematen die beste batzue msgid "This chat has ended" msgstr "Txat hau amaitu da" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Txat hau beteta dago" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Txat hau itxita dago" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Txat hau deskonektatu da" @@ -11310,7 +11881,11 @@ msgstr "Eduki hau ez dago erabilgarri inplikatutako erabiltzaileetako batek best msgid "This content is not viewable without a Bluesky account." msgstr "Eduki hau ezin da ikusi Bluesky konturik gabe." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Elkarrizketa hau blokeatuta dago." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Elkarrizketa ezabatuta edo desaktibatuta dagoen kontu batekin da. Sakatu aukerak ikusteko" @@ -11318,7 +11893,7 @@ msgstr "Elkarrizketa ezabatuta edo desaktibatuta dagoen kontu batekin da. Sakatu msgid "This draft will be permanently deleted." msgstr "Zirriborro hau betiko ezabatuko da." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Helbide elektroniko hau zure kontuarekin lotuta dago dagoeneko." @@ -11356,11 +11931,15 @@ msgstr "Feed hau hutsik dago." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Feed hau jada ez dago sarean. <0>Ezagutu erakusten ari gara horren ordez." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Handle hau erreserbatuta dago. Mesedez, saiatu beste bat." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Irudi hau ezin izan da erabili. Saiatu beste formatu batekin, adibidez, msgid "This information is private and not shared with other users." msgstr "Informazio hau pribatua da eta ez da beste erabiltzaileekin partekatzen." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Gonbidapen-esteka hau desgaitu egin da." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Gonbidapen-esteka hau baliogabea da" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Hau egoera huts bat da" @@ -11377,7 +11964,7 @@ msgstr "Hau egoera huts bat da" msgid "This is not a valid link" msgstr "Esteka hau ez da baliozkoa" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Etiketa honek munduari jakinarazten dio kontu hau automatizatua dela. Aktibatuta badago, etiketa hau kontuaren izenaren ondoan agertuko da haien profilean eta postetan. Edozein unetan aktibatu edo desaktibatu daiteke." @@ -11410,13 +11997,17 @@ msgstr "Zuk sortutako zerrenda honen izenak edo deskribapenak Bluesky-ren komuni msgid "This list is empty." msgstr "Zerrenda hau hutsik dago." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Mezu hau ezkutatuta dago" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Mezu hau ezkutatuta dago erabiltzaile hau blokeatzen ari zarelako." @@ -11434,7 +12025,7 @@ msgstr "Pertsona honek blokeatzen zaitu" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Post honek <0>{0}-n sortu dela dio, baina Bluesky-k <1>{1}-n ikusi zuen lehen aldiz." @@ -11450,23 +12041,24 @@ msgstr "Post hau saioa hasi duten erabiltzaileentzat bakarrik ikus daiteke." msgid "This post was deleted by its author" msgstr "Post hau egileak ezabatu du" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Post honen egileak aipamenak desgaitu ditu." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Profil hau saioa hasitako erabiltzaileek soilik ikus dezakete. Saioa hasita ez dagoen jendearentzat ez da ikusgai egongo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Erantzun hau zure hariaren beheko aldean ezkutuko atal batean ordenatuko da eta hurrengo erantzunen jakinarazpenak mututuko ditu, bai zuretzako bai besteentzako." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Pantaila hau taldeko elkarrizketetarako bakarrik dago eskuragarri." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Erabiltzaile honek ez du jarraitzailerik." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Erabiltzaile honek blokeatu zaitu eta ezin zaio mezurik bidali." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Erabiltzaile honek txata desgaitu du eta ezin zaio mezurik bidali." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Honek atzeraezin ezabatuko du zure Bluesky kontua <0>{currentHandle} msgid "This will remove @{0} from the quick access list." msgstr "Honek @{0} sarbide azkarreko zerrendatik kenduko du." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Honek zure posta aipatutako post honetatik kenduko du erabiltzaile guztientzat, eta leku-marka batekin ordezkatuko du." @@ -11574,7 +12166,7 @@ msgstr "Hariaren Hobespenak" msgid "Threaded" msgstr "Harikatua" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Harien Hobespenak" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Posta elektronikoaren 2FA metodoa desgaitzeko, mesedez egiaztatu helbide elektronikorako sarbidea duzula." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Zure posta elektronikoaren 2FA metodoa desgaitzeko, mesedez egiaztatu <0>{0}-ra sarbidea duzula" @@ -11646,16 +12238,16 @@ msgstr "Joan gora" msgid "Top replies first" msgstr "Goiko erantzunak lehenik" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Gaia" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Itzuli" @@ -11667,8 +12259,8 @@ msgstr "Itzulia" msgid "Translating" msgstr "Itzultzen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Itzultzen…" @@ -11702,7 +12294,7 @@ msgstr "Joera Bideoak" msgid "Trolling" msgstr "Trolling-a" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Konfiantza harremanetatik, komunitateetatik eta partekatutako testuinguruetatik sortzen da, beraz, <0>egiaztatzaile fidagarriak ere gaitzen ari gara: egiaztapena zuzenean jaulki dezaketen erakundeak." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Saiatu beste bilaketa-termino batekin edo <0>irakurri bilaketa-iragazkiak nola erabili." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Saiatu berriro" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Saiatu berriro" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Probatu Google Translate" +#: 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 "Telebista" @@ -11763,13 +12369,17 @@ msgstr "Ezin da zure zerbitzuarekin harremanetan jarri. Mesedez, egiaztatu zure msgid "Unable to delete" msgstr "Ezin da ezabatu" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Ezin dira eskuratu sarrera eskaerak." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Ezin da hautatutako hartzailerik aurkitu." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Ezin da hautatutako hartzailea aurkitu." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Ez dago eskuragarri" msgid "Unavailable feed information" msgstr "Feedaren informazioa ez dago erabilgarri" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Desblokeatu" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Desblokeatu" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Desblokeatu {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desblokeatu kontua" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Desblokeatu kontua?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Kontua Desblokeatu?" @@ -11837,8 +12452,8 @@ msgstr "Desblokeatu zerrenda" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Desegin" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desegin berposta ({0, plural, one {berpost #} other {# berpost}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} jarraitzen utzi" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Utzi kontua jarraitzeari" @@ -11872,7 +12487,7 @@ msgstr "Utzi kontua jarraitzeari" msgid "Unfollows the user" msgstr "Erabiltzailea jarraitzeari uzten dio" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Zoritxarrez, harpidetutako etiketatzaileetako batek ere ez du onartzen salaketa mota hau." @@ -11884,14 +12499,6 @@ msgstr "Zoritxarrez, zure profilean gorde duzun jaiotze datak gazteegi egiten za msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Zoritxarrez, adierazi duzun adinak adierazten du ez zarela adin nagusikoa zure eskualdean Bluesky-ra sartzeko." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Gonbidapena kendu" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Gonbidapena kendu {displayName}-ri txat talde honetatik" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Egiaztatzaile ezezaguna" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Ez gogoko" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Ez gogoko ({0, plural, one {gogoko #} other {# gogoko}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Ireki txata" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Ireki txat talde hau" @@ -11939,14 +12546,14 @@ msgstr "Desmututu" msgid "Unmute {0}" msgstr "{0} ez mututu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Desmututu kontua" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Elkarrizketa ez mututu" @@ -11955,12 +12562,12 @@ msgstr "Elkarrizketa ez mututu" msgid "Unmute list" msgstr "Desmututu zerrenda" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Desmututu txat talde hau" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Haria ez mututu" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Aingura kendu" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feedari aingura kendu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Aingura kendu hasieratik" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Aingura kendu profiletik" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Moderazio zerrendari aingura kendu" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0}-ri aingura kendu Hasieratik" @@ -12030,14 +12637,18 @@ msgstr "Harpidetza kendu etiketatzaile honi" msgid "Unsubscribed from list" msgstr "Zerrendatik harpidetza kenduta" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Onartzen ez den arbeleko edukia" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Bideo mota bateraezina: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Eguneratu" msgid "Update <0>{displayName} in Lists" msgstr "Eguneratu <0>{displayName} Zerrendetan" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Eguneratu aplikazioa" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Eguneratu posta elektronikoa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Eguneratu gonbidapen-esteka" @@ -12065,11 +12680,15 @@ msgstr "Eguneratu gonbidapen-esteka" msgid "Update to {domain}" msgstr "Eguneratu {domain}ra" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Eguneratu zure aplikazioa azken bertsiora parte hartzeko!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Eguneratu zure aplikazioa" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Eguneratu zure aplikazioa ikusteko." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Eguneratu zure posta elektronikoa" @@ -12080,17 +12699,17 @@ msgstr "Eguneratu zure posta elektronikoa" msgid "Update your location" msgstr "Eguneratu zure kokapena" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Ezin izan da eguneratu aipamenaren eranskina" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Ezin izan da eguneratu erantzunen ikusgaitasuna" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Kargatu argazki bat ordez" @@ -12098,39 +12717,40 @@ msgstr "Kargatu argazki bat ordez" msgid "Upload a text file to:" msgstr "Kargatu testu-fitxategi bat hona:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Kargatu Kameratik" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Kargatu Fitxategietatik" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Kargatu Liburutegitik" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "GIFa kargatzen..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Irudiak kargatzen..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Estekaren miniatura kargatzen..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Bideoa kargatzen..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "erabiltzailea" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Erabiltzailea blokeatuta" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "{0}-ren erabiltzaile zerrenda" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "{0}-ren Erabiltzaile Zerrenda" @@ -12255,12 +12875,12 @@ msgstr "<0>@{0}-k jarraitzen dituen erabiltzaileak" msgid "users following <0>@{0}" msgstr "<0>@{0} erabiltzaileak jarraitzen" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Nik jarraitzen ditudan erabiltzaileak" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Nik jarraitzen ditudan erabiltzaileak" @@ -12277,7 +12897,7 @@ msgstr "Egiaztapena huts egin du, saiatu berriro." msgid "Verification settings" msgstr "Egiaztapen-ezarpenak" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Egiaztapen-Ezarpenak" @@ -12304,8 +12924,8 @@ msgstr "Egiaztatu berriro" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Egiaztatu kodea" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Egiaztatu DNS erregistroa" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Egiaztatu posta elektroniko kodea" @@ -12349,7 +12969,7 @@ msgstr "Kontu hau egiaztatu?" msgid "Verify your age" msgstr "Egiaztatu zure adina" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "{0} bertsioa" msgid "Video" msgstr "Bideoa" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Ezin izan da prozesatu bideoa" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Bideo Feeda" @@ -12419,7 +13039,7 @@ msgstr "Ez da bideoa aurkitu." msgid "Video settings" msgstr "Bideo ezarpenak" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Bideoa kargatuta" @@ -12432,18 +13052,18 @@ msgstr "Bideoa: {0}" msgid "Videos" msgstr "Bideoak" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "Bideoek 3 minutu baino gutxiago iraun behar dute." -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Ikusi" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "Ikusi {0}" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Ikusi {0}-ren profila" @@ -12467,20 +13087,15 @@ msgstr "Ikusi {0}-ren profila" msgid "View {0}’s profile" msgstr "Ikusi {0}-ren profila" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Ikusi {displayName}-ren profila" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "Ikusi {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "Ikusi @{0}-ren profila" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Ikusi blokeatutako erabiltzailearen profila" @@ -12503,10 +13118,18 @@ msgstr "Ikusi xehetasunak" msgid "View full thread" msgstr "Ikusi hari osoa" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Ikusi sarrerako txat talde-eskaerak" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Ikusi sarrerako eskaerak" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Ikusi txat talde honetan sartzeko sarrerako eskaerak" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "Ikusi etiketa hauei buruzko informazioa" @@ -12522,7 +13145,7 @@ msgstr "Ikusi gehiago" msgid "View more trending videos" msgstr "Joera-bideo gehiago ikusi" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Ikusi posta" @@ -12539,10 +13162,10 @@ msgstr "Ikusi profila" msgid "View profile banner" msgstr "Ikusi profileko bannerra" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Ikusi argitalpena" @@ -12550,7 +13173,7 @@ msgstr "Ikusi argitalpena" msgid "View the avatar" msgstr "Ikusi abatarra" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Ikusi txat talde honetarako gonbidapen-esteka" @@ -12563,7 +13186,7 @@ msgstr "Ikusi @{0}-k eskaintzen duen etiketa-zerbitzua" msgid "View this user's verifications" msgstr "Ikusi erabiltzaile honen egiaztapenak" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Ikusi feed hau gogoko duten erabiltzaileak" @@ -12596,8 +13219,8 @@ msgstr "Ikusi zuk mutututako kontuak" msgid "View your verifications" msgstr "Ikusi zure egiaztapenak" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Irudi osoa ikusten du" @@ -12640,8 +13263,8 @@ msgstr "Edukia ohartarazi" msgid "Warn content and filter from feeds" msgstr "Edukia ohartarazi eta iragazi feedetatik" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Ikusi orain" @@ -12665,11 +13288,15 @@ msgstr "Ezin izan dugu etiketa horren emaitzarik aurkitu." msgid "We couldn't find any results for that topic." msgstr "Ezin izan dugu gai horren emaitzarik aurkitu." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Ezin izan dugu kargatu elkarrizketa hau" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Ezin izan ditugu kargatu elkarrizketa honen sarrera eskaerak" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Ezin izan ditugu kargatu elkarrizketa honen ezarpenak" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Gutxienez bi interes hautatzea gomendatzen dugu." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Esteka bat duen mezu elektroniko bat bidali dugu <0>{0} helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Ezin izan dugu zehaztu bideoak kargatzeko baimena duzun ala ez. Mesedez, saiatu berriro." @@ -12744,12 +13371,12 @@ msgstr "Konexio arazo batengatik ezin izan dugu egiaztapena jaso. Geroago irits msgid "We will let you know when your account is ready." msgstr "Zure kontua prest dagoenean jakinaraziko dizugu." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Zure lagunak aurkitzen ditugunean jakinaraziko dizugu." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Esteka bat duen mezu elektroniko bat bidaliko dugu <0>{0} helbidera. Egin klik gainean helbide elektronikoaren egiaztapen prozesua osatzeko." @@ -12779,12 +13406,12 @@ msgstr "Arazoak ditugu zure kontuaren adinaren berme prozesua abiarazteko. Mesed msgid "We're having network issues, try again" msgstr "Sare arazoak ditugu, saiatu berriro" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Sare arazoak ditugu, saiatu berriro" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentitzen dugu! Erantzuten ari zaren posta ezabatu da." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Sentitzen dugu! Ezin dugu aurkitu bilatzen ari zaren orria." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Nola deitu nahi diozu zure abio multzoari?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Zer da?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Egiaztapen-marka bat sakatzen duzunean, egiaztapena zein erakundek eman duten ikusiko duzu." @@ -12878,7 +13505,7 @@ msgstr "Egiaztapen-marka bat sakatzen duzunean, egiaztapena zein erakundek eman msgid "Who can interact with this post?" msgstr "Nork elkarreragin dezake post honekin?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Nork eta nola batu daitekeen txat talde honetara" @@ -12887,13 +13514,13 @@ msgstr "Nork eta nola batu daitekeen txat talde honetara" msgid "Who can reply" msgstr "Nork erantzun dezake" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Nork egiaztatu dezake?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Aiba!" @@ -12939,19 +13566,19 @@ msgstr "Zergatik berrikusi behar da abio multzo hau?" msgid "Why should this user be reviewed?" msgstr "Zergatik berrikusi behar da erabiltzaile hau?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Erabiltzaile hau blokeatu eta/edo elkarrizketa hau ezabatu nahi duzu?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Erabiltzaile hau blokeatu eta/edo elkarrizketa hau utzi nahi duzu?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "Zirriborro gisa gorde nahi duzu geroago editatzeko?" @@ -12960,12 +13587,12 @@ msgstr "Zirriborro gisa gorde nahi duzu geroago editatzeko?" msgid "Write a post" msgstr "Idatzi post bat" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Idatzi posta" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Idatzi zure erantzuna" @@ -12978,7 +13605,8 @@ msgstr "Idazleak" msgid "Wrong DID returned from server. Received: {0}" msgstr "Zerbitzariak DID ez zuzena erantzun du. Jasotakoa: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Elkarrizketa mota okerra" @@ -13005,11 +13633,11 @@ msgstr "Bai, ezabatu nire kontua" msgid "Yes, delete this starter pack" msgstr "Bai, ezabatu abio multzo hau" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Bai, kendu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Bai, ezkutatu" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "{0} blokeatzen ari zara" @@ -13068,7 +13696,7 @@ msgstr "Zuzenean zaude" msgid "You are no longer live" msgstr "Jada ez zaude zuzenean" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Ezin dituzu bideoak kargatu." @@ -13117,21 +13745,30 @@ msgstr "Beti aukera dezakezu baimena kendu eta zure datuak ezabatzea" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Txat-jakinarazpenek soinua izan dezaketen ala ez aukera dezakezu aplikazioaren txat-ezarpenetan" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Etengabeko elkarrizketekin jarrai dezakezu aukeratzen duzun ezarpena edozein dela ere." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Orain pertsona zehatzek posteatzen dutenean jakinarazpenak jasotzea aukera dezakezu. Norbaitengandik puntualki eguneratzeak jaso nahi badituzu, joan haren profilera eta bilatu kanpai ikono berria jarraitu botoiaren ondoan." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Orain pasahitz berriarekin saioa hasi dezakezu." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu." @@ -13139,11 +13776,11 @@ msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "1000 karaktere arteko zirriborroak soilik gorde ditzakezu. Post hau baztertu nahi duzu zirriborroak ikusi aurretik?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "GIF bakarra hauta dezakezu aldi berean." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Bideo bakarra hauta dezakezu aldi berean." @@ -13155,10 +13792,10 @@ msgstr "Zure kontua berriro aktiba dezakezu saioa hasten jarraitzeko. Zure profi msgid "You can read chat history but can’t send new messages." msgstr "Txat-historia irakurri dezakezu, baina ezin duzu mezu berririk bidali." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Guztira gehienez {MAX_IMAGES, plural, other {# irudi}} hauta ditzakezu." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "Guztira gehienez {MAX_IMAGES, plural, other {# irudi}} hauta ditzakezu." msgid "You can update this later from your settings." msgstr "Geroago eguneratu dezakezu hau zure ezarpenetan." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "Ezin duzu {EMOJI_REACTION_LIMIT, plural, one {emoji erreakzio #} other {# emoji erreakzio}} baino gehiago gehitu" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Ezin duzu txat talde bat sortu oraindik." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "Ez duzu gordetako feedik." msgid "You got here first" msgstr "Zu lehenengo iritsi zinen hona" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Aurretik kendu zaituzte talde honetatik eta ezin zara sartu esteka hau erabiliz." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "Zirriborro honetan gorde gabeko aldaketak dituzu, gorde nahi dituzu?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "Txataren jabea izan behar duzu kide bat kentzeko." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Gutxienez 13 urte izan behar dituzu Bluesky erabiltzeko. Irakurri gure <0>Zerbitzu Baldintzak informazio gehiago lortzeko." @@ -13332,11 +13982,12 @@ msgstr "Gutxienez 13 urte izan behar dituzu Bluesky erabiltzeko. Irakurri gure < msgid "You must be following at least seven other people to generate a starter pack." msgstr "Gutxienez beste zazpi pertsona jarraitu behar dituzu abio multzo bat sortzeko." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Zure argazki liburutegirako sarbidea eman behar duzu QR kodea gordetzeko" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Zure multimedia liburutegirako sarbidea baimendu behar duzu." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "Txat honen jabea zara" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Erreakzionatu duzu {0}" @@ -13368,8 +14023,13 @@ msgstr "{0} erreakzionatu duzu {target}-i" msgid "You recently changed your birthdate" msgstr "Duela gutxi aldatu duzu jaiotze data" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Sartzea eskatu duzu" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Zure kontu guztietatik aterako zara." @@ -13378,11 +14038,11 @@ msgstr "Zure kontu guztietatik aterako zara." msgid "You will no longer receive notifications for {0}" msgstr "Aurrerantzean ez duzu {0}-ren jakinarazpenik jasoko" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Aurrerantzean ez duzu hari honen jakinarazpenik jasoko" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Hari honen jakinarazpenak jasoko dituzu orain" @@ -13390,12 +14050,12 @@ msgstr "Hari honen jakinarazpenak jasoko dituzu orain" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "\"Berrezarpen kodea\" duen mezu elektroniko bat jasoko duzu. Sartu kode hori hemen, eta ondoren sartu pasahitz berria." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Ezin izango zara berriro sartu gonbidatuta ez bazaude." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Zu: {message}" @@ -13429,6 +14089,10 @@ msgstr "{0}-ri buruzko jakinarazpenak jasotzen hasiko zara!" msgid "You'll stay updated with these feeds" msgstr "Feed hauekin eguneratuta egongo zara" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Ilaran zaude" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Gehienezko zirriborro kopurura iritsi zara" @@ -13475,11 +14139,11 @@ msgstr "Eskaera kopuru maximoa gainditu duzu. Mesedez, saiatu berriro geroago." msgid "You've reached the start of the active content." msgstr "Eduki aktiboaren hasierara iritsi zara." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (byte gehiegi)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bideoak kargatzeko eguneko mugara iritsi zara (bideo gehiegi)" @@ -13499,10 +14163,18 @@ msgstr "Zure kontua ezabatu da, ikusi arte! ✌️" msgid "Your account has been suspended" msgstr "Zure kontua bertan behera utzi da" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Zure kontuak ez du oraindik bideoak kargatzeko adina. Mesedez, saiatu berriro geroago." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Zure kontua berriegia da" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Zure kontuaren biltegia, datu publikoen erregistro guztiak dituena, \"CAR\" fitxategi gisa deskargatu daiteke. Fitxategi honek ez du barne multimediarik, hala nola irudiak, edo zure datu pribatuak, bereizita eskuratu behar direnak." @@ -13519,7 +14191,7 @@ msgstr "Zure apelazioa bidali da. Zure apelazioa onartzen bada, mezu elektroniko msgid "Your birth date" msgstr "Zure jaiotze-data" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Zure txatak desaktibatu dira" @@ -13527,11 +14199,11 @@ msgstr "Zure txatak desaktibatu dira" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Zure aukera etorkizuneko esteketarako gogoratuko da. Edozein unetan alda dezakezu ezarpenetan." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Zure kontaktua {firstAuthorLink} Bluesky-n dago" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Zure kontaktua {firstAuthorName} Bluesky-n dago" @@ -13561,7 +14233,7 @@ msgstr "Zure helbide elektronikoa" msgid "Your email appears to be invalid." msgstr "Zure helbide elektronikoa ez dirudi zuzena denik." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Zure helbide elektronikoa ez da oraindik egiaztatu. Mesedez, egiaztatu zure helbide elektronikoa Bluesky-ren funtzio guztiez gozatzeko." @@ -13582,7 +14254,7 @@ msgstr "Zure jarraitzen feeda hutsik dago! Jarraitu erabiltzaile gehiago zer ger msgid "Your full handle will be <0>@{0}" msgstr "Zure handle osoa <0>@{0} da" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Zure kokapena eguneratu da." msgid "Your muted words" msgstr "Zure mutututako hitzak" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Zure izena, abatarra eta txat taldearen izena guztientzat ikusgai egongo dira." +#: 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 "Zure izena, abatarra, txat taldearen izena eta kide kopurua denek ikusgai izango dute." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Zure posta bidali da" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Zure postak bidali dira" @@ -13635,7 +14307,7 @@ msgstr "Zure postak bidali dira" msgid "Your preferred language" msgstr "Zure hizkuntza hobetsia" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Zure profileko argazkia" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Zure erantzuna bidali da" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Zure salaketa <0>{0}-ra bidaliko da." @@ -13661,7 +14333,7 @@ msgstr "Zure salaketa <0>{0}-ra bidaliko da." msgid "Your selected interests help us serve you content you care about." msgstr "Aukeratutako interesek gogoko duzun edukia zerbitzatzen laguntzen digute." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 9ac1df16f3..3ea0693c32 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(sisältää upotettua sisältöä)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# tykkäys} other {# tykkäystä}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuutti} other {# minuuttia}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# kuukausi} other {# kuukautta}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# sekunti} other {# sekuntia}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0><1>tekstissä ja tunnisteissa" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Käyttäjän {0} profiilikuva" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0} min" msgid "{0}s" msgstr "{0} s" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {tunti} other {tuntia}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuutti} other {minuuttia}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} seurasivat sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} uudelleenjulkaisivat julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} ja <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} rekisteröityivät aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} seurasi sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} seurasi sinua takaisin" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} tykkäsi mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} tykkäsi julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} uudelleenjulkaisi julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} rekisteröityi aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} seurasivat sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} tykkäsivät julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} uudelleenjulkaisivat julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} ja {additionalAuthorsCount, plural, one {{formattedAuthorsCount} muu} other {{formattedAuthorsCount} muuta}} rekisteröityivät aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} seurasi sinua" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} seurasi sinua takaisin" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} tykkäsi mukautetusta syötteestäsi" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} tykkäsi julkaisustasi" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} uudelleenjulkaisi julkaisusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} rekisteröityi aloituspakettisi avulla" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} seurattua" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Käyttäjälle {handle} ei voi viestiä" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} ja {2, plural, one {# muu} other {# muuta}} sisä #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seuraaja} other {seuraajaa}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seurattu} other {seurattua}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {tykkäys} other {tykkäystä}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {lainaus} other {lainausta}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {uudelleenjulkaisu} other {uudelleenjulkaisua}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "Listan <0>{0} jäsenet" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Saavutettavuus" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Saavutettavuusasetukset" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Saavutettavuusasetukset" msgid "Account" msgstr "Tili" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Tili estetty" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Tiliä seurattu" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Tili poistettu pikakäytöstä" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Tilin esto poistettu" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Tilin seuraaminen lopetettu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Tilin mykistys poistettu" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Lisää" @@ -999,8 +1094,8 @@ msgstr "Lisää tili" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Lisää tekstivastine (valinnainen)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Lisää toinen tili" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Lisää toinen julkaisu" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Lisää sovellussalasana" msgid "Add App Password" msgstr "Lisää sovellussalasana" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "Lisää käyttäjiä" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Kaikki" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Salli pääsy yksityisviesteihisi" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Kirjautuneena jo sisään käyttäjänä @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Tekstivastine" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Tekstivastine kuvailee kuvia sokeille ja heikkonäköisille käyttäjille sekä lisää kontekstia kaikille." @@ -1387,7 +1486,7 @@ msgstr "On tapahtunut virhe" msgid "An error occurred" msgstr "Tapahtui virhe" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Videota pakattaessa tapahtui virhe." @@ -1421,7 +1520,8 @@ msgstr "Videota ladattaesa tapahtui virhe. Yritä uudelleen." msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "QR-koodia tallennettaessa tapahtui virhe!" @@ -1432,11 +1532,11 @@ msgstr "QR-koodia tallennettaessa tapahtui virhe!" msgid "An error occurred while trying to follow all" msgstr "Yritettäessä seurata kaikkia tapahtui virhe" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Ongelma, joka ei sisälly näihin vaihtoehtoihin" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Yritettäessä avata chattia ilmenei ongelma" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Ilmeni ongelma. Yritä uudelleen." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Sovellussalasanojen nimien on oltava vähintään 4 merkkiä pitkiä" msgid "App passwords" msgstr "Sovellussalasanat" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Sovellussalasanat" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Valitus lähetetty" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Valita tästä päätöksestä" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arkistoitu ajankohdasta {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Arkistoitu julkaisu" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Haluatko varmasti poistaa sovellussalasanan ”{0}”?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Haluatko varmasti poistaa tämän aloituspaketin?" msgid "Are you sure you want to discard your changes?" msgstr "Haluatko varmasti hylätä tekemäsi muutokset?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Haluatko varmasti poistua tästä keskustelusta? Viestisi poistuvat sinulta mutta eivät toiselta keskusteluun osallistuneelta." +#: src/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 "Haluatko varmasti poistaa tämän syötteistäsi?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Haluatko varmasti hylätä tämän julkaisun?" @@ -1724,8 +1838,8 @@ msgstr "Taide" msgid "Artistic or non-erotic nudity." msgstr "Taiteellinen tai ei-eroottinen alastomuus." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Toista videot ja GIF-animaatiot automaattisesti" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Takaisin" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "Ennen aloituspaketin luomista sinun on vahvistettava sähköpostiosoitteesi." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Syntymäpäivä" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Estä" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Estä tili" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Estetäänkö tili?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Estä tilit" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Estä lista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "Estetäänkö nämä tilit?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "" @@ -1948,7 +2059,7 @@ msgctxt "button" msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Estetty" @@ -1964,14 +2075,12 @@ msgstr "Estetty" msgid "Blocked accounts" msgstr "Estetyt tilit" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Estetyt tilit" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi." @@ -1987,7 +2096,7 @@ msgstr "Estäminen ei estä tätä merkitsijää asettamasta merkintöjä tilill msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Estäminen on julkista. Estetyt tilit eivät voi vastata ketjuihisi, mainita sinua tai olla muuten vuorovaikutuksessa kanssasi." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Estäminen ei estä merkintöjen asettamista tilillesi, mutta se estää tätä tiliä vastaamasta ketjuihisi tai olemasta muuten vuorovaikutuksessa kanssasi." @@ -2000,7 +2109,7 @@ msgstr "Blogi" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ei voi vahvistaa väitetyn päivämäärän oikeellisuutta." @@ -2029,7 +2138,7 @@ msgstr "Bluesky on parempi kavereiden kanssa!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky valitsee joukon suositeltuja tilejä verkostosi käyttäjistä." msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky ei näytä profiiliasi eikä julkaisujasi kirjautumattomille käyttäjille. Muut sovellukset eivät välttämättä noudata tätä pyyntöä. Tämä ei tee tilistäsi yksityistä." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "Kirjat" 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" @@ -2137,24 +2254,34 @@ msgstr "Yritys" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Käyttäjältä {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Käyttäjältä <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Luomalla tilin hyväksyt <0>käyttöehdot." msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Peruuta" @@ -2248,9 +2384,9 @@ msgstr "Peruuta tilin käyttöönpalautus ja kirjaudu ulos" msgid "Cancel search" msgstr "Peruuta haku" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Estetyn käyttäjän kanssa ei voi olla vuorovaikutuksessa" @@ -2264,7 +2400,7 @@ msgstr "Tekstitykset (.vtt)" msgid "Captions & alt text" msgstr "Tekstitykset ja tekstivastine" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Vaihda käyttäjätunnus" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chatti" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chatti mykistetty" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Chatin asetukset" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Chatin asetukset" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chatti mykistetty" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Valitse tämä väri profiilikuvaksesi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähetystä" @@ -2594,28 +2745,30 @@ msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähe #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Napsauta tästä yrittääksesi uudelleen epäonnistunutta viestin lähe #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Sulje" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Sulje aktiivinen valintaikkuna" @@ -2647,6 +2800,10 @@ msgstr "Sulje aktiivinen valintaikkuna" msgid "Close alert" msgstr "Sulje hälytys" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Sulje alavalikko" @@ -2657,8 +2814,10 @@ msgstr "Sulje alavalikko" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Sulje valintaikkuna" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Sulje kuva" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Sulje tämä valintaikkuna" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Sulkee salasanan päivityshälytyksen" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Pienennä käyttäjäluettelo" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Pienentää tämän ilmoituksen käyttäjäluettelon" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Sarjakuvat" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Yhteisöohjeet" @@ -2740,12 +2915,12 @@ msgstr "Suorita haaste loppuun" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Laadi uusi julkaisu" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "Laadi vastaus" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Pakataan videota…" @@ -2780,7 +2955,7 @@ msgstr "Määritetään <0>moderointiasetuksissa." msgid "Confirm" msgstr "Vahvista" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Ota yhteys tukeen" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Sisältö ja media" msgid "Content and media" msgstr "Sisältö ja media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Sisältö ja media" @@ -2889,7 +3064,7 @@ msgstr "Kontekstivalikon tausta-alue. Napsauta sulkeaksesi valikon." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Jatka ketjua…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Jatka seuraavaan vaiheeseen" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Keskustelu poistettu" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Keskustelu poistettu" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepöydälle" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopioitu!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopioi" @@ -2997,6 +3184,11 @@ msgstr "Kopioi DID" msgid "Copy host" msgstr "Kopioi hosti" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Kopioi listan linkki" msgid "Copy link to post" msgstr "Kopioi julkaisun linkki" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Kopioi viestin teksti" @@ -3037,12 +3229,12 @@ msgstr "Kopioi viestin teksti" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Kopioi julkaisun teksti" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Kopioi QR-koodi" @@ -3052,11 +3244,15 @@ msgstr "Kopioi TXT-tietueen arvo" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Tekijänoikeuskäytäntö" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Chatista ei voitu poistua" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Syötettä ei voitu ladata" @@ -3100,7 +3308,11 @@ msgstr "Syötettä ei voitu ladata" msgid "Could not load list" msgstr "Listaa ei voitu ladata" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Chattia ei voitu mykistää" @@ -3108,11 +3320,19 @@ msgstr "Chattia ei voitu mykistää" msgid "Could not process your video" msgstr "Videota ei voitu käsitellä" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Luo" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Luo aloituspaketti" @@ -3174,13 +3394,14 @@ msgstr "Luo aloituspaketti minulle" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Luo tili" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Luo sen sijaan profiilikuva" @@ -3206,7 +3427,7 @@ msgstr "Luo sen sijaan profiilikuva" msgid "Create another" msgstr "Luo toinen" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Luo uusi tili" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Luo raportti: {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Luotu {0}" @@ -3270,6 +3492,10 @@ msgstr "Tekijä on estetty" msgid "Culture" msgstr "Kulttuuri" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tumma teema" msgid "Date of birth" msgstr "Syntymäaika" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Oletus" msgid "Default icons" msgstr "Oletuskuvakkeet" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Poista sovellussalasana" msgid "Delete app password?" msgstr "Poistetaanko sovellussalasana?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "Poista chatin deklaraatiotietue" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Poista itseltäni" @@ -3399,11 +3633,11 @@ msgstr "Poista itseltäni" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Poista viesti" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Poista viesti itseltäni" @@ -3411,9 +3645,9 @@ msgstr "Poista viesti itseltäni" msgid "Delete my account" msgstr "Poista tilini" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Poista julkaisu" @@ -3430,17 +3664,17 @@ msgstr "Poistetaanko aloituspaketti?" msgid "Delete this list?" msgstr "Poistetaanko tämä lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Poistetaanko tämä julkaisu?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Poistettu" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Poistettu tili" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Kuvaileva tekstivastine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Irrota lainaus" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Irrotetaanko lainausjulkaisu?" @@ -3507,13 +3741,13 @@ msgstr "Valintaikkuna: säädä, kuka voi olla vuorovaikutuksessa tämän julkai msgid "Dim" msgstr "Himmeä" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Poista sähköpostiin perustuva kaksivaiheinen tunnistautuminen käytös msgid "Disable haptic feedback" msgstr "Poista haptinen palaute käytöstä" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,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:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Hylkää" msgid "Discard changes?" msgstr "Hylätäänkö muutokset?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Hylätäänkö julkaisu?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Löydä uusia syötteitä" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Hylkää" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Hylkää virhe" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "Ei sisällä alastomuutta." msgid "Domain verified!" msgstr "Verkkotunnus vahvistettu!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Valmis" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Kaksoisnapauta sulkeaksesi valintaikkunan" @@ -3737,19 +3981,14 @@ msgstr "Kaksoisnapauta sulkeaksesi valintaikkunan" 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 "Lataa Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Lataa CAR-tiedosto" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Lataa CAR-tiedosto" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Kesto:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "esim. maija" @@ -3823,9 +4079,8 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla." msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Muokkaa" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Muokkaa profiilikuvaa" @@ -3847,19 +4102,19 @@ msgstr "Muokkaa profiilikuvaa" msgid "Edit Feeds" msgstr "Muokkaa syötteitä" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Muokkaa kuvaa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Muokkaa vuorovaikutusasetuksia" @@ -3868,7 +4123,16 @@ msgstr "Muokkaa vuorovaikutusasetuksia" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Muokkaa syötteitäni" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Muokkaa käyttäjiä" @@ -3912,12 +4171,12 @@ msgstr "Muokkaa julkaisun vuorovaikutusasetuksia" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Muokkaa profiilia" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Muokkaa profiilia" @@ -3925,7 +4184,8 @@ msgstr "Muokkaa profiilia" msgid "Edit starter pack" msgstr "Muokkaa aloituspakettia" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Muokkaa, kuka voi vastata" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Muokkaa aloituspakettiasi" @@ -3971,7 +4231,7 @@ msgstr "Sähköpostiosoite" msgid "Email Resent" msgstr "Sähköpostiviesti lähetetty uudelleen" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpä msgid "Embedded video player" msgstr "Upotettu videosoitin" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Ota käyttöön" @@ -4025,7 +4285,7 @@ msgstr "Ota aikuissisältö käyttöön" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ 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:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Syötä salasana" msgid "Enter a word or tag" msgstr "Syötä sana tai tunniste" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Virhe" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Kaikilta" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Kaikilta" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Kaikilta" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Sulkee pois seuraamasi käyttäjät" msgid "Exit fullscreen" msgstr "Poistu koko näytön tilasta" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Laajenna tekstivastine" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Laajenna käyttäjäluettelo" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Laajenna tai pienennä julkaisu, johon olit vastaamassa" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Odotettiin URIn resolvoituvan tietueeseen" @@ -4277,10 +4536,10 @@ msgstr "Siveetön tai mahdollisesti häiritsevä media." msgid "Explicit sexual images." msgstr "Siveettömän seksuaaliset kuvat." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Ulkoisten median asetukset" @@ -4331,18 +4587,22 @@ msgstr "Ulkoisten median asetukset" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Käyttäjätunnuksen vaihtaminen epäonnistui. Yritä uudelleen." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Sovellussalasanan luominen epäonnistui. Yritä uudelleen." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Aloituspaketin luominen epäonnistui" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Viestin poistaminen epäonnistui" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Julkaisun poistaminen epäonnistui, yritä uudelleen" @@ -4394,24 +4655,24 @@ msgstr "Julkaisun poistaminen epäonnistui, yritä uudelleen" msgid "Failed to delete starter pack" msgstr "Aloituspaketin poistaminen epäonnistui" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Syötteiden asetusten lataaminen epäonnistui" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Ehdotettujen syötteiden lataaminen epäonnistui" msgid "Failed to load suggested follows" msgstr "Ehdotettujen seurattavien lataaminen epäonnistui" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Julkaisun kiinnittäminen epäonnistui" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Valituksen lähettäminen epäonnistui. Yritä uudelleen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Ketjun mykistäminen tai mykistyksen poistaminen epäonnistui, yritä uudelleen" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Syötteiden päivittäminen epäonnistui" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Asetusten päivittäminen epäonnistui" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Syöte" @@ -4649,7 +4914,7 @@ msgstr "Syöte" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Syöte käyttäjältä {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Syötteen valikko" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Palaute" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Syötteet" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Viimeistely" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Etsi tilejä seurattavaksi" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Etsi käyttäjiä seurattavaksi" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Seuraa" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Seuraa tiliä {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Seuraa tiliä" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Seuraa takaisin" @@ -4916,7 +5183,7 @@ msgstr "Seuraa takaisin" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Seuraajina <0>{0} ja <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seuraajina <0>{0}, <1>{1} ja {2, plural, one {# muu} other {# muuta}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Tuntemasi käyttäjän @{0} seuraajat" @@ -4960,10 +5231,10 @@ msgstr "Tuntemasi seuraajat" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Seuratut" @@ -4977,12 +5248,12 @@ msgstr "Seuratut" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Seurataan käyttäjää {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "Seuratut-syötteen asetukset" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Seuratut-syötteen asetukset" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Seuraa sinua" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Seuraa sinua" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Fontti" @@ -5065,11 +5333,16 @@ msgstr "Unohtuiko salasana?" msgid "Forgot?" msgstr "Unohditko?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "Syötteestä <0/>" msgid "Generate a starter pack" msgstr "Generoi aloituspaketti" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Näytä ohje" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Anna profiilillesi kasvot" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Palaa takaisin" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Palaa takaisin" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Palaa edelliseen vaiheeseen" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Palaa kotinäkymään" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Palaa kotinäkymään" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Palaa kotinäkymään" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Siirry keskusteluun käyttäjän {0} kanssa" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Siirry seuraavaan" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Siirry profiiliin" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Siirry käyttäjän profiiliin" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Käyttäjätunnus liian pitkä. Kokeile lyhyempää." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Aihetunniste" @@ -5458,8 +5756,8 @@ msgstr "Aihetunniste {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Ohje" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Piilotettu lista" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Piilotettu lista" msgid "Hide" msgstr "Piilota" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Piilota" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Piilota julkaisu minulta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Piilota vastaus kaikilta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Piilota vastaus minulta" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Piilotetaanko tämä julkaisu?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Piilotetaanko tämä vastaus?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Piilotetaanko trendaavat aiheet?" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Piilota käyttäjäluettelo" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Hmm, näiden tietojen lataamisessa vaikuttaa olevan vaikauksia. Katso li msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, emme pystyneet lataamaan tätä moderointipalvelua." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Odottakaa! Annamme vähitellen pääsyn videoon, ja olet yhä odotusjonossa. Tarkista tilanne pian uudelleen!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Koti" @@ -5721,7 +6019,7 @@ msgstr "Ymmärrän" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Jos tekstivastine on pitkä, laajentaa tai pienentää sen" @@ -5757,15 +6055,15 @@ msgstr "Jos poistat tämän listan, et voi palauttaa sitä." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Jos sinulla on oma verkkotunnus, voit käyttää sitä käyttäjätunnuksenasi. Näin voit itse vahvistaa henkilöllisyytesi. <0>Lue lisää täältä." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Jos poistat tämän julkaisun, et voi palauttaa sitä." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Jos yrität vaihtaa käyttäjätunnuksesi tai sähköpostiosoitteesi, tee se ennen kuin poistat tilin käytöstä." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Kuva" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Virheellinen käyttäjätunnus. Kokeile toista." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Virheellinen vahvistuskoodi" @@ -6001,8 +6315,15 @@ msgstr "Kutsukoodi" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Kutsu käyttäjiä tähän aloituspakettiin!" +#: 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 "Kutsu kavereitasi seuraamaan suosikkisyötteitäsi ja -käyttäjiäsi" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Työpaikan tunnus: {0}" @@ -6083,6 +6419,11 @@ msgstr "Työpaikan tunnus: {0}" msgid "Jobs" msgstr "Työpaikat" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Työpaikat" msgid "Join Bluesky" msgstr "Liity Blueskyhin" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Liity keskusteluun" msgid "Journalism" msgstr "Journalismi" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Tilisi merkinnät" msgid "Labels on your content" msgstr "Sisältösi merkinnät" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Kieliasetukset" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Uusimmat" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Lue lisää tästä varoituksesta" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Lue lisää siitä, mikä on julkista Blueskyssa." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Lue lisää." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Poistu" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Poistu chatista" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Poistu keskustelusta" @@ -6284,13 +6642,14 @@ msgstr "Poistu keskustelusta" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Poistu keskustelusta" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Poistutaan Blueskysta" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "jäljellä." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Vaalea" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Tykkää" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})" @@ -6346,11 +6713,7 @@ msgstr "Tykkää 10 julkaisusta" msgid "Like 10 posts to train the Discover feed" msgstr "Tykkää 10 julkaisusta kouluttaaksesi Discover-syötettä" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Tykkää tästä syötteestä" @@ -6358,8 +6721,8 @@ msgstr "Tykkää tästä syötteestä" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Tykänneet" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Tykännyt {0, plural, one {# käyttäjä} other {# käyttäjää}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Tykkäykset" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Tämän julkaisun tykkäykset" @@ -6409,11 +6768,11 @@ msgstr "Tämän julkaisun tykkäykset" msgid "Linear" msgstr "Lineaarisesti" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listan mykistys poistettu" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listat" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Ladataan…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Loki" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo käyttäjältä @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo käyttäjältä <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Nähtävästi sinulta puuttuu seurattujen syöte. <0>Napsauta tästä li msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Hallinnoi mykistettyjä sanoja ja tunnisteita" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Merkitse luetuksi" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Media, joka voi olla häiritsevää tai sopimatonta joillekin yleisöille." +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "mainitut käyttäjät" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Maininnat" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Lähetä viesti käyttäjälle {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Viesti poistettu" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Viesti poistettu" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "Viesti on liian pitkä" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Viestit" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderointi" @@ -6894,7 +7247,7 @@ msgstr "Moderointilista päivitetty" msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderointilistat" @@ -6903,7 +7256,7 @@ msgstr "Moderointilistat" msgid "moderation settings" msgstr "moderointiasetukset" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderointitilat" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Lisää valintoja" @@ -6949,7 +7302,7 @@ msgstr "Elokuvat" msgid "Music" msgstr "Musiikki" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Mykistä" @@ -6965,8 +7318,8 @@ msgstr "Mykistä" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Mykistä tili" msgid "Mute accounts" msgstr "Mykistä tilit" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Mykistä keskustelu" @@ -6994,7 +7347,7 @@ msgstr "Mykistä lista" msgid "Mute these accounts?" msgstr "Mykistetäänkö nämä tilit?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Mykistä tämä sana vain tunnisteissa" msgid "Mute this word until you unmute it" msgstr "Mykistä tämä sana kunnes poistat sen mykistyksen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Mykistä ketju" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Mykistä sanoja ja tunnisteita" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Mykistetyt tilit" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Mykistetyt tilit" @@ -7062,6 +7419,10 @@ msgstr "Mykistetyt sanat ja tunnisteet" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Mykistäminen on yksityistä. Mykistetyt tilit voivat edelleen olla vuorovaikutuksessa kanssasi, mutta et näe niiden julkaisuja etkä saa ilmoituksia niiltä." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Siirtyy seuraavalle näytölle" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Siirtyy profiiliisi" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Ei se mitään, luo minulle käyttäjätunnus" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Uusi" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Uusi chatti" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Uusi julkaisu" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Uusi julkaisu" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Uutiset" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Seuraava" msgid "Next image" msgstr "Seuraava kuva" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Et enää seuraa käyttäjää {0}" @@ -7362,7 +7726,7 @@ msgstr "Et enää seuraa käyttäjää {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Ei vielä viestejä" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Ei vielä ilmoituksia!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Vain tekijä voi lainata tätä julkaisua." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Ei tulosta" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Ei tuloksia" @@ -7446,8 +7810,8 @@ msgstr "Ei tuloksia" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Tuloksia ei löytynyt" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Ei-seksuaalinen alastomuus" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Ei löydy" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Huomio jakamisesta" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ilmoitusasetukset" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Ilmoitusasäänet" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Ilmoitukset" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nyt" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Pois" @@ -7623,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Selvä" @@ -7648,35 +8000,35 @@ msgstr "palvelussa<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Käyttöönoton nollaus" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "Ainakin yhdeltä GIF-animaatiolta puuttuu tekstivastine." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Ainakin yhdeltä kuvalta puuttuu tekstivastine." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine." @@ -7685,6 +8037,26 @@ msgstr "Ainakin yhdeltä videolta puuttuu tekstivastine." msgid "Only {0} can reply." msgstr "Vain {0} voi vastata." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Vain kuvatiedostoja tuetaan" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Vain WebVTT (.vtt) -tiedostoja tuetaan" @@ -7703,6 +8085,10 @@ msgstr "Vain WebVTT (.vtt) -tiedostoja tuetaan" msgid "Oops, something went wrong!" msgstr "Hups, jokin meni vikaan!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Hups, jokin meni vikaan!" msgid "Oops!" msgstr "Hups!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Avaa profiilikuvan luontityökalu" @@ -7720,12 +8106,17 @@ msgstr "Avaa profiilikuvan luontityökalu" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Avaa keskustelun valinnat" @@ -7739,16 +8130,16 @@ msgstr "Avaa alavalikko" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Avaa emojinvalitsin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Avaa syötteen valinnat" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Avaa linkki {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Avaa julkaisun valinnat" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Avaa storybook-sivu" msgid "Open system log" msgstr "Avaa järjestelmäloki" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Avaa valintaikkunan sisältövaroituksen lisäämiseksi julkaisuusi" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Avaa vienetsintäkirjauksen lisätiedot" @@ -7838,7 +8250,7 @@ msgstr "Avaa vienetsintäkirjauksen lisätiedot" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Avaa laitteen kameran" @@ -7858,22 +8270,24 @@ msgstr "Avaa editorin" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Avaa vaiheet uuden Bluesky-tilin luomiseksi" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Avaa vaiheet olemassa olevaan Bluesky-tiliisi kirjautumiseksi" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Avaa salasanan palautuslomakkeen" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Avaa tämän profiilin" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderaattorimme ovat arvioineet raportteja ja päättäneet estää pääsysi Blueskyn chatteihin." @@ -8010,14 +8431,15 @@ msgstr "Moderaattorimme ovat arvioineet raportteja ja päättäneet estää pä msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Sivua ei löydy" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Sivua ei löydy" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Pysäytä video" msgid "People" msgstr "Käyttäjät" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Käyttäjät, joita @{0} seuraa" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Käyttäjät, jotka seuraavat tiliä @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Valokuvaus" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Aikuisille tarkoitetut kuvat." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Kiinnitä syöte" @@ -8152,12 +8578,12 @@ msgstr "Kiinnitä syöte" msgid "Pin to home" msgstr "Kiinnitä kotinäkymään" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Kiinnitä kotinäkymään" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Kiinnitä profiiliisi" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Kiinnitetty" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Kiinnitetty {0} kotinäkymään" @@ -8236,7 +8662,7 @@ msgstr "Valitse käyttäjätunnuksesi." msgid "Please choose your password." msgstr "Valitse salasanasi." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Täydennä vahvistus-captcha, ole hyvä." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Anna tälle sovellussalasanalle uniikki nimi tai käytä satunnaisesti luotua." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Syötä sähköpostiosoitteesi." msgid "Please enter your invite code." msgstr "Syötä kutsukoodisi." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Selitä, miksi {0} on mielestäsi virheellisesti asettanut tämän merkinnän" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Selitä, miksi chattisi on mielestäsi virheellisesti poistettu käytöstä" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "Kirjaudu sisään käyttäjänä @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Politiikka" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Julkaise" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Julkaise kaikki" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Julkaissut @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Julkaisu poistettu" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Julkaisun lataaminen palveluun epäonnistui. Tarkista internetyhteytesi ja yritä uudelleen." @@ -8454,18 +8884,22 @@ msgstr "Piilottamasi julkaisu" msgid "Post interaction settings" msgstr "Julkaisun vuorovaikutusasetukset" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Julkaisuja voi mykistää tekstin, tunnisteiden tai kummankin perusteell msgid "Posts hidden" msgstr "Julkaisut piilotettu" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Paina yrittääksesi muodostaa yhteyden uudelleen" -#: src/components/Error.tsx:61 +#: 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 "Paina yrittääksesi uudelleen" @@ -8536,7 +8966,7 @@ msgstr "Paina yrittääksesi uudelleen" msgid "Press to view followers of this account that you also follow" msgstr "Paina näyttääksesi tämän tilin seuraajat, joita seuraat myös itse" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Yksityisyys" msgid "Privacy and security" msgstr "Yksityisyys ja turvallisuus" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Tietosuojakäytäntö" @@ -8586,15 +9015,15 @@ msgstr "Tietosuojakäytäntö" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Käsitellään videota…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Käsitellään…" @@ -8602,10 +9031,10 @@ msgstr "Käsitellään…" msgid "profile" msgstr "profiili" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profiili" @@ -8613,6 +9042,7 @@ msgstr "Profiili" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-koodi kopiooitu leikepöydelle!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-koodi ladattu!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-koodi tallennettu kuvagalleriaasi!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Lainaa julkaisua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Lainausjulkaisu liitettiin uudelleen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Lainausjulkaisu irrotettiin onnistuneesti" @@ -8711,12 +9138,12 @@ msgstr "Lainausjulkaisut poissa käytöstä" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Lainaukset" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Tämän julkaisun lainaukset" @@ -8728,16 +9155,16 @@ msgstr "Nopeusraja ylitettiin – olet yrittänyt vaihtaa käyttäjätunnustasi msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Liitä lainaus uudelleen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "Suositellut" msgid "Reconnect" msgstr "Yhdistä uudelleen" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Lataa keskustelut uudelleen" @@ -8863,6 +9304,8 @@ msgstr "Lataa keskustelut uudelleen" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Poista {displayName} aloituspaketista" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Poista tili" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Poista liite" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Poista profiilikuva" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Poista banneri" @@ -8914,8 +9362,9 @@ msgstr "Poista banneri" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Poista upotus" @@ -8929,12 +9378,12 @@ msgstr "Poista syöte" msgid "Remove feed?" msgstr "Poistetaanko syöte?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Poista kuva" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Poista uudelleenjulkaisu" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Tekijän poistama" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Poistamasi" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Vastaukset" @@ -9104,14 +9552,14 @@ msgstr "Vastaaminen poissa käytöstä" msgid "Replies to this post are disabled." msgstr "Tähän julkaisuun vastaaminen on poissa käytöstä." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Vastaa" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Vastaa ({0, plural, one {# vastaus} other {# vastausta}})" @@ -9125,10 +9573,6 @@ msgstr "Ketjun aloittajan piilottama vastaus" msgid "Reply Hidden by You" msgstr "Piilottamasi vastaus" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Vastausasetukset ovat ketjun aloittajan valitsemat" @@ -9137,18 +9581,18 @@ msgstr "Vastausasetukset ovat ketjun aloittajan valitsemat" msgid "Reply sorting" msgstr "Vastausten järjestely" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Vastauksen näkyvyys päivitetty" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Vastaus piilotettiin onnistuneesti" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Ilmianna" @@ -9157,20 +9601,20 @@ msgstr "Ilmianna" msgid "Report account" msgstr "Ilmianna tili" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Ilmianna keskustelu" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Ilmiannon valintaikkuna" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Ilmianna syöte" @@ -9179,12 +9623,12 @@ msgstr "Ilmianna syöte" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Ilmianna viesti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Ilmianna julkaisu" @@ -9199,8 +9643,8 @@ msgstr "Ilmianna aloituspaketti" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Ilmianna tämä syöte" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Ilmianna tämä lista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Uudelleenjulkaise" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Uudelleenjulkaise ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Uudelleenjulkaisit" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Tämän julkaisun uudelleenjulkaisut" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Edellytä tekstivastinetta ennen julkaisua" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Edellytä sähköpostikoodia tilillesi kirjautumiseen." @@ -9328,7 +9791,17 @@ msgstr "Vaaditaan tälle palveluntarjoajalle" msgid "Required in your region" msgstr "Pakollinen alueellasi" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "Nollaa käyttöönoton tila" msgid "Reset password" msgstr "Palauta salasana" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" msgid "Retry" msgstr "Yritä uudelleen" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Palaa edelliselle sivulle" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Palaa kotinäkymään" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Palaa edelliselle sivulle" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Tallenna muutokset" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Tallenna kuva" msgid "Save new handle" msgstr "Tallenna uusi käyttäjätunnus" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Tallenna QR-koodi" @@ -9518,13 +9994,13 @@ msgstr "Tallenna QR-koodi" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Tallenna syötteisiini" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Tallennetut syötteet" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Tallennettu syötteisiisi" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Tervehdi!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Tiede" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Vieritä alkuun" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Haku" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Hae profiileja" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Valitse väri" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Valitse GIF" msgid "Select GIF \"{0}\"" msgstr "Valitse GIF ”{0}”" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Valitse kieli…" msgid "Select languages" msgstr "Valitse kielet" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista" msgid "Select your preferred language for translations in your feed." msgstr "Valitse käännösten kieli syötteessäsi." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Lähetä sähköpostiviesti" @@ -9935,11 +10421,11 @@ msgstr "Lähetä sähköpostiviesti" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Lähetä palautetta" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Lähetä viesti" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Lähetä julkaisu käyttäjälle…" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Lähetä yksityisviestillä" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Asettaa sähköpostiosoitteen salasanan palautusta varten" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Asetukset" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Erotiikka tai muu aikuisviihde." msgid "Sexually Suggestive" msgstr "Seksuaalisesti vihjaileva" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Jaa" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Jaa kuitenkin" @@ -10097,16 +10586,21 @@ msgstr "Jaa kuitenkin" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Jaa linkki" @@ -10114,6 +10608,11 @@ msgstr "Jaa linkki" msgid "Share link dialog" msgstr "Jaa linkki -valintaikkuna" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Jaa QR-koodi" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Jaa tämä syöte" @@ -10142,8 +10641,8 @@ msgstr "Jaa tämä aloituspaketti ja auta muita liittymään yhteisöösi Bluesk #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Jaettujen asetusten testeri" @@ -10167,16 +10666,16 @@ msgstr "Näytä tekstivastine" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Näytä silti" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Näytä vähemmän tällaista" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Näytä lisää" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Näytä enemmän tällaista" @@ -10246,8 +10745,8 @@ msgstr "Näytä vastaukset" msgid "Show replies as" msgstr "Näytä vastaukset" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Näytä vastaus kaikille" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Näytä varoitus ja suodata syötteistä" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Kirjaudu sisään tai luo tili osallistuaksesi keskusteluun!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Kirjaudu tiliin, joka ei ole luettelossa" @@ -10337,8 +10842,12 @@ msgstr "Kirjaudu tiliin, joka ei ole luettelossa" msgid "Sign in to Bluesky or create a new account" msgstr "Kirjaudu Blueskyhin tai luo uusi tili" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Kirjaudu ulos" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Kirjaudu ulos" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Kirjaudutaanko ulos?" @@ -10391,7 +10900,7 @@ msgstr "Ohita" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Pienempi" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Jokin meni vikaan" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Jokin meni vikaan!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Jokin meni vikaan. Yritä uudelleen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Onko jokin vialla? Kerro meille." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Urheilu" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Aloita uusi chatti" @@ -10582,17 +11101,17 @@ msgstr "Ala lisätä käyttäjiä" msgid "Start adding people!" msgstr "Ala lisätä käyttäjiä!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Aloita chatti käyttäjän {displayName} kanssa" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Aloituspaketti" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Lähetä" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Tilaa" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Onnistui!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Tuki" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Vaihda tiliä" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "Järjestelmäloki" msgid "Tags only" msgstr "Vain tunnisteissa" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Hylkää napauttamalla" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Käyttöehdot" @@ -10939,7 +11484,7 @@ msgstr "Tekstissä ja tunnisteissa" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Tekstikenttä" @@ -10981,9 +11526,9 @@ msgstr "Siinä kaikki, ihmiset!" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Tili voi olla vuorovaikutuksessa kanssasi, kun poistat eston." @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Teema" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Yhteydenotossa palvelimeen ilmeni ongelma" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Julkaisujen hakemisessa ilmeni ongelma. Napauta tästä yrittääksesi uudelleen." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Syötteidesi päivityksessä ilmeni ongelma. Tarkista internetyhteytesi ja yritä uudelleen." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Ilmeni ongelma! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Nämä asetukset vaikuttavat vain Seuratut-syötteeseen." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Tämä {screenDescription} on liputettu:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Tämä valitus lähetetään kohteeseen <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Tämä valitus lähetetään Blueskyn moderointipalveluun." @@ -11263,7 +11824,7 @@ msgstr "Tämä valitus lähetetään Blueskyn moderointipalveluun." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Yhteys chattiin katkesi" @@ -11310,7 +11881,11 @@ msgstr "Tämä sisältö ei ole saatavilla, koska toinen käyttäjistä on estä msgid "This content is not viewable without a Bluesky account." msgstr "Tämä sisältö ei ole nähtävissä ilman Bluesky-tiliä." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Tämä syöte on tyhjä." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Tämä syöte ei ole enää linjoilla. Näytämme sen sijaan syötteen <0>Discover." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Tämä käyttäjätunnus on varattu. Kokeile toista." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "Tämä lista on tyhjä." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tämä julkaisu väittää olevansa luotu <0>{0}, mutta ensi kerran se on nähty Blueskyssa <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Tämän julkaisun tekijä on poistanut lainausjulkaisut käytöstä." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Tämä profiili näkyy vain kirjautuneille käyttäjille. Se ei näy kirjautumattomille henkilöille." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Tämä vastaus sijoitetaan piilotettuun osaan ketjusi loppuun, ja ilmoitukset myöhemmistä vastauksista – niin omista kuin muidenkin – mykistetään." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 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:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Tämä poistaa tilin @{0} pikakäyttöluettelosta." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Tämä poistaa julkaisusi tästä lainausjulkaisusta kaikilta käyttäjiltä ja korvaa sen paikkamerkillä." @@ -11574,7 +12166,7 @@ msgstr "Ketjun asetukset" msgid "Threaded" msgstr "Ketjuna" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Ketjujen asetukset" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Jotta voit poistaa sähköpostiin perustuvan kaksivaiheisen tunnistautumisen käytöstä, vahvista pääsysi sähköpostiosoitteeseen." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Suosituimmat" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Aihe" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Käännä" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Yritä uudelleen" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Yritä uudelleen" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "" @@ -11763,11 +12369,15 @@ msgstr "Yhteyden muodostaminen palveluusi ei onnistu. Tarkista internetyhteytesi msgid "Unable to delete" msgstr "Poistaminen ei onnistu" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Poista esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Poista esto" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Poista tilin esto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Poistetaanko tilin esto?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Kumoa uudelleenjulkaisu ({0, plural, one {# uudelleenjulkaisu} other {# uudelleenjulkaisua}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Lopeta käyttäjän {0} seuraaminen" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Lopeta tilin seuraaminen" @@ -11872,7 +12487,7 @@ msgstr "Lopeta tilin seuraaminen" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Älä tykkää" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Älä tykkää ({0, plural, one {# tykkäys} other {# tykkäystä}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Poista tilin mykistys" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Poista keskustelun mykistys" @@ -11955,12 +12562,12 @@ msgstr "Poista keskustelun mykistys" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Poista ketjun mykistys" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Irrota" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Irrota syöte" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Irrota kotinäkymästä" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Irrota profiilista" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Irrota moderointilista" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Irrotettu {0} kotinäkymästä" @@ -12030,14 +12637,18 @@ msgstr "Peruuta merkitsijän tilaus" msgid "Unsubscribed from list" msgstr "Listan tilaus peruutettu" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "Päivitä <0>{displayName} listoissa" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Päivitä verkkotunnukseen {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Lainauksen liitoksen päivittäminen epäonnistui" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Vastauksen näkyvyyden päivittäminen epäonnistui" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Lataa palveluun sen sijaan kuva" @@ -12098,39 +12717,40 @@ msgstr "Lataa palveluun sen sijaan kuva" msgid "Upload a text file to:" msgstr "Lataa tekstitiedosto osoitteeseen" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Lataa kamerasta" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Lataa tiedostoista" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Lataa kirjastosta" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Ladataan kuvia palveluun…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Ladataan linkin pikkukuvaa palveluun…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Ladataan videota palveluun…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Käyttäjälista käyttäjältä {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "käyttäjät, joita <0>@{0} seuraa" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Vahvista DNS-tietue" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Videon käsitteleminen epäonnistui" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "Videota ei löydy." msgid "Video settings" msgstr "Videon asetukset" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video ladattu palveluun" @@ -12432,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "Videot" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Näytä käyttäjän {0} profiili" @@ -12467,20 +13087,15 @@ msgstr "Näytä käyttäjän {0} profiili" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Näytä estetyn käyttäjän profiili" @@ -12503,10 +13118,18 @@ msgstr "Näytä lisätietoja" msgid "View full thread" msgstr "Näytä koko ketju" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Näytä tietoja näistä merkinnöistä" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Näytä profiili" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Näytä profiilikuva" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Näytä käyttäjän @{0} tarjoama merkintäpalvelu" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Näytä tästä syötteestä tykänneet käyttäjät" @@ -12596,8 +13219,8 @@ msgstr "Näytä mykistämäsi tilit" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "Varoita sisällöstä" msgid "Warn content and filter from feeds" msgstr "Varoita sisällöstä ja suodata syötteistä" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Emme löytäneet tuloksia tästä aiheesta." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Emme voineet ladata tätä keskustelua" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Emme onnistuneet määrittämään, saatko ladata palveluun videoita. Yritä uudelleen." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Ilmoitamme, kun tilisi on valmis." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Meillä on verkko-ongelmia, yritä uudelleen" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pahoittelut! Julkaisu, johon olet vastaamassa, on poistettu." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Pahoittelut! Emme löydä etsimääsi sivua." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Millä nimellä haluat kutsua aloituspakettiasi?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Mitä kuuluu?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Kuka voi olla vuorovaikutuksessa tämän julkaisun kanssa?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Kuka voi vastata" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Hupsista!" @@ -12939,7 +13566,7 @@ msgstr "Miksi tämä aloituspaketti tulisi arvioida?" msgid "Why should this user be reviewed?" msgstr "Miksi tämä käyttäjä tulisi arvioida?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Kirjoita julkaisu" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Kirjoita vastauksesi" @@ -12978,7 +13605,8 @@ msgstr "Kirjoittajat" msgid "Wrong DID returned from server. Received: {0}" msgstr "Palvelin palautti väärän DID:n. Vastaanotettiin {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Kyllä, poista tämä aloituspaketti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Kyllä, irrota" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Kyllä, piilota" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Sinun ei ole mahdollista ladata videoita palveluun." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Voit jatkaa meneillään olevia keskusteluja riippumatta valitsemastasi asetuksesta." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Voit nyt kirjautua sisään uudella salasanallasi." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Voit palauttaa tilisi käyttöön jatkaaksesi sisäänkirjautumista. Pro 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Voit päivittää tämän myöhemmin asetuksistasi." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Sinulla ei ole tallennettuja syötteitä." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Voit lisätä enintään 3 syötettä" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Sinun on seurattava ainakin seitsemää muuta käyttäjää, jotta voit luoda aloituspaketin." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Sinun on myönnettävä pääsy kuvakirjastoosi tallentaaksesi QR-koodin" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Sinut kirjataan ulos kaikista tileistäsi." @@ -13378,11 +14038,11 @@ msgstr "Sinut kirjataan ulos kaikista tileistäsi." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Et saa enää ilmoituksia tästä ketjusta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Saat nyt ilmoituksia tästä ketjusta" @@ -13390,12 +14050,12 @@ msgstr "Saat nyt ilmoituksia tästä ketjusta" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Saat sähköpostiisi ”palautuskoodin”. Syötä koodi tähän, ja syötä sitten uusi salasanasi." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "Pysyt ajan tasalla näiden syötteiden avulla" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Olet jonossa" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta tavua)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Olet saavuttanut päiväkohtaisen videolatausten rajoituksen (liian monta videota)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tilisi ei ole riittävän vanha videoiden lataamiseksi palveluun. Yritä myöhemmin uudelleen." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Tilisi arkiston, joka sisältää kaikki julkiset tietueet, voi ladata ”CAR”-tiedostona. Tämä tiedosto ei sisällä mediaupotuksia, kuten kuvia, eikä yksityisiä tietojasi, jotka on haettava erikseen." @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "Syntymäaikasi" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Chattisi on poistettu käytöstä" @@ -13527,11 +14199,11 @@ msgstr "Chattisi on poistettu käytöstä" 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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Sähköpostiosoitteesi on nähtävästi virheellinen." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "Seuraamiesi syöte on tyhjä! Seuraa lisää käyttäjiä nähdäksesi, msgid "Your full handle will be <0>@{0}" msgstr "Koko tuleva käyttäjätunnuksesi on <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Mykistämäsi sanat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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/messages.po b/src/locale/locales/fr/messages.po index 8677891460..75538ec775 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Catégorie « {interestsDisplayName} » (active)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(lien d’invitation à une discussion)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(avec un contenu intégré)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# compte} other {# comptes}} ont aimé" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membre} other {# membres}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minute} other {# minutes}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mois} other {# mois}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# nouvelle demande d’ajout} other {# nouvelles demandes d’ajout}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# personne a} other {# personnes ont}} réagi – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# seconde} other {# secondes}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# élément non lu} other {# éléments non lus}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {# min} other {# min}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>dans <1>le texte et les mots-clés" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} ajouté·e à la discussion" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} et {1} ajouté·e·s à la discussion" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} abonnements" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} vous a bloqué·e" @@ -264,7 +273,7 @@ msgstr "{0} sur 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} a réagi avec {1}" @@ -290,7 +299,7 @@ msgstr "{0} a été retiré·e du groupe" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, une liste de {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Avatar de {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {membre} other {membres}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} membres" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} min" msgid "{0}s" msgstr "{0} s" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Aucune demande} one {# demande} other {# demandes}} à rejoindre" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# évènement} other {# évènements}} de discussion" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# nouvelle demande} other {# nouvelles demandes}} à rejoindre" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# demande} other {# demandes}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# élément non lu} other {# éléments non lus}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Rafraîchissez la page pour la voir.} other {Rafraîchissez la page pour toutes les voir.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Ce post contient une photo.} other {Ce post contient # photos.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Mettez-à-jour votre appli. pour la voir.} other {Mettez-à-jour votre appli. pour les voir.}}" + +#. 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 "{count, plural, other {Plus de # demandes à rejoindre}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "+ de {count}" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "+ de {count} demandes" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {heure} other {heures}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} vous ont suivi" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont retiré leurs vérifications de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} se sont inscrits avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont vérifié votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} vous a suivi·e" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} vous a suivi·e en retour" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} a aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} a aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} a aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} a retiré sa vérification de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} a republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} a republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} s’est inscrit·e avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} a vérifié votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} vous ont suivi" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont retiré leurs vérifications de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} ont republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre compte} other {{formattedAuthorsCount} autres comptes}} se sont inscrits avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} ont vérifié votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} a suivi votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} a suivi votre compte en retour" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} a aimé votre fil d’actu personnalisé" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} a aimé votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} a aimé votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} a retiré sa vérification de votre compte" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} a republié votre post" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} a republié votre repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} s’est inscrit·e avec votre kit de démarrage" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} a vérifié votre compte" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} a vérifié votre compte" msgid "{following} following" msgstr "{following} abonnements" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} ne peut être ajouté·e" @@ -547,7 +606,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:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} ne peut être contacté·e par message" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# heure {minutesString}} other {# heures {minutesSt msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# heure} other {# heures}}" +#. 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 "Plus de {JOIN_REQUESTS_THRESHOLD} nouvelles demandes à rejoindre" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "Plus de {JOIN_REQUESTS_THRESHOLD} nouvelles demandes à rejoindre" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {La description est trop longue. La tail msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Le nom d’affichage est trop long. La taille maximum est de # caractères.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Vous ne pouvez masquer que # réponses maximum.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} a réagi {0} à {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name} : {message}" @@ -607,11 +676,11 @@ msgstr "Les fils d’actu et les personnes préférées de {name} – faites com msgid "{name}'s starter pack" msgstr "Kit de démarrage de {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# élément non lu} other {# éléments non lus}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {Un contact trouvé} other {# contacts trouvés}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# demande} other {# demandes}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "+ de {requestCount} demandes" @@ -656,6 +725,12 @@ msgstr "{userName} est vérifié" msgid "{userName}'s verifications" msgstr "Vérifications de {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} fo #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {abonné·e} other {abonné·e·s}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {a aimé} other {ont aimé}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citation} other {citations}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {reposts}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {conservé} other {conservés}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} membres" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vous a ajouté·e" @@ -795,8 +870,13 @@ msgstr "Une erreur réseau est survenue. Veuillez vérifier votre connexion Inte #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Une erreur réseau est survenue. Veuillez vérifier votre connexion Internet." @@ -804,7 +884,7 @@ msgstr "Une erreur réseau est survenue. Veuillez vérifier votre connexion Inte msgid "A new code has been sent" msgstr "Un nouveau code a été envoyé" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Une nouvelle forme de vérification" @@ -827,11 +907,11 @@ msgstr "Une capture d’écran d’une page de profil avec une icône de cloche 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Un des comptes destinataires n’est pas suivi par le compte expéditeur." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Comportement abusif ou discriminatoire" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Accepter" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Accepter" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Accepter la demande de discussion" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Accepter la demande à rejoindre" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Accepter la demande" @@ -860,17 +950,26 @@ msgstr "Accepter la demande" msgid "Accept this language suggestion" msgstr "Accepter cette suggestion de langue" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Conversations acceptées" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Accès demandé ! Le compte propriétaire du groupe examinera votre demande." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accessibilité" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Paramètres d’accessibilité" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Paramètres d’accessibilité" msgid "Account" msgstr "Compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Compte bloqué" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Compte suivi" @@ -899,7 +998,7 @@ msgstr "Le compte a été suspendu" msgid "Account is deactivated" msgstr "Le compte a été désactivé" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Hébergeur" msgid "Account removed from quick access" msgstr "Compte supprimé de l’accès rapide" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Compte débloqué" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Compte désabonné" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Compte réaffiché" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Les comptes avec une coche bleue émaillée <0><1/> peuvent en vérifier d’autres. Ces vérificateurs de confiance sont sélectionnés par Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Activité des autres" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notifications d’activité" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Ajouter" @@ -999,8 +1094,8 @@ msgstr "Ajouter un compte" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Ajouter un texte alt (facultatif)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Ajouter un autre compte" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Ajouter un autre post" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Ajouter un autre post au fil de discussion" @@ -1035,7 +1130,7 @@ msgstr "Ajouter un mot de passe d’application" msgid "Add App Password" msgstr "Ajouter un mot de passe d’application" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Ajouter une étiquette d’automatisation au compte" @@ -1043,7 +1138,7 @@ msgstr "Ajouter une étiquette d’automatisation au compte" msgid "Add emoji reaction" msgstr "Ajouter une réaction émoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Ajouter des membres à la discussion de groupe" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Ajouter une image" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Ajouter un média au post" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Ajouter des membres" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Ajouter plus de détails (facultatif)" @@ -1091,6 +1186,10 @@ msgstr "Ajouter des personnes" msgid "Add people to list" msgstr "Ajouter des comptes à la liste" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Ajouter des personnes via un lien" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Ajouter une réaction" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Ajouter votre date de naissance" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Ajouté·e par {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Ajouté·e via un lien d’invitation" @@ -1165,12 +1264,12 @@ msgstr "Ajout en cours des membres à la liste…" msgid "Additional details (limit 1000 characters)" msgstr "Détails supplémentaires (1000 caractères maximum)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Détails supplémentaires (300 caractères maximum)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "La demande de vérification d’âge a été envoyée" msgid "Age assurance only takes a few minutes" msgstr "La vérification d’âge ne prend que quelques minutes" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Toutes" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Tous les {0}" @@ -1278,13 +1377,13 @@ msgstr "Autoriser l’accès à vos messages privés" msgid "Allow anyone to reply" msgstr "Autoriser n’importe qui à répondre" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Autoriser les messages privés de" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Autoriser les invitations de groupe de" @@ -1338,12 +1437,12 @@ msgstr "Vous avez déjà un compte ?" msgid "Already signed in as @{0}" msgstr "Déjà connecté·e en tant que @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Texte alt" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Le texte alt décrit les images pour les personnes aveugles et malvoyantes, et aide à donner un contexte à tout le monde." @@ -1387,7 +1486,7 @@ msgstr "Une erreur s’est produite" msgid "An error occurred" msgstr "Une erreur s’est produite" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Une erreur s’est produite lors de la compression de la vidéo." @@ -1421,7 +1520,8 @@ msgstr "Une erreur s’est produite lors du chargement de la vidéo. Veuillez r msgid "An error occurred while loading your lists :/" msgstr "Une erreur s’est produite lors du chargement de vos listes :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" @@ -1432,11 +1532,11 @@ msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" msgid "An error occurred while trying to follow all" msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Il y a eu un problème lors de l’envoi de la vidéo. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Il y a eu un problème lors de l’envoi de la vidéo. Vérifiez votre connexion internet et réessayez." @@ -1456,26 +1556,30 @@ msgstr "Une illustration qui montre des avatars d’utilisateur·ice·s qui s’ 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" +#: 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 "Une illustration de l’appli. Bluesky avec un avion en papier qui en sort, représentant le fait d’inviter des amis" + #: 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 "Une illustration montrant que Bluesky sélectionne des vérificateurs de confiance, qui à leur tour vérifient des comptes d’utilisateur·ices individuels." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Un lien d’invitation permet à des gens de rejoindre cette discussion de groupe directement. Vous pourrez contrôler qui peut utiliser le lien et si votre approbation préalable est nécessaire. Vous pourrez désactiver ce lien à tout moment." +#: 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 "Un lien d’invitation permet à des personnes de rejoindre cette discussion sans y être ajoutés directement. Vous pourrez contrôler qui peut rejoindre la discussion. Vous pourrez désactiver ce lien à tout moment." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Un problème est survenu lors de l’ouverture de la discussion" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Un problème est survenu, veuillez réessayer." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Une maquette d’un iPhone qui montre l’app de Bluesky ouverte sur un profil d’un compte vérifié avec une coche bleue après leur nom d’affichage." @@ -1539,13 +1643,17 @@ msgstr "N’importe qui" msgid "Anyone can interact" msgstr "N’importe qui peut interagir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Accessible à n’importe qui" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "N’importe qui peut rejoindre directement" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "N’importe qui peut demander à rejoindre" @@ -1555,11 +1663,11 @@ msgstr "N’importe qui peut demander à rejoindre" msgid "Anyone who follows me" msgstr "Quiconque qui me suit" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "Quiconque l’avait ne pourra plus rejoindre la discussion ou demander à la rejoindre. Vous pourrez toujours en créer un nouveau." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mots de passe d’application" @@ -1618,7 +1726,7 @@ msgstr "Faire appel de la suspension de la diffusion en direct" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Appel soumis" @@ -1632,14 +1740,14 @@ msgstr "Faire appel de la suspension" msgid "Appeal Suspension" msgstr "Faire appel de la suspension" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Faire appel de cette décision" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Appliquer la pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archive datée du {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Post archivé" @@ -1675,7 +1783,7 @@ msgstr "Êtes-vous vraiment, vraiment sûr·e ?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe d’application « {0} » ?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Êtes-vous sûr de vouloir supprimer ce message ? Ce message sera supprimé pour vous, mais pas pour les autres personnes." @@ -1688,23 +1796,29 @@ msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?" msgid "Are you sure you want to discard your changes?" msgstr "Êtes-vous sûr de vouloir abandonner vos changements ?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Êtes-vous sûr·e de vouloir quitter {groupName} ?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Êtes-vous sûr de vouloir vous retirer de cette conversation ?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Êtes-vous sûr de vouloir vous retirer de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour l’autre personne." +#: 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 "Êtes-vous sûr de vouloir vous retirer de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour les autres participants." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Êtes-vous sûr de vouloir supprimer cela de vos fils d’actu ?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Êtes-vous sûr de vouloir abandonner ce post ?" @@ -1724,8 +1838,8 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Nudité artistique ou non érotique." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Assigner un sujet pour l’algo" @@ -1752,7 +1866,7 @@ msgstr "Compte automatisé" msgid "Automation label" msgstr "Étiquette d’automatisation" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Étiquette d’automatisation" @@ -1767,12 +1881,12 @@ msgstr "Lire automatiquement les vidéos et les GIFs" msgid "Available" msgstr "Disponible" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Disponible" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Disponible" msgid "Back" msgstr "Retour" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Retour aux discussions" @@ -1832,7 +1948,7 @@ msgstr "Veuillez vérifier votre e-mail avant de créer un post ou de répondre. 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Veuillez vérifier votre e-mail avant d’accepter cette demande de discussion." @@ -1840,13 +1956,14 @@ msgstr "Veuillez vérifier votre e-mail avant d’accepter cette demande de disc msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Avant de pouvoir recevoir des notifications pour les posts de {name}, vous devez d’abord vérifier votre e-mail." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Veuillez vérifier votre e-mail avant d’envoyer des messages à d’autres personnes." @@ -1874,59 +1991,53 @@ msgstr "Date de naissance" msgid "Birthday" msgstr "Date de naissance" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloquer" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Bloquer {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloquer le compte" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Bloquer ce compte ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Bloquer ce compte ?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloquer ces comptes" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Bloquer et supprimer" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Bloquer et partir" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Liste de blocage" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bloquer ou signaler" @@ -1936,9 +2047,9 @@ msgstr "Bloquer ces comptes ?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloquer le compte" @@ -1946,17 +2057,17 @@ msgstr "Bloquer le compte" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloquer le compte" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Bloquer ce compte ou supprimer cette conversation" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Bloquer ce compte ou partir de cette conversation" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloqué" @@ -1964,14 +2075,12 @@ msgstr "Bloqué" msgid "Blocked accounts" msgstr "Comptes bloqués" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Comptes bloqués" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous." @@ -1987,7 +2096,7 @@ msgstr "Le blocage n’empêche pas cet étiqueteur de placer des étiquettes su msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Le blocage est public. Les comptes bloqués ne peuvent pas répondre à vos discussions, vous mentionner ou interagir avec vous." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Le blocage n’empêchera pas les étiquettes d’être appliquées à votre compte, mais il empêchera ce compte de répondre à vos discussions ou d’interagir avec vous." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky ne peut pas confirmer l’authenticité de la date déclarée." @@ -2029,7 +2138,7 @@ msgstr "Bluesky est meilleur entre ami·e·s !" msgid "Bluesky is more fun with friends" msgstr "Bluesky, c’est plus sympa avec des amis" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky, c’est plus sympa avec des amis ! Importez vos contacts pour découvrir qui est déjà là." @@ -2037,11 +2146,15 @@ msgstr "Bluesky, c’est plus sympa avec des amis ! Importez vos contacts pour msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky, c’est plus sympa avec des amis. Envie de ramener les vôtres ? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "Bluesky a besoin d’accéder à l’appareil photo pour scanner les QR codes d’autres profils." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Conditions générales de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky n’affichera pas votre profil et vos posts à des personnes non connectées. Il est possible que d’autres applications n’honorent pas cette demande. Cela ne privatise pas votre compte." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky va vérifier de manière proactive les comptes connus et authentiques." @@ -2081,6 +2194,10 @@ msgstr "Livres" msgid "Breaking site rules" msgstr "Non-respect des règles du site" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Réunissez jusqu’à 50 amis au sein d’une seule discussion." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "Affaires" msgid "Button to go back to the home timeline" msgstr "Bouton pour revenir à la page d’accueil" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Par {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Par <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "par <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Par <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "En créant un compte, vous acceptez les <0>Conditions générales." msgid "By you" msgstr "Par vous" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Caméra" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Accès à l’appareil photo nécessaire" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2192,15 +2323,18 @@ msgstr "Caméra" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Caméra" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Caméra" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Annuler" @@ -2248,9 +2384,9 @@ msgstr "Annuler la réactivation et se déconnecter" msgid "Cancel search" msgstr "Annuler la recherche" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Impossible d’interagir avec un compte bloqué" @@ -2264,7 +2400,7 @@ msgstr "Sous-titres (.vtt)" msgid "Captions & alt text" msgstr "Sous-titres et texte alt" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carrousel" @@ -2297,7 +2433,7 @@ msgstr "Changer la langue de l’appli." msgid "Change Handle" msgstr "Modifier le pseudo" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Changer de service de modération" @@ -2310,11 +2446,11 @@ msgstr "Modifier le mot de passe" msgid "Change password dialog" msgstr "Fenêtre de modification de mot de passe" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Changer de catégorie de rapport" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Changer la raison du signalement" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Discussions" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Conversation supprimée" @@ -2361,6 +2497,12 @@ msgstr "Conversation supprimée" msgid "Chat ended" msgstr "Fin de la discussion" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Le lien d’invitation à la discussion n’est plus disponible" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Discussion verrouillée" @@ -2373,35 +2515,44 @@ msgstr "Discussions - en sourdine" msgid "Chat messages - sound" msgstr "Discussions - normales" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Discussion en sourdine" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Discussion introuvable." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +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 +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:511 msgid "Chat request inbox" msgstr "Demandes de discussion en attente" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Demandes de discussion" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Paramètres de discussion" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Paramètres de discussion" @@ -2418,14 +2569,14 @@ msgstr "Titre de la discussion modifié en {0}" msgid "Chat unlocked" msgstr "Discussion déverrouillée" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Discussion sans sourdine" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Discussions" @@ -2479,7 +2630,7 @@ msgstr "Choisir les langues du post" msgid "Choose this color as your avatar" msgstr "Choisir cette couleur comme avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Choisissez qui peut rejoindre cette discussion de groupe et comment." @@ -2558,7 +2709,7 @@ msgstr "Cliquez ici pour vous déconnecter" msgid "Click here to resend the email" msgstr "Cliquez ici pour renvoyer l’e-mail" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Cliquez ici pour redémarrer le processus de vérification." @@ -2567,7 +2718,7 @@ msgstr "Cliquez ici pour redémarrer le processus de vérification." msgid "Click here to update your birthdate" msgstr "Cliquez ici pour mettre à jour votre date de naissance" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Cliquez ici pour mettre à jour votre adresse e-mail" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Cliquer pour réessayer l’envoi échoué du message" @@ -2594,28 +2745,30 @@ msgstr "Cliquer pour réessayer l’envoi échoué du message" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Cliquer pour réessayer l’envoi échoué du message" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Fermer" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Fermer le dialogue actif" @@ -2647,6 +2800,10 @@ msgstr "Fermer le dialogue actif" msgid "Close alert" msgstr "Fermer l’alerte" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Fermer la bannière" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Fermer le tiroir du bas" @@ -2657,8 +2814,10 @@ msgstr "Fermer le tiroir du bas" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Fermer le dialogue" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Fermer l’image" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Fermer le menu" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Fermer le scanner" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Ferme la bannière des demandes entrantes" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Fermer ce dialogue" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Ferme la fenêtre de rédaction et abandonne le brouillon de post" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Fermer la liste des comptes" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Réduit la liste des comptes pour une notification donnée" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Couleur" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Bandes dessinées" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Règles de bonne conduite" @@ -2740,12 +2915,12 @@ msgstr "Compléter le défi" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Écrire un nouveau post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Permet d’écrire des posts de {0, plural, other {# caractères}} maximum" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Compression du GIF en cours…" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Compression de la vidéo en cours…" @@ -2780,7 +2955,7 @@ msgstr "Configuré dans <0>les paramètres de modération." msgid "Confirm" msgstr "Confirmer" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contacter le support" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "La synchronisation des contacts n’est pas disponible sur cet appareil, l’app n’arrivant pas à accéder à vos contacts." @@ -2825,11 +3000,11 @@ msgstr "La synchronisation des contacts n’est pas disponible sur cet appareil, msgid "Contact us" msgstr "Nous contacter" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Contacts importés" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Contacts retirés" @@ -2842,7 +3017,7 @@ msgstr "Contenu et médias" msgid "Content and media" msgstr "Contenu et médias" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Contenu et médias" @@ -2889,7 +3064,7 @@ msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Poursuivre le fil de discussion" msgid "Continue thread..." msgstr "Poursuivre le fil de discussion…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 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:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Passer à l’étape suivante" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Discussion" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversation supprimée" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversation supprimée" @@ -2939,15 +3114,22 @@ msgstr "Conversation supprimée" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Conversation quittée" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Discussion introuvable." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Version de build copiée dans le presse-papier" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copié !" msgid "Copies build version to clipboard" msgstr "Copie la version de build vers le presse-papier" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Copie l’URL canonique du profil dans le presse-papiers" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copier" @@ -2997,6 +3184,11 @@ msgstr "Copier le DID" msgid "Copy host" msgstr "Copier l’hébergeur" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Copier le lien d’invitation" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Copier le lien vers la liste" msgid "Copy link to post" msgstr "Copier le lien vers le post" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copier le lien vers le profil" @@ -3027,8 +3219,8 @@ msgstr "Copier le lien vers le profil" msgid "Copy link to starter pack" msgstr "Copier le lien vers le kit de démarrage" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copier le texte du message" @@ -3037,12 +3229,12 @@ msgstr "Copier le texte du message" msgid "Copy post at:// URI" msgstr "Copier l’URI at:// du post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copier le texte du post" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copier le code QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Impossible de capturer le QR code" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Impossible de se connecter au fil d’actu personnalisé" @@ -3065,7 +3261,15 @@ msgstr "Impossible de se connecter au fil d’actu personnalisé" msgid "Could not connect to feed service" msgstr "Impossible de se connecter au service de fil d’actu" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "Impossible de copier – veuillez réessayer" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "Impossible de télécharger – veuillez réessayer" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Impossible de récupérer le post" @@ -3073,23 +3277,27 @@ msgstr "Impossible de récupérer le post" msgid "Could not find profile" msgstr "Impossible de retrouver le profil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Échec du suivi de tous les contacts trouvés — veuillez vérifier votre connexion au réseau." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Échec du suivi de tous les contacts trouvés. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Impossible de se retirer de la discussion" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "Impossible de partir de la discussion." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Impossible de charger le fil d’actu" @@ -3100,7 +3308,11 @@ msgstr "Impossible de charger le fil d’actu" msgid "Could not load list" msgstr "Impossible de charger la liste" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "Impossible de charger le profil" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Impossible de mettre la discussion en sourdine" @@ -3108,11 +3320,19 @@ msgstr "Impossible de mettre la discussion en sourdine" msgid "Could not process your video" msgstr "Impossible de traiter votre vidéo" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "Impossible de retirer le membre." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Impossible d’enregistrer les changements : {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "Impossible de partager – veuillez réessayer" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Impossible de mettre à jour les paramètres de notification" @@ -3139,7 +3359,7 @@ msgstr "Code du pays" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Créer" @@ -3153,13 +3373,13 @@ msgstr "Créer une liste" msgid "Create a list from this starter pack" msgstr "Créer une liste à partir de ce kit de démarrage" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Créer un kit de démarrage" @@ -3174,13 +3394,14 @@ msgstr "Créer un kit de démarrage pour moi" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Créer plutôt un avatar" @@ -3206,7 +3427,7 @@ msgstr "Créer plutôt un avatar" msgid "Create another" msgstr "Créer un autre" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Créer une discussion de groupe" @@ -3228,19 +3449,20 @@ msgstr "Créer une liste à partir d’un kit de démarrage" msgid "Create moderation list" msgstr "Créer une liste de modération" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Créer un nouveau compte" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Créer ou modifier un lien d’invitation pour cette discussion de groupe" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Créer un signalement pour {0}" @@ -3256,8 +3478,8 @@ msgstr "Créer une liste de comptes" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "{0} créé" @@ -3270,6 +3492,10 @@ msgstr "L’auteur·ice a été bloqué·e" msgid "Culture" msgstr "Culture" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Discussion actuelle" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Thème sombre" msgid "Date of birth" msgstr "Date de naissance" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Aube" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Jour" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Par défaut" msgid "Default icons" msgstr "Icônes par défaut" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Supprimer le mot de passe de l’appli" msgid "Delete app password?" msgstr "Supprimer le mot de passe de l’appli ?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Supprimer la conversation" @@ -3378,19 +3612,19 @@ msgstr "Supprimer la conversation" msgid "Delete chat declaration record" msgstr "Supprimer la déclaration d’ouverture aux discussions" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Retirer les contacts" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Supprimer la conversation" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Supprimer pour moi" @@ -3399,11 +3633,11 @@ msgstr "Supprimer pour moi" msgid "Delete list" msgstr "Supprimer la liste" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Supprimer le message" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Supprimer le message pour moi" @@ -3411,9 +3645,9 @@ msgstr "Supprimer le message pour moi" msgid "Delete my account" msgstr "Supprimer mon compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Supprimer le post" @@ -3430,17 +3664,17 @@ msgstr "Supprimer le kit de démarrage ?" msgid "Delete this list?" msgstr "Supprimer cette liste ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Supprimer ce post ?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Supprimé" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Compte supprimé" @@ -3471,12 +3705,12 @@ msgstr "Description (1000 caractères max)" msgid "Descriptive alt text" msgstr "Texte alt descriptif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Détacher la citation" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Détacher la citation ?" @@ -3507,13 +3741,13 @@ msgstr "Une boîte de dialogue : réglez qui peut interagir avec ce post" msgid "Dim" msgstr "Atténué" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Désactiver" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Désactiver le 2FA" @@ -3521,7 +3755,7 @@ msgstr "Désactiver le 2FA" msgid "Disable captions" msgstr "Désactiver les sous-titres" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Désactiver le 2FA par e-mail" @@ -3534,8 +3768,8 @@ msgstr "Désactiver le 2FA par e-mail" msgid "Disable haptic feedback" msgstr "Désactiver le retour haptique" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Désactiver le lien" @@ -3547,7 +3781,7 @@ msgstr "Empêcher les citations pour ce post" msgid "Disable replies entirely" msgstr "Désactiver complètement les réponses" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Désactiver ce lien d’invitation ?" @@ -3560,9 +3794,9 @@ msgstr "Désactivé" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Abandonner" msgid "Discard changes?" msgstr "Abandonner les changements ?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Abandonner ce post ?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Déconnecter de Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Découvrir de nouveaux fils d’actu" msgid "Discover New Feeds" msgstr "Découvrir de nouveaux fils d’actu" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignorer" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Ignorer la bannière" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Ignorer l’erreur" @@ -3642,6 +3877,10 @@ msgstr "Ignorer cette section" msgid "Dismiss this suggestion" msgstr "Ignorer cette suggestion" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Ferme le scanner QR" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "Ne comprend pas de nudité." msgid "Domain verified!" msgstr "Domaine vérifié !" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Vous n’avez pas de code ou en voulez un nouveau ? <0>Cliquez ici." @@ -3681,7 +3920,7 @@ msgstr "Vous n’avez pas de code ou en voulez un nouveau ? <0>Cliquez ici." msgid "Don’t see a code? <0>Click here to resend." msgstr "Pas de code à l’horizon ? <0>Cliquez ici pour le renvoyer." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Pas d’e-mail à l’horizon ? <0>Cliquez ici pour le renvoyer." @@ -3700,16 +3939,21 @@ msgstr "Pas d’inquiétude ! Tous les messages existants et vos paramètres so #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Terminer" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Tapez deux fois pour fermer cette boîte de dialogue" @@ -3737,19 +3981,14 @@ msgstr "Tapez deux fois pour fermer cette boîte de dialogue" msgid "Double tap to like" msgstr "Tapez deux fois pour aimer" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Télécharger" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Télécharger Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Télécharger le fichier CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Télécharger le fichier CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Télécharger les données de discussions" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Télécharger les données de discussions" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Télécharger l’image" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Télécharger le QR code d’invitation" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Télécharger les données de profil" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Télécharger les données de profil" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Divulgation de données personnelles (doxxing)" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Pour respecter les lois de votre localisation, certaines fonctionnalité msgid "Duration:" msgstr "Durée :" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Crépuscule" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "ex. alice" @@ -3823,9 +4079,8 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs." msgid "Eating disorders" msgstr "Troubles alimentaires" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Modifier" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Modifier l’avatar" @@ -3847,19 +4102,19 @@ msgstr "Modifier l’avatar" msgid "Edit Feeds" msgstr "Modifier les fils d’actu" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Modifier le nom du groupe" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Modifier l’image" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Modifier les paramètres d’interaction" @@ -3868,7 +4123,16 @@ msgstr "Modifier les paramètres d’interaction" msgid "Edit interests" msgstr "Modifier les centres d’intérêt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Modifier le lien d’invitation" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Modifier le lien d’invitation" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Modifier les paramètres du lien" @@ -3886,20 +4150,15 @@ msgstr "Modifier le statut « En direct »" msgid "Edit moderation list" msgstr "Modifier la liste de modération" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modifier mes fils d’actu" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Modifier le nom" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -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" @@ -3912,12 +4171,12 @@ msgstr "Modifier les paramètres d’interaction du post" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Modifier le profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Modifier le profil" @@ -3925,7 +4184,8 @@ msgstr "Modifier le profil" msgid "Edit starter pack" msgstr "Modifier le kit de démarrage" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Modifier le nom de cette discussion de groupe" @@ -3937,7 +4197,7 @@ msgstr "Modifier la liste de comptes" msgid "Edit who can reply" msgstr "Modifier qui peut répondre" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Modifier votre kit de démarrage" @@ -3971,7 +4231,7 @@ msgstr "Adresse e-mail" msgid "Email Resent" msgstr "E-mail renvoyé" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-mail envoyé !" @@ -4006,8 +4266,8 @@ msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait sui msgid "Embedded video player" msgstr "Lecteur vidéo intégré" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Activer" @@ -4025,7 +4285,7 @@ msgstr "Activer le contenu pour adultes" msgid "Enable captions" msgstr "Activer les sous-titres" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Activer le 2FA par e-mail" @@ -4038,13 +4298,12 @@ msgstr "Activer les médias externes" msgid "Enable media players for" msgstr "Activer les lecteurs médias pour" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activez les notifications pour un compte en visitant leur profil puis en appuyant sur l’<0>icône de cloche <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Activer les alertes (notifs push)" @@ -4091,8 +4350,8 @@ msgstr "Saisir un mot de passe" msgid "Enter a word or tag" msgstr "Saisir un mot ou un mot-clé" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Entrer le code" @@ -4143,12 +4402,12 @@ msgstr "Passe en mode plein écran" msgid "Entertainment" msgstr "Divertissement" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erreur" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Échec de la récupération des dernières données." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tout le monde" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Tout le monde" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Tout le monde" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Divers" @@ -4217,16 +4476,16 @@ msgstr "Exclut les comptes que vous suivez" msgid "Exit fullscreen" msgstr "Quitter le plein écran" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Développer le texte alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Développer la liste des comptes" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Développe ou réduit le post complet auquel vous répondez" @@ -4238,7 +4497,7 @@ msgstr "Développer le post" msgid "Expands or collapses post text" msgstr "Développe ou réduit le texte du post" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "URI attendue pour résoudre un enregistrement" @@ -4277,10 +4536,10 @@ msgstr "Médias explicites ou potentiellement dérangeants." msgid "Explicit sexual images." msgstr "Images sexuelles explicites." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorer" @@ -4289,11 +4548,8 @@ msgstr "Explorer" msgid "Explore the app" msgstr "Explorer l’app" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Exporter les données de discussions" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Exporter mes données de discussions" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Préférences sur les médias externes" @@ -4331,18 +4587,22 @@ msgstr "Préférences sur les médias externes" msgid "Extremist content" msgstr "Contenu extrémiste" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Échec de l’acceptation de la conversation" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Échec de l’acceptation de la demande à rejoindre" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Échec de l’ajout de la réaction émoji" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Échec de l’ajout de membres" @@ -4354,7 +4614,8 @@ msgstr "Échec de l’ajout au kit de démarrage" msgid "Failed to change handle. Please try again." msgstr "Le changement de pseudo a échoué. Veuillez réessayer." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Échec de la copie du lien" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "La création du mot de passe d’application a échoué. Veuillez réessayer." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Échec de la création de la conversation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Échec de la création du lien d’invitation" @@ -4376,17 +4637,17 @@ msgstr "Échec de la création du lien d’invitation" msgid "Failed to create starter pack" msgstr "Échec de la création du kit de démarrage" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Échec de la suppression de la conversation" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Échec de la suppression du message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Échec de la suppression du post, veuillez réessayer" @@ -4394,24 +4655,24 @@ msgstr "Échec de la suppression du post, veuillez réessayer" msgid "Failed to delete starter pack" msgstr "Échec de la suppression du kit de démarrage" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Échec de la désactivation du lien d’invitation" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Échec de la déconnexion de Germ DM. Erreur : {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Échec de l’édition du nom de la discussion de groupe" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Échec de la modification du lien d’invitation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Échec de l’activation du lien d’invitation" @@ -4427,19 +4688,27 @@ msgstr "Échec du suivi de tous vos amis, veuillez réessayer" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Échec du masquage de la suggestion, veuillez vérifier votre connexion au réseau" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Échec de l’action d’ignorer la demande à rejoindre" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Échec de l’action de rejoindre le groupe de discussion. Veuillez réessayer." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Échec du lancement de l’app des SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Échec du retrait de la discussion de groupe" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Échec du chargement des conversations" @@ -4456,17 +4725,8 @@ msgstr "Échec du chargement des fils d’actu" msgid "Failed to load feeds preferences" msgstr "Échec du chargement des fils d’actu" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Échec du chargement des paramètres de notification." @@ -4493,16 +4753,15 @@ msgstr "Échec du chargement des fils d’actu suggerés" msgid "Failed to load suggested follows" msgstr "Échec du chargement des suivis suggérés" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Échec du verrouillage de la discussion de groupe" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Échec du marquage de toutes les demandes comme lues" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Échec de la mise en sourdine de la discussion de groupe" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Échec de l’épinglage du post" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Échec de la reconnection avec Germ DM. Erreur : {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Échec de la suppression des données à cause d’un problème réseau, veuillez vérifier votre connexion au réseau." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Échec de la suppression des données. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Échec du retrait de la réaction émoji" @@ -4534,7 +4793,8 @@ msgstr "Échec du retrait de la réaction émoji" msgid "Failed to remove from starter pack" msgstr "Échec du retrait du kit de démarrage" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Échec du retrait d’un membre de la discussion de groupe" @@ -4542,15 +4802,20 @@ msgstr "Échec du retrait d’un membre de la discussion de groupe" msgid "Failed to remove verification" msgstr "Échec du retrait de la vérification" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Échec de l’annulation de votre demande. Veuillez réessayer." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Échec de la géolocalisation. Veuillez réessayer." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Échec de l’enregistrement du brouillon" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Échec de l’enregistrement de l’image" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Échec de l’enregistrement de vos centres d’intérêt." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Échec de l’envoi de l’e-mail, veuillez réessayer." @@ -4580,16 +4845,16 @@ msgstr "Échec de l’envoi du rapport" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Échec de l’envoi de l’appel, veuillez réessayer." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Échec du déverrouillage de la discussion de groupe" @@ -4597,12 +4862,12 @@ msgstr "Échec du déverrouillage de la discussion de groupe" msgid "Failed to unpin list" msgstr "Échec du désépinglage de la liste" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Échec de la mise à jour des paramètres du 2FA par e-mail" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Échec de la mise à jour de l’e-mail, veuillez réessayer." @@ -4614,7 +4879,7 @@ msgstr "Échec de la mise à jour des fils d’actu" msgid "Failed to update notification declaration" msgstr "Échec de la mise à jour de la déclaration de notification" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Échec de la mise à jour des paramètres" @@ -4641,7 +4906,7 @@ msgstr "Faux compte ou bot" msgid "False information about elections" msgstr "Fausses infos concernant des élections" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Fil d’actu" @@ -4649,7 +4914,7 @@ msgstr "Fil d’actu" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Fil d’actu par {0}" @@ -4662,7 +4927,7 @@ msgstr "Fil d’actu créé par" msgid "Feed identifier" msgstr "Identifiant du fil d’actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu du fil d’actu" @@ -4676,25 +4941,25 @@ msgstr "Fil d’actu indisponible" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Commentaires" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Commentaires envoyés au fournisseur du fil d’actu" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Fils d’actu" @@ -4739,7 +5004,7 @@ msgstr "Filtrer les résultats par langue (actuellement : {currentLanguageLabel 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:166 msgid "Filter who you receive notifications from" msgstr "Filtrer de qui vous recevrez des notifications" @@ -4747,11 +5012,11 @@ msgstr "Filtrer de qui vous recevrez des notifications" msgid "Finalizing" msgstr "Finalisation" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Enfin !" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Enfin ! Gardez une trace des posts qui sont importants pour vous. Conservez-les pour les retrouver à tout moment." @@ -4768,19 +5033,17 @@ msgstr "Finance" msgid "Find accounts to follow" msgstr "Trouver des comptes à suivre" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Rechercher des contacts" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Retrouver des amis" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Retrouver des amis à partir des contacts" +msgid "Find and invite friends" +msgstr "Trouver et inviter des amis" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Rechercher des contacts" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Retrouver mes amis" msgid "Find people to follow" msgstr "Trouver des comptes à suivre" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Trouver des personnes que vous connaissez" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Trouver des posts, des comptes et des fils d’actu sur Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Retrouver vos amis" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "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)" @@ -4847,22 +5114,22 @@ msgstr "Mettre en focus le champ de recherche" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Suivre" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Suivre {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "S’abonner à {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Suivre le compte" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Suivre tous les comptes" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Suivre en retour" @@ -4916,7 +5183,7 @@ msgstr "Suivre en retour" msgid "Followed all accounts!" msgstr "Comptes suivis avec succès !" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Comptes trouvés suivis avec succès" @@ -4944,8 +5211,12 @@ msgstr "Suivi par <0>{0} et <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Suivi par <0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Accessible aux comptes abonnés" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Abonné·e·s de @{0} que vous connaissez" @@ -4960,10 +5231,10 @@ msgstr "Abonné·e·s que vous connaissez" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Suivi" @@ -4977,12 +5248,12 @@ msgstr "Suivis" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Suit {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Abonné·e à {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Suit {handle}" msgid "Following feed preferences" msgstr "Préférences du fil des abonnements" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Préférences du fil des abonnements" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Vous suit" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Vous suit" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Police de caractères" @@ -5065,11 +5333,16 @@ msgstr "Mot de passe oublié ?" msgid "Forgot?" msgstr "Oublié ?" +#. 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 "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 msgid "Free your feed" msgstr "Libérez votre fil d’actu" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Provenant de" @@ -5086,82 +5359,86 @@ msgstr "Tiré de <0/>" msgid "Generate a starter pack" msgstr "Générer un kit de démarrage" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Générer le lien d’invitation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Générer un nouveau lien d’invitation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Générer un nouveau lien" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM déconnecté" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Lien avec Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM reconnecté" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obtenir de l’aide" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Notifier quand des comptes vous suivent." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Notifier quand des comptes aiment des posts que vous avez republiés." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Notifier quand des comptes aiment vos posts." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "Notifier quand des comptes aiment vos reposts." + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Notifier quand des comptes vous mentionnent." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Notifier quand des comptes vous citent." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Notifier quand des comptes répondent à vos posts." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Notifier quand des comptes republient à leur tour un de vos reposts." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Notifier quand des comptes republient vos posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Notifier quand des comptes repostent vos reposts." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Recevoir une notification à chaque nouveau post" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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}" @@ -5174,27 +5451,27 @@ msgstr "Recevoir des notifications pour l’activité de ce compte" msgid "Get notified when {name} posts" msgstr "Recevoir des notifications quand {name} poste" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Recevez des notifications quand quelqu’un poste" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "C’est parti" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF envoyé" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Donner à votre profil un visage" @@ -5213,20 +5490,20 @@ msgstr "Glorification de la violence" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Retour" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Retour" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Retour à l’étape précédente" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Accéder à l’accueil" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Accéder à l’accueil" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Accéder à l’accueil" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Passer en direct (désactivé)" msgid "Go live for" msgstr "Passer en direct pendant" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Voir le profil de {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Aller aux paramètres du compte" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Aller à la conversation avec {0}" @@ -5296,23 +5571,23 @@ msgstr "Ouvrir le fil d’actu" msgid "Go to next" msgstr "Aller à la suite" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Voir le profil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Ouvrir la discussion de groupe nommée « {chatName} »" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Voir le profil du compte" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Voir le profil du compte" @@ -5320,11 +5595,18 @@ msgstr "Voir le profil du compte" msgid "Going live is currently disabled for your account" msgstr "Votre compte ne peut plus passer en direct actuellement" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Bien compris" +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Autoriser l’accès" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5340,59 +5622,75 @@ msgstr "Contenu graphique violent" msgid "Grooming or predatory behavior" msgstr "Comportement de grooming ou de prédation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Discussion de groupe" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Boîte de dialogue du lien d’invitation à la discussion de groupe" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Discussion de groupe verrouillée" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Discussion de groupe en sourdine" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Nom de la discussion de groupe modifié" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Paramètres de la discussion de groupe" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Discussion de groupe déverrouillée" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Discussion de groupe rétablie" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Les discussions de groupe ne sont pas encore disponibles" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Discussions de groupe" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Les discussions de groupe sont désormais disponibles" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Les discussions de groupe ne sont disponibles qu’aux personnes ayant 18 ans ou plus." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Les discussions de groupe ne peuvent avoir qu’un maximum de {0, plural, other {# personnes}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Le groupe est verrouillé" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Nom du groupe" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Piratage du site ou attaques du système" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Ce pseudo est trop long. Veuillez utiliser un pseudo plus court." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Actuellement" @@ -5446,7 +5744,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:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Mot-clé" @@ -5458,8 +5756,8 @@ msgstr "Mot-clé : {tag}" msgid "Hate speech" msgstr "Discours de haine" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Vous avez un code ? <0>Cliquez ici." @@ -5479,11 +5777,11 @@ msgstr "Conservé par Bluesky pendant 7 jours pour éviter les abus, puis suppri #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Aide" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Liste cachée" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Liste cachée" msgid "Hide" msgstr "Cacher" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Cacher" @@ -5553,18 +5851,18 @@ msgstr "Masquer les évènements de discussion" msgid "Hide lists" msgstr "Masquer les listes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Cacher ce post pour moi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Cacher cette réponse pour tout le monde" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Cacher cette réponse pour moi" @@ -5577,19 +5875,19 @@ msgstr "Cacher cette carte" msgid "Hide this event" msgstr "Masquer cet évènement" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Cacher ce post ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Cacher cette réponse ?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Masquer la traduction" @@ -5606,7 +5904,7 @@ msgstr "Cacher les tendances ?" msgid "Hide trending videos?" msgstr "Cacher les vidéos tendances ?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Cacher la liste des comptes" @@ -5620,6 +5918,10 @@ msgstr "Masquer les badges de vérification" msgid "Hides the content" msgstr "Cache ce contenu" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Masque la bannière promo d’invitation d’amis" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, on dirait que vous avez utilisé un <0>mot de passe d’application pour vous connecter. Pour pouvoir saisir votre date de naissance, vous devrez vous connecter avec le mot de passe principal de votre compte, ou demander à celui ou celle qui contrôle ce compte de le faire." @@ -5652,19 +5954,15 @@ msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données. msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, nous n’avons pas pu charger ce service de modération." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Attendez ! Nous donnons progressivement accès à la vidéo et vous faites toujours la queue. Revenez bientôt !" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Minute, papillon ! Cette fonctionnalité n’est pas encore disponible pour vous. Veuillez revenir plus tard." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Accueil" @@ -5721,7 +6019,7 @@ msgstr "Je comprends" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Je suis {0} sur Bluesky — viens me rejoindre ! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Si le texte alt est trop long, change son mode d’affichage" @@ -5757,15 +6055,15 @@ msgstr "Si vous supprimez cette liste, vous ne pourrez pas la récupérer." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si vous possédez votre propre domaine, vous pouvez l’utiliser comme pseudo. Cela vous permet d’auto-vérifier votre identité. <0>En savoir plus (en anglais)" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Si vous avez besoin de mettre à jour votre adresse e-mail, <0>cliquez ici." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Si vous supprimez ce post, vous ne pourrez pas le récupérer." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Si vous mettez à jour votre adresse e-mail, la 2FA par e-mail sera désactivée." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Si vous voulez restreindre qui peut recevoir des notifications concernant votre propre activité, vous pouvez le faire depuis <0>Paramètres → Confidentialité et sécurité." @@ -5786,23 +6083,23 @@ msgstr "Si vous êtes développeur, vous pouvez héberger votre propre serveur." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Si vous essayez de changer de pseudo ou d’adresse e-mail, faites-le avant de désactiver votre compte." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Image" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Image {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Image {0} sur {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Image {0} sur {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Cache des images purgé, {0} libérés" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Galerie d’images, {0} images" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "L’image est cachée pour respecter vos paramètres de modération." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "L’image n’est pas disponible." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Options d’image" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Usurpation d’identité" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importer des contacts" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importer des contacts" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Importer des contacts ou inviter vos amis" + #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importer des contacts pour retrouver vos amis" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importé le {0}" @@ -5881,40 +6182,40 @@ msgstr "Importé le {0}" 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 "Pour vous offrir une expérience adaptée à votre âge, nous devons connaître votre date de naissance. On ne vous le demandera qu’une fois, et cette donnée restera privée." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Dans l’app." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notifications dans l’app." -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "Dans l’app., de tout le monde" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "Dans l’app., des comptes suivis" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "Dans l’app., alertes" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "Dans l’app., alertes, de tout le monde" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "Dans l’app., alertes, des comptes suivis" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Boîte de réception vide" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "C’est vide !" @@ -5954,6 +6255,10 @@ msgstr "Les brouillons sont arrivés" msgid "Introducing finding friends via contacts" msgstr "Voici la recherche d’amis via les contacts" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Et voici les discussions de groupe" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "Et voici les posts conservés (les signets)" @@ -5963,11 +6268,15 @@ msgstr "Et voici les posts conservés (les signets)" msgid "Invalid 2FA confirmation code." msgstr "Code de confirmation 2FA invalide." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Code de discussion de groupe incorrect." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Votre pseudo est invalide. Veuillez utiliser un pseudo différent." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Paramètres d’interaction invalides." @@ -5977,10 +6286,15 @@ msgstr "Paramètres d’interaction invalides." msgid "Invalid phone number" msgstr "Numéro de téléphone incorrect" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Sujet de signalement invalide" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Demande d’annulation invalide." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Code de vérification invalide" @@ -6001,8 +6315,15 @@ msgstr "Code d’invitation" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Inviter des amis" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Inviter des amis" @@ -6010,21 +6331,31 @@ msgstr "Inviter des amis" msgid "Invite friends <0/>" msgstr "Inviter des amis <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Lien d’invitation" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Lien d’invitation" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Lien d’invitation copié" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Lien d’invitation créé" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Lien d’invitation désactivé" @@ -6040,11 +6371,16 @@ msgstr "Lien d’invitation activé" msgid "Invite people to this starter pack!" msgstr "Invitez les gens à ce kit de démarrage !" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Invitez vos amis" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Invitez vos ami·e·s à suivre vos fils d’actu et vos personnes préférées" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Invité·e" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID de job : {0}" @@ -6083,6 +6419,11 @@ msgstr "ID de job : {0}" msgid "Jobs" msgstr "Emplois" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Rejoindre" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Emplois" msgid "Join Bluesky" msgstr "Rejoignez Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Rejoindre la discussion de groupe" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Demande à rejoindre annulée." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Participez à la conversation" msgid "Journalism" msgstr "Journalisme" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Revenir à l’édition" @@ -6109,6 +6460,11 @@ msgstr "Revenir à l’édition" msgid "Keep me posted" msgstr "Tenez-moi au courant" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Expulser le membre" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Site de KWS" @@ -6143,7 +6499,7 @@ msgstr "Étiquettes sur votre compte" msgid "Labels on your content" msgstr "Étiquettes sur votre contenu" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Paramètres linguistiques" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Dernier" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "En savoir plus sur la manière dont l’invitation d’amis fonctionne" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "En savoir plus sur l’import de contacts (en anglais)" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "En savoir plus sur cet avertissement" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "En savoir plus sur la vérification sur Bluesky (en anglais)" @@ -6239,7 +6595,7 @@ msgstr "En savoir plus sur la vérification sur Bluesky (en anglais)" msgid "Learn more about what is public on Bluesky." msgstr "En savoir plus sur ce qui est public sur Bluesky (en anglais)." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "En savoir plus sur votre lien Germ DM" @@ -6252,31 +6608,33 @@ msgstr "En savoir plus dans vos <0>paramètres de compte." msgid "Learn more." msgstr "En savoir plus." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Se retirer" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Se retirer de la discussion" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Se retirer de la conversation" @@ -6284,13 +6642,14 @@ msgstr "Se retirer de la conversation" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Se retirer de la conversation" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Quitter la discussion de groupe" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Se retirer de cette discussion de groupe" @@ -6299,6 +6658,14 @@ msgstr "Se retirer de cette discussion de groupe" msgid "Leaving Bluesky" msgstr "Vous quittez Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "A quitté la discussion de groupe." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "devant vous dans la file." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clair" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Aimer" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Aimer ({0, plural, one {# ont aimé} other {# ont aimé}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notifications « J’aime »" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Aimer ce fil d’actu" @@ -6358,8 +6721,8 @@ msgstr "Aimer ce fil d’actu" msgid "Like this labeler" msgstr "Aimer cet étiqueteur" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Aimé par" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Aimé par {0, plural, one {# compte} other {# comptes}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Aimé par {likeCount, plural, one {# compte} other {# comptes}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Posts aimés" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "« J’aime » de vos reposts" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notifications « J’aime » de vos reposts" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Mentions « J’aime » sur ce post" @@ -6409,11 +6768,11 @@ msgstr "Mentions « J’aime » sur ce post" msgid "Linear" msgstr "Linéaire" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Lien copié dans le presse-papiers" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Liste" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste réaffichée" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listes" @@ -6545,7 +6904,7 @@ msgstr "Direct réaffiché" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Les évènements en direct apparaissent de temps en temps quand quelque chose d’intéressant se passe. Si vous préférez, vous pouvez les masquer de cet endroit de l’app, que ce soit juste pour cet évènement ou pour tous les évènements futurs." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "La fonction « En direct » est en bêta" @@ -6595,27 +6954,27 @@ msgstr "Chargement des paramètres d’interaction du post…" msgid "Loading..." msgstr "Chargement…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Verrouiller" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Verrouiller la discussion de groupe" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Verrouiller la discussion de groupe ?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Verrouiller cette discussion de groupe" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Verrouillée" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Journaux" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo par @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo par <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "On dirait que vous n’avez plus de fil des abonnements. <0>Cliquez ici msgid "Love GIFs" msgstr "GIFs d’amour" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Ajuster les paramètres d’e-mail pour votre compte" @@ -6687,24 +7046,22 @@ msgstr "Gérer les paramètres de vérification" msgid "Manage your muted words and tags" msgstr "Gérer les mots et les mots-clés masqués" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Tout marquer comme lus" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marqué comme lu" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Tout marqué comme lus" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Peut-être plus tard" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "Membre retiré de la discussion de groupe." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Membres" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Les membres pourront continuer à lire l’historique de la discussion mais ne pourront plus envoyer de nouveaux messages." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notifications des mentions" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "comptes mentionnés" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentions" @@ -6761,7 +7118,7 @@ msgstr "Message" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Envoyer un message" @@ -6771,26 +7128,26 @@ msgstr "Envoyer un message" msgid "Message {0}" msgstr "Envoyer un message à {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Envoyer un message à {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Message supprimé" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Message supprimé" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Échec de l’envoi du message." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Message de @{0} : {1}" @@ -6813,19 +7170,19 @@ msgstr "Le message est trop long" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Le message est trop long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Options de message" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 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é." @@ -6838,10 +7195,6 @@ msgstr "Minuit" msgid "Minor harassment or bullying" msgstr "Harcèlement (ou intimidation) d’un mineur" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notifications diverses" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Trompeur" @@ -6850,7 +7203,7 @@ msgstr "Trompeur" msgid "Missing media" msgstr "Média manquant" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modération" @@ -6894,7 +7247,7 @@ msgstr "Liste de modération mise à jour" msgid "Moderation lists" msgstr "Listes de modération" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listes de modération" @@ -6903,7 +7256,7 @@ msgstr "Listes de modération" msgid "moderation settings" msgstr "paramètres de modération" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "États de modération" @@ -6928,8 +7281,8 @@ msgstr "Plus de langues…" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Plus d’options" @@ -6949,7 +7302,7 @@ msgstr "Cinéma" msgid "Music" msgstr "Musique" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Mettre en sourdine" @@ -6965,8 +7318,8 @@ msgstr "Désactiver le son" msgid "Mute {0}" msgstr "Masquer {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Masquer le compte" msgid "Mute accounts" msgstr "Masquer les comptes" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Masquer la conversation" @@ -6994,7 +7347,7 @@ msgstr "Masquer la liste" msgid "Mute these accounts?" msgstr "Masquer ces comptes ?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Mettre cette discussion de groupe en sourdine" @@ -7022,17 +7375,21 @@ msgstr "Masquer ce mot dans les mots-clés uniquement" msgid "Mute this word until you unmute it" msgstr "Masquer ce mot jusqu’à ce que vous le réaffichiez" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Masquer ce fil de discussion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Masquer les mots et les mots-clés" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Mettez en sourdine, partez ou retirez des personnes à tout moment. C’est votre discussion." + +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Muted" msgstr "En sourdine" @@ -7040,7 +7397,7 @@ msgstr "En sourdine" msgid "Muted accounts" msgstr "Comptes masqués" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Comptes masqués" @@ -7062,6 +7419,10 @@ msgstr "Mots et mots-clés masqués" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Ce que vous masquez reste privé. Les comptes masqués peuvent interagir avec vous, mais vous ne verrez pas leurs posts et ne recevrez pas de notifications de leur part." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Discussions de groupe en commun" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Accéder au kit de démarrage" msgid "Navigates to the next screen" msgstr "Navigue vers le prochain écran" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navigue vers votre profil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Besoin de signaler une violation de droit d’auteur, un problème de conformité réglementaire, ou faire une requête légale ?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nouveau" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Nouveau post} other {Nouveaux posts}} de {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nouvelle discussion" @@ -7163,7 +7525,7 @@ msgstr "Nouvelle discussion avec {0} et {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Nouvelle discussion avec {0}, {1} et {memberCount, plural, one {{memberCount} autre} other {{memberCount} autres}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Nouvelle adresse e-mail" @@ -7171,32 +7533,30 @@ msgstr "Nouvelle adresse e-mail" #: 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 "Nouvelle fonctionnalité" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notifications de nouveaux comptes abonnés" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Nouveaux comptes abonnés" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Nouvelle discussion de groupe" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Nouvelle discussion de groupe avec :" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nouveau post" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nouveau post" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Nouveaux posts de {firstAuthorLink} et <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Nouveaux posts de {firstAuthorName} et {additionalAuthorsCount, plural, one {{formattedAuthorsCount} autre} other {{formattedAuthorsCount} autres}}" @@ -7262,8 +7622,8 @@ msgstr "Actualités" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Suivant" msgid "Next image" msgstr "Image suivante" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Nuit" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Aucun compte abonné pour l’instant" @@ -7335,7 +7699,7 @@ msgstr "Pas de GIFs trouvés pour « {query} »." msgid "No GIFs to show right now. Try again in a moment." msgstr "Pas de GIFs à afficher actuellement. Veuillez réessayer plus tard." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Pas d’image" @@ -7353,8 +7717,8 @@ msgstr "Aucune liste" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Ne suit plus {0}" @@ -7362,7 +7726,7 @@ msgstr "Ne suit plus {0}" msgid "No media yet" msgstr "Aucun média pour l’instant" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Pas encore de messages" @@ -7378,12 +7742,12 @@ msgstr "Sans nom" msgid "No notifications yet!" msgstr "Pas encore de notifications !" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Personne" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Personne" @@ -7399,7 +7763,7 @@ msgstr "Personne" msgid "No one but the author can quote this post." msgstr "Personne d’autre que l’auteur·ice ne peut citer ce post." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Personne ne peut envoyer de message" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Aucun résultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Aucun résultat" @@ -7446,8 +7810,8 @@ msgstr "Aucun résultat" msgid "No results for \"{0}\"." msgstr "Aucun résultat pour « {0} »." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Aucun résultat trouvé" @@ -7509,12 +7873,12 @@ msgstr "Imagerie intime sans consentement" msgid "Non-sexual Nudity" msgstr "Nudité non sexuelle" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Aucune" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Indisponible sur cette plateforme" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Indisponible sur cette plateforme." @@ -7522,16 +7886,16 @@ msgstr "Indisponible sur cette plateforme." msgid "Not followed by anyone you’re following" msgstr "Pas suivi par quiconque que vous suivez" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Introuvable" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Pas encore prêt·e à appuyer sur Poster ? Gardez vos meilleures idées dans les Brouillons jusqu’au moment parfait." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Note sur le partage" @@ -7548,44 +7912,31 @@ msgstr "Note : Ce post n’est visible qu’aux personnes connectées." msgid "Nothing saved yet" msgstr "Rien n’a encore été conservé" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Paramètres de notification" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notifications" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notifications pour tout le reste, comme quand quelqu’un s’inscrit via l’un de vos kits de démarrage." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "maintenant" @@ -7601,7 +7952,7 @@ msgstr "Le numéro doit être un numéro de mobile" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Éteint" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "OK" @@ -7648,35 +8000,35 @@ msgstr "sur<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Réinitialiser le didacticiel" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Un des comptes destinataires sélectionnés n’autorise pas les discussions de groupe." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Un des comptes destinataires sélectionnés vous a bloqué et ne pourra pas être contacté." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images n’ont pas de texte alt." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Un ou plusieurs des fichiers sélectionnés ne sont pas pris en charge." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Un ou plusieurs des fichiers sélectionnés sont trop gros. La taille maximale est de 100 Mo." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Une ou plusieurs vidéos n’ont pas de texte alt." @@ -7685,6 +8037,26 @@ msgstr "Une ou plusieurs vidéos n’ont pas de texte alt." msgid "Only {0} can reply." msgstr "Seul {0} peut répondre." +#. 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:234 +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" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Seuls les comptes administrateurs peuvent accepter les demandes à rejoindre." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Seuls les comptes administrateurs peuvent ignorer les demandes à rejoindre." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Seuls les comptes abonnés peuvent rejoindre cette discussion." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Seulement des abonné·e·s que je suis" msgid "Only image files are supported" msgstr "Seuls les fichiers d’images sont pris en charge" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Seules les personnes auxquelles {0} est abonné·e peuvent rejoindre la discussion." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +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/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Seuls les fichiers WebVTT (.vtt) sont pris en charge" @@ -7703,6 +8085,10 @@ msgstr "Seuls les fichiers WebVTT (.vtt) sont pris en charge" msgid "Oops, something went wrong!" msgstr "Oups, quelque chose n’a pas marché !" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7712,7 +8098,7 @@ msgstr "Oups, quelque chose n’a pas marché !" msgid "Oops!" msgstr "Oups !" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Ouvre le créateur d’avatar" @@ -7720,12 +8106,17 @@ msgstr "Ouvre le créateur d’avatar" msgid "Open camera" msgstr "Ouvrir l’appareil photo" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Ouvrir la discussion" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Ouvrir les options de membres concernant {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Ouvrir les options de conversation" @@ -7739,16 +8130,16 @@ msgstr "Ouvre le menu latéral" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Ouvrir le sélecteur d’emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Ouvrir le menu des options de fil d’actu" @@ -7760,13 +8151,22 @@ msgstr "Ouvrir la liste complète des emojis" msgid "Open Germ DM" msgstr "Ouvrir Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Ouvrir la discussion de groupe" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Ouvrir les paramètres de discussion de groupe" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Ouvrir dans Google Traduction" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "Ouvrir le lien vers {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Ouvrir le kit" msgid "Open post options menu" msgstr "Ouvrir le menu d’options du post" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Ouvrir le profil" +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "Ouvrir le scanner de QR code" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "Ouvrir la page Storybook" msgid "Open system log" msgstr "Ouvrir le journal du système" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Ouvrir cette discussion de groupe" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Ouvre une boîte de dialogue permettant d’ajouter un avertissement de msgid "Opens a dialog to choose who can interact with this post" msgstr "Ouvre une boîte de dialogue pour choisir qui peut interagir avec ce post" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "Ouvre une liste de thèmes de couleurs pour la carte QR" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "Ouvre des détails supplémentaires pour une entrée de débug" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Ouvre l’appareil photo de l’appareil" @@ -7858,22 +8270,24 @@ msgstr "Ouvre la fenêtre de rédaction" msgid "Opens device camera" msgstr "Ouvre l’appareil photo" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Ouvre la photothèque pour sélectionner {MAX_IMAGES, plural, one {une image} other {jusqu’à # images}}, une seule vidéo ou un GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Ouvre la galerie de l’appareil pour sélectionner jusqu’à {MAX_GALLERY_IMAGES, plural, one {# image} other {# images}}, ou une seule vidéo ou GIF." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Ouvre le parcours pour vous connecter à votre compte Bluesky existant" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Ouvre l’image complète" @@ -7890,7 +8304,7 @@ msgstr "Ouvre le sélecteur d’images" msgid "Opens link {0}" msgstr "Ouvre le lien vers {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Ouvre la fenêtre de statut « En direct »" @@ -7902,15 +8316,23 @@ msgstr "Ouvre le formulaire de réinitialisation du mot de passe" msgid "Opens post language settings" msgstr "Ouvre les paramètres de langue du post" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Ouvre le profil" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "Ouvre les paramètres pour trouver et inviter des amis" + #. 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 "Ouvres la boîte de dialogue de sélection de GIF" +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "Ouvre la fenêtre d’invitation d’amis pour partager votre profil" + #: src/view/com/feeds/ComposerPrompt.tsx:148 msgid "Opens the post composer" msgstr "Ouvre la fenêtre de rédaction" @@ -7919,9 +8341,8 @@ msgstr "Ouvre la fenêtre de rédaction" msgid "Opens this draft in the composer" msgstr "Ouvre le brouillon dans la fenêtre de rédaction" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Ouvre ce profil" @@ -7997,12 +8418,12 @@ msgstr "Notre article de blog (en anglais)" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Notre équipe de modération a reçu votre signalement." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Notre modération a examiné les signalements qu’elle a reçu et a décidé de désactiver votre accès aux discussions sur Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Notre modération a examiné les signalements qu’elle a reçu et a dé msgid "Owner" msgstr "Propriétaire" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Page introuvable" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Le propriétaire doit verrouiller le groupe avant d’en partir." -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Page introuvable" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Mettre en pause la vidéo" msgid "People" msgstr "Personnes" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Les personnes que {ownerName} suit peuvent rejoindre directement" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "Les personnes que {ownerName} peuvent demander à rejoindre" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Comptes suivis" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Les personnes que je suis peuvent rejoindre directement" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Les personnes que je suis peuvent demander à rejoindre" @@ -8136,13 +8558,17 @@ msgstr "Numéro de téléphone vérifié" msgid "Photography" msgstr "Photographie" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Choisir un thème de couleurs" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Images destinées aux adultes." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Épingler le fil d’actu" @@ -8152,12 +8578,12 @@ msgstr "Épingler le fil d’actu" msgid "Pin to home" msgstr "Ajouter à l’accueil" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Ajouter à l’accueil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Épingler à votre profil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Épinglé" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} ajouté à l’accueil" @@ -8236,7 +8662,7 @@ msgstr "Veuillez choisir votre pseudo." msgid "Please choose your password." msgstr "Veuillez choisir votre mot de passe." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Veuillez cliquer sur le lien dans l’e-mail que nous venons de vous env msgid "Please complete the verification captcha." msgstr "Veuillez compléter le captcha de vérification." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Veuillez confirmer votre adresse e-mail pour envoyer des vidéos." @@ -8265,14 +8691,14 @@ msgstr "Veuillez saisir un mot de passe. Il doit comporter au moins 8 caractère msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Veuillez saisir un nom unique pour ce mot de passe d’application ou utiliser un nom généré de manière aléatoire." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Veuillez saisir un code valide." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Veuillez saisir une adresse e-mail valide." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Veuillez entrer une adresse e-mail valide et non temporaire. Vous pourriez avoir besoin d’accéder à cette adresse dans le futur." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Veuillez saisir le code que nous avons envoyé à <0>{0} ci-dessous." @@ -8293,7 +8719,7 @@ msgstr "Veuillez saisir le code que nous avons envoyé à <0>{0} ci-dessous. msgid "Please enter the code you received and the new password you would like to use." msgstr "Entrez le code que vous avez reçu et le nouveau mot de passe que vous souhaitez utiliser." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Veuillez entrer votre e-mail." msgid "Please enter your invite code." msgstr "Veuillez saisir votre code d’invitation." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Veuillez saisir votre nouvelle adresse e-mail." @@ -8323,7 +8749,7 @@ msgstr "Veuillez entrer votre pseudo" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Expliquez-nous pourquoi vous pensez que cette étiquette a été appliquée à tort par {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Expliquez-nous pourquoi vous pensez que vos discussions ont été désactivées de manière indue" @@ -8358,7 +8784,11 @@ msgstr "Veuillez sélectionner une raison pour ce signalement" msgid "Please sign in as @{0}" msgstr "Identifiez-vous en tant que @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "Veuillez utiliser l’appli. mobile Bluesky pour scanner un QR code." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "Veuillez utiliser l’app native pour importer vos contacts." @@ -8366,7 +8796,7 @@ msgstr "Veuillez utiliser l’app native pour importer vos contacts." msgid "Please use the native app to sync your contacts." msgstr "Veuillez utiliser l’app native pour synchroniser vos contacts." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Veuillez vérifier votre e-mail" @@ -8383,7 +8813,7 @@ msgstr "Politique" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Poster" @@ -8403,12 +8833,12 @@ msgstr "Publier une photo" msgid "Post a video" msgstr "Publier une vidéo" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Tout poster" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Poster quand même" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Post bloqué" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Post de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Post supprimé" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Échec de l’envoi du post. Vérifiez votre connexion Internet et réessayez." @@ -8454,18 +8884,22 @@ msgstr "Post caché par vous" msgid "Post interaction settings" msgstr "Paramètres d’interaction du post" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Paramètres d’interaction du post" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Postez-le sur Bluesky ou partagez-le n’importe où." + #. 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 "Sélection des langues du post" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Poster le lien" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Posts, réponses" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Lien potentiellement trompeur" @@ -8525,9 +8954,10 @@ msgstr "Langue préférée" msgid "Press to attempt reconnection" msgstr "Appuyer pour tenter une reconnection" -#: src/components/Error.tsx:61 +#: 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 "Appuyer pour réessayer" @@ -8536,7 +8966,7 @@ msgstr "Appuyer pour réessayer" msgid "Press to view followers of this account that you also follow" msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez également" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Aperçu" @@ -8559,26 +8989,25 @@ msgstr "Vie privée" msgid "Privacy and security" msgstr "Confidentialité et sécurité" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Politique de confidentialité" @@ -8586,15 +9015,15 @@ 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:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Traitement du GIF en cours…" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Traitement de la vidéo en cours…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Traitement…" @@ -8602,10 +9031,10 @@ msgstr "Traitement…" msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "Bannière de profil vide" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profil introuvable" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publier le post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publier les posts" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publier les réponses" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publier la réponse" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Alertes" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Alertes (notifs push)" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "Alertes, de tout le monde" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "Alertes, des comptes suivis" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Code QR copié dans votre presse-papier !" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Code QR a été téléchargé !" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Code QR enregistré dans votre photothèque !" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notifications de citation" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notifications de citation" msgid "Quote post" msgstr "Citer le post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "La citation a été ré-attachée" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "La citation a été détachée avec succès" @@ -8711,12 +9138,12 @@ msgstr "Citations désactivées" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citations" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citations de ce post" @@ -8728,16 +9155,16 @@ msgstr "Limite de changements dépassée – vous avez essayé de changer votre msgid "Rate limit exceeded. Please try again later." msgstr "Limite dépassée. Veuillez réessayer plus tard." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Réattacher la citation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Réactiver le lien d’invitation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Réactiver le lien" @@ -8745,8 +9172,8 @@ msgstr "Réactiver le lien" msgid "React with {emoji}" msgstr "Réagir avec {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Réactions" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "découvrez-en plus sur les filtres de recherche (en anglais)" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Lire l’article de blog (en anglais)" @@ -8812,11 +9239,11 @@ msgstr "Des vrais humains." msgid "Reason for appeal" msgstr "Raison de l’appel" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Recevoir des notifications dans l’app." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Recevoir des alertes (notifs push)" @@ -8841,17 +9268,31 @@ msgstr "Recommandé" msgid "Reconnect" msgstr "Se reconnecter" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Rafraîchissez la page pour le voir." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Décliner" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Décliner" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Décliner la demande de discussion" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Rejeter la demande à rejoindre" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Rafraîchir les conversations" @@ -8863,6 +9304,8 @@ msgstr "Rafraîchir les conversations" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Supprimer {displayName} du groupe" msgid "Remove {displayName} from starter pack" msgstr "Supprimer {displayName} du kit de démarrage" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Supprimer {displayName} de cette discussion de groupe" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Retirer {displayName} ?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Supprimer {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Supprimer {historyItem}" msgid "Remove account" msgstr "Supprimer compte" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Retirer tous les contacts" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Supprimer la pièce jointe" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Supprimer l’avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Supprimer l’image d’en-tête" @@ -8914,8 +9362,9 @@ msgstr "Supprimer l’image d’en-tête" msgid "Remove caption file" msgstr "Supprimer le fichier de sous-titres" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Supprimer l’intégration" @@ -8929,12 +9378,12 @@ msgstr "Supprimer le fil d’actu" msgid "Remove feed?" msgstr "Supprimer le fil d’actu ?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Supprimer de la discussion" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Retirer des posts conservés" msgid "Remove from your feeds?" msgstr "Supprimer de vos fils d’actu ?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Supprimer l’image" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Supprimer le repost" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Supprimer la suggestion" @@ -9009,11 +9458,11 @@ msgstr "Retirer la vérification" msgid "Remove your verification for this account?" msgstr "Retirer votre vérification de ce compte ?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Supprimé par l’auteur·ice" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Supprimé par vous" @@ -9035,7 +9484,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:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "en réponse à vous" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Réponses" @@ -9104,14 +9552,14 @@ msgstr "Les réponses sont désactivées" msgid "Replies to this post are disabled." msgstr "Les réponses à ce post sont désactivées." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Répondre" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Répondre ({0, plural, one {# réponse} other {# réponses}})" @@ -9125,10 +9573,6 @@ msgstr "Réponse cachée par l’auteur·ice du fil de discussion" msgid "Reply Hidden by You" msgstr "Réponse cachée par vous" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notifications de réponses" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Les paramètres de réponse sont choisis par l’auteur·ice du fil de discussion" @@ -9137,18 +9581,18 @@ msgstr "Les paramètres de réponse sont choisis par l’auteur·ice du fil de d msgid "Reply sorting" msgstr "Ordre des réponses" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilité de la réponse mise à jour" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "La réponse a été cachée avec succès" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Signaler" @@ -9157,20 +9601,20 @@ msgstr "Signaler" msgid "Report account" msgstr "Signaler le compte" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Signaler la conversation" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Fenêtre de dialogue de signalement" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Signaler le fil d’actu" @@ -9179,12 +9623,12 @@ msgstr "Signaler le fil d’actu" msgid "Report list" msgstr "Signaler la liste" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Signaler le message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Signaler le post" @@ -9199,8 +9643,8 @@ msgstr "Signaler le kit de démarrage" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Signalement envoyé" @@ -9213,7 +9657,7 @@ msgstr "Signaler cette conversation" msgid "Report this feed" msgstr "Signaler ce fil d’actu" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Signaler cette discussion de groupe" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Signaler cette liste" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Signaler ce direct" @@ -9256,10 +9700,6 @@ msgstr "Republier" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republier ({0, plural, one {# repost} other {# reposts}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notifications de reposts" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Republié par vous" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Reposts" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Reposts de ce post" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Reposts de vos reposts" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notifications des reposts de vos reposts" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Demander à rejoindre cette discussion de groupe" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Demande acceptée." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Demander le code" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Demande ignorée." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Demander à rejoindre" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Demandée" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Demandes" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Demandes à rejoindre" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Nécessiter un texte alt avant de publier" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Nécessiter un code par e-mail pour se connecter au compte." @@ -9328,7 +9791,17 @@ msgstr "Obligatoire pour cet hébergeur" msgid "Required in your region" msgstr "Nécessaire dans votre région" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Annuler la demande" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Retirer votre demande à rejoindre la discussion" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Renvoyer" @@ -9373,8 +9846,8 @@ msgstr "Réinitialisation du didacticiel" msgid "Reset password" msgstr "Réinitialiser mot de passe" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Resynchroniser les contacts" @@ -9391,17 +9864,18 @@ msgstr "Réessaye la dernière action, qui a échoué" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Réessaye la dernière action, qui a échoué" msgid "Retry" msgstr "Réessayer" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Réessayer le chargement des options de signalement" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Retourne à la page précédente" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Retour à la page précédente" @@ -9451,10 +9925,10 @@ msgstr "GIFs tristes" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Enregistrer les modifications" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Enregistrer les modifications ?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Enregistrer le brouillon" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Enregistrer le brouillon ?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Enregistrer l’image" msgid "Save new handle" msgstr "Enregistrer votre nouveau pseudo" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Enregistrer le code QR" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Enregistrer dans mes fils d’actu" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Conservés" @@ -9534,25 +10010,25 @@ msgstr "Conservés" msgid "Saved Feeds" msgstr "Fils d’actu enregistrés" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Posts conservés" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Enregistré à mes fils d’actu" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Dites bonjour !" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Dites bonjour à quelqu’un" @@ -9560,6 +10036,16 @@ msgstr "Dites bonjour à quelqu’un" msgid "Scam" msgstr "Arnaque" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Scanner" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Scanner un QR code" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Science" @@ -9576,18 +10062,18 @@ msgstr "Défiler à droite" msgid "Scroll to top" msgstr "Remonter en haut" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Recherche" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Rechercher dans les posts de @{0}" @@ -9662,12 +10148,12 @@ msgstr "Rechercher une langue" msgid "Search my posts" msgstr "Rechercher dans mes posts" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Rechercher dans ses posts" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Rechercher dans les profils" msgid "Search..." msgstr "Rechercher…" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Recherche parmi les profils" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Étape de sécurité requise" @@ -9759,7 +10245,7 @@ msgstr "Sélectionner {langName}" msgid "Select a color" msgstr "Sélectionner une couleur" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Sélectionner une raison" @@ -9828,7 +10314,7 @@ msgstr "Sélectionner le GIF" msgid "Select GIF \"{0}\"" msgstr "Sélectionner le GIF « {0} »" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Sélectionner les membres du groupe" @@ -9850,7 +10336,7 @@ msgstr "Sélectionner la langue…" msgid "Select languages" msgstr "Sélectionner les langues" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Sélectionner un service de modération" @@ -9904,11 +10390,11 @@ msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous" msgid "Select your preferred language for translations in your feed." msgstr "Sélectionnez votre langue préférée pour traduire votre fils d’actu." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Sélectionner vos canaux de notification préférés" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "La sélection de plusieurs types de médias n’est pas prise en charge." @@ -9921,9 +10407,9 @@ msgstr "Automutiliation ou comportement dangereux" msgid "Send code" msgstr "Envoyer le code" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Envoyer e-mail" @@ -9935,11 +10421,11 @@ msgstr "Envoyer e-mail" msgid "Send error report" msgstr "Envoyer le rapport d’erreur" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Envoyer des commentaires" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Envoyer le message" @@ -9952,7 +10438,7 @@ msgstr "Envoyer le post à {name}" msgid "Send post to..." msgstr "Envoyer le post à…" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Envoyer le signalement à {title}" @@ -9960,7 +10446,7 @@ msgstr "Envoyer le signalement à {title}" msgid "Send the message from your phone" msgstr "Envoyer le message depuis votre téléphone" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Envoyer par message privé" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Envoyé à {0}" @@ -10015,14 +10501,14 @@ msgstr "Indiquez votre date de naissance ci-dessous et vous serez de retour à p msgid "Sets email for password reset" msgstr "Définit l’e-mail pour la réinitialisation du mot de passe" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Paramètres" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Paramètres des notifications d’activité d’autres comptes" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Paramètres des notifications « J’aime »" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Paramètres des notifications de mentions" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Paramètres des notifications de nouveaux comptes abonnés" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Paramètres des notifications diverses" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Paramètres des notifications « J’aime » de vos reposts" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Paramètres des notifications de citations" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Paramètres des notifications de réponses" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Paramètres des notifications de reposts" @@ -10079,16 +10565,19 @@ msgstr "Activité sexuelle ou nudité érotique." msgid "Sexually Suggestive" msgstr "Sexuellement suggestif" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Partager" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Partager quand même" @@ -10097,16 +10586,21 @@ msgstr "Partager quand même" msgid "Share author DID" msgstr "Partager le DID de l’auteur" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Partager l’image" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Partager le lien d’invitation" + #: 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 "Partager le lien" @@ -10114,6 +10608,11 @@ msgstr "Partager le lien" msgid "Share link dialog" msgstr "Dialogue pour le partage d’un lien" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Partager mon profil" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Partager l’URI at:// du post" msgid "Share QR code" msgstr "Partager le code QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Partager ce fil d’actu" @@ -10142,8 +10641,8 @@ msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre commu #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Partager via…" @@ -10151,7 +10650,7 @@ msgstr "Partager via…" msgid "Share your contacts to find friends" msgstr "Partager vos contacts pour retrouver des amis" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Testeur de préférences partagées" @@ -10167,16 +10666,16 @@ msgstr "Voir le texte alt" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Afficher quand même" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Afficher l’étiquette d’automatisation" @@ -10197,8 +10696,8 @@ msgstr "Afficher les paramètres de personnalisation" msgid "Show group chat updates" msgstr "Afficher les évènements de discussion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "En montrer moins comme ça" @@ -10219,8 +10718,8 @@ msgstr "Voir les directs dans votre fil d’actu Discover" msgid "Show More" msgstr "Voir plus" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "En montrer plus comme ça" @@ -10246,8 +10745,8 @@ msgstr "Afficher les réponses" msgid "Show replies as" msgstr "Type d’affichage des réponses" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Afficher la réponse pour tout le monde" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Afficher l’avertissement et filtrer des fils d’actu" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Rendez visibles vos streams" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Affiche plus d’informations sur la date de création de ce post" @@ -10297,15 +10796,17 @@ msgstr "Affiche le contenu" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Se connecter ou créer un compte" msgid "Sign in or create your account to join the conversation!" msgstr "Connectez-vous ou créez votre compte pour participer à la conversation !" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Connectez-vous pour accepter l’invitation." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Se connecter à un compte qui n’est pas listé" @@ -10337,8 +10842,12 @@ msgstr "Se connecter à un compte qui n’est pas listé" msgid "Sign in to Bluesky or create a new account" msgstr "Connectez-vous à Bluesky ou créez un nouveau compte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Connectez-vous pour demander à rejoindre cette discussion de groupe." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Se connecter pour voir le post" @@ -10348,9 +10857,9 @@ msgstr "Se connecter pour voir le post" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Déconnexion" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Se déconnecter" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Se déconnecter ?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Ignorer les posts vides ?" @@ -10405,7 +10914,7 @@ msgstr "Passer l’introduction et commencer à utiliser votre compte" msgid "Skip to next step" msgstr "Sauter à l’étape d’après" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "diapo" @@ -10413,7 +10922,7 @@ msgstr "diapo" msgid "Smaller" msgstr "Plus petite" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Repousse le rappel" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Quelqu’un a quitté le groupe" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Quelqu’un a réagi avec {0}" @@ -10487,17 +10996,22 @@ msgstr "Quelqu’un a été retiré" msgid "Someone was removed from the group" msgstr "Quelqu’un a été retiré du groupe" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Il y a du nouveau par ici" + +#: 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 "Il y a un souci avec les données que vous essayez de signaler. Veuillez contacter le support." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Quelque chose n’a pas marché" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Quelque chose n’a pas marché !" msgid "Something went wrong. Please try again in a moment." msgstr "Quelque chose n’a pas marché. Veuillez réessayer plus tard." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Quelque chose n’a pas marché. Veuillez réessayer." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Un problème ? Dites-nous tout." @@ -10564,11 +11078,16 @@ msgstr "Spam, comportements inauthentiques ou déceptifs" msgid "Sports" msgstr "Sports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Démarrez une conversation, et elle apparaîtra ici." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Démarrer une discussion de groupe" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Démarrer une nouvelle discussion" @@ -10582,17 +11101,17 @@ msgstr "Commencer à ajouter des personnes" msgid "Start adding people!" msgstr "Commencez à ajouter des personnes !" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Démarrer la discussion" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Démarrer une discussion avec {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Kit de démarrage" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Historique" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Vous streamez sur Twitch ? Affichez le fait que vous êtes en direct sur Bluesky : cela ajoutera un badge à votre avatar qui mènera directement les gens sur votre stream." @@ -10671,8 +11190,8 @@ msgstr "Vous streamez sur Twitch ? Affichez le fait que vous êtes en direct su #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Envoyer" @@ -10684,9 +11203,9 @@ msgstr "Faire appel" msgid "Submit Appeal" msgstr "Faire appel" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Envoyer le signalement" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "S’abonner" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "S’abonner sur {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "S’abonner à {publicationTitle} sur {0}" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Succès" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Succès !" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Vous avez rejoint la discussion de groupe avec succès !" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Vérification réussie" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Suggestion" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Coucher du soleil" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Soutien" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Cette fonctionnalité n’a pas encore été activée dans votre pays ! Veuillez revenir plus tard." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Les comptes suspendus ne peuvent pas participer à une discussion de groupe." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Les comptes suspendus ne peuvent pas participer à une discussion." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Changer de compte" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Changer de compte" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Basculer vers {0}" @@ -10824,11 +11347,15 @@ msgstr "Journal système" msgid "Tags only" msgstr "Mots-clés seulement" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Passez à une conversation privée." + #: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Tapez ici pour plus de détails" @@ -10854,33 +11381,51 @@ msgstr "Appuyez pour reconnaître que vous comprenez et acceptez ces mises à jo msgid "Tap to close context menu" msgstr "Taper pour fermer le menu contextuel" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Appuyez pour copier ce lien d’invitation" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Appuyer pour annuler" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Appuyez pour rejoindre cette discussion de groupe immédiatement" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Appuyez pour ouvrir cette discussion de groupe" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Appuyer pour supprimer" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Appuyer pour supprimer votre réaction {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Appuyer pour réessayer" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Appuyer sur afficher {0} réactions" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Appuyer pour afficher toutes les réactions" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Appuyer pour voir les réactions" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Conditions générales" @@ -10939,7 +11484,7 @@ msgstr "Texte et mots-clés" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Champ de saisie de texte" @@ -10981,9 +11526,9 @@ msgstr "Et voilà, c’est tout !" msgid "That's everything!" msgstr "C’est tout !" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Ce compte pourra interagir avec vous après le déblocage." @@ -11049,6 +11594,11 @@ msgstr "Les paramètres qui suivent seront utilisées comme vos paramètres par msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Les lois locales nécessitent de vérifier que vous êtes adulte pour accéder à certaines fonctionnalités. Appuyez pour en savoir plus." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "La limite du nombre de membres a été atteinte." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Le post auquel vous répondez est marqué comme étant écrit en {suggestedLanguageName} par son auteur·ice. Voudriez-vous plutôt répondre en <0>{suggestedLanguageName} ?" @@ -11057,10 +11607,10 @@ msgstr "Le post auquel vous répondez est marqué comme étant écrit en {sugges msgid "The Privacy Policy has been moved to <0/>" msgstr "Notre politique de confidentialité a été déplacée vers <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "La vidéo sélectionnée dépasse les {videoSize} Mo. Veuillez réessayer avec un fichier plus petit." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "La vidéo sélectionnée dépasse les {VIDEO_MAX_SIZE_MB} Mo. Veuillez réessayer avec un fichier plus petit." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Thème" 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 "Il y a une limite à la fréquence de modification de votre date de naissance. Il sera peut-être nécessaire d’attendre un jour ou deux avant de pouvoir la modifier à nouveau." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Il n’y a pas de lien d’invitation pour cette discussion de groupe." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Un problème est survenu lors du chargement des GIFs. Vérifiez votre connexion et réessayez." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Il y a eu un problème lors de la mise-à-jour de vos fils d’actu. Vérifiez votre connexion internet et réessayez." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Il y a eu un problème ! {0}" @@ -11221,6 +11774,14 @@ msgstr "Ce sont vos paramètres par défaut" msgid "These settings only apply to the Following feed." msgstr "Ces paramètres s’appliquent seulement pour votre fil d’abonnements." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "Ce compte est propriétaire de la discussion" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "Ce {screenDescription} a été signalé :" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Cet appel sera envoyé à <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Cet appel sera envoyé au service de modération de Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Cet appel sera envoyé au service de modération de Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Ce compte a choisi de ne rendre visible ses posts qu’aux personnes connectées." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Ce bouton permet à d’autres d’ouvrir l’app Germ DM pour vous envoyer un message. Vous pouvez gérer sa visibilité depuis l’app Germ DM, ou vous pouvez déconnecter votre compte Bluesky de Germ DM complètement en cliquant sur le bouton ci-dessous." @@ -11271,11 +11832,21 @@ msgstr "Ce bouton permet à d’autres d’ouvrir l’app Germ DM pour vous env msgid "This chat has ended" msgstr "Cette discussion est terminée" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Cette discussion est pleine" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Cette discussion est verrouillée" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "Cette discussion a été verrouillée par une décision de modération" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Cette discussion a été déconnectée" @@ -11310,7 +11881,11 @@ msgstr "Ce contenu n’est pas disponible car l’un des comptes impliqués a bl msgid "This content is not viewable without a Bluesky account." msgstr "Ce contenu n’est pas visible sans un compte Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Cette discussion est verrouillée." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Cette conversation se fait avec un compte supprimé ou désactivé. Appuyer pour plus d’options" @@ -11318,7 +11893,7 @@ msgstr "Cette conversation se fait avec un compte supprimé ou désactivé. Appu msgid "This draft will be permanently deleted." msgstr "Ce brouillon sera supprimé définitivement." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Cette adresse e-mail est déjà associée à votre compte." @@ -11356,11 +11931,15 @@ msgstr "Ce fil d’actu est vide." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Ce fil d’actu n’est plus disponible. Nous vous montrons <0>Discover à la place." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "Ce groupe est verrouillé par une décision de modération concernant son ou sa propriétaire" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Impossible d’utiliser cette image. Essayez avec un autre format, comme msgid "This information is private and not shared with other users." msgstr "Ces informations sont privées et ne sont pas partagées avec d’autres utilisateurs." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Ce lien d’invitation a été désactivé." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Ce lien d’invitation est incorrect" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Rien à afficher ici" @@ -11377,7 +11964,7 @@ msgstr "Rien à afficher ici" msgid "This is not a valid link" msgstr "Ce n’est pas un lien valide" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Cette étiquette permet à tout le monde de savoir que ce compte est automatisé. Si elle est apposée, cette étiquette apparaît au côté du nom du compte sur son profil et ses posts. Elle peut être apposée ou retirée à tout moment." @@ -11410,13 +11997,17 @@ msgstr "Cette liste – que vous avez créée – contient des violations possib msgid "This list is empty." msgstr "Cette liste est vide." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Ce message est caché" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Ce message est caché car vous avez bloqué ce compte." @@ -11434,7 +12025,7 @@ msgstr "Cette personne vous a bloquée" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ce post déclare avoir été créé le <0>{0}, mais a été vu pour la première fois par Bluesky le <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Ce post n’est visible qu’aux personnes connectées." msgid "This post was deleted by its author" msgstr "Ce post a été supprimé par son auteur·ice" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "L’auteur·ice de ce post a désactivé les citations." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Ce profil n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Cette réponse sera classée dans une section cachée au bas de votre fil de discussion et masquera les notifications pour les réponses suivantes – à la fois pour vous-même et pour les autres." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Cet écran n’est disponible que pour les discussions de groupe." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Ce compte n’a pas d’abonné·e·s." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Ce compte vous a bloqué et ne peut pas être contacté." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Ce compte a désactivé les discussions et ne peut pas être contacté." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Cela supprimera définitivement votre compte Bluesky <0>{currentHandle}< msgid "This will remove @{0} from the quick access list." msgstr "Cela supprimera @{0} de la liste d’accès rapide." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Cela retirera votre post de cette citation pour tout le monde, et le remplacera par un espace vide." @@ -11574,7 +12166,7 @@ msgstr "Préférences des fils de discussion" msgid "Threaded" msgstr "Sous forme de fils" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Préférences des fils de discussion" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Pour désactiver le 2FA par e-mail, vérifiez votre accès à votre adresse e-mail." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Pour désactiver le 2FA par e-mail, veuillez prouver que vous avez accès à <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Meilleur" msgid "Top replies first" msgstr "Meilleures réponses en premier" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Sujet" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traduire" @@ -11667,8 +12259,8 @@ msgstr "Traduction" msgid "Translating" msgstr "Traduction en cours" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Traduction en cours…" @@ -11702,7 +12294,7 @@ msgstr "Vidéos tendances" msgid "Trolling" msgstr "Trolling" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La confiance émerge de relations, de communautés et d’un contexte partagé, donc nous désignons également des <0>vérificateurs de confiance : des organisations qui peuvent vérifier des comptes directement." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Essayez avec une autre recherche, ou <0>découvrez-en plus sur les filtres de recherche (en anglais)." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Réessayer" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Réessayer" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Réessayez dans un instant." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Essayer avec Google Traduction" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Essayer" + #: src/lib/interests.ts:74 msgid "TV" msgstr "TV" @@ -11763,13 +12369,17 @@ msgstr "Impossible de contacter votre service. Vérifiez votre connexion Interne msgid "Unable to delete" msgstr "Impossible de supprimer" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Impossible de récupérer les demandes à rejoindre." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +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 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Impossible de trouver le compte destinataire sélectionné." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Indisponible" msgid "Unavailable feed information" msgstr "Informations sur le fil d’actu indisponible" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Débloquer" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Débloquer" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Débloquer {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Débloquer le compte" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Débloquer le compte ?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Débloquer le compte ?" @@ -11837,8 +12452,8 @@ msgstr "Débloquer la liste" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Annuler" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Annuler le repost ({0, plural, one {# repost} other {# reposts}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Se désabonner de {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Se désabonner du compte" @@ -11872,7 +12487,7 @@ msgstr "Se désabonner du compte" msgid "Unfollows the user" msgstr "Se désabonne du compte" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Malheureusement, aucun des étiqueteurs auxquels vous êtes abonnés ne supporte ce type de signalement." @@ -11884,14 +12499,6 @@ msgstr "Hélas, la date de naissance que vous avez enregistrée dans votre profi msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Hélas, l’âge que vous avez déclaré signifie que vous n’êtes pas assez grand pour accéder à Bluesky dans votre région." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Désinviter" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Désinviter {displayName} de cette discussion de groupe" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Vérificateur inconnu" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Retirer la mention « J’aime »" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Retirer la mention « J’aime » ({0, plural, one {# ont aimé} other {# ont aimé}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Déverrouiller la discussion" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Déverrouiller cette discussion de groupe" @@ -11939,14 +12546,14 @@ msgstr "Rétablir le son" msgid "Unmute {0}" msgstr "Réafficher {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Réafficher ce compte" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Réafficher la conversation" @@ -11955,12 +12562,12 @@ msgstr "Réafficher la conversation" msgid "Unmute list" msgstr "Réafficher la liste" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Enlever la sourdine de cette discussion de groupe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Réafficher ce fil de discussion" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Désépingler" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Désépingler le fil d’actu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Désépingler de l’accueil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Désépingler du profil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Supprimer la liste de modération" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} retiré de la page d’accueil" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Contenu à coller non supporté" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Type de vidéo non pris en charge : {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Jusqu’à 50 personnes" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,16 +12658,20 @@ msgstr "Mettre à jour" msgid "Update <0>{displayName} in Lists" msgstr "Mise à jour de <0>{displayName} dans les listes" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Mettre-à-jour l’appli." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Mettre à jour l’e-mail" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Mettre à jour le lien d’invitation" @@ -12065,11 +12680,15 @@ msgstr "Mettre à jour le lien d’invitation" msgid "Update to {domain}" msgstr "Mettre à jour pour {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Mettez à jour votre app à la dernière version pour participer aux discussions !" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Mettez-à-jour votre appli." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Mettez-à-jour votre appli. pour le voir." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Mettre à jour votre e-mail" @@ -12080,17 +12699,17 @@ msgstr "Mettre à jour votre e-mail" msgid "Update your location" msgstr "Mettre à jour votre position" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "La mise à jour de l’attachement de la citation a échoué" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 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:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Envoyer plutôt une photo" @@ -12098,39 +12717,40 @@ msgstr "Envoyer plutôt une photo" msgid "Upload a text file to:" msgstr "Envoyer un fichier texte vers :" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Envoyer à partir de l’appareil photo" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Envoyer à partir de fichiers" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Envoyer à partir de la photothèque" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Envoi du GIF en cours…" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Envoi des images en cours…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Envoi de la miniature du lien en cours…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Envoi de la vidéo en cours…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "compte" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Compte bloqué" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Liste de compte de {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Liste de comptes par {0}" @@ -12255,12 +12875,12 @@ msgstr "comptes suivis par <0>@{0}" msgid "users following <0>@{0}" msgstr "comptes abonnés à <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Comptes que je suis" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Comptes que je suis" @@ -12277,7 +12897,7 @@ msgstr "La vérification a échoué, veuillez réessayer." msgid "Verification settings" msgstr "Paramètres de vérification" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Paramètres de vérification" @@ -12304,8 +12924,8 @@ msgstr "Vérifier à nouveau" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Vérifier le code" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Vérifier l’enregistrement DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Vérifier le code d’e-mail" @@ -12349,7 +12969,7 @@ msgstr "Vérifier le compte ?" msgid "Verify your age" msgstr "Vérifier votre âge" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Version {0}" msgid "Video" msgstr "Vidéo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Le traitement de la vidéo a échoué" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Fil de vidéos" @@ -12419,7 +13039,7 @@ msgstr "Vidéo non trouvée." msgid "Video settings" msgstr "Paramètres vidéo" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Vidéo envoyée" @@ -12432,18 +13052,18 @@ msgstr "Vidéo : {0}" msgid "Videos" msgstr "Vidéos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Voir" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "Afficher {0}" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Voir le profil de {0}" @@ -12467,20 +13087,15 @@ msgstr "Voir le profil de {0}" msgid "View {0}’s profile" msgstr "Voir le profil de {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Voir le profil de {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "Afficher {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "Voir le profil de @{0}" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Voir le profil du compte bloqué" @@ -12503,10 +13118,18 @@ msgstr "Voir les détails" msgid "View full thread" msgstr "Voir le fil de discussion entier" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Voir les demandes de discussions de groupe" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Voir les demandes entrantes" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Voir les demandes entrantes pour rejoindre cette discussion de groupe" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "Voir les informations sur ces étiquettes" @@ -12522,7 +13145,7 @@ msgstr "Voir plus" msgid "View more trending videos" msgstr "Voir plus de vidéos tendances" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Voir le post" @@ -12539,10 +13162,10 @@ msgstr "Voir le profil" msgid "View profile banner" msgstr "Voir la bannière du profil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Voir la publication" @@ -12550,7 +13173,7 @@ msgstr "Voir la publication" msgid "View the avatar" msgstr "Afficher l’avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Voir le lien d’invitation pour cette discussion de groupe" @@ -12563,7 +13186,7 @@ msgstr "Voir le service d’étiquetage fourni par @{0}" msgid "View this user's verifications" msgstr "Voir les vérifications de ce compte" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Voir les comptes qui ont aimé ce fil d’actu" @@ -12596,8 +13219,8 @@ msgstr "Consulter vos comptes masqués" msgid "View your verifications" msgstr "Voir vos vérifications" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Affiche l’image complète" @@ -12640,8 +13263,8 @@ msgstr "Avertir du contenu" msgid "Warn content and filter from feeds" msgstr "Avertir du contenu et filtrer des fils d’actu" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Regarder maintenant" @@ -12665,11 +13288,15 @@ msgstr "Nous n’avons trouvé aucun résultat pour ce mot-clé." msgid "We couldn't find any results for that topic." msgstr "Nous n’avons trouvé aucun résultat pour ce sujet." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Nous ne pouvons pas charger cette conversation" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Nous n’avons pas pu charger les demandes à rejoindre cette discussion" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Nous n’avons pas pu charger cette discussion" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Nous vous recommandons de sélectionner au moins deux centres d’intérêt." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Nous avons envoyé un e-mail à <0>{0} contenant un lien. Veuillez cliquer dessus pour terminer le processus de vérification par e-mail." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nous n’avons pas pu déterminer si vous étiez autorisé à envoyer des vidéos. Veuillez réessayer." @@ -12744,12 +13371,12 @@ msgstr "Nous n’arrivons pas à recevoir la vérification à cause d’un probl msgid "We will let you know when your account is ready." msgstr "Nous vous informerons lorsque votre compte sera prêt." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Nous vous préviendrons dès que nous aurons retrouvé vos amis." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Nous enverrons un e-mail à <0>{0} contenant un lien. Vous devrez cliquer dessus pour terminer le processus de vérification par e-mail." @@ -12779,12 +13406,12 @@ msgstr "Nous rencontrons des problèmes pour initialiser le processus de vérifi msgid "We're having network issues, try again" msgstr "Nous avons des soucis de réseau, réessayez" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Nous avons des soucis de réseau, réessayez" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Nous sommes désolés ! La page que vous recherchez est introuvable." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Quel est le nom de votre kit de démarrage ?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Quoi de neuf ?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Quand vous tapez sur une coche, vous verrez quelles organisations ont accordé la vérification." @@ -12878,7 +13505,7 @@ msgstr "Quand vous tapez sur une coche, vous verrez quelles organisations ont ac msgid "Who can interact with this post?" msgstr "Qui peut interagir avec ce post ?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Qui peut rejoindre cette discussion de groupe et comment" @@ -12887,13 +13514,13 @@ msgstr "Qui peut rejoindre cette discussion de groupe et comment" msgid "Who can reply" msgstr "Qui peut répondre ?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Qui peut vérifier ?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Oups !" @@ -12939,19 +13566,19 @@ msgstr "Pourquoi ce kit de démarrage devrait-il être examiné ?" msgid "Why should this user be reviewed?" msgstr "Pourquoi ce compte doit-il être examiné ?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Souhaitez-vous bloquer ce compte ou supprimer cette conversation ?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Souhaitez-vous bloquer ce compte ou partir de cette conversation ?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "Voulez-vous enregistrer ça comme brouillon à modifier plus tard ?" @@ -12960,12 +13587,12 @@ msgstr "Voulez-vous enregistrer ça comme brouillon à modifier plus tard ?" msgid "Write a post" msgstr "Écrire un post" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Rédiger un post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Rédigez votre réponse" @@ -12978,7 +13605,8 @@ msgstr "Écrivain·e·s" msgid "Wrong DID returned from server. Received: {0}" msgstr "L’identifiant DID retourné du serveur est incorrect. Réponse : {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Mauvais type de discussion" @@ -13005,11 +13633,11 @@ msgstr "Oui, supprimer mon compte" msgid "Yes, delete this starter pack" msgstr "Oui, supprimer ce kit de démarrage" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Oui, détacher" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Oui, cacher" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "Vous avez bloqué {0}" @@ -13068,7 +13696,7 @@ msgstr "Vous êtes en direct" msgid "You are no longer live" msgstr "Vous n’êtes plus en direct" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Vous n’êtes pas autorisé à envoyer des vidéos." @@ -13117,21 +13745,30 @@ msgstr "Vous pouvez changer d’avis à tout moment et supprimer vos données" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Vous pouvez choisir si les discussions sont en sourdine ou non depuis les paramètres de chaque discussion depuis l’app" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Vous pouvez poursuivre les conversations en cours quel que soit le paramètre que vous choisissez." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Vous pouvez désormais choisir de recevoir une notification quand certains comptes spécifiques postent. S’il y a quelqu’un dont vous souhaitez avoir des nouvelles au plus vite, rendez-vous sur son profil et cherchez la nouvelle icône de cloche à côté du bouton de suivi." +#: src/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 "Vous pouvez désormais inviter des amis avec un lien ou un QR code. Partagez le lien n’importe où, ou laissez-les scanner le code pour vous rejoindre sur Bluesky." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Vous pouvez maintenant vous connecter avec votre nouveau mot de passe." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Les brouillons enregistrés ne peuvent contenir que 1000 caractères maximum." @@ -13139,11 +13776,11 @@ msgstr "Les brouillons enregistrés ne peuvent contenir que 1000 caractères max msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Les brouillons enregistrés ne peuvent contenir que 1000 caractères maximum. Voulez-vous abandonner ce post avant d’ouvrir vos brouillons ?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Vous ne pouvez sélectionner qu’un GIF à la fois." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Vous ne pouvez sélectionner qu’une vidéo à la fois." @@ -13155,10 +13792,10 @@ msgstr "Vous pouvez réactiver votre compte pour continuer à vous connecter. Vo msgid "You can read chat history but can’t send new messages." msgstr "Vous pouvez lire l’historique de la discussion mais pas envoyer de nouveaux messages." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Vous pouvez sélectionner {MAX_IMAGES, plural, one {une seule image} other {jusqu’à # images}} au total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "Vous pouvez sélectionner {MAX_IMAGES, plural, one {une seule image} oth msgid "You can update this later from your settings." msgstr "Vous pourrez changer ça plus tard depuis vos paramètres." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +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 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Vous ne pouvez pas encore créer de discussions de groupe." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "Vous n’avez encore aucun fil d’actu enregistré." msgid "You got here first" msgstr "Vous êtes en avance" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Vous avez été retiré·e de ce groupe par le passé et ne pouvez pas le rejoindre en utilisant ce lien." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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 ?" @@ -13324,6 +13970,10 @@ 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:320 +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." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Vous devez avoir au moins 13 ans pour utiliser Bluesky. Lisez nos <0>Conditions générales pour plus d’informations." @@ -13332,11 +13982,12 @@ msgstr "Vous devez avoir au moins 13 ans pour utiliser Bluesky. Lisez nos <0>Con msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer un code QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Vous devez autoriser l’accès à votre médiathèque." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "Vous êtes propriétaire de cette discussion" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Vous avez réagi avec {0}" @@ -13368,8 +14023,13 @@ msgstr "Vous avez réagi {0} à {target}" msgid "You recently changed your birthdate" msgstr "Vous avez changé récemment de date de naissance" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Vous avez demandé à rejoindre" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Vous serez déconnecté·e de tous vos comptes." @@ -13378,11 +14038,11 @@ msgstr "Vous serez déconnecté·e de tous vos comptes." msgid "You will no longer receive notifications for {0}" msgstr "Vous ne recevrez plus de notifications concernant {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Vous ne recevrez plus de notifications pour ce fil de discussion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Vous recevrez désormais des notifications pour ce fil de discussion" @@ -13390,12 +14050,12 @@ msgstr "Vous recevrez désormais des notifications pour ce fil de discussion" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Vous recevrez un e-mail contenant un « code de réinitialisation ». Saisissez ce code ici, puis votre nouveau mot de passe." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Vous ne pourrez plus la rejoindre à moins d’y être invité·e." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Vous : {message}" @@ -13429,6 +14089,10 @@ msgstr "Vous recevrez désormais des notifications concernant {0} !" msgid "You'll stay updated with these feeds" msgstr "Vous resterez informé grâce à ces fils d’actu" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "Vous avez la main" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Vous êtes dans la file d’attente" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Vous avez atteint le nombre maximum de brouillons" @@ -13475,11 +14139,11 @@ msgstr "Vous avez atteint le nombre maximum de requêtes autorisées. Veuillez r msgid "You've reached the start of the active content." msgstr "Vous êtes arrivé au début du contenu actuel." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop d’octets)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Vous avez atteint votre limite quotidienne d’envoi de vidéos (trop de vidéos)" @@ -13499,10 +14163,18 @@ msgstr "Votre compte a été supprimé, à plus ! ✌️" msgid "Your account has been suspended" msgstr "Votre compte a été suspendu" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Votre compte n’est pas encore assez ancien pour envoyer des vidéos. Veuillez réessayer plus tard." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Votre compte est trop récent" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Le dépôt de votre compte, qui contient toutes les données publiques, peut être téléchargé sous la forme d’un fichier « CAR ». Ce fichier n’inclut pas les éléments multimédias, tels que les images, ni vos données privées, qui doivent être récupérées séparément." @@ -13519,7 +14191,7 @@ msgstr "Votre appel a été envoyé. Si votre appel est réussi, vous recevrez u msgid "Your birth date" msgstr "Votre date de naissance" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Vos discussions ont été désactivées" @@ -13527,11 +14199,11 @@ msgstr "Vos discussions ont été désactivées" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Votre choix sera mémorisé pour les futurs liens. Vous pouvez changer ça à tout moment dans vos paramètres." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Votre contact {firstAuthorLink} est sur Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Votre contact {firstAuthorName} est sur Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Votre e-mail" msgid "Your email appears to be invalid." msgstr "Votre e-mail semble être invalide." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Votre adresse e-mail n’a pas encore été vérifiée. Veuillez vérifier votre adresse e-mail pour profiter de toutes les fonctionnalités de Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes msgid "Your full handle will be <0>@{0}" msgstr "Votre pseudo complet sera <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Votre position a été mise à jour." msgid "Your muted words" msgstr "Vos mots masqués" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Votre nom, avatar et le nom de la discussion de groupe sera visible pour tous." +#: 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 "Votre nom, avatar, le nom de cette discussion de groupe et le nombre de membres seront visibles de tous." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Votre post a été envoyé" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Vos posts ont été envoyés" @@ -13635,7 +14307,7 @@ msgstr "Vos posts ont été envoyés" msgid "Your preferred language" msgstr "Votre langue préférée" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Votre photo de profil" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Votre réponse a été envoyée" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Votre signalement sera envoyé à <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Votre signalement sera envoyé à <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Votre sélection de centres d’intérêt nous aide à vous proposer des contenus qui vous tiennent à cœur." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 4e77953ae7..6566f4fde2 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Frisian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "‘{interestsDisplayName}’ kategory (aktyf)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(befettet ynsletten ynhâld)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# mei-’k-wol-oer} other {# mei-’k-wol-oers}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minút} other {# minuten}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# moanne} other {# moannen}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# sekonde} other {# sekonden}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# net-lêzen item} other {# net-lêzen items}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>tekst en tags" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} folgjend" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} fan 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reagearre {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "{0}, in list fan {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar fan {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# net-lêzen item} other {# net-lêzen items}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {oere} other {oeren}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minút} other {minuten}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy folge" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn berjocht" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren ferifikaasjes fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren registrearre mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy ferifiearre" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} folge dy" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} folge dy werom" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} mei wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} mei wol oer dyn bericht" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} mei wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} hat de ferifiearring fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} hat dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} hat dyn opnij-pleatsing opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registrearre harren mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} hat dy ferifiearre" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy folge" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn berjocht" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} meie wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren ferifikaasjes fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dyn opnij-pleatsing opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe harren registrearre mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}} hawwe dy ferifiearre" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} folge dy" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} folge dy werom" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} mei wol oer dyn personalisearre feed" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} mei wol oer dyn berjocht" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} mei wol oer dyn opnij-pleatsing" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} hat de ferifiearring fan dyn account fuortsmiten" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} hat dyn berjocht opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} hat dyn opnij-pleatsing opnij pleatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registrearre harren mei dyn startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} hat dy ferifiearre" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} hat dy ferifiearre" msgid "{following} following" msgstr "{following} folgjend" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} kin gjin priveeberjocht ûntfange" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# oere {minutesString}} other {# oeren {minutesStri msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# oere} other {# oeren}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# net-lêzen item} other {# net-lêzen items}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "{userName} is ferifiearre" msgid "{userName}'s verifications" msgstr "Ferifikaasjes fan {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, en {2, plural, one {# oare} other {# oaren}} bin #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {folger} other {folgers}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {folgjend} other {folgjend}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {mei-’k-wol-oer} other {mei-’k-wol-oers}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {sitaat} other {sitaten}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {opnij pleatsing} other {opnij pleatsingen}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} leden" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "In nij ferifikaasjeformulier" @@ -827,11 +907,11 @@ msgstr "In skermôfdruk fan in profylside mei in belpiktogram njonken de folch-k 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Akseptearje" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Akseptearje" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Chatfersyk akseptearje" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Fersyk akseptearje" @@ -860,17 +950,26 @@ msgstr "Fersyk akseptearje" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Tagonklikheid" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Tagonklikheidsynstellingen" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Tagonklikheidsynstellingen" msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Account blokkearre" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Account folge" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Account út flugge tagong fuortsmiten" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Account deblokkearre" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Account ûntfolge" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Account negearre opheven" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Accounts mei in skulpe blau finkje <0><1/> kinne oaren ferifiearje. Dizze fertroude ferifiearders binne troch Bluesky selektearre." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Aktiviteiten fan oaren" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Aktiviteitsmeldingen" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Tafoegje" @@ -999,8 +1094,8 @@ msgstr "Account tafoegje" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Alt-tekst tafoegje (opsjoneel)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Noch in account tafoegje" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Noch in berjocht tafoegje" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "App-wachtwurd tafoegje" msgid "Add App Password" msgstr "App-wachtwurd tafoegje" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Emoji-reaksje tafoegje" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Mear details tafoegje (opsjoneel)" @@ -1091,6 +1186,10 @@ msgstr "Minsken tafoegje" msgid "Add people to list" msgstr "Minsken oan list tafoegje" +#: 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 "Reaksje tafoegje" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "Oanfoljende details (maksimaal 1000 tekens)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Oanfoljende details (maksimaal 300 tekens)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "Leeftiidsferifikaasjefersyk is yntsjinne" msgid "Age assurance only takes a few minutes" msgstr "Leeftiidsferifikaasjefersyk duorret mar in pear minuten" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Alles" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Jou tagong ta dyn priveeberjochten" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Al oanmeld as @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alt-tekst" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alt-tekst beskriuwt ôfbyldingen foar bline en fisueel beheinde brûkers en biedt elkenien kontekst." @@ -1387,7 +1486,7 @@ msgstr "Der is in flater bard" msgid "An error occurred" msgstr "Der is in flater bard" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Der is in flater bard wylst it komprimearjen fan de fideo." @@ -1421,7 +1520,8 @@ msgstr "Der is in flater bard wylst it laden fan de fideo. Probearje it nochris. msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Der is in flater bard by it bewarjen fan de QR-koade!" @@ -1432,11 +1532,11 @@ msgstr "Der is in flater bard by it bewarjen fan de QR-koade!" msgid "An error occurred while trying to follow all" msgstr "Der is in flater bard wylst it besykjen om elkenien te folgjen" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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 "In yllustraasje, dy’t toant dat Bluesky fertroude ferifiearders selektearret en dizze wer inkelde brûkersaccounts ferifiearje." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "In probleem net fermeld yn dizze opsjes" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Der is in flater bard by it iepenjen fan de chat" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Der is in flater bard. Probearje it opnij." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "In mock-up fan in iPhone dy’t de Bluesky-app iepenet nei it profyl fan in ferifiearre brûker mei in blau finkje njonken harren werjeftenamme." @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "Elkenien kin reagearje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "Elkenien dy’t my folget" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "App-wachtwurdnammen moatte minimaal 4 tekens lang wêze" msgid "App passwords" msgstr "App-wachtwurden" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwurden" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Beswier yntsjinne" @@ -1632,14 +1740,14 @@ msgstr "Beswier tsjin skorsing meitsje" msgid "Appeal Suspension" msgstr "Beswier tsjin skorsing meitsje" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Beswier tsjin dizze beslissing meitsje" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Pull-fersyk tapasse" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Argivearre fan {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Argivearre berjocht" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Bisto wis datsto it app-wachtwurd ‘{0}’ fuorsmite wolst?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Bisto wis datsto dit startpakket fuortsmite wolst?" msgid "Are you sure you want to discard your changes?" msgstr "Bisto wis datsto dyn wizigingen ûngedien meitsje wolst?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Bisto wis datsto dit petear ferlitte wolst?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Bisto wis datsto dit petear ferlitte wolst? Dyn priveeberjochten wurde foar dy fuortsmiten, mar net foar de oare dielnimmer." +#: src/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 "Bisto wis datsto dit út dyn feeds fuortsmite wolst?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Bisto wis datsto dit berjocht fuortsmite wolst?" @@ -1724,8 +1838,8 @@ msgstr "Keunst" msgid "Artistic or non-erotic nudity." msgstr "Artistike of net-erotyske neakenbylden." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Underwerp foar algoritme tawize" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Fideo’s en GIF’s automatysk ôfspylje" msgid "Available" msgstr "Beskikber" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Beskikber" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Beskikber" msgid "Back" msgstr "Tebek" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Werom nei chats" @@ -1832,7 +1948,7 @@ msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in berjocht makkes 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in petearfersyk akseptearje kinst." @@ -1840,13 +1956,14 @@ msgstr "Do moatst earst dyn e-mailadres befêstigje eardatsto in petearfersyk ak msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Eardatsto meldingen ûntfange kinst foar berjochten fan {name}, moatsto earst dyn e-mailadres ferifiearje." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Do moatst earst dyn e-mailadres befêstigje eardatsto in oare brûker in priveeberjocht stjoere kinst." @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Jierdei" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blokkearje" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Account blokkearje" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Account blokkearje?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Accounts blokkearje" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Blokkearlist" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blokkearje of rapportearje" @@ -1936,9 +2047,9 @@ msgstr "Dizze accounts blokkearje?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Brûker blokkearje" @@ -1946,9 +2057,9 @@ msgstr "Brûker blokkearje" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Brûker blokkearje" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blokkearre" @@ -1964,14 +2075,12 @@ msgstr "Blokkearre" msgid "Blocked accounts" msgstr "Blokkearre accounts" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blokkearre accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje." @@ -1987,7 +2096,7 @@ msgstr "Blokkearjen wjerhâld dizze labeler der net fan om labels op dyn account msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokkearjen is iepenbier. Blokkearre accounts kinne net reagearje op dyn petearen, dy net fermelde en net op in oare manier mei dy kommunisearje." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blokkearjen sil dizze labels net fan dyn account ôfhelje, mar it soarget der wol foar dat dizze brûker net mear op dyn petearen reagearje kin of op oare wize mei dy yn kommunisearje kin." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kin de wierheid fan dizze datum net befêstigje." @@ -2029,7 +2138,7 @@ msgstr "Bluesky is noch nofliker mei freonen!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Tsjinstbetingsten fan Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky sil in oantal oanrekommandearre brûkers kieze út de minsken yn msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky sil dyn profyl en berjochten net toane oan ôfmelde brûkers. Oare apps sille harren hjir miskien net oan hâlde. It makket dyn account net privee." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky sil pro-aktyf bekende en autentike accounts ferifiearje." @@ -2081,6 +2194,10 @@ msgstr "Boeken" 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" @@ -2137,24 +2254,34 @@ msgstr "Saaklik" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Troch {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Troch <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Mei it oanmeitsjen fan in account giesto akkoard mei de <0>Tsjinstbeting msgid "By you" msgstr "Troch dy" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Annulearje" @@ -2248,9 +2384,9 @@ msgstr "Weraktivearring annulearje en ôfmelde" msgid "Cancel search" msgstr "Sykopdracht annulearje" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Do kinst net yn kontakt komme mei in blokkearre brûker" @@ -2264,7 +2400,7 @@ msgstr "Undertitels (.vtt)" msgid "Captions & alt text" msgstr "Undertitels & alt-tekst" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "App-taal wijzigen" msgid "Change Handle" msgstr "Handle wizigje" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Moderaasjetsjinst wizigje" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Rapportearreden wizigje" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chat fuortsmiten" @@ -2361,6 +2497,12 @@ msgstr "Chat fuortsmiten" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "Petearberjochten – stil" msgid "Chat messages - sound" msgstr "Petearberjochten – lûd" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat negearre" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Chatfersyk Postfek YN" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Chatfersiken" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Chatynstellingen" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Chatynstellingen" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat net mear negearre" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Dizze kleur as dyn avatar kieze" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Klik hjir om it ferifikaasjeproses opnij te starten." @@ -2567,7 +2718,7 @@ msgstr "Klik hjir om it ferifikaasjeproses opnij te starten." msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Klik hjir om dyn e-mailadres by te wurkjen" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Klik om mislearre priveeberjocht opnij te probearjen" @@ -2594,28 +2745,30 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Klik om mislearre priveeberjocht opnij te probearjen" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Slute" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Aktive dialoochfinster slute" @@ -2647,6 +2800,10 @@ msgstr "Aktive dialoochfinster slute" msgid "Close alert" msgstr "Warskôging slute" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Paniel ûnderoan slute" @@ -2657,8 +2814,10 @@ msgstr "Paniel ûnderoan slute" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Dialoochfinster slute" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Ofbylding slute" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Menu slute" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Dit dialoochfinster slute" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Slút warskôging foar bywurkjen wachtwurd" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Slút opstellen berjocht en negearret konsept" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Brûkerslist ynklappe" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Klapt de brûkerslist foar in bepaalde melding yn" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Strips" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Mienskipsrjochtlinen" @@ -2740,12 +2915,12 @@ msgstr "Foltôgje de útdaging" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Nij berjocht opstelle" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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}}" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Fideo komprimearje…" @@ -2780,7 +2955,7 @@ msgstr "Konfigurearre yn <0>moderaasje-ynstellingen." msgid "Confirm" msgstr "Befêstigje" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Kontakt opnimme mei stipe" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "Nim kontakt mei ús op" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Ynhâld & media" msgid "Content and media" msgstr "Ynhâld en media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Ynhâld en media" @@ -2889,7 +3064,7 @@ msgstr "Kontekstmenu-eftergrûn, klik om it menu te sluten." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Petear trochsette" msgid "Continue thread..." msgstr "Fierder lêze…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Trochgean nei folgjende stap" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Petear" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Petear fuortsmiten" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Petear fuortsmiten" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Buildferzje nei klamboerd kopiearre" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopiearre!" msgid "Copies build version to clipboard" msgstr "Kopiearret buildferzje nei klamboerd" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopiearje" @@ -2997,6 +3184,11 @@ msgstr "DID kopiearje" msgid "Copy host" msgstr "Host kopiearje" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Keppeling nei list kopiearje" msgid "Copy link to post" msgstr "Keppeling nei berjocht kopiearje" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Keppeling nei profyl kopiearje" @@ -3027,8 +3219,8 @@ msgstr "Keppeling nei profyl kopiearje" msgid "Copy link to starter pack" msgstr "Keppeling nei startpakket kopiearje" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Berjochttekst kopiearje" @@ -3037,12 +3229,12 @@ msgstr "Berjochttekst kopiearje" msgid "Copy post at:// URI" msgstr "Berjocht at:// URI kopiearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Berjochttekst kopiearje" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR-koade kopiearje" @@ -3052,11 +3244,15 @@ msgstr "TXT-recordwearde kopiearje" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Auteursrjochtbelied" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Ferbine mei oanpaste feed mislearre" @@ -3065,7 +3261,15 @@ msgstr "Ferbine mei oanpaste feed mislearre" msgid "Could not connect to feed service" msgstr "Ferbine mei feedtsjinst mislearre" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "Profyl net fûn" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Kin chat net ferlitte" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Kin feed net lade" @@ -3100,7 +3308,11 @@ msgstr "Kin feed net lade" msgid "Could not load list" msgstr "Kin list net lade" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Kin chat net negearje" @@ -3108,11 +3320,19 @@ msgstr "Kin chat net negearje" msgid "Could not process your video" msgstr "Kin dyn fideo net ferwurkje" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Wizigingen koene net bewarre wurde: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Meldingsynstellingen bywurkje mislearre" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Oanmeitsje" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Meitsje in startpakket" @@ -3174,13 +3394,14 @@ msgstr "Meitsje in startpakket foar my" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Yn stee dêrfan in avatar meitsje" @@ -3206,7 +3427,7 @@ msgstr "Yn stee dêrfan in avatar meitsje" msgid "Create another" msgstr "Noch ien oanmeitsje" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Nij account oanmeitsje" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Melding meitsje foar {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Makke {0}" @@ -3270,6 +3492,10 @@ msgstr "Makker is blokkearre" msgid "Culture" msgstr "Kultuer" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Donker tema" msgid "Date of birth" msgstr "Bertedatum" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Standert" msgid "Default icons" msgstr "Standert piktogrammen" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "App-wachtwurd fuortsmite" msgid "Delete app password?" msgstr "App-wachtwurd fuortsmite?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Chat fuortsmite" @@ -3378,19 +3612,19 @@ msgstr "Chat fuortsmite" msgid "Delete chat declaration record" msgstr "Chatdeklaraasjerecord fuortsmite" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Petear fuortsmite" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Foar my fuortsmite" @@ -3399,11 +3633,11 @@ msgstr "Foar my fuortsmite" msgid "Delete list" msgstr "List fuortsmite" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Berjocht fuortsmite" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Berjocht foar my fuortsmite" @@ -3411,9 +3645,9 @@ msgstr "Berjocht foar my fuortsmite" msgid "Delete my account" msgstr "Myn account fuortsmite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Berjocht fuortsmite" @@ -3430,17 +3664,17 @@ msgstr "Startpakket fuortsmite?" msgid "Delete this list?" msgstr "Dizze list fuortsmite?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Dit berjocht fuortsmite?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Fuortsmiten" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Fuortsmiten account" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Beskriuwende alt-tekst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Sitaat loskeppelje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Sitaat loskeppelje?" @@ -3507,13 +3741,13 @@ msgstr "Dialooch: oanpasse wa’t op dit berjocht reagearje mei" msgid "Dim" msgstr "Dôvje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "2FA útskeakelje" @@ -3521,7 +3755,7 @@ msgstr "2FA útskeakelje" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "E-mail-2FA útskeakelje" @@ -3534,8 +3768,8 @@ msgstr "E-mail-2FA útskeakelje" msgid "Disable haptic feedback" msgstr "Fielbere feedback útskeakelje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Utskeakele" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Fuortsmite" msgid "Discard changes?" msgstr "Wizigingen fuortsmite?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Berjocht fuortsmite?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Nije feeds ûntdekke" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Slute" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Flater negearje" @@ -3642,6 +3877,10 @@ msgstr "Dizze seksje slute" 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" @@ -3673,7 +3912,7 @@ msgstr "Befettet gjin neakens." msgid "Domain verified!" msgstr "Domein ferifiearre!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Hasto gjin koade of in nije nedicht? <0>Klik hjir." @@ -3681,7 +3920,7 @@ msgstr "Hasto gjin koade of in nije nedicht? <0>Klik hjir." msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Gjin e-mailberjocht ûntfongen? <0>Klik hjir om opnij te ferstjoeren." @@ -3700,16 +3939,21 @@ msgstr "Meitsje dy gjin soargen! Alle besteande berjochten en ynstellingen wurde #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Dien" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Tik dûbeld om de dialooch te sluten" @@ -3737,19 +3981,14 @@ msgstr "Tik dûbeld om de dialooch te sluten" msgid "Double tap to like" msgstr "Tik dûbeld om der wol oer te meien" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Bluesky downloade" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR-bestân downloade" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR-bestân downloade" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Doer:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "byg. alice" @@ -3823,9 +4079,8 @@ msgstr "Bygelyks brûkers dy’t faker mei advertinsjes reagearje." msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Bewurkje" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Avatar bewurkje" @@ -3847,19 +4102,19 @@ msgstr "Avatar bewurkje" msgid "Edit Feeds" msgstr "Feeds bewurkje" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Ofbylding bewurkje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Ynteraksje-ynstellingen bewurkje" @@ -3868,7 +4123,16 @@ msgstr "Ynteraksje-ynstellingen bewurkje" msgid "Edit interests" msgstr "Ynteressen bewurkje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "Live-status bewurkje" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Myn feeds bewurkje" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Meldingen fan {0} bewurkje" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Persoanen bewurkje" @@ -3912,12 +4171,12 @@ msgstr "Berjochtynteraksje-ynstellingen bewurkje" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Profyl bewurkje" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Profyl bewurkje" @@ -3925,7 +4184,8 @@ msgstr "Profyl bewurkje" msgid "Edit starter pack" msgstr "Startpakket bewurkje" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Wa’t reagearje kin bewurkje" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Dyn startpakket bewurkje" @@ -3971,7 +4231,7 @@ msgstr "E-mailadres" msgid "Email Resent" msgstr "E-mailberjocht opnij ferstjoerd" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-mailberjocht ferstjoerd!" @@ -4006,8 +4266,8 @@ msgstr "Nim dit bericht op yn dyn website. Kopiearje ienfâldichwei it folgjende msgid "Embedded video player" msgstr "Yntegrearre fideospiler" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Ynskeakelje" @@ -4025,7 +4285,7 @@ msgstr "Ynhâld foar folwoeksenen ynskeakelje" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "E-mail-2FA ynskeakelje" @@ -4038,13 +4298,12 @@ msgstr "Eksterne media ynskeakelje" msgid "Enable media players for" msgstr "Mediaspilers ynskeakelje foar" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Skeakelje meldingen yn foar in account troch harren profyl te besykjen en op it <0>belpiktogram <1/> te drukken." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Pushmeldingen ynskeakelje" @@ -4091,8 +4350,8 @@ msgstr "Fier in wachtwurd yn" msgid "Enter a word or tag" msgstr "Fier in wurd of tag yn" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Koade ynfiere" @@ -4143,12 +4402,12 @@ msgstr "Iepenet folslein skerm" msgid "Entertainment" msgstr "Ferdivedaasje" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Flater" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Elkenien" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Elkenien" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Elkenien" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Al it oare" @@ -4217,16 +4476,16 @@ msgstr "Slút brûkers dy’tsto folgest út" msgid "Exit fullscreen" msgstr "Folslein skerm slute" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Alt-tekst útklappe" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Brûkerslist útklappe" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Ut- of ynklappe fan it folsleine berjocht dêr’tsto op reagearrest" @@ -4238,7 +4497,7 @@ msgstr "Berjochttekst útklappe" msgid "Expands or collapses post text" msgstr "Klapt berjochttekst út of yn" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Ferwacht waard dat uri omset wurde koe nei in record" @@ -4277,10 +4536,10 @@ msgstr "Eksplisite of mooglik oanstjitjaande media." msgid "Explicit sexual images." msgstr "Eksplisite seksuele ôfbyldingen." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Untdekke" @@ -4289,11 +4548,8 @@ msgstr "Untdekke" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Eksterne-mediafoarkarren" @@ -4331,18 +4587,22 @@ msgstr "Eksterne-mediafoarkarren" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Chat akseptearje mislearre" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Tafoegjen emoji-reaksje mislearre" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Kin handle net wizigje. Probearje nochris." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Koe app-wachtwurd net oanmeitsje. Probearje it nochris." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Oanmeitsjen fan petear mislearre" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "It oanmeitsjen fan it startpakket is mislearre" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Fuortsmiten fan chat mislearre" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Priveeberjocht kin net fuorsmiten wurde" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Berjocht fuortsmiten mislearre, probearje it opnij" @@ -4394,24 +4655,24 @@ msgstr "Berjocht fuortsmiten mislearre, probearje it opnij" msgid "Failed to delete starter pack" msgstr "Fuortsmiten fan it startpakket is mislearre" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Laden van konversaasjes mislearre" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Laden fan feedfoarkarren is mislearre" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Meldingsynstellingen lade mislearre." @@ -4493,16 +4753,15 @@ msgstr "Laden fan foarstelde feeds is mislearre" msgid "Failed to load suggested follows" msgstr "It is net slagge om in list te laden mei folchsuggestjes" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Alle fersiken as lêzen markearje mislearre" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Fêstsetten fan berjocht is mislearre" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Fuortsmiten emoji-reaksje mislearre" @@ -4534,7 +4793,8 @@ msgstr "Fuortsmiten emoji-reaksje mislearre" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "Fuortsmiten fan ferifikaasje mislearre" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Dyn ynteressen bewarje mislearre." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "E-mailberjocht ferstjoere mislearre, probearje it opnij." @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "It yntsjinjen fan beswier is mislearre, probearje it opnij." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "It wikseljen tusken wol/net-negearje fan it petear is mislearre, probearje it opnij" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Ynstellingen e-mail-2FA bywurkjen mislearre" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "E-mailadres bywurkjen mislearre, probearje it opnij." @@ -4614,7 +4879,7 @@ msgstr "Net slagge om de feeds by te wurkjen" msgid "Failed to update notification declaration" msgstr "Bywurkjen meldingsdeklaraasje mislearre" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Ynstellingen bywurkje mislearre" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed troch {0}" @@ -4662,7 +4927,7 @@ msgstr "Feedmakker" msgid "Feed identifier" msgstr "Feedidentifikator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Feedmenu" @@ -4676,25 +4941,25 @@ msgstr "Feed net beskikber" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,7 @@ msgstr "Filter sykje op taal (op dit stuit: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filter fan wa’tsto meldingen ûntfangst" @@ -4747,11 +5012,11 @@ msgstr "Filter fan wa’tsto meldingen ûntfangst" msgid "Finalizing" msgstr "Foltôgje" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Sykje accounts om te folgjen" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Sykje minsken om te folgjen" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Sykje berjochten, brûkers en feeds op Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Folgje" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} folgje" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Account folgje" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Weromfolgje" @@ -4916,7 +5183,7 @@ msgstr "Weromfolgje" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Folge troch <0>{0} en <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Folge troch <0>{0}, <1>{1} en {2, plural, one {# oar} other {# oaren}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Folgers fan @{0} dy’tsto kinst" @@ -4960,10 +5231,10 @@ msgstr "Folgers dy’tsto kinst" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Folgjend" @@ -4977,12 +5248,12 @@ msgstr "Folgjend" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Folget {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Do folgest {handle}" msgid "Following feed preferences" msgstr "Folchfeedfoarkarren" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Folchfeedfoarkarren" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Folget dy" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Folget dy" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Lettertype" @@ -5065,11 +5333,16 @@ msgstr "Wachtwurd ferjitten?" msgid "Forgot?" msgstr "Ferjitten?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Fan" @@ -5086,82 +5359,86 @@ msgstr "Fan <0/>" msgid "Generate a starter pack" msgstr "In startpakket generearje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Krij help" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "Untfang meldingen wannear’t minsken dy folgje." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Untfang meldingen wannear’t minsken wol oer berjochten meie dy’tsto opnij pleatst hast." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Untfang meldingen wannear’t minsken wol oer dyn berjochten meie." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Untfang meldingen wannear’t minsken dy neame." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Untfang meldingen wannear’t minsken dyn berjochten sitearje." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Untfang meldingen wannear’t minsken op dyn berjochten reagearje." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Untfang meldingen wannear’t minsken dyn opnij-pleatsingen opnij pleatse." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Untfang meldingen wannear’t minsken dyn berjochten opnij pleatse." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Meldingen oer nije berjochten ûntfange" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Meldingen oer berjochten en antwurden fan accounts dy’tsto kiest ûntfange." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Meldingen oer nije berjochten fan {name} ûntfange" @@ -5174,27 +5451,27 @@ msgstr "In melding ûntfange oer de aktiviteit fan dizze account" msgid "Get notified when {name} posts" msgstr "In melding ûntfange wannear’t {name} berjochten pleatst" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "In melding ûntfange wannear’t ien in berjocht pleatst" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Oan de slach" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Jou dyn profyl in gesicht" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Tebek" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Tebek" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Tebek nei de foarige stap" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Nei startside" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Nei startside" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Nei startside" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "Gean live foar" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Gean nei it profyl fan {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Gean nei accountynstellingen" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Nei petear mei {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Nei folgjende" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Nei profyl" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Nei brûkersprofyl" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Handle te lang. Probearje in koartere." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Hasto in koade? <0>Klik hjir." @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Help" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Ferburgen list" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Ferburgen list" msgid "Hide" msgstr "Ferstopje" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ferstopje" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Berjocht foar my ferstopje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Reaksje foar elkenien ferstopje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Reaksje foar my ferstopje" @@ -5577,19 +5875,19 @@ msgstr "Dizze kaart ferstopje" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Dit berjocht ferstopje?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Dizze reaksje ferstopje?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Populêre ûnderwerpen ferstopje?" msgid "Hide trending videos?" msgstr "Populêre fideo’s ferstopje?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Brûkerslist ferstopje" @@ -5620,6 +5918,10 @@ msgstr "Ferifikaasjebadges ferstopje" msgid "Hides the content" msgstr "Ferstoppet de ynhâld" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Hmm, it liket derop dat wy problemen hawwe mei it laden fan dizze gegeve msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, wy koene dy moderaasjetsjinst net lade." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Wachtsje even! Wy jouwe stadichoan tagong ta fideo en do stiest noch hieltyd yn de rige. Kom fluch werom!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Startside" @@ -5721,7 +6019,7 @@ msgstr "Ik begryp it" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "As de alt-tekst lang is wurdt de alt-tekst yn- of útklapt" @@ -5757,15 +6055,15 @@ msgstr "Asto dizze list fuotsmytst, kinsto dizze net mear werstelle." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Asto in eigen domein hast, kinsto dat as handle brûke. Sa kinsto dyn identiteit sels ferifiearje. <0>Klik hjir foar mear ynformaasje." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Asto dyn e-mailadres bywurkje moatst, <0>klik hjir." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Asto dit berjocht fuortsmytst, kinsto it net mear werstelle." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Asto dyn e-mailadres bywurkest, wurdt e-mail-2FA útskeakele." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Asto beheine wolst wa’t meldingen foar de aktiviteit fan dyn account ûntfange kin, kinsto dit wizigje yn <0>Ynstellingen → Privacy en Befeiliging." @@ -5786,23 +6083,23 @@ msgstr "Asto in ûntwikkeler bist, kinsto dyn eigen server hoste." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Asto dyn handle of e-mailadres probearrest te wizigjen, doch dit dan eardatsto de-aktivearrest." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Ofbylding" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Ofbyldingsbuffer wiske, {0} frijmakke" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Yn-app" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Yn-app-meldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Yn-app, elkenien" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Yn-app, minsken dy’tsto folgest" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Yn-app, pushberjocht" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Yn-app, pushberjocht, elkenien" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Yn-app, pushberjocht, minsken dy’tsto folgest" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Postfek YN nul!" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Unjildige 2FA-befêstigingskoade." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Unjildige handle. Probearje in oare." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Unjildich rapportûnderwerp" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Unjildige ferifikaasjekoade" @@ -6001,8 +6315,15 @@ msgstr "Utnûgingskoade" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Nûgje minsken út foar dit startpakket!" +#: 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 "Nûgje freonen út om dyn favorite feeds en persoanen te folgjen" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Taak-ID: {0}" msgid "Jobs" msgstr "Fakatueres" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Fakatueres" msgid "Join Bluesky" msgstr "Lid wurde fan Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Doh mei oan it petear" msgid "Journalism" msgstr "Sjoernalistyk" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "Hâld my op de hichte" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS-website" @@ -6143,7 +6499,7 @@ msgstr "Labels op dyn account" msgid "Labels on your content" msgstr "Labels op dyn ynhâld" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Taalynstellingen" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Lêste" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Mear ynfo oer dizze warskôging" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Mear ynfo oer wat iepenbier is op Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "Mear ynformaasje yn dyn <0>accountynstellingen." msgid "Learn more." msgstr "Mear ynfo." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Ferlitte" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Chat ferlitte" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Petear ferlitte" @@ -6284,13 +6642,14 @@ msgstr "Petear ferlitte" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Petear ferlitte" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Bluesky ferlitte" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "noch te gean." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Ljocht" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Mei ’k wol oer" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 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}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Mei-’k-wol-oer-meldingen" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Mei wol oer dizze feed" @@ -6358,8 +6721,8 @@ msgstr "Mei wol oer dizze feed" msgid "Like this labeler" msgstr "Mei wol oer dizze labeler" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Mei hjir wol oer" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Mei ’k wol oer troch {0, plural, one {# brûker} other {# brûkers}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Mei-’k-wol-oers" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Mei-’k-wol-oers fan dyn opnij-pleatsingen" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Meldingen oer mei-’k-wol-oers fan dyn opnij-pleatsingen" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Mei-’k-wol-oers op dit berjocht" @@ -6409,11 +6768,11 @@ msgstr "Mei-’k-wol-oers op dit berjocht" msgid "Linear" msgstr "Lineêr" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "List" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "List net-negearre" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listen" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Lade…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Lochboek" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo troch @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo troch <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "It liket derop datsto in feed mist dy’tsto folgest.<0>Klik hjir om der msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "E-mailynstellingen foar dyn account oanpasse" @@ -6687,24 +7046,22 @@ msgstr "Ferifikaasjeynstellingen beheare" msgid "Manage your muted words and tags" msgstr "Dyn negearre wurden en tags beheare" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Alles as lêzen markearje" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "As lêzen markearje" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Alles as lêzen markearre" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Miskien letter" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Meldingen fan fermeldingen" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "fermelde brûkers" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Fermeldingen" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Berjocht nei {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Berjocht fuortsmiten" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Berjocht fuortsmiten" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Berjocht fan @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Berjocht is te lang" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Berjochtopsjes" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Berjochten" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Middernacht" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Ferskate meldingen" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderaasje" @@ -6894,7 +7247,7 @@ msgstr "Moderaasjelist bywurke" msgid "Moderation lists" msgstr "Moderaasjelisten" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderaasjelisten" @@ -6903,7 +7256,7 @@ msgstr "Moderaasjelisten" msgid "moderation settings" msgstr "moderaasjeynstellingen" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderaasjetastannen" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Mear opsjes" @@ -6949,7 +7302,7 @@ msgstr "Films" msgid "Music" msgstr "Muzyk" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Negearje" @@ -6965,8 +7318,8 @@ msgstr "Negearje" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Account negearje" msgid "Mute accounts" msgstr "Accounts negearje" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Petear negearje" @@ -6994,7 +7347,7 @@ msgstr "List negearje" msgid "Mute these accounts?" msgstr "Dizze accounts negearje?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Dit wurd allinnich yn tags negearje" msgid "Mute this word until you unmute it" msgstr "Dit wurd negearje oantsto it negearjen annulearrest" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Petear negearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Wurden en tags negearje" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Negearre accounts" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Negearre accounts" @@ -7062,6 +7419,10 @@ msgstr "Negearre wurden en tags" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Negearjen is privee. Negearre accounts kinne mei dy kommunisearje, mar do sjochst harren berjochten net en ûntfangst gjin meldingen fan harren." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Navigearje nei startpakket" msgid "Navigates to the next screen" msgstr "Navigearje nei folgjende skerm" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navigearret nei dyn profyl" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Moatst melding meitsje fan in skeining fan it auteursrjocht, in wetlike oanfraach, of in kwestje fan neilibjen fan de regeljouwing?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nij" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Nij berjocht} other {Nije berjochten}} fan {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nije chat" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Nij e-mailadres" @@ -7171,32 +7533,30 @@ msgstr "Nij e-mailadres" #: 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 "Nije funksje" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Meldingen oer nije folgers" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Nije folgers" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nij berjocht" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nij berjocht" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Nije berjochten fan {firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} oare} other {{formattedAuthorsCount} oaren}}" @@ -7262,8 +7622,8 @@ msgstr "Nijs" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Folgjende" msgid "Next image" msgstr "Folgjende ôfbylding" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Gjin ôfbylding" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Do folgest {0} net mear" @@ -7362,7 +7726,7 @@ msgstr "Do folgest {0} net mear" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Noch gjin berjochten" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Noch gjin meldingen!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Allinnich de auteur mei dit berjocht sitearje." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Gjin resultaat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Gjin resultaten" @@ -7446,8 +7810,8 @@ msgstr "Gjin resultaten" msgid "No results for \"{0}\"." msgstr "Gjin resultaten foar ‘{0}’." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Gjin resultaten fûn" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Net-seksuele neakens" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Gjin" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Net fûn" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Opmerking oer diele" @@ -7548,44 +7912,31 @@ msgstr "Opmerking: dit berjocht is allinnich sichtber foar oanmelde brûkers." msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Meldingsynstellingen" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Meldingslûden" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Meldingen" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Meldingen foar al it oare, lykas wannear’t ien lid wurdt fia ien fan dyn startpakketten." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "no" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Ut" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Oké" @@ -7648,35 +8000,35 @@ msgstr "op<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Yntroduksje opnij toane" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear ôfbyldingen." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s." @@ -7685,6 +8037,26 @@ msgstr "Alt-tekst ûntbrekt by ien of mear fideo’s." msgid "Only {0} can reply." msgstr "Allinnich {0} kin reagearje." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Allinnich folgers dy’t ik folgje" msgid "Only image files are supported" msgstr "Allinnich ôfbyldingsbestannen wurde stipe" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Allinnich WebVTT (.vtt)-bestannen wurde stipe" @@ -7703,6 +8085,10 @@ msgstr "Allinnich WebVTT (.vtt)-bestannen wurde stipe" msgid "Oops, something went wrong!" msgstr "Och heden! Der is wat misgien!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Och heden! Der is wat misgien!" msgid "Oops!" msgstr "Wûpsty!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Avatar-makker iepenje" @@ -7720,12 +8106,17 @@ msgstr "Avatar-makker iepenje" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Petearopsjes iepenje" @@ -7739,16 +8130,16 @@ msgstr "Menu iepenje" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Emoji-kiezer iepenje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Menu Feedopsjes iepenje" @@ -7760,13 +8151,22 @@ msgstr "Folsleine emojilist iepenje" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Keppeling nei {niceUrl} iepenje" @@ -7790,11 +8190,15 @@ msgstr "Pakket iepenje" msgid "Open post options menu" msgstr "Berjochtoptiesmenu iepenje" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Profyl iepenje" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Ferhaleboekside iepenje" msgid "Open system log" msgstr "Systeemlochboek iepenje" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Iepenet in dialoochfinster om in ynhâldswarskôging oan dyn berjocht ta msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Iepenet oanfoljende details foar in debug-item" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Iepenet kamera op apparaat" @@ -7858,22 +8270,24 @@ msgstr "Iepenet composer" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "Iepenet keppeling {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Iepenet live-statusdialooch" @@ -7902,15 +8316,23 @@ msgstr "Iepenet formulier om it wachtwud opnij yn te stellen" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Iepenet dit profyl" @@ -7997,12 +8418,12 @@ msgstr "Us blogberjocht" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Us moderaasjeteam hat dyn melding ûntfongen." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Us moderators hawwe de meldingen besjoen en besletten dyn tagong ta chats op Bluesky út te skeakeljen." @@ -8010,14 +8431,15 @@ msgstr "Us moderators hawwe de meldingen besjoen en besletten dyn tagong ta chat msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Side net fûn" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Side net fûn" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Fideo pauzearje" msgid "People" msgstr "Persoanen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Persoanen folge troch @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Persoanen dy’t @{0} folgje" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Minsken dy’t ik folgje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Fotografy" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Ofbyldingen bedoeld foar folwoeksenen." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Feed fêstmeitsje" @@ -8152,12 +8578,12 @@ msgstr "Feed fêstmeitsje" msgid "Pin to home" msgstr "Fêstsette op startside" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fêstsette op startside" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fêstmeitsje oan dyn profyl" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fêstset" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} fêstset op startside" @@ -8236,7 +8662,7 @@ msgstr "Dyn handle kieze." msgid "Please choose your password." msgstr "Kies dyn wachtwurd." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Klik op de keppeling yn it e-mailberjocht dat wy sakrekt ferstjoerd haww msgid "Please complete the verification captcha." msgstr "Fier de ferifikaasje-captcha yn." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "Fier in wachtwurd yn. It moat op syn minst 8 tekens lang wêze." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Fier in unike namme yn foar dit app-wachtwurd of brûk ús willekeurich generearre wachtwurd." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Fier in falide koade yn." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Fier in falide e-mailadres yn." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Fier in jildich, net-tydlik e-mailadres yn. Mooglik moetsto dit e-mailadres yn de takomst brûke." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Fier hjirûnder de koade dy’t wy nei <0>{0} ferstjoerd hawwe yn." @@ -8293,7 +8719,7 @@ msgstr "Fier hjirûnder de koade dy’t wy nei <0>{0} ferstjoerd hawwe yn." msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Fier dyn e-mailadres yn." msgid "Please enter your invite code." msgstr "Fier dyn útnûgingskoade yn." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Fier dyn nije e-mailadres yn." @@ -8323,7 +8749,7 @@ msgstr "Fier dyn brûkersnamme yn" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Lis út wêromsto tinkst dat dit label net krekt tapast is troch {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Lis út wêromsto tinkst dat dyn chats ûnrjochtlik útskeakele binne" @@ -8358,7 +8784,11 @@ msgstr "Selektearje in reden foar dit rapport" msgid "Please sign in as @{0}" msgstr "Meld dy oan as @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Ferifiearje dyn e-mailadres" @@ -8383,7 +8813,7 @@ msgstr "Polityk" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Pleatse" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Alles pleatse" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Berjocht blokkearre" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Berjocht fan @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Berjocht fuortsmiten" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Berjocht kin net opladen wurde. Kontrolearje dyn ynternetferbining en probearje it opnij." @@ -8454,18 +8884,22 @@ msgstr "Berjocht troch dy ferstoppe" msgid "Post interaction settings" msgstr "Ynstellingen foar berjochtynteraksje" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ynstellingen foar berjochtynteraksje" +#: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Berjochten, antwurden" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Mooglik misliedende keppeling" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Druk om opnij ferbining te meitsjen" -#: src/components/Error.tsx:61 +#: 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 "Druk om opnij te probearjen" @@ -8536,7 +8966,7 @@ msgstr "Druk om opnij te probearjen" msgid "Press to view followers of this account that you also follow" msgstr "Druk om de folgers fan dizze account te besjen dy’tsto ek folgest" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy en befeiliging" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Privacybelied" @@ -8586,15 +9015,15 @@ msgstr "Privacybelied" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Fideo ferwurkje…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Ferwurkje…" @@ -8602,10 +9031,10 @@ msgstr "Ferwurkje…" msgid "profile" msgstr "profyl" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profyl" @@ -8613,6 +9042,7 @@ msgstr "Profyl" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Berjocht pleatse" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Berjochten pleatse" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Antwurden publisearje" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Antwurd publisearje" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Pushmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, elkenien" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, minsken dy’tsto folgest" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-koade nei dyn klamboerd kopiearre!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-koade is download!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-koade bewarre yn dyn fotobiblioteek!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Sitaatmeldingen" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Sitaatmeldingen" msgid "Quote post" msgstr "Berjocht sitearje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Sitaatberjocht is opnij tafoege" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Sitaatberjocht is mei sukses losmakke" @@ -8711,12 +9138,12 @@ msgstr "Sitaatberjochten útskeakele" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Sitaten" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Sitaten fan dit berjocht" @@ -8728,16 +9155,16 @@ msgstr "Oer de snelheidslimyt – do hast yn koarte tiid te faak probearre dyn h msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Sitaat opnij tafoegje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "Mei {emoji} reagearje" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogartikel lêze" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Reden fan berop" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Yn-app-meldingen ûntfange" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Pushmeldingen ûntfange" @@ -8841,17 +9268,31 @@ msgstr "Oanrekommandearre" msgid "Reconnect" msgstr "Opnij ferbine" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Ofwize" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Ofwize" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Chatfersyk ôfwize" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Petearen opnij lade" @@ -8863,6 +9304,8 @@ msgstr "Petearen opnij lade" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "{displayName} út startpakket fuortsmite" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "{historyItem} fuortsmite" @@ -8891,22 +9339,22 @@ msgstr "{historyItem} fuortsmite" msgid "Remove account" msgstr "Account fuortsmite" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Bylage fuortsmite" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Avatar fuortsmite" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Banner fuortsmite" @@ -8914,8 +9362,9 @@ msgstr "Banner fuortsmite" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Ynlsluting fuortsmite" @@ -8929,12 +9378,12 @@ msgstr "Feed fuortsmite" msgid "Remove feed?" msgstr "Feed fuortsmite?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "Ut myn feeds fuortsmite?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Ofbylding fuortsmite" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Opnij-pleatsing fuortsmite" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "Ferifikaasje fuortsmite" msgid "Remove your verification for this account?" msgstr "Dyn ferifikaasje foar dizze account fuortsmite?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Troch auteur fuortsmiten" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Troch dy fuortsmiten" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Antwurde dy" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Antwurden" @@ -9104,14 +9552,14 @@ msgstr "Antwurden útskeakele" msgid "Replies to this post are disabled." msgstr "Antwurden op dit berjocht binne útskeakele." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Reagearje" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Beäntwurdzje ({0, plural, one {# antwurd} other {# antwurden}})" @@ -9125,10 +9573,6 @@ msgstr "Reaksje ferstoppe troch auteur fan petear" msgid "Reply Hidden by You" msgstr "Reaksje ferstoppe troch dy" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Meldingen fan reaksjes" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Reaksjeynstellingen wurde keazen troch de auteur fan it petear" @@ -9137,18 +9581,18 @@ msgstr "Reaksjeynstellingen wurde keazen troch de auteur fan it petear" msgid "Reply sorting" msgstr "Reaksjsortearring" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Sichtberheid fan reaksje bywurke" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Reaksje is mei sukses ferstoppe" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Melde" @@ -9157,20 +9601,20 @@ msgstr "Melde" msgid "Report account" msgstr "Account melde" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Petear melde" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Dialooch melde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Feed melde" @@ -9179,12 +9623,12 @@ msgstr "Feed melde" msgid "Report list" msgstr "List melde" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Priveeberjocht melde" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Berjocht melde" @@ -9199,8 +9643,8 @@ msgstr "Startpakket melde" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Melding yntsjinne" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Dizze feed melde" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Dizze list melde" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Opnij pleatse" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Opnij pleatse ({0, plural, one {# werpleatsing} other {# werpleatsingen}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Meldingen fan opnij-pleatsingen" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Opnij pleatst troch dy" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Opnij-pleatsingen" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Opnij-pleatsingen fan dit berjocht" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Opnij-pleatsingen fan dyn opnij-pleatsingen" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Meldingen oer opnij-pleatsingen fan dyn opnij-pleatsingen" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Alt-tekst fereaskje foar it pleatsen" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "In e-mailkoade is nedig om dy oan te melden by dyn account." @@ -9328,7 +9791,17 @@ msgstr "Fereaske foar dizze provider" msgid "Required in your region" msgstr "Fereaske yn dyn regio" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Opnij ferstjoere" @@ -9373,8 +9846,8 @@ msgstr "Yntroduksje-status opnij ynstelle" msgid "Reset password" msgstr "Wachtwurd opnij ynstelle" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Werhellet de lêste aksje, dêr’t in flater by barde" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Werhellet de lêste aksje, dêr’t in flater by barde" msgid "Retry" msgstr "Opnij probearje" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Laadopsje foar rapport opnij lade" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Tebek nei foarige side" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Tebek nei de startside" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tebek nei de foarige side" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Wizigingen bewarje" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Ofbylding bewarje" msgid "Save new handle" msgstr "Nije handle bewarje" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR-koade bewarje" @@ -9518,13 +9994,13 @@ msgstr "QR-koade bewarje" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Yn myn feeds bewarje" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Feeds bewarje" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Bewarre yn dyn feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Sis hallo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Wittenskip" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Nei boppe" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Sykje" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Berjochten fan @{0} trochsykje" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "Myn berjochten trochsykje" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Berjochten trochsykje" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Profilen sykje" msgid "Search..." msgstr "Sykje…" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Siket nei profilen" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Befeiligingsstap fereaske" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "In kleur selektearje" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "GIF selektearje" msgid "Select GIF \"{0}\"" msgstr "GIF ‘{0}’ selektearje" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Taal selektearje…" msgid "Select languages" msgstr "Taal selektearje" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Moderaasjetsjinst selektearje" @@ -9904,11 +10390,11 @@ msgstr "Selektearje dyn ynteressen út de ûndersteande opsjes" msgid "Select your preferred language for translations in your feed." msgstr "Selektearje de taal wêryn’tsto de oersettingen yn dyn feed werjaan wolst." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Selektearje dyn winske meldingskanalen" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "E-mailberocht ferstjoere" @@ -9935,11 +10421,11 @@ msgstr "E-mailberocht ferstjoere" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Feedback ferstjoere" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Berjocht ferstjoere" @@ -9952,7 +10438,7 @@ msgstr "Berjocht nei {name} ferstjoere" msgid "Send post to..." msgstr "Berjocht ferstjoere nei…" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Melding nei {title} ferstjoere" @@ -9960,7 +10446,7 @@ msgstr "Melding nei {title} ferstjoere" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "As priveeberjocht ferstjoere" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Stelt e-mail yn foar it opnij ynstellen fan wachtwurden" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ynstellingen" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Ynstellingen foar aktiviteit fan oaren" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Ynstellingen foar mei-’k-wol-oer-meldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Ynstellingen foar fermeldingsmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Ynstellingen foar nije-folgersmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Ynstellingen foar meldingen fan al it oare" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Ynstellingen foar meldingen fan mei-’k-wol-oers fan dyn opnij-pleatsingen" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Ynstellingen foar sitaatmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Ynstellingen foar antwurdmeldingen" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Ynstellingen foar meldingen fan opnij-pleatsingen" @@ -10079,16 +10565,19 @@ msgstr "Seksuele aktiviteit of eroatysk neaken." msgid "Sexually Suggestive" msgstr "Seksueel suggestyf" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Diele" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Dochs diele" @@ -10097,16 +10586,21 @@ msgstr "Dochs diele" msgid "Share author DID" msgstr "Auteurs-DID diele" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Keppeling diele" @@ -10114,6 +10608,11 @@ msgstr "Keppeling diele" msgid "Share link dialog" msgstr "Keppelingdialooch diele" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Berjocht at:// URI diele" msgid "Share QR code" msgstr "QR-koade diele" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Dizze feed diele" @@ -10142,8 +10641,8 @@ msgstr "Diel dit startpakket en help minsken lid te wurden fan dyn mienskip op B #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Diele fia…" @@ -10151,7 +10650,7 @@ msgstr "Diele fia…" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Dielde foarkarren-tester" @@ -10167,16 +10666,16 @@ msgstr "Alt-tekst toane" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Dochs toane" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "Oanpassingsopsjes toane" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Minder hjirfan toane" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Mear toane" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mear hjirfan toane" @@ -10246,8 +10745,8 @@ msgstr "Antwurden toane" msgid "Show replies as" msgstr "Antwurden toane as" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Reaksje foar elkenien toane" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Warskôging en filter út feeds toane" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Toant ynformaasje oer wannear’t dit bejoicht oanmakke is" @@ -10297,15 +10796,17 @@ msgstr "Toant de ynhâld" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Oanmelde of registrearje in account" msgid "Sign in or create your account to join the conversation!" msgstr "Meld dy oan of registrearje in account om diel te nimmen oan it petear!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Oanmelde by in account dat net yn de list stiet" @@ -10337,8 +10842,12 @@ msgstr "Oanmelde by in account dat net yn de list stiet" msgid "Sign in to Bluesky or create a new account" msgstr "Meld dy oan by Bluesky of meitsje in nij account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Meld dy oan om berjocht te besjen" @@ -10348,9 +10857,9 @@ msgstr "Meld dy oan om berjocht te besjen" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Ofmelde" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Ofmelde" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Ofmelde?" @@ -10391,7 +10900,7 @@ msgstr "Oerslaan" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Lytser" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Snûzet it omtinken" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Ien hat mei {0} reagearre" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Der is wat net hielendal krekt mei de gegevens dy’tsto probearrest te melden. Nim kontakt op mei stipe." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Der is wat misgien" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Der is wat misgien!" msgid "Something went wrong. Please try again in a moment." msgstr "Der is wat misgien. Probearje it oer in amerijke nochris." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Der is wat misgien. Probearje it nochris." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Klopt er wat net? Lit it ús witte." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Start in petear, en it sil hjir ferskine." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "In nije chat starte" @@ -10582,17 +11101,17 @@ msgstr "Begjin mei minsken ta te foegjen" msgid "Start adding people!" msgstr "Begjin mei minsken ta te foegjen!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Chat starte mei {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakket" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Ferhaleboek" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Yntsjinje" @@ -10684,9 +11203,9 @@ msgstr "Beswier yntsjinje" msgid "Submit Appeal" msgstr "Beswier yntsjinje" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Melding yntsjinje" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Abonnearje" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Slagge" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Slagge!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Mei sukses ferifiearre" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Sinneûndergong" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Stipe" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Fan account wikselje" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Fan accounts wikselje" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Wikselje nei {0}" @@ -10824,11 +11347,15 @@ msgstr "Systeemlochboek" msgid "Tags only" msgstr "Allinnich tags" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "Tik om te erkennen datsto dizze updates begrypst en dermei akkoard giest msgid "Tap to close context menu" msgstr "Tik om kontekstmenu te sluten" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tik om te sluten" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Tsjinstbetingsten" @@ -10939,7 +11484,7 @@ msgstr "Tekst en tags" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Tekstynfierfjild" @@ -10981,9 +11526,9 @@ msgstr "Dat is alles minsken!" msgid "That's everything!" msgstr "Dat wie alles!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "De account kin nei it deblokkearjen mei dy kommunisearje." @@ -11049,6 +11594,11 @@ msgstr "De folgjende ynstellingen wurde brûkt as standert by it meitsjen fan ni 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "It privacybelied is ferpleatst nei <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Der is in probleem bard by it bywurkjen fan dyn feeds. Kontrolearje dyn ynternetferbining en probearje it opnij." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Der is in probleem bard! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Dizze ynstellingen binne allinnich fan tapassing op de folgjende feed." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Dizze {screenDescription} is markearre:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Dit beswier wurdt ferstjoerd nei <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Dit beswier wurdt trochstjoerd nei de moderaasjetsjinst fan Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Dit beswier wurdt trochstjoerd nei de moderaasjetsjinst fan Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Dizze chat is ferbrutsen" @@ -11310,7 +11881,11 @@ msgstr "Dizze ynhâld is net beskikber, omdat ien fan de belutsene brûkers de o msgid "This content is not viewable without a Bluesky account." msgstr "Dizze ynhâld is net sichtber sûnder in Bluesky-account." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Dit petear is mei in fuortsmiten of de-aktivearre account. Druk foar opsjes" @@ -11318,7 +11893,7 @@ msgstr "Dit petear is mei in fuortsmiten of de-aktivearre account. Druk foar ops msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Dit e-maialdres is al mei dyn account assosjearre." @@ -11356,11 +11931,15 @@ msgstr "Dizze feed is leech." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Dizze feed is net langer online. Wy toane <0>Untdekke yn stee fan dizze feed." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Dizze handle is reservearre. Probearje in oare." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "Dit is net in falide keppeling" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "Dizze list – makke troch dy – befettet mooglik skeiningen fan Bluesk msgid "This list is empty." msgstr "Dizze list is leech." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit berjocht beweart makke te wêzen op <0>{0}, mar waard foar it earst sjoen troch Bluesky op <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Dit berjocht is allinnich sichtber foar oanmelde brûkers." msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "De auteur fan dit berjocht hat it pleatsen fan sitaten útskeakele." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Dit profyl is allinnich sichtber foar oanmelde brûkers. It is net sichtber foar minsken dy’t net oanmeld binne." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Dizze reaksje wurdt sortearre yn in ferstoppe seksje ûnderoan it petear en negearret meldingen foar folgjende reaksjes – sawol foar dy as foar oaren." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Dizze brûker hat gjin folgers." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Hjirmei wurdt @{0} fuortsmiten út de flugge tagongslist." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Hjirmei wurdt dyn berjocht foar alle brûkers út it sitaat fuortsmiten en ferfongen troch in plakhâlder." @@ -11574,7 +12166,7 @@ msgstr "Petearfoarkarren" msgid "Threaded" msgstr "As petear" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Petearfoarkarren" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Do moatst dyn tagong ta it e-mailadres ferifiearje om de 2FA-metoade foar e-mail út te skeakeljen." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Do moatst dyn tagong ta <0>{0} ferifiearje om de 2FA-metoade foar e-mail út te skeakeljen" @@ -11646,16 +12238,16 @@ msgstr "Populêr" msgid "Top replies first" msgstr "Populêre reaksjes earst" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Underwerp" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Oersette" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Populêre fideo’s" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Fertrouwen ûntstiet út relaasjes, mienskippen en dielde kontekst, dus wy starte ek mei <0>fertroude ferifiearders: organisaasjes dy’t daliks ferifikaasje útjaan kinne." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Probearje opnij" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Probearje opnij" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "TV" @@ -11763,11 +12369,15 @@ msgstr "Kin gjin kontakt meitsje mei dyn tsjinst. Kontrolearje dyn ynternetferbi msgid "Unable to delete" msgstr "Kin net fuortsmite" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "Net beskikber" msgid "Unavailable feed information" msgstr "Feedynformaasje net beskikber" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Deblokkearje" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Deblokkearje" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Account deblokkearje" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Account deblokkearje?" @@ -11837,8 +12452,8 @@ msgstr "List deblokkearje" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Opnij pleatsen ûngedien meitsje ({0, plural, one {# opnijpleatsing} other {# opnijpleatsingen}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} ûntfolgje" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Account ûntfolgje" @@ -11872,7 +12487,7 @@ msgstr "Account ûntfolgje" msgid "Unfollows the user" msgstr "Untfolget de brûker" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Spitigernôch stipet gjin fan dyn abonnearre labelers dit rapporttype." @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Unbekende ferifiearder" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Mei ’k net mear oer" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Mei ik net mear oer ({0, plural, one {# mei-’k-net-mear-oer} other {# mei-’k-net-mear-oers}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "Net mear negearje" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Account net mear negearje" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Petear net mear negearje" @@ -11955,12 +12562,12 @@ msgstr "Petear net mear negearje" msgid "Unmute list" msgstr "List net mear negearje" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Petear net mear negearje" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Losmeitsje" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Feed losmeitsje" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Fan startside losmeitsje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Fan profyl losmeitsje" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Moderaasjelist losmeitsje" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} fan startside losmakke" @@ -12030,14 +12637,18 @@ msgstr "Fan dizze labeler ôfmelde" msgid "Unsubscribed from list" msgstr "Fan lis ôfmeld" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "Bywurkje" msgid "Update <0>{displayName} in Lists" msgstr "<0>{displayName} yn listen bywurkje" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "E-mailadres bywurkje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Bywurkje nei {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Dyn e-mailadres bywurkje" @@ -12080,17 +12699,17 @@ msgstr "Dyn e-mailadres bywurkje" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Bywurkjen fan sitaatbylage is mislearre" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bywurkjen fan sichtberheid fan reaksje is mislearre" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Laad yn stee dêrfan in foto op" @@ -12098,39 +12717,40 @@ msgstr "Laad yn stee dêrfan in foto op" msgid "Upload a text file to:" msgstr "Laad in tekstbestân op nei:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Fan kamera ôf oplade" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Fan bestannen út oplade" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Fan bibloteek út oplade" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Ofbyldingen oplade…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Keppelingminiatuer oplade…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Fideo oplade…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Brûker blokkearre" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Brûkerslist troch {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "brûkers folge troch <0>@{0}" msgid "users following <0>@{0}" msgstr "brûkers dy’t <0>@{0} folgje" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "Ferifikaasje mislearre, probearje it opnij." msgid "Verification settings" msgstr "Ferifikaasjeynstellingen" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Ferifikaasjeynstellingen" @@ -12304,8 +12924,8 @@ msgstr "Opnij ferifiearje" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Koade ferifiearje" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNS-record ferifiearje" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "E-mailkoade ferifiearje" @@ -12349,7 +12969,7 @@ msgstr "Dizze account ferifiearje?" msgid "Verify your age" msgstr "Dyn leeftiid ferifiearje" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Ferzje {0}" msgid "Video" msgstr "Fideo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Fideo kin net ferwurke wurde" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Fideofeed" @@ -12419,7 +13039,7 @@ msgstr "Fideo net fûn." msgid "Video settings" msgstr "Fideo-ynstellingen" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Fideo opladen" @@ -12432,18 +13052,18 @@ msgstr "Fideo: {0}" msgid "Videos" msgstr "Fideo’s" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Profyl fan {0} besjen" @@ -12467,20 +13087,15 @@ msgstr "Profyl fan {0} besjen" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Profyl fan blokkearre brûker besjen" @@ -12503,10 +13118,18 @@ msgstr "Details besjen" msgid "View full thread" msgstr "Folslein petear besjen" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Ynformaasje oer dizze labels besjen" @@ -12522,7 +13145,7 @@ msgstr "Mear besjen" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Profyl besjen" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Avatar besjen" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "De labeltsjinst fan @{0} besjen" msgid "View this user's verifications" msgstr "Ferifikaasjes fan dizze account besjen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Brûkers dy’t oer dizze feed meie besjen" @@ -12596,8 +13219,8 @@ msgstr "Dyn negearre accounts besjen" msgid "View your verifications" msgstr "Dyn ferifikaasjes besjen" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Toant folsleine ôfbylding" @@ -12640,8 +13263,8 @@ msgstr "Warskôgje oer ynhâld" msgid "Warn content and filter from feeds" msgstr "Warskôgje oer ynhâld en filterje út feeds" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "No besjen" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Wy koene gjin resultaten fine foar dit ûnderwerp." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Wy koene dit petear net lade" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Wy rekommandearje oan om op syn minst twa ynteressen te selektearjen." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Wy hawwe in e-mailberjocht nei <0>{0} mei in keppeling ferstjoerd. Klik derop om it e-mailferifikaasjeproses te foltôgjen." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Wy hawwe net bepale kinnen oftsto fideo’s oplade meist. Probearj it opnij." @@ -12744,12 +13371,12 @@ msgstr "Wy koene troch in ferbiningsprobleem de ferifikaasje net ûntfange. It k msgid "We will let you know when your account is ready." msgstr "Wy litte dy witte wannear’t dyn account klear is." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Wy stjoere in e-mailberjocht nei <0>{0} mei in keppeling. Klik derop om it e-mailferifikaasjeproses te foltôgjen." @@ -12779,12 +13406,12 @@ msgstr "Wy hawwe problemen mei it inisjalisearjen fan it leeftiidsbewiisproses f msgid "We're having network issues, try again" msgstr "Der binne netwurkproblemen, probearje it opnij" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "It spyt ús! It berjocht wêropsto reagearrest is fuortsmiten." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "It spyt ús! Wy kinne de side dy’tsto sochtst net fine." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Hoe wolsto dyn startpakket neame?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Hoe giet it?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Asto op in finkje tikkest, silsto sjen hokker organisaasjes ferliene ferifikaasje hawwe." @@ -12878,7 +13505,7 @@ msgstr "Asto op in finkje tikkest, silsto sjen hokker organisaasjes ferliene fer msgid "Who can interact with this post?" msgstr "Wa kin reagearje op dit berjocht?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Wa kin reagearje" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Wa kin ferifiearje?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Wûpsty!" @@ -12939,7 +13566,7 @@ msgstr "Wêrom moat dit startpakket beoardiele wurde?" msgid "Why should this user be reviewed?" msgstr "Wêrom moat dizze brûker beoardiele wurde?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Skriuw berjocht" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Skriuw dyn reaksje" @@ -12978,7 +13605,8 @@ msgstr "Skriuwers" msgid "Wrong DID returned from server. Received: {0}" msgstr "Ferkearde DID weromstjoerd troch server. Untfongen: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Ja, smyt dit startpakket fuort" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Ja, losmeitsje" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Ja, ferstopje" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "Do bist live" msgid "You are no longer live" msgstr "Do bist net langer live" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Do meist gjin fideo’s oplade." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Do kinst yn de chatynstellingen yn de app kieze oft chatmeldingen lûd hawwe" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Do kinst rinnende petearen trochsette, nettsjinsteande hokker ynstelling do kiest." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Do kinst der no foar kieze om in melding te ûntfangen wannear’t spesifike persoanen in berjocht pleatse. As der ien is wêrfansto updates ûntfange wolst, gean dan nei harren profyl en sykje it nije bel-piktogram njonken de folch-knop." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Do kinst dy no oanmelde mei dyn nije wachtwurd." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Do kinst dyn account opnij aktivearje om troch gean te kinnen mei oanmel 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Do kinst dit letter bywurkje fan dyn ynstellingen út." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Do hast gjin bewarre feeds." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Do moatst op syn minst 7 oare persoanen folgje om in startpakket te generearjen." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Do moatst tagong ta dyn fotobiblioteek jaan om in QR-koade te bewarjen" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Do hast mei {0} reagearre" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Do wurdst by al dyn accounts ôfmeld." @@ -13378,11 +14038,11 @@ msgstr "Do wurdst by al dyn accounts ôfmeld." msgid "You will no longer receive notifications for {0}" msgstr "Do ûntfangst gjin meldingen mear foar {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Do ûntfangst gjin meldingen mear foar dit petear" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Do ûntfangst no meldingen foar dit petear" @@ -13390,12 +14050,12 @@ msgstr "Do ûntfangst no meldingen foar dit petear" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Do ûntfangst in e-mailberjocht mei in ‘opnij-ynstelle-koade’. Fier hjir dy koade yn en fier dernei dyn nije wachtwurd yn." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "Do silst meldingen foar {0} ûntfange!" msgid "You'll stay updated with these feeds" msgstr "Do bliuwst op de hichte fia dizze feeds" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Do stiest yn de rige" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "Do bist oer it maksimaal tal tasteane fersiken. Probearje it letter noch msgid "You've reached the start of the active content." msgstr "Do hast it begjin fan de aktive ynhâld berikt." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Do bist oer dyn deistige limyt foar fideo-oplaads (te folle fideo’s)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "Dyn account is opskoarten" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Dyn account is noch net âld genôch om fideo’s op te laden. Probearje it letter nochris." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Dyn accountrepository, dy’t alle iepenbiere gegevensrecords befettet, kin download wurde as in ‘CAR’-bestân. Dit bestân befettet gjin media-ynslutingen, lykas ôfbyldingen, en gjin priveegegevens. Dy moatte ôfsûnderlik ophelle wurde." @@ -13519,7 +14191,7 @@ msgstr "Dyn beswier is yntsjinne. Asto yn it gelyk stelst wurdst, ûntfangsto in msgid "Your birth date" msgstr "Dyn bertedatum" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Dyn chats binne útskeakele" @@ -13527,11 +14199,11 @@ msgstr "Dyn chats binne útskeakele" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Dyn kar sil foar takomstige keppelingen ûnthâlden wurde. Do kinst it op elk momint yn de ynstellingen oanpasse." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "Jouw e-mailadres" msgid "Your email appears to be invalid." msgstr "Dyn e-mailadres liket ûnjildich te wêzen." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Dyn e-mailadres is noch net ferifiearre. Ferifiearje dyn e-mailadres om alle funksjes fan Bluesky brûke te kinnen." @@ -13582,7 +14254,7 @@ msgstr "Dyn folgjende feed is leech! Folgje mear brûkers om te sjen wat der bar msgid "Your full handle will be <0>@{0}" msgstr "Dyn folsleine handle wurdt <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Dyn negearre wurden" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "Voorkeurstaal" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Dyn melding wurdt nei <0>{0} ferstjoerd." @@ -13661,7 +14333,7 @@ msgstr "Dyn melding wurdt nei <0>{0} ferstjoerd." msgid "Your selected interests help us serve you content you care about." msgstr "Dyn selektearre ynteressen helpe ús dy ynhâld dy’t dy ynteressearret te toanen." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 b54f39fc50..4449b17d97 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Catagóir \"{interestsDisplayName}\" (gníomhach)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(tá ábhar leabaithe ann)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# nóiméad} two {# nóiméad} few {# nóiméad} many { msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {mí amháin} two {# mhí} few {# mhí} many {# mí} other {# mí}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {soicind amháin} two {# shoicind} few {# shoicind} many #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>i <1>dtéacs agus i gclibeanna" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} á leanúint" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} as 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "D'fhreagair {0} {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "{0}, liosta a rinne {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "abhatár {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}n" msgid "{0}s" msgstr "{0}s" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {uair} two {uair} few {uair} many {uair} msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {nóiméad} two {nóiméad} few {nóiméad} many {nóiméad} other {nóiméad}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Lean {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mhol {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mhol {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "D'athphostáil {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chláraigh {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "Lean {firstAuthorLink} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "Lean {firstAuthorLink} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "Mhol {firstAuthorLink} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "Mhol {firstAuthorLink} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "D'athphostáil {firstAuthorLink} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Chláraigh {firstAuthorLink} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "Dheimhnigh {firstAuthorLink} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Lean {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Mhol {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "Mhol {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "D'athphostáil {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chláraigh {firstAuthorName} agus {additionalAuthorsCount, plural, one {duine amháin eile} two {beirt eile} few {{formattedAuthorsCount} dhuine eile} many {{formattedAuthorsCount} nduine eile} other {{formattedAuthorsCount} duine eile}} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "Lean {firstAuthorName} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "Lean {firstAuthorName} thú" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "Mhol {firstAuthorName} do shainfhotha" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "Mhol {firstAuthorName} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "D'athphostáil {firstAuthorName} do phostáil" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Chláraigh {firstAuthorName} le do phacáiste fáilte" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "Dheimhnigh {firstAuthorName} thú" @@ -538,8 +597,8 @@ msgstr "Dheimhnigh {firstAuthorName} thú" msgid "{following} following" msgstr "{following} á leanúint" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Ní féidir TD a chur chuig {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "Cuireadh <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eil #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {postáil athluaite} two {phostáil athluaite} few {phostáil athluaite} many {bpostáil athluaite} other {postáil athluaite}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {athphostáil} two {athphostáil} few {athphostáil} many {athphostáil} other {athphostáil}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} ball" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "Seoladh cód nua chugat" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Glac Leis" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Glac Leis" + +#: 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Glac leis an iarratas" @@ -860,17 +950,26 @@ msgstr "Glac leis an iarratas" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Inrochtaineacht" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Socruithe Inrochtaineachta" msgid "Account" msgstr "Cuntas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Cuntas blocáilte" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Cuntas leanta" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Baineadh an cuntas ón mearliosta" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Cuntas díbhlocáilte" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Cuntas díleanta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Níl an cuntas balbhaithe a thuilleadh" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Cuir leis" @@ -999,8 +1094,8 @@ msgstr "Cuir cuntas leis seo" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Cuir téacs malartach leis seo (roghnach)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Cuir cuntas eile leis" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Cuir postáil eile leis" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Cuir pasfhocal aipe leis" msgid "Add App Password" msgstr "Cuir pasfhocal aipe leis seo" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Cuir tuilleadh sonraí leis (roghnach)" @@ -1091,6 +1186,10 @@ msgstr "Cuir daoine leis" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Tuilleadh sonraí (300 carachtar ar a mhéad)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "aoife@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Uile" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Ceadaigh fáil ar do chuid TDanna" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "An bhfuil cuntas agat cheana?" msgid "Already signed in as @{0}" msgstr "Logáilte isteach cheana mar @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Téacs Malartach" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Cuireann an téacs malartach síos ar na híomhánna do dhaoine atá dall nó a bhfuil lagú radhairc orthu agus cuireann sé an comhthéacs ar fáil do chuile dhuine." @@ -1387,7 +1486,7 @@ msgstr "Tharla earráid" msgid "An error occurred" msgstr "Tharla earráid" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Tharla earráid agus an físeán á chomhbhrú." @@ -1421,7 +1520,8 @@ msgstr "Tharla earráid agus an físeán á lódáil. Bain triail eile as." msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Tharla earráid agus an cód QR á shábháil!" @@ -1432,11 +1532,11 @@ msgstr "Tharla earráid agus an cód QR á shábháil!" msgid "An error occurred while trying to follow all" msgstr "Tharla earráid agus na cuntais go léir á leanúint" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Tharla earráid agus an físeán á uaslódáil. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Tharla earráid agus an físeán á uaslódáil. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Rud nach bhfuil ar fáil sna roghanna seo" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Tharla fadhb agus an comhrá á oscailt" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Tharla fadhb. Déan iarracht eile, le do thoil." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "Aon duine" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Caithfidh ainm pasfhocal aipe a bheith ar a laghad ceithre charachtar ar msgid "App passwords" msgstr "Pasfhocail aipe" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Pasfhocail aipe" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Achomharc déanta" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Déan achomharc i gcoinne an chinnidh seo" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Cartlannaithe ó {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Postáil sa chartlann" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "An bhfuil tú cinnte gur mhaith leat an pasfhocal aipe \"{0}\" a scriosadh?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "An bhfuil tú cinnte gur mhaith leat an pacáiste fáilte seo a scriosad msgid "Are you sure you want to discard your changes?" msgstr "An bhfuil tú cinnte gur mhaith leat do chuid athruithe a chur ar ceal?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "An bhfuil tú cinnte gur mhaith leat an comhrá seo a fhágáil?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar duitse é ach ní don duine eile atá páirteach." +#: src/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 "An bhfuil tú cinnte gur mhaith leat é seo a bhaint de do chuid fothaí?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 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?" @@ -1724,8 +1838,8 @@ msgstr "Ealaín" msgid "Artistic or non-erotic nudity." msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Seinn físeáin agus GIFanna go huathoibríoch" msgid "Available" msgstr "Ar fáil" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Ar fáil" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Ar fáil" msgid "Back" msgstr "Ar ais" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" 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ú." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Breithlá" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blocáil" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blocáil an cuntas seo" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Blocáil an cuntas seo?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blocáil na cuntais seo" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Liosta blocála" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "An bhfuil fonn ort na cuntais seo a bhlocáil?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blocáil an t-úsáideoir" @@ -1946,9 +2057,9 @@ msgstr "Blocáil an t-úsáideoir" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blocáil an t-úsáideoir" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blocáilte" @@ -1964,14 +2075,12 @@ msgstr "Blocáilte" msgid "Blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cuntais bhlocáilte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Ní féidir leis na cuntais bhlocáilte freagra a thabhairt ar do chomhráite, tagairt a dhéanamh duit, ná aon phlé eile a bheith acu leat." @@ -1987,7 +2096,7 @@ msgstr "Ní bhacann blocáil an lipéadóir seo ar lipéid a chur ar do chuntas. msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Tá an bhlocáil poiblí. 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." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Ní chuirfidh blocáil cosc ar lipéid a bheith curtha ar do chuntas, ach bacfaidh sí an cuntas seo ar fhreagraí a thabhairt i do chuid snáitheanna agus ar chaidreamh a dhéanamh leat." @@ -2000,7 +2109,7 @@ msgstr "Blag" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Ní féidir le Bluesky an dáta maíte a dheimhniú." @@ -2029,7 +2138,7 @@ msgstr "Déanann mathshlua meidhréis ar Bluesky!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Téarmaí Seirbhíse Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Roghnóidh Bluesky roinnt cuntas molta ó dhaoine i do líonra." 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 "Ní thaispeánfaidh Bluesky do phróifíl ná do chuid postálacha d’úsáideoirí atá logáilte amach. Is féidir nach gcloífidh aipeanna eile leis an iarratas seo. I bhfocail eile, ní bheidh do chuntas anseo príobháideach." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "Leabhair" 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" @@ -2137,24 +2254,34 @@ msgstr "Gnó" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Le {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Le <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Má chruthaíonn tú cuntas, glacann tú leis na <0>Téarmaí Seirbhíse msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Ceamara" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Ceamara" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Ceamara" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Ceamara" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cealaigh" @@ -2248,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "Cealaigh an cuardach" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Ní féidir plé le húsáideoir blocáilte" @@ -2264,7 +2400,7 @@ msgstr "Fotheidil (.vtt)" msgid "Captions & alt text" msgstr "Fotheidil agus téacs malartach" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Athraigh mo leasainm" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "Athraigh mo phasfhocal" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Comhrá" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Scriosadh an comhrá" @@ -2361,6 +2497,12 @@ msgstr "Scriosadh an comhrá" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Balbhaíodh an comhrá" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Socruithe comhrá" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Socruithe Comhrá" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Díbhalbhaíodh an comhrá" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Comhráite" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Roghnaigh an dath seo mar abhatár duit" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" @@ -2594,28 +2745,30 @@ msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Dún" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Dún an dialóg oscailte" @@ -2647,6 +2800,10 @@ msgstr "Dún an dialóg oscailte" msgid "Close alert" msgstr "Dún an rabhadh" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Dún an tarraiceán íochtair" @@ -2657,8 +2814,10 @@ msgstr "Dún an tarraiceán íochtair" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Dún an dialóg" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Dún an íomhá" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Dún an dialóg seo" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Laghdaigh an liosta úsáideoirí" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Laghdaíonn sé seo liosta na n-úsáideoirí le haghaidh an fhógra sin" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Greannáin" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Treoirlínte an phobail" @@ -2740,12 +2915,12 @@ msgstr "Freagair an dúshlán" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Cum postáil nua" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "Scríobh freagra" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "GIF á chomhbhrú..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Físeán á chomhbhrú..." @@ -2780,7 +2955,7 @@ msgstr "Le socrú i <0>socruithe na modhnóireachta." msgid "Confirm" msgstr "Dearbhaigh" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Teagmháil le Support" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Ábhar agus Meáin" msgid "Content and media" msgstr "Ábhar agus meáin" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Ábhar agus Meáin" @@ -2889,7 +3064,7 @@ msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúna #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Lean leis an snáithe..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Lean ar aghaidh go dtí an chéad chéim eile" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Comhrá" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Scriosadh an comhrá" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Scriosadh an comhrá" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Leagan cóipeáilte sa ghearrthaisce" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Cóipeáilte!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Cóipeáil" @@ -2997,6 +3184,11 @@ msgstr "Cóipeáil an DID" msgid "Copy host" msgstr "Cóipeáil an t-óstainm" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Cóipeáil an nasc leis an liosta" msgid "Copy link to post" msgstr "Cóipeáil an nasc leis an bpostáil" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Cóipeáil téacs na teachtaireachta" @@ -3037,12 +3229,12 @@ msgstr "Cóipeáil téacs na teachtaireachta" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Cóipeáil téacs na postála" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Cóipeáil an cód QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "An polasaí maidir le cóipcheart" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Níor éiríodh ar an gcomhrá a fhágáil" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Ní féidir an fotha a lódáil" @@ -3100,7 +3308,11 @@ msgstr "Ní féidir an fotha a lódáil" msgid "Could not load list" msgstr "Ní féidir an liosta a lódáil" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" @@ -3108,11 +3320,19 @@ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" msgid "Could not process your video" msgstr "Níorbh fhéidir d'fhíseán a phróiseáil" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ msgstr "Cód tíre" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Cruthaigh" @@ -3153,13 +3373,13 @@ msgstr "Cruthaigh liosta" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Cruthaigh pacáiste fáilte" @@ -3174,13 +3394,14 @@ msgstr "Cruthaigh pacáiste fáilte ar mo shon" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Cruthaigh cuntas" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Cruthaigh abhatár nua ina ionad sin" @@ -3206,7 +3427,7 @@ msgstr "Cruthaigh abhatár nua ina ionad sin" msgid "Create another" msgstr "Cruthaigh ceann eile" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Cruthaigh cuntas nua" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Cruthaigh tuairisc do {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Cruthaíodh {0}" @@ -3270,6 +3492,10 @@ msgstr "Cuireadh cosc ar an gcruthaitheoir" msgid "Culture" msgstr "Cultúr" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Téama dorcha" msgid "Date of birth" msgstr "Dáta breithe" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Réamhshocrú" msgid "Default icons" msgstr "Deilbhíní réamhshocraithe" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Scrios pasfhocal na haipe" msgid "Delete app password?" msgstr "Scrios pasfhocal na haipe?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "Scrios taifead dearbhaithe comhrá" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Scrios an comhrá" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Scrios domsa" @@ -3399,11 +3633,11 @@ msgstr "Scrios domsa" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Scrios an teachtaireacht seo" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Scrios an teachtaireacht seo domsa" @@ -3411,9 +3645,9 @@ msgstr "Scrios an teachtaireacht seo domsa" msgid "Delete my account" msgstr "Scrios mo chuntas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Scrios an phostáil" @@ -3430,17 +3664,17 @@ msgstr "An bhfuil fonn ort an pacáiste fáilte seo a scriosadh?" msgid "Delete this list?" msgstr "An bhfuil fonn ort an liosta seo a scriosadh?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Scriosta" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Cuntas Scriosta" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Téacs malartach tuairisciúil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Dícheangail an phostáil athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "An bhfuil fonn ort an phostáil athluaite a dhícheangal?" @@ -3507,13 +3741,13 @@ msgstr "Dialóg: cé atá in ann idirghníomhú leis an bpostáil seo" msgid "Dim" msgstr "Breacdhorcha" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Ná húsáid 2FA trí ríomhphost" msgid "Disable haptic feedback" msgstr "Ná húsáid aiseolas haptach" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Díchumasaithe" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Ná sábháil" msgid "Discard changes?" msgstr "Faigh réidh leis na hathruithe?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Faigh réidh leis an bpostáil?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Aimsigh Fothaí Nua" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ruaig" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Ruaig an earráid" @@ -3642,6 +3877,10 @@ msgstr "Ruaig an rannán seo" 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" @@ -3673,7 +3912,7 @@ msgstr "Níl lomnochtacht ann." msgid "Domain verified!" msgstr "Fearann dearbhaithe!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Déanta" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Tapáil faoi dhó chun an fhuinneog a dhúnadh" @@ -3737,19 +3981,14 @@ msgstr "Tapáil faoi dhó chun an fhuinneog a dhúnadh" 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 "Íoslódáil Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Íoslódáil comhad CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Íoslódáil comhad CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Fad:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "m.sh. cáit" @@ -3823,9 +4079,8 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Eagar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Cuir an t-abhatár in eagar" @@ -3847,19 +4102,19 @@ msgstr "Cuir an t-abhatár in eagar" msgid "Edit Feeds" msgstr "Cuir Fothaí in Eagar" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Cuir an íomhá seo in eagar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Cuir na socruithe idirghníomhaíochta in eagar" @@ -3868,7 +4123,16 @@ msgstr "Cuir na socruithe idirghníomhaíochta in eagar" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaí" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Cuir Daoine in Eagar" @@ -3912,12 +4171,12 @@ msgstr "Cuir socruithe idirghníomhaíochta na postála in eagar" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Athraigh an phróifíl" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Athraigh an Phróifíl" @@ -3925,7 +4184,8 @@ msgstr "Athraigh an Phróifíl" msgid "Edit starter pack" msgstr "Cuir an pacáiste fáilte in eagar" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Cuir do phacáiste fáilte in eagar" @@ -3971,7 +4231,7 @@ msgstr "Seoladh ríomhphoist" msgid "Email Resent" msgstr "Athsheoladh an ríomhphost" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an msgid "Embedded video player" msgstr "Fís-seinnteoir leabaithe" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Cumasaigh" @@ -4025,7 +4285,7 @@ msgstr "Cuir ábhar do dhaoine fásta ar fáil" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ 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:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Cuir pasfhocal isteach" msgid "Enter a word or tag" msgstr "Cuir focal na clib isteach" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Earráid" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Chuile dhuine" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Chuile dhuine" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Chuile dhuine" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Leis seo, ní chuirtear an balbhú i bhfeidhm ar úsáideoirí a leanann msgid "Exit fullscreen" msgstr "Fág an mód lánscáileáin" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Taispeáin an téacs malartach ina iomláine" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Leathnaigh an liosta úsáideoirí" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 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" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Bhíothas ag súil go dtiocfadh taifead ón URI" @@ -4277,10 +4536,10 @@ 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:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Roghanna maidir le meáin sheachtracha" @@ -4331,18 +4587,22 @@ msgstr "Roghanna maidir le meáin sheachtracha" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Theip ar athrú an leasainm. Bain triail eile as." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Theip ar phasfhocal aipe a chruthú. Bain triail eile as." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Theip ar chruthú an phacáiste fáilte" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Teip ar theachtaireacht a scriosadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Teip ar scriosadh na postála. Déan iarracht eile." @@ -4394,24 +4655,24 @@ msgstr "Teip ar scriosadh na postála. Déan iarracht eile." msgid "Failed to delete starter pack" msgstr "Theip ar scriosadh an phacáiste fáilte" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Teip ar lódáil roghanna na bhfothaí" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Teip ar lódáil na bhfothaí molta" msgid "Failed to load suggested follows" msgstr "Teip ar lódáil na gcuntas molta" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Theip ar ghreamú na postála" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Teip ar bhalbhú an tsnáithe a athrú; bain triail eile as" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Theip ar uasdátú na bhfothaí" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Teip ar shocruithe a uasdátú" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Fotha" @@ -4649,7 +4914,7 @@ msgstr "Fotha" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Fotha le {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Roghchlár an fhotha" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Aiseolas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Fothaí" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Ag cur crích air" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Aimsigh fothaí le leanúint" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Aimsigh daoine le leanúint" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Lean" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Lean {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Lean ar ais" @@ -4916,7 +5183,7 @@ msgstr "Lean ar ais" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Leanta ag <0>{0} agus <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Leanta ag <0>{0}, <1>{1}, agus {2, plural, one {duine amháin eile} two {beirt eile} few {# dhuine eile} many {# nduine eile} other {# duine eile}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Leantóirí de chuid @{0} a bhfuil aithne agat orthu" @@ -4960,10 +5231,10 @@ msgstr "Leantóirí a bhfuil aithne agat orthu" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Á leanúint" @@ -4977,12 +5248,12 @@ msgstr "Á leanúint" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Ag leanúint {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Leanann sé/sí thú" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Leanann sé/sí thú" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Clófhoireann" @@ -5065,11 +5333,16 @@ msgstr "Pasfhocal dearmadta?" msgid "Forgot?" msgstr "Dearmadta?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "Ó <0/>" msgid "Generate a starter pack" msgstr "Cruthaigh pacáiste fáilte" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Faigh cabhair" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Tabhair gnúis do do phróifíl" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Ar ais" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Ar ais" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Fill ar an gcéim roimhe seo" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Abhaile" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Abhaile" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Abhaile" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Téigh go comhrá le {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Téigh go dtí an chéad rud eile" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Téigh go próifíl" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Téigh go próifíl an úsáideora" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Tá an leasainm seo rófhada. Bain triail as ceann níos giorra." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Haischlib" @@ -5458,8 +5756,8 @@ msgstr "Haischlib {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Cúnamh" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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ú." @@ -5522,7 +5820,7 @@ msgstr "Liosta i bhfolach" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Liosta i bhfolach" msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Cuir i bhfolach" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Cuir an phostáil seo i bhfolach domsa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Cuir an freagra i bhfolach do chách" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Cuir an freagra i bhfolach domsa" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "An bhfuil fonn ort an freagra seo a chur i bhfolach?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "An bhfuil fonn ort treochtaí a chur i bhfolach?" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Cuir liosta na gcuntas i bhfolach" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féa msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmm, ní raibh muid in ann an tseirbhís modhnóireachta sin a lódáil." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Foighne ort! Tá físeáin á seoladh de réir a chéile, agus tá tú fós ag fanacht ar d'uain. Déan iarracht go luath!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Baile" @@ -5721,7 +6019,7 @@ msgstr "Tuigim" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Má tá an téacs malartach rófhada, athraíonn sé seo go téacs leathnaithe" @@ -5757,15 +6055,15 @@ msgstr "Má scriosann tú an liosta seo, ní bheidh tú in ann é a fháil ar ai msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Má tá fearann de do chuid féin agat, is féidir é sin a úsáid mar leasainm, agus sa chaoi sin, d'aitheantas féin a dhearbhú. <0>Tuilleadh eolais." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Má bhaineann tú an phostáil seo, ní bheidh tú in ann í a fháil ar ais." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Má tá sé i gceist agat do hanla nó ríomhphost a athrú, déan sin sula ndéanann tú díghníomhú." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Íomhá" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Tá an cód 2FA seo neamhbhailí." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Leasainm neamhbhailí. Bain triail as ceann eile." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Cód Deimhnithe Neamhbhailí" @@ -6001,8 +6315,15 @@ msgstr "Cód cuiridh" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Tabhair cuireadh do dhaoine chuig an pacáiste fáilte!" +#: 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 "Tabhair cuireadh do do chuid cairde na fothaí agus na daoine is fearr leat a leanúint" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID an Jab: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID an Jab: {0}" msgid "Jobs" msgstr "Jabanna" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Jabanna" msgid "Join Bluesky" msgstr "Cláraigh le Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Glac páirt sa chomhrá" msgid "Journalism" msgstr "Iriseoireacht" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Lipéid ar do chuntas" msgid "Labels on your content" msgstr "Lipéid ar do chuid ábhair" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Socruithe teanga" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Is Déanaí" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Le tuilleadh a fhoghlaim faoi céard atá poiblí ar Bluesky" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Tuilleadh eolais." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Éirigh as" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Éirigh as an gcomhrá" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Éirigh as an gcomhrá" @@ -6284,13 +6642,14 @@ msgstr "Éirigh as an gcomhrá" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Éirigh as an gcomhrá" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Ag fágáil slán ag Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "le déanamh fós." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Sorcha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Moladh" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Mol an fotha seo" @@ -6358,8 +6721,8 @@ msgstr "Mol an fotha seo" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Molta ag" @@ -6377,30 +6740,26 @@ 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}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Moltaí" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Moltaí don phostáil seo" @@ -6409,11 +6768,11 @@ msgstr "Moltaí don phostáil seo" msgid "Linear" msgstr "Líneach" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Liosta" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe níos mó" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Liostaí" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Ag lódáil …" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Logleabhar" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social a rinne an lógó" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social a rinne an lógó" @@ -6662,7 +7021,7 @@ msgstr "Is cosúil go bhfuil fotha leanúna ar iarraidh ort. <0>Cliceáil anseo msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Bainistigh do chuid clibeanna agus na focail a bhalbhaigh tú" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcáil léite" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "úsáideoirí luaite" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Luaite" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Teachtaireacht {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "Tá an teachtaireacht rófhada" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Teachtaireachtaí" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modhnóireacht" @@ -6894,7 +7247,7 @@ msgstr "Liosta modhnóireachta uasdátaithe" msgid "Moderation lists" msgstr "Liostaí modhnóireachta" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liostaí modhnóireachta" @@ -6903,7 +7256,7 @@ msgstr "Liostaí modhnóireachta" msgid "moderation settings" msgstr "socruithe modhnóireachta" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Stádais modhnóireachta" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Tuilleadh roghanna" @@ -6949,7 +7302,7 @@ msgstr "Scannáin" msgid "Music" msgstr "Ceol" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Balbhaigh" @@ -6965,8 +7318,8 @@ msgstr "Balbhaigh" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Balbhaigh cuntas" msgid "Mute accounts" msgstr "Balbhaigh cuntais" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Balbhaigh an comhrá" @@ -6994,7 +7347,7 @@ msgstr "Balbhaigh an liosta" msgid "Mute these accounts?" msgstr "An bhfuil fonn ort na cuntais seo a bhalbhú?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Balbhaigh an focal seo i gclibeanna amháin" msgid "Mute this word until you unmute it" msgstr "Balbhaigh an focal seo go ndíbhalbhóidh mé é" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Balbhaigh an snáithe seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Balbhaigh focail ⁊ clibeanna" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cuntais a balbhaíodh" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cuntais a balbhaíodh" @@ -7062,6 +7419,10 @@ msgstr "Focail ⁊ clibeanna a cuireadh i bhfolach" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Tá an balbhú príobháideach. Is féidir leis na cuntais a bhalbhaigh tú do chuid postálacha a fheiceáil agus is féidir leo scríobh chugat ach ní fheicfidh tú a gcuid postálacha eile ná aon fhógraí uathu." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Téann sé seo chuig an gcéad scáileán eile" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Téann sé seo chuig do phróifíl" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Is cuma, cruthaigh leasainm dom" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nua" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Comhrá nua" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Postáil nua" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Postáil nua" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Nuacht" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Ar aghaidh" msgid "Next image" msgstr "An chéad íomhá eile" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Ní leantar {0} níos mó" @@ -7362,7 +7726,7 @@ msgstr "Ní leantar {0} níos mó" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Níl aon teachtaireacht ann fós" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Níl aon fhógra ann fós!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Is é an t-údar amháin atá in ann an phostáil seo a athlua." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Gan torthaí" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Toradh ar bith" @@ -7446,8 +7810,8 @@ msgstr "Toradh ar bith" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Gan torthaí" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Lomnochtacht Neamhghnéasach" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Ní bhfuarthas é sin" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nóta faoi roinnt" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Socruithe fógra" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Fuaimeanna fógra" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Fógraí" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "anois" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "As" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Maith go leor" @@ -7648,35 +8000,35 @@ msgstr "ar<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Atosú an chláraithe" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Tá téacs malartach de dhíth ar íomhá amháin nó níos mó acu." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 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" @@ -7685,6 +8037,26 @@ msgstr "Téacs malartach de dhíth ar fhíseán nó ar fhíseáin" msgid "Only {0} can reply." msgstr "Ní féidir ach le {0} freagra a thabhairt." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Ní thacaítear ach le comhaid íomhá" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Ní oibríonn ach comhaid WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Ní oibríonn ach comhaid WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Úps! Theip ar rud éigin!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Úps! Theip ar rud éigin!" msgid "Oops!" msgstr "Úps!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Oscail an cruthaitheoir abhatáir" @@ -7720,12 +8106,17 @@ msgstr "Oscail an cruthaitheoir abhatáir" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Oscail na roghanna comhrá" @@ -7739,16 +8130,16 @@ msgstr "Oscail an roghchlár tarraiceáin" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Oscail roghnóir na n-emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Oscail roghchlár na bhfothaí" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Oscail nasc le {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Oscail roghchlár na bpostálacha" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Oscail leathanach an Storybook" msgid "Open system log" msgstr "Oscail logleabhar an chórais" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Osclaíonn sé seo fuinneog lenar féidir leat rabhadh a chur leis an bp msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Osclaíonn sé seo tuilleadh sonraí le haghaidh iontráil dífhabhtaithe" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Osclaíonn sé seo an ceamara ar an ngléas" @@ -7858,22 +8270,24 @@ msgstr "Osclaíonn sé seo an t-eagarthóir" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Osclaíonn sé an phróifíl seo" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Tá ár modhnóirí tar éis athbhreithniú a dhéanamh ar thuairiscí. Chinn siad gan ligean duit comhráite a úsáid ar Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Tá ár modhnóirí tar éis athbhreithniú a dhéanamh ar thuairiscí. msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Leathanach gan aimsiú" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Leathanach gan aimsiú" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Cuir an físeán ar shos" msgid "People" msgstr "Daoine" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Na daoine atá leanta ag @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Na leantóirí atá ag @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Grianghrafadóireacht" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Pictiúir le haghaidh daoine fásta." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Greamaigh an fotha" @@ -8152,12 +8578,12 @@ msgstr "Greamaigh an fotha" msgid "Pin to home" msgstr "Greamaigh le baile" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Greamaigh le Baile" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Greamaigh le do phróifíl" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Greamaithe" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Greamaíodh {0} le Baile" @@ -8236,7 +8662,7 @@ msgstr "Roghnaigh do leasainm, le do thoil." msgid "Please choose your password." msgstr "Roghnaigh do phasfhocal, le do thoil." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Déan an captcha, le do thoil." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Cuir isteach ainm uathúil ar an bpasfhocal aipe seo, nó bain úsáid as an ainm randamach a chruthaigh muid." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Cuir isteach do sheoladh ríomhphoist, le do thoil." msgid "Please enter your invite code." msgstr "Cuir isteach do chód cuiridh." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Abair linn, le do thoil, cén fáth a gcreideann tú gur chuir {0} an lipéad seo i bhfeidhm go mícheart" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mínigh, le do thoil, an fáth a gcreideann tú go bhfuil sé mícheart nach ligtear duit comhráite a úsáid" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "Logáil isteach mar @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Polaitíocht" msgid "Porn" msgstr "Pornagrafaíocht" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Postáil" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Postáil Uile" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Postáil ó @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Scriosadh an phostáil" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Níor uaslódáladh an phostáil. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." @@ -8454,18 +8884,22 @@ msgstr "Postáil a chuir tú i bhfolach" msgid "Post interaction settings" msgstr "Socruithe idirghníomhaíochta na postála" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Brúigh le iarracht a thabhairt ar nascadh arís" -#: src/components/Error.tsx:61 +#: 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 "Brúigh le iarracht eile a dhéanamh" @@ -8536,7 +8966,7 @@ msgstr "Brúigh le iarracht eile a dhéanamh" msgid "Press to view followers of this account that you also follow" msgstr "Brúigh leis na daoine a leanann an cuntas seo a leanann tú féin a fheiceáil" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Príobháideacht" msgid "Privacy and security" msgstr "Príobháideacht agus slándáil" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Polasaí Príobháideachta" @@ -8586,15 +9015,15 @@ msgstr "Polasaí Príobháideachta" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Físeán á phróiseáil..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Á phróiseáil..." @@ -8602,10 +9031,10 @@ msgstr "Á phróiseáil..." msgid "profile" msgstr "próifíl" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Próifíl" @@ -8613,6 +9042,7 @@ msgstr "Próifíl" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Cóipeáladh an cód QR sa ghearrthaisce" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Íoslódáladh an cód QR!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Sábháladh an cód QR i do rolla cheamara!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Postáil athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Athcheanglaíodh an phostáil athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Dícheanglaíodh an phostáil athluaite" @@ -8711,12 +9138,12 @@ msgstr "Ní féidir postálacha a athlua" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Postálacha athluaite" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Postálacha athluaite den phostáil seo" @@ -8728,16 +9155,16 @@ msgstr "Rinne tú an iomarca iarrachtaí do leasainm a athrú taobh istigh de th msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Athcheangail an phostáil athluaite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "Molta" msgid "Reconnect" msgstr "Athnasc" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Athlódáil comhráite" @@ -8863,6 +9304,8 @@ msgstr "Athlódáil comhráite" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Bain {displayName} den phacáiste fáilte" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Bain an cuntas de" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Bain an ceangaltán de" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Bain an tAbhatár Amach" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Bain an Fógra Meirge Amach" @@ -8914,8 +9362,9 @@ msgstr "Bain an Fógra Meirge Amach" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Bain an leabú" @@ -8929,12 +9378,12 @@ msgstr "Bain an fotha de" msgid "Remove feed?" msgstr "An bhfuil fonn ort an fotha a bhaint?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Bain an íomhá de" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Scrios an athphostáil" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Bainte ag an údar" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Bainte agat" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Freagraí" @@ -9104,14 +9552,14 @@ msgstr "Cuireadh bac ar fhreagraí" msgid "Replies to this post are disabled." msgstr "Ní féidir freagraí a thabhairt ar an bpostáil seo." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Freagair" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Freagair ({0, plural, one {# fhreagra} two {# fhreagra} few {# fhreagra} many {# bhfreagra} other {# freagra}})" @@ -9125,10 +9573,6 @@ msgstr "Freagra a chuir údar an tsnáithe i bhfolach" msgid "Reply Hidden by You" msgstr "Freagra a chuir tusa i bhfolach" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Is é údar an tsnáithe a roghnaíonn socruithe a bhaineann le freagraí" @@ -9137,18 +9581,18 @@ msgstr "Is é údar an tsnáithe a roghnaíonn socruithe a bhaineann le freagra msgid "Reply sorting" msgstr "Freagraí a shórtáil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Nuashonraíodh infheictheacht na bhfreagraí" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Cuireadh an freagra i bhfolach" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Tuairiscigh" @@ -9157,20 +9601,20 @@ msgstr "Tuairiscigh" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Tuairiscigh an comhrá seo" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Tuairiscigh comhrá" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Déan gearán faoi fhotha" @@ -9179,12 +9623,12 @@ msgstr "Déan gearán faoi fhotha" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Tuairiscigh an teachtaireacht seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Déan gearán faoi phostáil" @@ -9199,8 +9643,8 @@ msgstr "Déan gearán faoi phacáiste fáilte" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Déan gearán faoin fhotha seo" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Déan gearán faoin liosta seo" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Athphostáil" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Athphostáilte agat" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Athphostálacha den phostáil seo" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Bíodh téacs malartach ann roimh phostáil i gcónaí" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "Riachtanach don soláthraí seo" msgid "Required in your region" msgstr "Riachtanach i do réigiún" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "Athshocraigh an próiseas cláraithe" msgid "Reset password" msgstr "Athshocraigh an pasfhocal" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" msgid "Retry" msgstr "Bain triail eile as" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Fill ar an leathanach roimhe seo" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Filleann sé seo abhaile" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Filleann sé seo ar an leathanach roimhe seo" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Sábháil na hathruithe" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Sábháil an íomhá" msgid "Save new handle" msgstr "Sábháil an leasainm nua" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Sábháil an cód QR" @@ -9518,13 +9994,13 @@ msgstr "Sábháil an cód QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Sábháil i mo chuid fothaí" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Fothaí Sábháilte" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Sábháilte le mo chuid fothaí" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Abair heileo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Eolaíocht" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Fill ar an mbarr" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Cuardaigh" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Cuardaigh próifílí" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Roghnaigh dath" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Roghnaigh GIF" msgid "Select GIF \"{0}\"" msgstr "Roghnaigh GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Roghnaigh teanga..." msgid "Select languages" msgstr "Roghnaigh teangacha" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos" msgid "Select your preferred language for translations in your feed." msgstr "Do rogha teanga nuair a dhéanfar aistriúchán ar ábhar i d'fhotha." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Seol ríomhphost" @@ -9935,11 +10421,11 @@ msgstr "Seol ríomhphost" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Seol aiseolas" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Seol teachtaireacht" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Seol an phostáil seo chuig..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Seol mar theachtaireacht dhíreach" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,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:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Socruithe" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil." msgid "Sexually Suggestive" msgstr "Graosta" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Comhroinn" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Comhroinn mar sin féin" @@ -10097,16 +10586,21 @@ msgstr "Comhroinn mar sin féin" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Comhroinn an nasc" @@ -10114,6 +10608,11 @@ msgstr "Comhroinn an nasc" msgid "Share link dialog" msgstr "Dialóg le nasc a roinnt" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Comhroinn an cód QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Comhroinn an fotha seo" @@ -10142,8 +10641,8 @@ msgstr "Roinn an pacáiste fáilte seo agus cuidigh le daoine páirt a ghlacadh #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Tástáil Roghanna Comhroinnte" @@ -10167,16 +10666,16 @@ msgstr "Taispeáin an téacs malartach" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Taispeáin mar sin féin" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Níos lú den sórt seo" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Tuilleadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Níos mó den sórt seo" @@ -10246,8 +10745,8 @@ msgstr "Taispeáin freagraí" msgid "Show replies as" msgstr "Taispeáin freagraí mar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Taispeáin freagra do chách" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Taispeáin rabhadh agus scag ó na fothaí é" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Logáil isteach nó cláraigh chun páirt a ghlacadh sa chomhrá!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10337,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "Logáil isteach chuig Bluesky nó cruthaigh cuntas nua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Logáil amach" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Logáil Amach" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Logáil amach?" @@ -10391,7 +10900,7 @@ msgstr "Ná bac leis" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Níos Lú" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Theip ar rud éigin" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Theip ar rud éigin!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Rud éigin mícheart? Abair linn." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Spórt" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Tosaigh comhrá nua" @@ -10582,17 +11101,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:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Tosaigh comhrá le {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacáiste Fáilte" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Seol" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Liostáil" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "D'éirigh leis!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Tacaíocht" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Athraigh an cuntas" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "Logleabhar an chórais" msgid "Tags only" msgstr "Clibeanna amháin" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Tapáil le dúnadh" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Téarmaí Seirbhíse" @@ -10939,7 +11484,7 @@ msgstr "Téacs agus clibeanna" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Réimse téacs" @@ -10981,9 +11526,9 @@ msgstr "Sin é é!" msgid "That's everything!" msgstr "Sin an méid!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Beidh an cuntas seo in ann caidreamh a dhéanamh leat tar éis duit é a dhíbhlocáil" @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Bogadh an Polasaí Príobháideachta go dtí <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Téama" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Bhí fadhb ann maidir le do chuid fothaí a nuashonrú. Seiceáil do cheangal leis an idirlíon agus bain triail eile as." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Bhí fadhb ann! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Cuirtear na socruithe seo i bhfeidhm ar an bhfotha Following amháin." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Cuireadh bratach leis an {screenDescription} seo:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Cuirfear an t-achomharc seo chuig <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Seolfar an t-achomharc seo go dtí seirbhís modhnóireachta Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Seolfar an t-achomharc seo go dtí seirbhís modhnóireachta Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Dínascadh an comhrá seo" @@ -11310,7 +11881,11 @@ msgstr "Níl an t-ábhar seo le feiceáil toisc gur bhlocáil duine de na húsá msgid "This content is not viewable without a Bluesky account." msgstr "Níl an t-ábhar seo le feiceáil gan chuntas Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Tá an fotha seo folamh." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Níl an fotha seo ar líne níos mó. Tá <0>Discover á thaispeáint againn ina ionad." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Tá an leasainm seo coimeádta. Bain triail as ceann eile." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "Tá an liosta seo folamh." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Deir an phostáil seo gur cruthaíodh í ar <0>{0}, ach chonacthas í ar Bluesky den chéad uair ar <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Chuir údar na postála seo cosc ar phostálacha athluaite." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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 "Cuirfear an freagra seo i rannán speisialta a bheidh i bhfolach ag bun an tsnáithe seo, agus ní bhfaighidh tusa nó éinne eile fógraí maidir le freagraí eile." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 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:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Leis seo, bainfear @{0} den mhearliosta." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Leis seo, bainfear do phostáil seo den phostáil athluaite seo do gach úsáideoir, agus cuirfear ionadchoinneálaí ina háit." @@ -11574,7 +12166,7 @@ msgstr "Roghanna Snáitheanna" msgid "Threaded" msgstr "Modh snáithithe" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Roghanna Snáitheanna" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Chun 2FA trí ríomhphoist a dhíchumasú, dearbhaigh gur leatsa an seoladh ríomhphoist." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Barr" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Ábhar" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Aistrigh" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Bain triail eile as" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Bain triail eile as" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Teilifís" @@ -11763,11 +12369,15 @@ msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheang msgid "Unable to delete" msgstr "Ní féidir é a scriosadh" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Díbhlocáil" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Díbhlocáil" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Díbhlocáil an cuntas" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "An bhfuil fonn ort an cuntas seo a dhíbhlocáil?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Cuir stop leis an athphostáil ({0, plural, one {# athphostáil} two {# athphostáil} few {# athphostáil} many {# n-athphostáil} other {# athphostáil}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Dílean {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11872,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Dímhol" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Dímhol ({0, plural, one {# mholadh} two {# mholadh} few {# mholadh} many {# moladh} other {# moladh}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Ná balbhaigh an comhrá seo níos mó" @@ -11955,12 +12562,12 @@ msgstr "Ná balbhaigh an comhrá seo níos mó" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Ná balbhaigh an snáithe seo níos mó" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Díghreamaigh" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Díghreamaigh an fotha" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Díghreamaigh ón mbaile" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Díghreamaigh ón bpróifíl" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Díghreamaigh an liosta modhnóireachta" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Díghreamaíodh {0} ón mBaile" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "Nuashonraigh <0>{displayName} i Liostaí" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Uasdátú chuig {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Theip ar uasdátú an cheangaltáin athluaite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Theip ar infheictheacht an fhreagra a uasdátú" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Uaslódáil grianghraf in ionad" @@ -12098,39 +12717,40 @@ msgstr "Uaslódáil grianghraf in ionad" msgid "Upload a text file to:" msgstr "Uaslódáil comhad téacs chuig:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Uaslódáil ó Cheamara" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Uaslódáil ó Chomhaid" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Uaslódáil ó Leabharlann" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Íomhánna á n-uaslódáil..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Mionsamhail á huaslódáil..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Físeán á uaslódáil..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Liosta úsáideoirí le {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "úsáideoirí a bhfuil <0>@{0} á leanúint" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Dearbhaigh taifead DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Físeán" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Theip ar phróiseáil an fhíseáin" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "Físeán gan aimsiú." msgid "Video settings" msgstr "Socruithe físe" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Uaslódáladh an físeán" @@ -12432,18 +13052,18 @@ msgstr "Físeán: {0}" msgid "Videos" msgstr "Físeáin" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Amharc ar phróifíl {0}" @@ -12467,20 +13087,15 @@ msgstr "Amharc ar phróifíl {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Féach ar phróifíl an úsáideora bhlocáilte" @@ -12503,10 +13118,18 @@ msgstr "Féach ar shonraí" msgid "View full thread" msgstr "Féach ar an snáithe iomlán" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Féach ar eolas faoi na lipéid seo" @@ -12522,7 +13145,7 @@ msgstr "Tuilleadh" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Féach ar an bpróifíl" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Féach ar an abhatár" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Féach ar an tseirbhís lipéadaithe atá curtha ar fáil ag @{0}" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo" @@ -12596,8 +13219,8 @@ msgstr "Féach ar na cuntais a bhalbhaigh tú" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "Tabhair foláireamh faoi ábhar" msgid "Warn content and filter from feeds" msgstr "Tabhair foláireamh faoi ábhar agus scag as fothaí" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Níor aimsigh muid toradh ar bith don ábhar sin." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Theip orainn an comhrá seo a lódáil" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nílimid cinnte an bhfuil cead agat físeáin a uaslódáil. Bain triail eile as." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Déarfaidh muid leat nuair a bheidh do chuntas réidh." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Tá fadhbanna líonra againn, bain triail as arís" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ár leithscéal, ach scriosadh an phostáil atá tú ag freagairt." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Ár leithscéal, ach ní féidir linn an leathanach atá tú ag lorg a aimsiú." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Cén t-ainm ar mhaith leat a thabhairt ar do phacáiste fáilte?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Aon scéal?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Cé atá in ann idirghníomhú leis an bpostáil seo?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Úps!" @@ -12939,7 +13566,7 @@ msgstr "Cén fáth ar cheart athbhreithniú a dhéanamh ar an bpacáiste fáilte msgid "Why should this user be reviewed?" msgstr "Cén fáth gur cheart athbhreithniú a dhéanamh ar an úsáideoir seo?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Scríobh postáil" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Scríobh freagra" @@ -12978,7 +13605,8 @@ msgstr "Scríbhneoirí" msgid "Wrong DID returned from server. Received: {0}" msgstr "Tháinig DID mícheart ón fhreastalaí. Fuarthas: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Scrios an pacáiste fáilte seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Tá, dícheangail" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Tá, cuir i bhfolach é" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Níl cead agat físeáin a uaslódáil." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Is féidir leat leanacht le comhráite beag beann ar cén socrú a roghnaíonn tú." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Is féidir leat logáil isteach le do phasfhocal nua anois." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Is féidir leat do chuntas a athghníomhú chun leanacht ort ag logáil 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Tig leat é seo a uasdátú ó do shocruithe." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Níl aon fhothaí sábháilte agat." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Ní mór duit seachtar ar a laghad a leanúint le pacáiste fáilte a chruthú." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Ní mór duit fáil ar do leabharlann grianghraf a cheadú le cód QR a shábháil" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Logálfar amach as gach cuntas thú." @@ -13378,11 +14038,11 @@ msgstr "Logálfar amach as gach cuntas thú." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Ní bhfaighidh tú fógraí don snáithe seo a thuilleadh." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Gheobhaidh tú fógraí don snáithe seo anois." @@ -13390,12 +14050,12 @@ msgstr "Gheobhaidh tú fógraí don snáithe seo anois." msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Gheobhaidh tú teachtaireacht ríomhphoist le “cód athshocraithe” ann. Cuir an cód sin isteach anseo, ansin cuir do phasfhocal nua isteach." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "Beidh tú bord ar bord leis na fothaí seo" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Tá tú sa scuaine" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca beart)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Tá tú tar éis an uasteorainn laethúil ar uaslódálacha físeáin a bhaint amach (an iomarca físeán)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Níl tú anseo fada go leor chun físeáin a uaslódáil. Bain triail eile as ar ball." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Is féidir cartlann do chuntais, a bhfuil na taifid phoiblí uile inti, a íoslódáil mar chomhad “CAR”. Ní bheidh aon mheáin leabaithe (íomhánna, mar shampla) ná do shonraí príobháideacha inti. Ní mór iad a fháil ar dhóigh eile." @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "Do bhreithlá" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Cuireadh do chuid comhráite ar ceal" @@ -13527,11 +14199,11 @@ msgstr "Cuireadh do chuid comhráite ar ceal" 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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Is cosúil go bhfuil do ríomhphost neamhbhailí." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "Tá an fotha de na daoine a leanann tú folamh! Lean tuilleadh úsáideo msgid "Your full handle will be <0>@{0}" msgstr "Do leasainm iomlán anseo: <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Na focail a bhalbhaigh tú" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 8d6581c134..bc086c4c96 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Roinn-seòrsa “{interestsDisplayName}” (gnìomhach)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(tha susbaint leabaichte ann)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# mhionaid} two {# mhionaid} few {# mionaidean} other { msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mhìos} two {# mhìos} few {# mìosan} other {# mìos}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# diog} two {# dhiog} few {# diogan} other {# diog}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>san <1>teacsa ⁊ sna tagaichean" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "a’ leantainn {0}" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} à 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "Chuir {0} {1} mar fhrith-fhreagairt" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "{0}, liosta le {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "An t-avatar aig {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}d" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {uair a thìde} two {uair a thìde} few { msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {mhionaid} two {mhionaid} few {mionaidean} other {mionaid}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Tha {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} gad leantainn a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Tha an t-inbhir gnàthaichte agad a’ còrdadh ri {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "’S toil le {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "’S toil le {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "Thug {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chlàraich {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "Rinn {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} dearbhadh ort" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "Tha {firstAuthorLink} gad leantainn a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "Tha {firstAuthorLink} gad leantainn cuideachd a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "’S toil le {firstAuthorLink} an t-inbhir gnàthaichte agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "Is toil le {firstAuthorLink} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "Is toil le {firstAuthorLink} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "Thug {firstAuthorLink} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorLink} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorLink} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "Chlàraich {firstAuthorLink} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "Rinn {firstAuthorLink} dearbhadh ort" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "Tha {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} gad leantainn" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "Tha an t-inbhir gnàthaichte agad a’ còrdadh ri {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "’S toil le {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "’S toil le {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "Thug {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "Chlàraich {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "Rinn {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} dearbhadh ort" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "Tha {firstAuthorName} gad leantainn a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "Tha {firstAuthorName} gad leantainn cuideachd a-nis" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "’S toil le {firstAuthorName} an t-inbhir gnàthaichte agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "Is toil le {firstAuthorName} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "Is toil le {firstAuthorName} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "Thug {firstAuthorName} air falbh an dearbhadh a rinn iad air a’ chunntas agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "Dh’ath-phostaich {firstAuthorName} am post agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "Dh’ath-phostaich {firstAuthorName} an ath-phostadh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "Chlàraich {firstAuthorName} aig a’ phacaid tòiseachaidh agad" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "Rinn {firstAuthorName} dearbhadh ort" @@ -538,8 +597,8 @@ msgstr "Rinn {firstAuthorName} dearbhadh ort" msgid "{following} following" msgstr "a’ leantainn {following}" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Cha ghabh {handle} ri teachdaireachdan" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# uair a thìde {minutesString}} two {# uair a thì msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# uair a thìde} two {# uair a thìde} few {# uairean a thìde} other {# uair a thìde}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, one {’S urrainn dhut suas ri # fhreagairt a chur am falach.} two {’S urrainn dhut suas ri # fhreagairt a chur am falach.} few {’S urrainn dhut suas ri # freagairtean a chur am falach.}other {’S urrainn dhut suas ri # freagairt a chur am falach.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "Na h-inbhirean is daoine as fheàrr le {name} – tiugainn!" msgid "{name}'s starter pack" msgstr "A’ phacaid tòiseachaidh aig {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# nì gun leughadh} two {# nì gun leughadh} few {# nithean gun leughadh} other {# nì gun leughadh}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 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}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "Chaidh {userName} a dhearbhadh" msgid "{userName}'s verifications" msgstr "An dearbhadh a rinn {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "Tha <0>{0}, <1>{1} agus {2, plural, one {# eile} two {# eile} fe #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {gam leantainn} two {gam leantainn} few {gam leantainn} other {gam leantainn}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "{1, plural, one {a’ leantainn} two {a’ leantainn} few {a’ leantainn} other {a’ leantainn}} <0>{0}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "{1, plural, one {’S toil le} two {’S toil le} few {’S toil le} other {’S toil le}} <0>{0} seo" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {luaidh} two {luaidh} few {luaidhean} other {luaidh}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {air ath-phostadh} two {air ath-phostadh} few {air ath-phostadh} other {air ath-phostadh}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {air a shàbhaladh} two {air a shàbhaladh} few {air a shàbhaladh} other {air a shàbhaladh}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "Na buill aig <0>{0}" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "Dh’èirich mearachd leis an lìonra. Thoir sùil air a’ cheangal aga #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Dh’èirich mearachd leis an lìonra. Thoir sùil air a’ cheangal agad ris an eadar-lìon." @@ -804,7 +884,7 @@ msgstr "Dh’èirich mearachd leis an lìonra. Thoir sùil air a’ cheangal aga msgid "A new code has been sent" msgstr "Chaidh còd ùr a chur" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Dòigh dearbhaidh ùr" @@ -827,11 +907,11 @@ msgstr "Glacadh-sgrìn de dhuilleag pròifil le ìomhaigheag cluig ri taobh a’ 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Droch-ghiùlan no leth-bhreith" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Gabh ris" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Gabh ris" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Gabh ris an iarrtas cabadaich" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Gabh ris an iarrtas" @@ -860,17 +950,26 @@ msgstr "Gabh ris an iarrtas" msgid "Accept this language suggestion" msgstr "Gabh ris a’ chànan seo a chaidh a mholadh" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "So-ruigsinneachd" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Roghainnean na so-ruigsinneachd" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Roghainnean na so-ruigsinneachd" msgid "Account" msgstr "Cunntas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Chaidh an cunntas a bhacadh" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Chaidh an cunntas a leantainn" @@ -899,7 +998,7 @@ msgstr "Chaidh an cunntas a chur na dhàil" msgid "Account is deactivated" msgstr "Chaidh an cunntas a chur à gnìomh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Solaraiche a’ chunntais" msgid "Account removed from quick access" msgstr "Chaidh an cunntas a thoirt air falbh on ghrad-inntrigeadh" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Chaidh am bacadh a thoirt far a’ chunntais" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Chan eil thu a’ leantainn a’ chunntais tuilleadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Chaidh an cunntas a neo-mhùchadh" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "’S urrainn do chunntasan aig a bheil cromag chrom-bhileach ghorm <0><1/> cunntasan eile a dhearbhadh. ’S e Bluesky a thaghas an luchd-dearbhaidh earbsach seo." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Gnìomhachd o dhaoine eile" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Brathan gnìomhachd" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Cuir ris" @@ -999,8 +1094,8 @@ msgstr "Cuir cunntas ris" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Cuir roghainn teacsa ris (roghainneil)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Cuir cunntas eile ris" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Cuir post eile ris" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Cuir post eile ris an t-snàithlean" @@ -1035,7 +1130,7 @@ msgstr "Cuir facal-faire aplacaid ris" msgid "Add App Password" msgstr "Cuir facal-faire aplacaid ris" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Cuir emoji mar fhrith-fhreagairt" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Cuir dealbh ris" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Cuir meadhan ris a’ phost" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Cuir barrachd fiosrachaidh ris (roghainneil)" @@ -1091,6 +1186,10 @@ msgstr "Cuir daoine ris" msgid "Add people to list" msgstr "Cuir daoine ri liosta" +#: 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 "Cuir frith-fhreagairt" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Cuir latha do bhreith ris" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "A’ cur buill ris an liosta…" msgid "Additional details (limit 1000 characters)" msgstr "Mion-fhiosrachadh a bharrachd (1,000 caractar air a’ char as motha)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Fiosrachadh a bharrachd (300 caractar air a’ char as motha)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "Chaidh do cheist mun dearbhadh aoise a chur" msgid "Age assurance only takes a few minutes" msgstr "Cha toir dearbhadh aoise ach mionaid no dhà" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "meadhbh@eisimpleir.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Na h-uile" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Ceadaich cead-inntrigidh o na teachdaireachdan dìreach agad" msgid "Allow anyone to reply" msgstr "Thoir cead-freagairt dhan a h-uile duine" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "A bheil cunntas agad mar-thà?" msgid "Already signed in as @{0}" msgstr "Air clàradh a-steach mar @{0} mu thràth" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "Roghainn teacsa" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Roghainn teacsa" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Mìnichidh roghainn teacsa na tha san dealbh do dhaoine a tha dall no air beag-lèirsinn is bheir e co-theacsa dhan a h-uile duine." @@ -1387,7 +1486,7 @@ msgstr "Thachair mearachd" msgid "An error occurred" msgstr "Thachair mearachd" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Dh’èirich mearachd rè dùmhlachadh a’ video." @@ -1421,7 +1520,8 @@ msgstr "Dh’èirich mearachd rè luchdadh a’ video. Feuch ris a-rithist." msgid "An error occurred while loading your lists :/" msgstr "Dh’èirich mearachd rè luchdadh nan liostaichean agad 😕" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Dh’èirich mearachd rè sàbhaladh a’ chòd QR!" @@ -1432,11 +1532,11 @@ msgstr "Dh’èirich mearachd rè sàbhaladh a’ chòd QR!" msgid "An error occurred while trying to follow all" msgstr "Dh’èirich mearachd nuair a bha sinn airson na h-uile a leantainn" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ luchdadh suas a’ video. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Dh’èirich mearachd fhad ’s a bha sinn a’ luchdadh suas a’ video. Thoir sùil air a’ cheangal agad ris an eadar-lìon is feuch ris a-rithist." @@ -1456,24 +1556,28 @@ msgstr "Dealbh dhe na h-avataran aig cleachdaichean a’ sruthadh à leabhar luc 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" +#: 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 "Dealbh a sheallas gun tagh Bluesky luchd-dearbhaidh earbsach agus gun dearbh an luchd-dearbhaidh earbsach seo cunntasan fa leth aig an luchd-chleachdaidh an uair sin." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Duilgheadas nach eil am measg nan roghainnean seo" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Dh’èirich duilgheadas nuair a bha sinn a’ fosgladh na cabadaich" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Dh’èirich duilgheadas, feuch ris a-rithist." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Dealbh mas fhìor dhe iPhone a tha a’ sealltainn aplacaid Bluesky agus a’ phròifil aig cleachdaiche dearbhte le cromag ghorm ris an ainm-taisbeanaidh aca." @@ -1539,13 +1643,17 @@ msgstr "Duine sam bith" msgid "Anyone can interact" msgstr "Faodaidh duine sam bith eadar-ghabhail a dhèanamh" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "Duine sam bith a tha gam leantainn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Faclan-faire nan aplacaidean" @@ -1618,7 +1726,7 @@ msgstr "Ath-thagair an aghaidh dùnadh an t-srutha bheò" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Chaidh an t-ath-thagradh a chur" @@ -1632,14 +1740,14 @@ msgstr "Tog ath-thagradh an aghaidh na dàlach" msgid "Appeal Suspension" msgstr "Tog ath-thagradh an aghaidh na dàlach" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Tog ath-thagradh an aghaidh a’ cho-dhùnaidh seo" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,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:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Air a thasglannachadh ann an {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Post tasglannaichte" @@ -1675,7 +1783,7 @@ msgstr "A bheil thu cinnteach cinnteach?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "A bheil thu cinnteach gu bheil thu airson faclan-faire na h-aplacaid “{0}” a sguabadh às?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "A bheil thu cinnteach gu bheil thu airson a’ phacaid tòiseachaidh seo msgid "Are you sure you want to discard your changes?" msgstr "A bheil thu cinnteach gu bheil thu airson na h-atharraichean agad a thilgeil air falbh?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "A bheil thu cinnteach gu bheil thu airson an còmhradh seo fhàgail? Thèid na teachdaireachdan agad a sguabadh às dhut-sa ach chan ann dhan chom-pàirtiche eile." +#: src/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 "A bheil thu cinnteach gu bheil thu airson seo a thoirt air falbh o na h-inbhirean agad?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 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?" @@ -1724,8 +1838,8 @@ msgstr "Ealain" msgid "Artistic or non-erotic nudity." msgstr "Lomnochd ealanta no neo-earotaigeach." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Iomruin cuspair dhan algairim" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Cluich videothan is GIFs gu fèin-obrachail" msgid "Available" msgstr "Ri fhaighinn" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Ri fhaighinn" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Ri fhaighinn" msgid "Back" msgstr "Air ais" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Air ais gu na cabadaich" @@ -1832,7 +1948,7 @@ msgstr "Mus cruthaich thu post no mus fhreagair thu, feumaidh tu am post-d agad 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Mus urrainn dhut gabhail ris an iarrtas chabadaich seo, feumaidh tu am post-d agad a dhearbhadh." @@ -1840,13 +1956,14 @@ msgstr "Mus urrainn dhut gabhail ris an iarrtas chabadaich seo, feumaidh tu am p msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Mus fhaigh thu brathan mu phuist a dh’fhoillsicheas {name}, feumaidh tu am post-d agad a dhearbhadh." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Mus cuir thu teachdaireachd gu cleachdaiche eile, feumaidh tu am post-d agad a dhearbhadh." @@ -1874,45 +1991,39 @@ msgstr "Là-breith" msgid "Birthday" msgstr "Co-là breith" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bac" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bac an cunntas" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "A bheil thu airson an cunntas a bhacadh?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bac cunntasan" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Liosta-bhacaidh" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bac no dèan aithris air" @@ -1936,9 +2047,9 @@ msgstr "A bheil thu airson na cunntasan seo a bhacadh?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bac an cleachdaiche" @@ -1946,9 +2057,9 @@ msgstr "Bac an cleachdaiche" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bac an cleachdaiche" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Bac an cleachdaiche agus/no sguab an còmhradh seo às" @@ -1956,7 +2067,7 @@ msgstr "Bac an cleachdaiche agus/no sguab an còmhradh seo às" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bacte" @@ -1964,14 +2075,12 @@ msgstr "Bacte" msgid "Blocked accounts" msgstr "Cunntasan air am bacadh" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Cunntasan air am bacadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Chan eil cead aig cunntasan bacte freagairt a chur sna snàithleanan agad, iomradh a dhèanamh ort no eadar-ghabhail eile a dhèanamh leat." @@ -1987,7 +2096,7 @@ msgstr "Fiù ma bhacas tu an leubailiche seo, ’s urrainn dha leubailean a chur msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "’S e gnìomh poblach a th’ ann am bacadh. 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." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Ma nì thu bacadh, ’s urrainn do dhaoine leubailean a chur ris a’ chunntas agad fhathast ach chan urrainn dhaibh freagairt a thoirt sna snàithleanan agad tuilleadh no eadar-ghabhail a dhèanamh leat." @@ -2000,7 +2109,7 @@ msgstr "Bloga" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 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." @@ -2029,7 +2138,7 @@ msgstr "Tha Bluesky nas fheàrr le caraidean!" msgid "Bluesky is more fun with friends" msgstr "’S fheàirrde Bluesky do charaidean fhèin" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "’S fheàirrde Bluesky do charaidean fhèin! Ion-phortaich an luchd-aithne agad is faic cò tha an-seo mar-thà." @@ -2037,11 +2146,15 @@ msgstr "’S fheàirrde Bluesky do charaidean fhèin! Ion-phortaich an luchd-ait msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "’S fheàirrde Bluesky do charaidean fhèin. A bheil thu airson cuireadh a thoirt dha do charaidean fhèin? <0/>" +#: 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 "Teirmichean na seirbheise aig Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Taghaidh Bluesky grunn chunntasan aig daoine air an lìonra agad a mhola 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 "Cha leig Bluesky a’ phròifil agus na puist agad ri daoine nach eil clàraichte a-staigh. Dh’fhaodte nach gèill aplacaidean eile ris an iarrtas seo. Cha dèan seo cunntas prìobhaideach dheth." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Nì Bluesky dearbhadh iad fhèin air fìor-chunntasan mòra." @@ -2081,6 +2194,10 @@ msgstr "Leabhraichean" msgid "Breaking site rules" msgstr "A’ briseadh riaghailtean na làraich" +#: 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" @@ -2137,24 +2254,34 @@ msgstr "Gnìomhachas" msgid "Button to go back to the home timeline" msgstr "Am putan a bheir air ais gu loidhne-ama do dhachaigh thu" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Le {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Le <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Le bhith a’ cruthachadh cunntas, bidh tu ag aontachadh ri <0>teirmiche msgid "By you" msgstr "Leat-sa" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "An camara" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "An camara" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "An camara" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "An camara" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Sguir dheth" @@ -2248,9 +2384,9 @@ msgstr "Sguir dhen ath-ghnìomhachadh is clàraich a-mach" msgid "Cancel search" msgstr "Sguir dhen lorg" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Chan urrainn dhut eadar-ghabhail a dhèanamh le cleachdaiche a bhac thu" @@ -2264,7 +2400,7 @@ msgstr "Caipseanan (.vtt)" msgid "Captions & alt text" msgstr "Caipseanan ⁊ roghainn teacsa" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "Atharraich cànan na h-aplacaid" msgid "Change Handle" msgstr "Atharraich an làmhrachan" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Atharraich seirbheise na modarataireachd" @@ -2310,11 +2446,11 @@ msgstr "Atharraich am facal-faire" msgid "Change password dialog" msgstr "An còmhradh airson am facal-faire atharrachadh" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Atharraich roinn-seòrsa na h-aithisg" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Atharraich adhbhar na h-aithrise" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Cabadaich" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chaidh a’ chabadaich a sguabadh às" @@ -2361,6 +2497,12 @@ msgstr "Chaidh a’ chabadaich a sguabadh às" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "Teachdaireachdan cabadaich – sàmhach" msgid "Chat messages - sound" msgstr "Teachdaireachdan cabadaich – fuaim" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chaidh a’ chabadaich a mhùchadh" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Bogsa a-steach nan iarrtasan cabadaich" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Iarrtasan cabadaich" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Roghainnean na cabadaich" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Roghainnean na cabadaich" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chaidh a’ chabadaich a neo-mhùchadh" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Cabadaich" @@ -2479,7 +2630,7 @@ msgstr "Tagh cànain nam post" msgid "Choose this color as your avatar" msgstr "Tagh an dath seo mar avatar agad" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "Briog an-seo airson clàradh a-mach" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Briog an-seo a thòiseachadh air a dhearbhadh." @@ -2567,7 +2718,7 @@ msgstr "Briog an-seo a thòiseachadh air a dhearbhadh." msgid "Click here to update your birthdate" msgstr "Briog an-seo airson latha do bhreith atharrachadh" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Briog an-seo airson am post-d agad ùrachadh" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig as ùr" @@ -2594,28 +2745,30 @@ msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig a #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Dèan briogadh airson feuchainn ris an teachdaireachd a dh’fhàillig a #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Dùin" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Dùin an còmhradh gnìomhach" @@ -2647,6 +2800,10 @@ msgstr "Dùin an còmhradh gnìomhach" msgid "Close alert" msgstr "Dùin a’ chaismeachd" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Dùin an drathair aig a’ bhonn" @@ -2657,8 +2814,10 @@ msgstr "Dùin an drathair aig a’ bhonn" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Dùin an còmhradh" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Dùin an dealbh" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Dùin an clàr-taice" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Dùin an co-còmhradh seo" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Dùinidh seo an uinneag sgrìobhaidh is tilgidh e air falbh dreachd a’ phuist" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Co-theannaich liosta an luchd-chleachdaidh" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Co-theannaichidh seo liosta nan cleachdaichean aig a’ bhrath" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Dealbhan-èibhinn" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Treòrachadh na coimhearsnachd" @@ -2740,12 +2915,12 @@ msgstr "Coilean an dùbhlan" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Sgrìobh post ùr" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "A’ co-dhlùthachadh an GIF…" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "A’ dùmhlachadh a’ video…" @@ -2780,7 +2955,7 @@ msgstr "Air a rèiteachadh ann an <0>roghainnean na modarataireachd." msgid "Confirm" msgstr "Dearbh" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Cuir fios gu sgioba na taice" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Chan urrainn dhut luchd-aithne a shioncronachadh air an uidheam seo oir chan fhaigh an aplacaid cothrom orra." @@ -2825,11 +3000,11 @@ msgstr "Chan urrainn dhut luchd-aithne a shioncronachadh air an uidheam seo oir msgid "Contact us" msgstr "Cuir fios thugainn" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Chaidh an luchd-aithne ion-phortadh" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Chaidh an luchd-aithne a thoirt air falbh" @@ -2842,7 +3017,7 @@ msgstr "Susbaint ⁊ meadhanan" msgid "Content and media" msgstr "Susbaint is meadhanan" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Susbaint is meadhanan" @@ -2889,7 +3064,7 @@ msgstr "Cùlaibh a’ chlàir-thaice cho-theacsail, dèan briogadh airson an cl #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Lean air an t-snàithlean" msgid "Continue thread..." msgstr "Leugh an còrr dhen t-snàithlean…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Air adhart gun ath-cheum" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Còmhradh" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Chaidh an còmhradh a sguabadh às" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Chaidh an còmhradh a sguabadh às" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Chaidh lethbhreac de thionndadh a’ bhuild a chur air an stòr-bhòrd" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Chaidh lethbhreac a dhèanamh!" msgid "Copies build version to clipboard" msgstr "Cuiridh seo lethbhreac de thionndadh a’ bhuild air an stòr-bhòrd" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Lethbhreac" @@ -2997,6 +3184,11 @@ msgstr "Dèan lethbhreac dhen DID" msgid "Copy host" msgstr "Dèan lethbhreac dhen òstair" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Dèan lethbhreac dhen cheangal ris an liosta" msgid "Copy link to post" msgstr "Dèan lethbhreac dhen cheangal ris a’ phost" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Cuir lethbhreac dhen cheangal dhan phròifil" @@ -3027,8 +3219,8 @@ msgstr "Cuir lethbhreac dhen cheangal dhan phròifil" msgid "Copy link to starter pack" msgstr "Cuir lethbhreac dhen cheangal dhan pacaid tòiseachaidh" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Dèan lethbhreac de theacsa na teachdaireachd" @@ -3037,12 +3229,12 @@ msgstr "Dèan lethbhreac de theacsa na teachdaireachd" msgid "Copy post at:// URI" msgstr "Dèan lethbhreac dhen phost aig:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Dèan lethbhreac de theacsa a’ phuist" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Dèan lethbhreac dhen chòd QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Poileasaidh na còrach-lethbhreac" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Cha b’ urrainn dhuinn ceangal ris an inbhir ghnàthaichte" @@ -3065,7 +3261,15 @@ msgstr "Cha b’ urrainn dhuinn ceangal ris an inbhir ghnàthaichte" msgid "Could not connect to feed service" msgstr "Cha b’ urrainn dhuinn ceangal ri seirbheis an inbhir" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "Cha d’fhuair sinn lorg air a’ phròifil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Cha b’ urrainn dhuinn gach maids a leantainn – thoir sùil air a’ cheangal ris an lìonra." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Cha b’ urrainn dhuinn gach maids a leantainn. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Cha b’ urrainn dhuinn a’ chabadaich fhàgail" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Cha b’ urrainn dhuinn an t-inbhir a luchdadh" @@ -3100,7 +3308,11 @@ msgstr "Cha b’ urrainn dhuinn an t-inbhir a luchdadh" msgid "Could not load list" msgstr "Cha b’ urrainn dhuinn an liosta a luchdadh" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Cha b’ urrainn dhuinn a’ chabadaich a mhùchadh" @@ -3108,11 +3320,19 @@ msgstr "Cha b’ urrainn dhuinn a’ chabadaich a mhùchadh" msgid "Could not process your video" msgstr "Cha b’ urrainn a’ video agad a phròiseasadh" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Cha b’ urrainn dhuinn na h-atharraichean a shàbhaladh: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan ùrachadh" @@ -3139,7 +3359,7 @@ msgstr "Còd na dùthcha" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Cruthaich" @@ -3153,13 +3373,13 @@ msgstr "Cruthaich liosta" msgid "Create a list from this starter pack" msgstr "Cruthaich liosta dhen phacaid-thòiseachaidh seo" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Cruthaich pacaid tòiseachaidh" @@ -3174,13 +3394,14 @@ msgstr "Cruthaich pacaid tòiseachaidh dhomh" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Cruthaich avatar na àite" @@ -3206,7 +3427,7 @@ msgstr "Cruthaich avatar na àite" msgid "Create another" msgstr "Cruthaich fear eile" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "Cruthaich liosta dhen phacaid-thòiseachaidh" msgid "Create moderation list" msgstr "Cruthaich liosta modarataireachd" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Cruthaich cunntas ùr" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Cruthaich aithris airson {0}" @@ -3256,8 +3478,8 @@ msgstr "Cruthaich liosta luchd-cleachdaidh" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Air a chruthachadh {0}" @@ -3270,6 +3492,10 @@ msgstr "Chaidh an cruthadair a bhacadh" msgid "Culture" msgstr "Cultar" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Ùrlar dorcha" msgid "Date of birth" msgstr "Là-breith" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Bun-roghainn" msgid "Default icons" msgstr "Na h-ìomhaigheagan bunaiteach" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Sguab facal-faire na h-aplacaid às" msgid "Delete app password?" msgstr "A bheil thu airson facal-faire na h-aplacaid a sguabadh às?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Sguab a’ chabadaich às" @@ -3378,19 +3612,19 @@ msgstr "Sguab a’ chabadaich às" msgid "Delete chat declaration record" msgstr "Sguab às clàr foirgheall na cabadaich" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Sguab an luchd-aithne às" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Sguab an còmhradh às" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Sguab às dhomh-sa" @@ -3399,11 +3633,11 @@ msgstr "Sguab às dhomh-sa" msgid "Delete list" msgstr "Sguab an liosta às" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Sguab an teachdaireachd às" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Sguab an teachdaireachd às dhomh-sa" @@ -3411,9 +3645,9 @@ msgstr "Sguab an teachdaireachd às dhomh-sa" msgid "Delete my account" msgstr "Sguab an cunntas agam às" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Sguab às am post" @@ -3430,17 +3664,17 @@ msgstr "A bheil thu airson a’ phacaid tòiseachaidh seo a sguabadh às?" msgid "Delete this list?" msgstr "A bheil thu airson an liosta seo a sguabadh às?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "A bheil thu airson am seo post a sguabadh às?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Air a sguabadh às" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Cunntas a chaidh a sguabadh às" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Teacsa a mhìnicheas an t-susbaint" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Dealaich an luaidh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "A bheil thu airson an luaidh air a’ phost a dhealachadh?" @@ -3507,13 +3741,13 @@ msgstr "Còmhradh: co-dhùin cò aig a bheil cead eadar-ghabhail a dhèanamh lei msgid "Dim" msgstr "Doilleir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Cuir 2FA à comas" @@ -3521,7 +3755,7 @@ msgstr "Cuir 2FA à comas" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas" @@ -3534,8 +3768,8 @@ msgstr "Cuir dearbhadh 2FA air a’ phost-d à comas" msgid "Disable haptic feedback" msgstr "Cuir an fhreagairt haptaigeach à comas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "Na leig le daoine luaidh a dhèanamh air a’ phost seo" msgid "Disable replies entirely" msgstr "Cuir à comas freagairtean buileach" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "À comas" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ 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:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "A bheil thu airson am post a thilgeil air falbh?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Dì-cheangail Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Fidir inbhirean ùra" msgid "Discover New Feeds" msgstr "Fidir inbhirean ùra" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Leig seachad" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Leig seachad a’ bhratach" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Leig seachad a’ mhearachd" @@ -3642,6 +3877,10 @@ msgstr "Leig seachad an earrann seo" msgid "Dismiss this suggestion" msgstr "Leig seachad am moladh seo" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Gun lomnochd na bhroinn." msgid "Domain verified!" msgstr "Chaidh an àrainn a dhearbhadh!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Nach eil còd agad no a bheil fear ùr a dhìth ort? <0>Briog an-seo." @@ -3681,7 +3920,7 @@ msgstr "Nach eil còd agad no a bheil fear ùr a dhìth ort? <0>Briog an-seo.Click here to resend." msgstr "Nach fhaic thu còd? <0>Briog an-seo airson a chur as ùr." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Nach fhaic thu am post-d sam? <0>Briog an-seo airson a chur às ùr." @@ -3700,16 +3939,21 @@ msgstr "Na gabh dragh! Chaidh gach teachdaireachd is roghainn a shàbhaladh is b #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Deiseil" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Thoir gnogag dhùbailte air gus an còmhradh a dhùnadh" @@ -3737,19 +3981,14 @@ msgstr "Thoir gnogag dhùbailte air gus an còmhradh a dhùnadh" msgid "Double tap to like" msgstr "Thoir gnogag dhùbailte a dh’innse gur toil leat e" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Luchdaich a-nuas Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Luchdaich a-nuas am faidhle CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Luchdaich a-nuas am faidhle CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Luchdaich a-nuas dàta na cabadaich" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Luchdaich a-nuas dàta na cabadaich" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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 "Doxx-igeadh" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Air sgàth laghan far a bheil thusa, chan fhaigh thu cothrom air gach ru msgid "Duration:" msgstr "Faid:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "m.e. alice" @@ -3823,9 +4079,8 @@ msgstr "m.e. luchd-cleachdaidh a chuireas sanasachd mar fhreagairt gu tric." msgid "Eating disorders" msgstr "Mì-rian ithe" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Deasaich" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Deasaich an t-avatar" @@ -3847,19 +4102,19 @@ msgstr "Deasaich an t-avatar" msgid "Edit Feeds" msgstr "Deasaich na h-inbhirean" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Deasaich an dealbh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Deasaich roghainnean na h-eadar-ghabhalach" @@ -3868,7 +4123,16 @@ msgstr "Deasaich roghainnean na h-eadar-ghabhalach" msgid "Edit interests" msgstr "Deasaich na rudan sa bheil ùidh agad" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "Deasaich staid an t-srutha bheò" msgid "Edit moderation list" msgstr "Deasaich an liosta modarataireachd " -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Deasaich na h-inbhirean agam" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Deasaich na brathan o {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Deasaich na daoine" @@ -3912,12 +4171,12 @@ msgstr "Deasaich roghainnean eadar-ghabhail a’ phuist" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Deasaich a’ phròifil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Deasaich a’ phròifil" @@ -3925,7 +4184,8 @@ msgstr "Deasaich a’ phròifil" msgid "Edit starter pack" msgstr "Deasaich a’ phacaid tòiseachaidh" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,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:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Deasaich a’ phacaid tòiseachaidh agad" @@ -3971,7 +4231,7 @@ msgstr "Seòladh puist-d" msgid "Email Resent" msgstr "Chaidh am post-d a chur as ùr" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Chaidh am post-d a chur!" @@ -4006,8 +4266,8 @@ msgstr "Leabaich am post seo san làrach-lìn agad. Cha leig thu leas ach lethbh msgid "Embedded video player" msgstr "Cluicheadair video leabaichte" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Cuir an comas" @@ -4025,7 +4285,7 @@ msgstr "Cuir comas inbheach an comas" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Cuir 2FA air a’ phost-d an comas" @@ -4038,13 +4298,12 @@ 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:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Cuir an comas brathan o chunntas le bhith a’ tadhal air a’ phròifil is a’ brùthadh <0>ìomhaigheag a’ chluig<1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Cuir brathan push an comas" @@ -4091,8 +4350,8 @@ msgstr "Cuir a-steach facal-faire" msgid "Enter a word or tag" msgstr "Cuir a-steach facal no taga" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Cuir a-steach an còd" @@ -4143,12 +4402,12 @@ msgstr "Fosglaidh seo an làn-sgrìn" msgid "Entertainment" msgstr "Dibhearsan" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Mearachd" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Dh’èirich mearachd nuair a bha sinn a’ faighinn an dàta as ùire." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "on a h-uile duine" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "on a h-uile duine" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "on a h-uile duine" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "A h-uile rud eile" @@ -4217,16 +4476,16 @@ msgstr "Dùinidh seo às luchd-cleachdaidh a tha thu gan leantainn" msgid "Exit fullscreen" msgstr "Fàg an làn-sgrìn" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Leudaich an roghainn teacsa" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Leudaich liosta an luchd-chleachdaidh" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 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" @@ -4238,7 +4497,7 @@ msgstr "Leudaich teacsa a’ phuist" msgid "Expands or collapses post text" msgstr "Leudaichidh no co-theannaichidh seo teacsa a’ phuist" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Bha dùil ri URI airson an clàr fhuasgladh" @@ -4277,10 +4536,10 @@ msgstr "Meadhanan feòlmhor no draghail." msgid "Explicit sexual images." msgstr "Dealbhan feiseil is feòlmhor." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Rùraich" @@ -4289,11 +4548,8 @@ msgstr "Rùraich" msgid "Explore the app" msgstr "Fidir an aplacaid" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Roghainnean nam meadhanan on taobh a-muigh" @@ -4331,18 +4587,22 @@ msgstr "Roghainnean nam meadhanan on taobh a-muigh" msgid "Extremist content" msgstr "Susbaint eastramach" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Cha b’ urrainn dhuinn gabhail ris a’ chabadaich" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Cha b’ urrainn dhuinn an emoji a chur mar fhrith-fhreagairt" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "Cha b’ urrainn dhuinn pacaid tòiseachaidh a chur ris" msgid "Failed to change handle. Please try again." msgstr "Dh’fhàillig atharrachadh an làmhrachain. Feuch ris a-rithist." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Cha b’ urrainn dhuinn facal-faire a chruthachadh dhan aplacaid. Feuch ris a-rithist." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Cha b’ urrainn dhuinn an còmhradh a chruthachadh" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Cha b’ urrainn dhuinn pacaid tòiseachaidh a chruthachadh" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Cha b’ urrainn dhuinn a’ chabadaich a sguabadh às" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Cha b’ urrainn dhuinn an teachdaireachd a sguabadh às" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Cha b’ urrainn dhuinn am post a sguabadh às, feuch ris a-rithist" @@ -4394,24 +4655,24 @@ msgstr "Cha b’ urrainn dhuinn am post a sguabadh às, feuch ris a-rithist" msgid "Failed to delete starter pack" msgstr "Cha b’ urrainn dhuinn a’ phacaid tòiseachaidh a sguabadh às" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Cha b’ urrainn dhuinn Germ DM a dhì-cheangal. Seo a’ mhearachd: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "Cha b’ urrainn dhuinn a h-uile caraid agad a leantainn, feuch ris a-ri msgid "Failed to hide suggestion, please check your internet connection" msgstr "Cha b’ urrainn dhuinn am moladh a chur am falach, thoir sùil air a’ cheangal ris an eadar-lìon agad" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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 "Cha b’ urrainn dhuinn aplacaid nan SMS a chur gu dol" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Cha b’ urrainn dhuinn na còmhraidhean a luchdadh" @@ -4456,17 +4725,8 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean a luchdadh" msgid "Failed to load feeds preferences" msgstr "Cha b’ urrainn dhuinn roghainnean nan inbhirean a luchdadh" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Cha b’ urrainn dhuinn roghainnean nam brathan a luchdadh." @@ -4493,16 +4753,15 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean a mholamaid a luchdadh" msgid "Failed to load suggested follows" msgstr "Cha b’ urrainn dhuinn na daoine a mholamaid an leantainn a luchdadh" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Cha b’ urrainn dhuinn comharradh gun deach gach iarrtas a leughadh" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Cha b’ urrainn dhuinn am post a phrìneachadh" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Cha b’ urrainn dhuinn Germ DM a cheangal ris as ùr. Seo a’ mhearachd: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Cha b’ urrainn dhuinn an dàta a thoirt air falbh air sgàth mearachd an lìonraidh, thoir sùil air a’ cheangal agad ris an eadar-lìon." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Cha b’ urrainn dhuinn an dàta a thoirt air falbh. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Cha b’ urrainn dhuinn an emoji a chuir thu mar fhrith-fhreagairt a thoirt air falbh" @@ -4534,7 +4793,8 @@ msgstr "Cha b’ urrainn dhuinn an emoji a chuir thu mar fhrith-fhreagairt a tho msgid "Failed to remove from starter pack" msgstr "Cha b’ urrainn dhuinn a thoirt air falbh on phacaid tòiseachaidh" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "Cha b’ urrainn dhuinn an dearbhadh a thoirt air falbh" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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 "Cha d’fhuair sinn lorg air an ionad. Feuch ris a-rithist." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Cha b’ urrainn dhuinn an dreachd a luchdadh" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Cha b’ urrainn dhuinn na rudan sa bheil ùidh agad a shàbhaladh." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Cha b’ urrainn dhuinn am post-d a chur, feuch ris a-rithist." @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Cha b’ urrainn dhuinn an t-ath-thagradh a chur, feuch ris a-rithist." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Cha b’ urrainn dhuinn mùchadh an t-snàithlein a thoglachadh, feuch ris a-rithist" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "Cha b’ urrainn dhuinn an liosta a dhì-phrìneachadh" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Cha b’ urrainn dhuinn roghainnean 2FA a’ phuist-d ùrachadh" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Cha b’ urrainn dhuinn am post-d ùrachadh, feuch ris a-rithist." @@ -4614,7 +4879,7 @@ msgstr "Cha b’ urrainn dhuinn na h-inbhirean ùrachadh" msgid "Failed to update notification declaration" msgstr "Cha b’ urrainn dhuinn foirgheall nam brathan ùrachadh" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Cha b’ urrainn dhuinn na roghainnean ùrachadh" @@ -4641,7 +4906,7 @@ msgstr "Cunntas brèige no bot" msgid "False information about elections" msgstr "Fiosrachadh brèige mu thaghadh" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Inbhir" @@ -4649,7 +4914,7 @@ msgstr "Inbhir" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Inbhir le {0}" @@ -4662,7 +4927,7 @@ msgstr "Cruthadair inbhirean" msgid "Feed identifier" msgstr "Aithnichear inbhirean" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Clàr-taice nan inbhirean" @@ -4676,25 +4941,25 @@ msgstr "Chan eil an t-inbhir ri fhaighinn" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Innis dhuinn dè do bheachd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Chaidh do bheachd a chur gu muinntir an inbhir" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Inbhirean" @@ -4739,7 +5004,7 @@ msgstr "Criathraich an lorg a-rèir cànain (an-dràsta fhèin: {currentLanguage 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:166 msgid "Filter who you receive notifications from" msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa" @@ -4747,11 +5012,11 @@ msgstr "Criathraich na daoine a gheibh thu teachdaireachdan uapa" msgid "Finalizing" msgstr "A’ cur crìoch air" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Mu dheireadh thall!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Mu dheireadh thall! Glèidh puist a tha cudromach dhut. Sàbhail iad is thoir sùil orra a-rithist uair sam bith." @@ -4768,19 +5033,17 @@ msgstr "Ionmhas" msgid "Find accounts to follow" msgstr "Lorg cunntasan airson an leantainn" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Lorg luchd-aithne" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Lorg caraidean" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Lorg caraidean am measg an luchd-aithne" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Lorg luchd-aithne" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Lorg mo charaidean" msgid "Find people to follow" msgstr "Lorg daoine airson an leantainn" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Lorg puist, cleachdaichean is inbhirean air Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Lorg do charaidean" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Lorg do charaidean air Bluesky le bhith a’ dearbhadh na h-àireimh fòn agad is a’ sireadh an luchd-aithne agad. Cumaidh sinn am fiosrachadh agad fo dhìon agus is ann agadsa a tha smachd air na thachras san ath-cheum. <0>Barrachd fiosrachaidh" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Lean" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Lean ri {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Lean ris a’ chunntas" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Lean a h-uile cunntas" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Lean iad cuideachd" @@ -4916,7 +5183,7 @@ msgstr "Lean iad cuideachd" msgid "Followed all accounts!" msgstr "Tha thu a’ leantainn a h-uile cunntas a-nis!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Lean sinn gach maids" @@ -4944,8 +5211,12 @@ msgstr "Tha <0>{0} agus <1>{1} ga leantainn" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Tha <0>{0}, <1>{1} is {2, plural, one {# eile} two {# eile} few {# eile} other {# eile}} ga leantainn" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Luchd-leantainn aig @{0} as aithne dhut-sa cuideachd" @@ -4960,10 +5231,10 @@ msgstr "Luchd-leantainn as aithne dhut" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Ga leantainn" @@ -4977,12 +5248,12 @@ msgstr "Ga leantainn" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "A’ leantainn {0} a-nis" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "A’ leantainn {handle}" msgid "Following feed preferences" msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Roghainnean inbhir nan daoine a tha thu a’ leantainn" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Gad leantainn" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Gad leantainn" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Cruth-clò" @@ -5065,11 +5333,16 @@ msgstr "Na dhìochuimhnich thu am facal-faire?" msgid "Forgot?" msgstr "Na dhìochuimhnich thu e?" +#. 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:12 msgid "Free your feed" msgstr "Saor an t-inbhir agad" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "O" @@ -5086,82 +5359,86 @@ msgstr "O <0/>" msgid "Generate a starter pack" msgstr "Gin pacaid tòiseachaidh" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Chaidh Germ DM a dhì-cheangal" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Ceangal Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Chaidh Germ DM a cheangal ris as ùr" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Faigh cobhair" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "Faigh brath nuair a leanas daoine thu." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Faigh brathan nuair a dh’innseas daoine gur toil leotha rud a dh’ath-phostaich thu." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Faigh brathan nuair a dh’innseas daoine gur toil leotha rud a phostaich thu." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Faigh brath nuair a nì daoine iomradh ort." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Faigh brathan nuair a nì daoine iomradh air post agad." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Faigh brathan nuair a fhreagras daoine post agad." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Faigh brathan nuair a dh’ath-phostaicheas daoine rud a dh’ath-phostaich thusa." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 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:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Faigh brathan mu phuist ùra" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Faigh brathan mu phuist is freagairtean o chunntasan a thaghas tu." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Faigh brath nuair a dh’fhoillsicheas {name} post ùr" @@ -5174,27 +5451,27 @@ msgstr "Faigh brathan mu ghnìomhachd a’ chunntais seo" msgid "Get notified when {name} posts" msgstr "Faigh brath nuair a dh’fhoillsicheas {name} post ùr" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Faigh brath nuair a dh’fhoillsicheas cuideigin post ùr" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Dèan toiseach-tòiseachaidh" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "Chaidh an GIF a luchdadh suas" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Cuir aodann ris a’ phròifil agad" @@ -5213,20 +5490,20 @@ msgstr "Glòrachadh ainneirt" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Air ais" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Air ais" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Air ais gun cheum roimhe" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Dhachaigh" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Dhachaigh" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Dhachaigh" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Dèan craoladh beò (à comas)" msgid "Go live for" msgstr "Cuir struth beò fad" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Tadhail air a’ phròifil aig {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Tadhail air roghainnean a’ chunntais" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Tadhail air a’ chòmhradh le {0}" @@ -5296,23 +5571,23 @@ msgstr "Tadhail air an inbhir" msgid "Go to next" msgstr "Tadhail air an ath-fhear," -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Tadhail air a’ phròifil aca" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Tadhail air pròifil a’ chleachdaiche" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "Chaidh an craoladh beò a chur à comas sa chunntas agad" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Tha mi agaibh" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Susbaint glè ainneartach" msgid "Grooming or predatory behavior" msgstr "Grumachadh no giùlan creachach" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "Hacaigeadh no ionnsaighean siostaim" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Tha an làmhrachan ro fhada. Feuch fear nas giorra." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "A’ tachairt an-dràsta fhèin" @@ -5446,7 +5744,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:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Taga-hais" @@ -5458,8 +5756,8 @@ msgstr "Taga-hais {tag}" msgid "Hate speech" msgstr "Gràin-chainnt" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "A bheil còd agad? <0>Briog an-seo." @@ -5479,11 +5777,11 @@ msgstr "Cumaidh Bluesky seo fad 7 làithean airson casg a chur air mì-ghnàthac #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Cobhair" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Liosta fhalaichte" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Liosta fhalaichte" msgid "Hide" msgstr "Falaich" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Falaich" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "Falaich na liostaichean" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Falaich am post seo uam-sa" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Falaich an fhreagairt seo on a h-uile duine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Falaich an fhreagairt seo uam-sa" @@ -5577,19 +5875,19 @@ msgstr "Falaich a’ chairt seo" msgid "Hide this event" msgstr "Falaich an tachartas seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "A bheil thu airson am post seo a chur am falach?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "A bheil thu airson an fhreagairt seo a chur am falach?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "A bheil thu airson na cuspairean a tha a’ treandadh a chur am falach?" msgid "Hide trending videos?" msgstr "A bheil thu airson na videothan a tha a’ treandadh a chur am falach?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Falaich liosta an luchd-chleachdaidh" @@ -5620,6 +5918,10 @@ msgstr "Falaich na baidsean dearbhaidh" msgid "Hides the content" msgstr "Falaichidh seo an t-susbaint" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Tha coltas gun do chlàraich thu a-steach le <0>facal-faire aplacaid. Airson latha do bhreith a shuidheachadh, feumaidh tu clàradh a-steach le facal-faire a’ phrìomh-chunntais agad no iarr air an neach a stiùireas an cunntas seo a dhèanamh." @@ -5652,19 +5954,15 @@ msgstr "Hm, tha coltas nach urrainn dhuinn an dàta seo a luchdadh. Chì thu bar msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hm, cha b’ urrainn dhuinn an t-seirbheis modarataireachd sin a luchdadh." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Air do shocair! Tha sinn a’ toirt comas air video mean air mhean – glacaidh foighidinn iasg. Na bi fada gun tilleadh!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Dhachaigh" @@ -5721,7 +6019,7 @@ msgstr "Tha mi a’ tuigsinn" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Tha mi air Bluesky mar {0} – tiugainn! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Ma tha an roghainn teacsa ro fhada, dùisgidh seo staid na roghainn teacsa leudaichte" @@ -5757,15 +6055,15 @@ msgstr "Ma sguabas tu às an liosta seo, chan urrainn dhut aiseag às a dhèidh. msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Ma tha àrainn agad fhèin, ’s urrainn dhut sin a chleachdadh mar an làmhrachan agad. Bheir seo comas dhut dearbhadh gur tusa a th’ ann thu fhèin. <0>Barrachd fiosrachaidh an-seo." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Ma tha agad ris am post-d agad ùrachadh, <0>briog an-seo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Ma bheir thu am post seo air falbh, chan urrainn dhut aiseag às a dhèidh." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Ma dh’ùraicheas tu an seòladh puist-d agad, thèid an 2FA a chur à comas." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Ma tha thu airson cuingeachadh cò gheibh brathan mu ghnìomhachd sa chunntas agad, is urrainn dhut seo a chur air gleus sna <0>Roghainnean → Prìobhaideachd is tèarainteachd." @@ -5786,23 +6083,23 @@ msgstr "Mas e neach-leasachaidh a th’ annad, is urrainn dhut frithealaiche a c msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Ma tha thu airson an làmhrachan no post-d agad atharrachadh, dèan sin mus tèid e à comas." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Dealbh" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Dealbh {0} à {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Chaidh tasgadan nan dealbhan fhalamhachadh, shaor sinn {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Breug-riochdachadh" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Ion-phortaich luchd-aithne" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Ion-phortaich luchd-aithne" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Ion-phortaich luchd-aithne ’s faigh lorg air do charaidean" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Air ion-phortadh {0}" @@ -5881,40 +6182,40 @@ msgstr "Air ion-phortadh {0}" 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 "Airson ’s gun urrainn dhuinn cùisean a chumail iomchaidh a rèir d’ aoise, feumaidh fios a bhith againn cuin a rugadh tu. Cha leig thu leas seo a dhèanamh ach aon turas agus cumaidh sinn am fiosrachadh seo prìobhaideach." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "San aplacaid" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Brathan san aplacaid" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "San aplacaid; a h-uile duine" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "San aplacaid; daoine a tha thu gan leantainn" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "San aplacaid; push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "San aplacaid; push, a h-uile duine" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "San aplacaid; push, daoine a tha thu gan leantainn" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Bogsa a-steach falamh!" @@ -5954,6 +6255,10 @@ msgstr "Tha dreachdan ri làimh a-nis" msgid "Introducing finding friends via contacts" msgstr "Faigh lorg air do charaidean tron luchd-aithne agad" +#: 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 "’S urrainn dhuit puist a shàbhaladh mar chomharran-lìn a-nis" @@ -5963,11 +6268,15 @@ msgstr "’S urrainn dhuit puist a shàbhaladh mar chomharran-lìn a-nis" msgid "Invalid 2FA confirmation code." msgstr "Tha an còd dearbhaidh 2FA mì-dhligheach." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Feuch fear eile." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Roghainnean eadar-ghabhalach mì-dhligheach." @@ -5977,10 +6286,15 @@ msgstr "Roghainnean eadar-ghabhalach mì-dhligheach." msgid "Invalid phone number" msgstr "Àireamh fòn mhì-dhligheach" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Tha cuspair na h-aithrise mì-dhligheach" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Còd dearbhaidh mì-dhligheach" @@ -6001,8 +6315,15 @@ msgstr "Còd a’ chuiridh" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Thoir cuireadh dha do charaidean" @@ -6010,21 +6331,31 @@ msgstr "Thoir cuireadh dha do charaidean" msgid "Invite friends <0/>" msgstr "Thoir cuireadh dha do charaidean <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Thoir cuireadh do dhaoine gun phacaid tòiseachaidh seo!" +#: 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 "Thoir cuireadh dha do charaidean na h-inbhirean is daoine as fheàrr leat a leantainn" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID na h-obrach: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID na h-obrach: {0}" msgid "Jobs" msgstr "Obraichean" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Obraichean" msgid "Join Bluesky" msgstr "Rach an sàs Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Thig a chòmhradh" msgid "Journalism" msgstr "Naidheachdas" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Cùm ort leis an deasachadh" @@ -6109,6 +6460,11 @@ msgstr "Cùm ort leis an deasachadh" msgid "Keep me posted" msgstr "Cùm fios rium" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Làrach-lìn KWS" @@ -6143,7 +6499,7 @@ msgstr "Leubailean a tha ris a’ chunntas agad" msgid "Labels on your content" msgstr "Leubailean a tha ris an t-susbaint agad" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Roghainnean cànain" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "As ùire" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Barrachd fiosrachadh mun ghleus a bheir cuireadh dha do charaidean" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Barrachd fiosrachaidh mu ion-phortadh luchd-aithne" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Barrachd fiosrachaidh mun rabhadh seo" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Barrachd fiosrachaidh mun dearbhadh air Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Barrachd fiosrachaidh mun dearbhadh air Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Barrachd fiosrachaidh mu na rudan a tha poblach air Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Barrachd fiosrachaidh mun cheangal Germ DM agad" @@ -6252,31 +6608,33 @@ msgstr "Faigh barrachd fiosrachaidh ann an <0>roghainnean a’ chunntais aga msgid "Learn more." msgstr "Barrachd fiosrachaidh." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Fàg an­-seo" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Fàg a’ chabadaich" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Fàg an còmhradh" @@ -6284,13 +6642,14 @@ msgstr "Fàg an còmhradh" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Fàg an còmhradh" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "A’ fàgail Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "air fhàgail." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Soilleir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "’S toil" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 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}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Brathan mu dhaoine a dh’innis gur toil leotha rud" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Innis gur toil leat an t-inbhir seo" @@ -6358,8 +6721,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:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Daoine as toil leotha seo" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "’S toil le {0, plural, one {# seo} two {# seo} few {# seo} other {# seo}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Na ’s toil le daoine" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "’S toil le cuideigin rud a dh’ath-phostaich thu" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Brathan mu dhaoine a dh’innis gur toil leotha rud a dh’ath-phostaich thu" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Daoine as toil leotha am post seo" @@ -6409,11 +6768,11 @@ msgstr "Daoine as toil leotha am post seo" msgid "Linear" msgstr "Loidhneach" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Liosta" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Chaidh an liosta a neo-mhùchadh" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Liostaichean" @@ -6545,7 +6904,7 @@ msgstr "Chaidh an tachartas beò a leigeil ris as ùr" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Nochdaidh tachartasan beòtha uaireannan nuair a bhios rudeigin inntinneach a’ dol. Ma thogras tu, ’s urrainn dhut an tachartas seo fhèin a chur am falach no gach tachartas a nochdadh san ionad seo ann an eadar-aghaidh na h-aplacaid." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Tha gleus nan tachartasan beòtha na ghleus beta" @@ -6595,27 +6954,27 @@ msgstr "A’ luchdadh roghainnean eadar-ghabhail nam post…" msgid "Loading..." msgstr "Ga luchdadh…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Loga" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "An suaicheantas le @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "An suaicheantas le <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Tha coltas nach eil thu a’ leantainn inbhir sam bith. <0>Briog an-seo msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Cuir air gleus roghainnean post-d a’ chunntais agad" @@ -6687,24 +7046,22 @@ msgstr "Stiùirich na roghainnean dearbhaidh" msgid "Manage your muted words and tags" msgstr "Stiùirich na faclan is tagaichean a mhùch thu" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Comharraich gun deach iad uile a leughadh" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Comharraich gun deach a leughadh" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Chaidh comharradh gun deach iad uile a leughadh" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Uaireigin eile ’s dòcha" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Brathan mu iomradh" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "luchd-cleachdaidh air a bheil iomradh" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Iomraidhean" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Cuir teachdaireachd gu {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Chaidh an teachdaireachd a sguabadh às" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Chaidh an teachdaireachd a sguabadh às" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Teachdaireachd o @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Tha an teachdaireachd ro fhada" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Roghainnean na teachdaireachd" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Teachdaireachdan" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Meadhan-oidhche" msgid "Minor harassment or bullying" msgstr "Sàrachadh no burraidheachd bheag" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Brathan eile" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Mì-stiùireadh" @@ -6850,7 +7203,7 @@ msgstr "Mì-stiùireadh" msgid "Missing media" msgstr "Tha meadhanan a dhìth" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Modarataireachd" @@ -6894,7 +7247,7 @@ msgstr "Chaidh an liosta modarataireachd ùrachadh" msgid "Moderation lists" msgstr "Liostaichean modarataireachd" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liostaichean modarataireachd" @@ -6903,7 +7256,7 @@ msgstr "Liostaichean modarataireachd" msgid "moderation settings" msgstr "roghainnean modarataireachd" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Staidean modarataireachd" @@ -6928,8 +7281,8 @@ msgstr "Barrachd chànan…" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Barrachd roghainnean" @@ -6949,7 +7302,7 @@ msgstr "Filmichean" msgid "Music" msgstr "Ceòl" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Mùch" @@ -6965,8 +7318,8 @@ msgstr "Mùch" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Mùch an cunntas" msgid "Mute accounts" msgstr "Mùch cunntasan" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Mùch an còmhradh" @@ -6994,7 +7347,7 @@ msgstr "Mùch an liosta" msgid "Mute these accounts?" msgstr "A bheil thu airson na cunntasan seo a mhùchadh?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Mùch am facal seo ann an tagaichean a-mhàin" msgid "Mute this word until you unmute it" msgstr "Mùch am facal seo gus an neo-mhùch thu e" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Mùch an snàithlean" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Mùch faclan ⁊ tagaichean" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Cunntasan a chaidh am mùchadh" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Cunntasan a chaidh am mùchadh" @@ -7062,6 +7419,10 @@ msgstr "Faclan ⁊ tagaichean air am mùchadh" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Tha am mùchadh prìobhaideach. Ma mhùchas tu cunntas, is urrainn dhaibh eadar-ghabhail a dhèanamh leat ach chan fhaic thu na puist aca is chan fhaigh thu brathan uapa." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Tadhail air a’ phacaid tòiseachaidh" msgid "Navigates to the next screen" msgstr "Bheir seo thu gun ath-sgrìn" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Bheir seo thu gun phròifil agad" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "A bheil agad ri aithris a dhèanamh air briseadh còrach-lethbhreac, iarrtas laghail no cùis a thaobh gèilleadh ri riaghailt?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Ùr" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {post ùr} two {phost ùr} few {puist ùra} other {post ùra}} o {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {post ùr} two {phost ùr} few {puist ùra} other {post ùra}} o {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Cabadaich ùr" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Seòladh puist-d ùr" @@ -7171,32 +7533,30 @@ msgstr "Seòladh puist-d ùr" #: 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 "Gleus ùr" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Brathan mu luchd-leantainn ùr" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Luchd-leantainn ùr" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Post ùr" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Post ùr" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Puist ùra o {firstAuthorLink} agus <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Puist ùra o {firstAuthorName} agus {additionalAuthorsCount, plural, one {{formattedAuthorsCount} eile} two {{formattedAuthorsCount} eile} few {{formattedAuthorsCount} eile} other {{formattedAuthorsCount} eile}}" @@ -7262,8 +7622,8 @@ msgstr "Naidheachdan" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Air adhart" msgid "Next image" msgstr "An t-ath-dhealbh" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Gun neach-leantainn fhathast" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Gun dealbh" @@ -7353,8 +7717,8 @@ msgstr "Gun liostaichean" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Chan eil thu a’ leantainn {0} tuilleadh" @@ -7362,7 +7726,7 @@ msgstr "Chan eil thu a’ leantainn {0} tuilleadh" msgid "No media yet" msgstr "Gun mheadhanan fhathast" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Gun teachdaireachdan fhathast" @@ -7378,12 +7742,12 @@ msgstr "Gun ainm" msgid "No notifications yet!" msgstr "Chan eil brath sam bith ann fhathast!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Chan eil gin" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Chan eil gin" @@ -7399,7 +7763,7 @@ msgstr "Chan eil gin" msgid "No one but the author can quote this post." msgstr "Chan fhaod duine sam bith ach an t-ùghdar luaidh a dhèanamh air a’ phost seo." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Cha robh toradh ann" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Cha robh toradh ann" @@ -7446,8 +7810,8 @@ msgstr "Cha robh toradh ann" msgid "No results for \"{0}\"." msgstr "Cha d’fhuair sinn toradh sam bith airson “{0}”." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Cha deach toradh a lorg" @@ -7509,12 +7873,12 @@ msgstr "Dealbhan dlùth-chaidreach gun aonta" msgid "Non-sexual Nudity" msgstr "Lomnochd neo-fheiseil" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Chan eil gin" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Chan eil seo ri fhaighinn air an ùrlar seo." @@ -7522,16 +7886,16 @@ msgstr "Chan eil seo ri fhaighinn air an ùrlar seo." msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Cha deach a lorg" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Ro thràth airson a phostadh? Cùm rudan mar seo mar dhreachdan gus am bi iad deiseil agad uile gu lèir." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Fiosrachadh mu cho-roinneadh" @@ -7548,44 +7912,31 @@ msgstr "An aire: Chan fhaic ach luchd-cleachdaidh a tha clàraichte a-staigh seo msgid "Nothing saved yet" msgstr "Cha deach dad a shàbhaladh fhathast" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Roghainnean nam brathan" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Fuaimean nam brathan" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Brathan" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Brathan mu rud sam bith eile, can nuair a chuir cuideigin gu feum pacaid-tòiseachaidh agad." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "an-dràsta" @@ -7601,7 +7952,7 @@ msgstr "Feumaidh tu àireamh fòn-làimhe a chur ann" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Dheth" @@ -7623,9 +7974,10 @@ msgstr "Ceart ma-thà" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Ceart ma-thà" @@ -7648,35 +8000,35 @@ msgstr "air <0><1/><2><3/>" msgid "Onboarding reset" msgstr "Ath-shuidheachadh a’ bhòrdachaidh" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon dealbh." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Thagh thu co-dhiù aon fhaidhle ris nach eil taic." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Thagh thu co-dhiù aon fhaidhle a tha ro mhòr. ’S e 100MB am meud as motha a tha ceadaichte." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video." @@ -7685,6 +8037,26 @@ msgstr "Tha roghainn teacsa a dhìth air co-dhiù aon video." msgid "Only {0} can reply." msgstr "Chan fhaod ach {0} freagairt." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Dìreach luchd-leantainn a tha mise gan leantainn cuideachd" msgid "Only image files are supported" msgstr "Chan eil taic ach ri faidhlichean dhealbhan" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Chan eil taic ach ri faidhlichean WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Chan eil taic ach ri faidhlichean WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Ìoc, chaidh rudeigin ceàrr!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ìoc, chaidh rudeigin ceàrr!" msgid "Oops!" msgstr "Ìoc!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Fosgail cruthadair nan avatar" @@ -7720,12 +8106,17 @@ msgstr "Fosgail cruthadair nan avatar" msgid "Open camera" msgstr "Fosgail an camara" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Fosgail roghainnean nan còmhraidhean" @@ -7739,16 +8130,16 @@ msgstr "Fosgail an clàr-taice air an taobh" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Fosgail ròghnaichear nan emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Fosgail clàr-taice roghainnean an inbhir" @@ -7760,13 +8151,22 @@ msgstr "Fosgail liosta shlàn nan emoji" msgid "Open Germ DM" msgstr "Fosgail Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Fosgail an ceangal ri {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Fosgail a’ phacaid" msgid "Open post options menu" msgstr "Fosgail clàr-taice roghainnean a’ phuist" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Fosgail a’ phròifil" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Fosgail duilleag an leabhair-sgeulachd" msgid "Open system log" msgstr "Fosgail log an t-siostaim" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Fosglaidh seo còmhradh airson rabhadh a chur ris a’ phost agad mun t- msgid "Opens a dialog to choose who can interact with this post" msgstr "Fosglaidh seo còmhradh far an urrainn dhut co-dhùnadh cò nì eadar-ghabhail leis a’ phost seo" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Fosglaidh seo mion-fhiosrachadh a bharrachd mu innteart dì-bhugachaidh" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Fosglaidh seo an camara air an uidheam" @@ -7858,22 +8270,24 @@ msgstr "Fosglaidh seo an uinneag sgrìobhaidh" msgid "Opens device camera" msgstr "Fosglaidh seo camara an uidheim" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Fosglaidh seo gailearaidh an uidheim airson suas ri {MAX_IMAGES, plural, one {# dealbh} two {# dhealbh} few {# dealbhan}other {# dealbh}} no aon video no GIF a thaghadh." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "Fosglaidh seo ròghnaichear nan dealbhan" msgid "Opens link {0}" msgstr "Fosglaidh seo an ceangal {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Fosglaidh seo còmhradh an t-srutha bheò" @@ -7902,15 +8316,23 @@ msgstr "Fosglaidh seo foirm ath-shuidheachadh an fhacail-fhaire" msgid "Opens post language settings" msgstr "Fosglaidh seo roghainnean cànan a’ phuist" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "Fosglaidh seo uinneag sgrìobhadh nam post" @@ -7919,9 +8341,8 @@ msgstr "Fosglaidh seo uinneag sgrìobhadh nam post" msgid "Opens this draft in the composer" msgstr "Fosglaidh seo an dreachd san uinneag sgrìobhaidh" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Fosglaidh seo a’ phròifil" @@ -7997,12 +8418,12 @@ msgstr "Am post sa bhlog againn" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Fhuair an sgioba modarataireachd againn an aithris a chuir thu thugainn." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Thug na modaratairean againn sùil air aithrisean a fhuair sinn is chuir iad romhpa cead-inntrigidh do chabadaich air Bluesky a thoirt air falbh uat." @@ -8010,14 +8431,15 @@ msgstr "Thug na modaratairean againn sùil air aithrisean a fhuair sinn is chuir msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Cha deach an duilleag a lorg" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Cha deach an duilleag a lorg" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Cuir a’ video na stad" msgid "People" msgstr "Daoine" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Daoine a tha @{0} a’ leantainn" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Daoine a leanas ri @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Daoine a tha mi gan leantainn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "Chaidh an àireamh fòn a dhearbhadh" msgid "Photography" msgstr "Togail dhealbhan" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Dealbhan do dh’inbhich." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Prìnich an t-inbhir" @@ -8152,12 +8578,12 @@ msgstr "Prìnich an t-inbhir" msgid "Pin to home" msgstr "Prìnich ris an dachaigh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Prìnich ris an dachaigh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Prìnich ris a’ phròifil agad" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Prìnichte" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Chaidh {0} a phrìneachadh ris an dachaigh" @@ -8236,7 +8662,7 @@ msgstr "Tagh làmhrachan dhut." msgid "Please choose your password." msgstr "Tagh facal-faire." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Briog air a’ cheangal sa phost-d a chuir sinn thugad airson an seòlad msgid "Please complete the verification captcha." msgstr "Coilean an Captcha airson dearbhadh a dhèanamh." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Dearbh an seòladh puist-d agad mus luchdaich thu suas videothan." @@ -8265,14 +8691,14 @@ msgstr "Cuir a-steach facal-faire. Feumaidh e a bhith co-dhiù 8 caractaran a dh msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Thoir ainm àraidh air an fhacal-fhaire aplacaid seo no cleachd ainm a thuaiream againne." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Cuir a-steach còd dligheach." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Cuir a-steach seòladh puist-d dligheach." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Cuir a-steach seòladh puist-d buan is dligheach. Feumaidh tu am post-d seo a-rithist san àm ri teachd." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Cuir a-steach an còd a chuir sinn gu <0>{0} gu h-ìosal." @@ -8293,7 +8719,7 @@ msgstr "Cuir a-steach an còd a chuir sinn gu <0>{0} gu h-ìosal." msgid "Please enter the code you received and the new password you would like to use." msgstr "Cuir a-steach an còd a fhuair thu agus am facal-faire ùr a bu toil leat cleachdadh." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Cuir a-steach an seòladh puist-d agad." msgid "Please enter your invite code." msgstr "Cuir a-steach an còd cuiridh agad." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Cuir a-steach an seòladh puist-d ùr agad." @@ -8323,7 +8749,7 @@ msgstr "Cuir a-steach an t-ainm-cleachdaiche agad" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Mìnich carson a chuir {0} an leubail seo ris air mhearachd nad bheachd-sa" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mìnich carson a chaidh a’ chabadaich agad a chur à comas air mhearachd nad bheachd-sa" @@ -8358,7 +8784,11 @@ msgstr "Tagh adhbhar dhan aithris seo" msgid "Please sign in as @{0}" msgstr "Clàraich a-steach mar @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Cleachd an aplacaid stannardach airson luchd-aithne ion-phortach." @@ -8366,7 +8796,7 @@ msgstr "Cleachd an aplacaid stannardach airson luchd-aithne ion-phortach." msgid "Please use the native app to sync your contacts." msgstr "Cleachd an aplacaid againne airson an luchd-aithne agad a shioncronachadh." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Dearbh am post-d agad" @@ -8383,7 +8813,7 @@ msgstr "Poileataigs" msgid "Porn" msgstr "Pòrnografachd" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Postaich" @@ -8403,12 +8833,12 @@ msgstr "Postaich dealbh" msgid "Post a video" msgstr "Postaich video" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Postaich na h-uile" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Chaidh am post a bhacadh" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Post le @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Chaidh am post a sguabadh às" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Dh’fhàillig luchdadh suas a’ phuist. Thoir sùil air a’ cheangal ris an eadar-lìon agad is feuch ris a-rithist." @@ -8454,18 +8884,22 @@ msgstr "Chaidh am post a chur am falach leat fhèin" msgid "Post interaction settings" msgstr "Roghainnean eadar-ghabhail a’ phuist" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Roghainnean eadar-ghabhail a’ phuist" +#: 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 "Taghadh cànain a’ phuist" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Puist, freagairtean" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Ceangal a dh’fhaodadh a bhith meallta" @@ -8525,9 +8954,10 @@ msgstr "An cànan as fheàrr leat" msgid "Press to attempt reconnection" msgstr "Dèan brùthadh airson feuchainn ri ath-cheangal" -#: src/components/Error.tsx:61 +#: 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 "Dèan brùthadh airson feuchainn ris a-rithist" @@ -8536,7 +8966,7 @@ msgstr "Dèan brùthadh airson feuchainn ris a-rithist" msgid "Press to view followers of this account that you also follow" msgstr "Dèan brùthadh is chì thu na daoine a leanas ris a’ chunntas seo a tha thusa a’ leantainn riutha cuideachd" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Ro-sheall" @@ -8559,26 +8989,25 @@ msgstr "Prìobhaideachd" msgid "Privacy and security" msgstr "Prìobhaideachd ⁊ tèarainteachd" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Am poileasaidh prìobhaideachd" @@ -8586,15 +9015,15 @@ 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:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "A’ pròiseasadh an GIF…" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "A’ pròiseasadh a’ video…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Ga phròiseasadh…" @@ -8602,10 +9031,10 @@ msgstr "Ga phròiseasadh…" msgid "profile" msgstr "pròifil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "A’ phròifil" @@ -8613,6 +9042,7 @@ msgstr "A’ phròifil" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Cha d’fhuair sinn lorg air a’ phròifil" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Foillsich am post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Foillsich na puist" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Foillsich na freagairtean" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Foillsich an fhreagairt" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Brathan push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, a h-uile duine" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, daoine a tha thu gan leantainn" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Chaidh lethbhreac dhen chòd QR a chur air an stòr-bhòrd agad!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Chaidh an còd QR a luchdadh a-nuas!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Chaidh an còd QR a shàbhaladh ann an albam a’ chamara agad!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Brathan mu luaidh" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Brathan mu luaidh" msgid "Quote post" msgstr "Dèan luaidh air a’ phost" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Chaidh an luaidh air a’ phost a cheangal ris as ùr" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Chaidh an luaidh air a’ phost a dhealachadh" @@ -8711,12 +9138,12 @@ msgstr "Tha luaidhean air puist à comas" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Luaidhean" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Luaidhean air a’ phost seo" @@ -8728,16 +9155,16 @@ msgstr "Seachad air a’ chrìoch – dh’atharraich thu an làmhrachan agad ro msgid "Rate limit exceeded. Please try again later." msgstr "Seachad air a’ chrìoch. Feuch ris a-rithist an ceann greis." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Ceangail an luaidh ris as ùr" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "Cuir {emoji} mar fhrith-fhreagairt" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "leugh mar a dh’obraicheas na criathragan luirg againn" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leugh am post air a’ bhloga" @@ -8812,11 +9239,11 @@ msgstr "Fìor-dhaoine." msgid "Reason for appeal" msgstr "Adhbhar an ath-thagraidh" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Faigh brathan am broinn na h-aplacaid" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Faigh brathan push" @@ -8841,17 +9268,31 @@ msgstr "Na mholamaid" msgid "Reconnect" msgstr "Ath-cheangail" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Diùlt" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Diùlt" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Diùlt an t-iarrtas cabadaich" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Ath-luchdaich na còmhraidhean" @@ -8863,6 +9304,8 @@ msgstr "Ath-luchdaich na còmhraidhean" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Thoir air falbh {displayName} on phacaid tòiseachaidh" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Thoir air falbh {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Thoir air falbh {historyItem}" msgid "Remove account" msgstr "Thoir an cunntas air falbh" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Thoir air falbh an luchd-aithne air fad" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Thoir an ceanglachan air falbh" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Thoir an t-avatar air falbh" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Thoir a’ bhratach air falbh" @@ -8914,8 +9362,9 @@ msgstr "Thoir a’ bhratach air falbh" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Thoir an leabachadh air falbh" @@ -8929,12 +9378,12 @@ msgstr "Thoir an t-inbhir air falbh" msgid "Remove feed?" msgstr "A bheil thu airson an t-inbhir a thoirt air falbh?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Air a thoirt air falbh o na puist a shàbhail thu" msgid "Remove from your feeds?" msgstr "A bheil thu airson a thoirt air falbh o na h-inbhirean agad?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Thoir an dealbh air falbh" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Thoir an t-ath-phostadh air falbh" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Thoir am moladh air falbh" @@ -9009,11 +9458,11 @@ msgstr "Thoir an dearbhadh air falbh" msgid "Remove your verification for this account?" msgstr "A bheil thu airson an dearbhadh a rinn thu air a’ chunntas seo a thoirt air falbh?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Air a thoirt air falbh leis an ùghdar" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Air a thoirt air falbh leat-sa" @@ -9035,7 +9484,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:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Fhreagair iad thu" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Freagairtean" @@ -9104,14 +9552,14 @@ msgstr "Tha na freagairtean à comas" msgid "Replies to this post are disabled." msgstr "Chan urrainnear am post seo a fhreagairt." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Freagair" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Freagair ({0, plural, one {# fhreagairt} two {# fhreagairt} few {# freagairtean} other {# freagairt}})" @@ -9125,10 +9573,6 @@ msgstr "Chaidh an fhreagairt a chur am falach le ùghdar an t-snàithlein" msgid "Reply Hidden by You" msgstr "Chaidh an fhreagairt a chur am falach leat-sa" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Brathan mu fhreagairtean" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "’S e ùghdar an t-snàithlein a thaghas roghainnean nam freagairtean" @@ -9137,18 +9581,18 @@ msgstr "’S e ùghdar an t-snàithlein a thaghas roghainnean nam freagairtean" msgid "Reply sorting" msgstr "Seòrsachadh nam freagairtean" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Chaidh faicsinneachd na freagairt ùrachadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Chaidh an fhreagairt a chur am falach" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Dèan aithris" @@ -9157,20 +9601,20 @@ msgstr "Dèan aithris" msgid "Report account" msgstr "Dèan aithris air a’ chunntas" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Dèan aithris air a’ chòmhradh" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Dèan aithris air a’ chòmhradh" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Dèan aithris air an inbhir" @@ -9179,12 +9623,12 @@ msgstr "Dèan aithris air an inbhir" msgid "Report list" msgstr "Dèan aithris air an liosta" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Dèan aithris air an teachdaireachd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Dèan aithris air a’ phost" @@ -9199,8 +9643,8 @@ msgstr "Dèan aithris air a’ phacaid tòiseachaidh" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Chaidh aithris a chur a-steach" @@ -9213,7 +9657,7 @@ msgstr "Dèan aithris air a’ chòmhradh seo" msgid "Report this feed" msgstr "Dèan aithris air an inbhir seo" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Dèan aithris air an liosta seo" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Dèan aithris air an t-sruth bheò seo" @@ -9256,10 +9700,6 @@ msgstr "Ath-phostaich" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ath-phostaich ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Brathan mu ath-phostadh" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Rinn thu ath-phostadh" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Ath-phostadh" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Ath-phostaidh a’ phuist seo" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Ath-phostadh de rud a dh’ath-phostaich thusa" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Brathan mu ath-phostadh de rud a dh’ath-phostaich thusa" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 "Iarr còd" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Spàrr air daoine roghainn teacsa a chur an sàs mus gabh rud a phostadh" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Spàrr ort fhèin còd puist-d a chleachdadh airson clàradh a-steach gun chunntas agad." @@ -9328,7 +9791,17 @@ msgstr "Riatanach aig an t-solaraiche seo" msgid "Required in your region" msgstr "Riatanach far a bheil thusa" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Cuir às ùr" @@ -9373,8 +9846,8 @@ msgstr "Ath-shuidhich staid a’ bhòrdachaidh" msgid "Reset password" msgstr "Ath-shuidhich am facal-faire" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Ath-shioncronaich an luchd-aithne" @@ -9391,17 +9864,18 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Feuchaidh seo ris a’ ghnìomh mu dheireadh a-rithist is e air fàillig msgid "Retry" msgstr "Feuch ris a-rithist" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Feuch is luchdaich roghainnean na h-aithrise as ùr" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Till gun duilleag roimhpe" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Tillidh seo thu gun duilleag roimhpe" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Sàbhail na h-atharraichean" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Sàbhail an dreachd" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: 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:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Sàbhail an dealbh" msgid "Save new handle" msgstr "Sàbhail an làmhrachan ùr" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Sàbhail an còd QR" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Sàbhail sna h-inbhirean agam" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Air a shàbhaladh" @@ -9534,25 +10010,25 @@ msgstr "Air a shàbhaladh" msgid "Saved Feeds" msgstr "Inbhirean a shàbhail thu" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Puist a shàbhail thu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Air a shàbhaladh sna h-inbhirean agad" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Can halò!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" msgid "Scam" msgstr "Cleas-meallaidh" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Saidheans" @@ -9576,18 +10062,18 @@ msgstr "Sgrolaich chun an taoibh dheis" msgid "Scroll to top" msgstr "Sgrolaich gun bhàrr" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Lorg" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Dèan lorg sna puist aig {0}" @@ -9662,12 +10148,12 @@ msgstr "Lorg cànain" msgid "Search my posts" msgstr "Lorg sna puist agam" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Lorg sna puist" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Lorg sna pròifilean" msgid "Search..." msgstr "Lorg..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Luirg airson pròifilean" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Tha feum air ceum tèarainteachd" @@ -9759,7 +10245,7 @@ msgstr "Tagh {langName}" msgid "Select a color" msgstr "Tagh dath" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Tagh adhbhar" @@ -9828,7 +10314,7 @@ msgstr "Tagh GIF" msgid "Select GIF \"{0}\"" msgstr "Tagh an GIF “{0}”" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Tagh cànan…" msgid "Select languages" msgstr "Tagh cànain" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Tagh seirbheis modarataireachd" @@ -9904,11 +10390,11 @@ msgstr "Tagh na rudan sa bheil ùidh agad gu h-ìosal" msgid "Select your preferred language for translations in your feed." msgstr "Tagh an cànan as fheàrr leat airson eadar-theangachadh san inbhir agad." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Tagh na seanailean as fheàrr leat airson brathan" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Chan urrainnear iomadh seòrsa de mheadhanan a thaghadh aig an aon àm." @@ -9921,9 +10407,9 @@ msgstr "Fèin-dochann no giùlan cunnartach" msgid "Send code" msgstr "Cuir an còd" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Cuir post-d" @@ -9935,11 +10421,11 @@ msgstr "Cuir post-d" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Cuir do bheachdan" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Cuir an teachdaireachd" @@ -9952,7 +10438,7 @@ msgstr "Cuir am post gu {name}" msgid "Send post to..." msgstr "Cuir am post gu…" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Cuir an aithris gu {title}" @@ -9960,7 +10446,7 @@ msgstr "Cuir an aithris gu {title}" msgid "Send the message from your phone" msgstr "Cuir an teachdaireachd on fhòn agad" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Cuir mar theachdaireachd dhìreach" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "Suidhich latha do bhreith gu h-ìosal agus chan fhada gus am bi cead aga msgid "Sets email for password reset" msgstr "Suidhichidh seo am post-d airson ath-shuidheachadh an fhacail-fhaire" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Roghainnean" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Roghainnean a thaobh gnìomhachd dhaoine eile" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Roghainnean nam brathan mu iomradh" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Roghainnean nam brathan mu luchd-leantainn ùr" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Roghainnean nam brathan mu rud sam bith eile" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Roghainnean nam brathan mu dhaoine a dh’innis gur toil leotha rud a dh’ath-phostaich thusa" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Roghainnean nam brathan mu luaidhean" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Roghainnean nam brathan mu fhreagairtean" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Roghainnean nam brathan mu ath-phostadh" @@ -10079,16 +10565,19 @@ msgstr "Gnìomhachd fheiseil no lomnochd earotaigeach." msgid "Sexually Suggestive" msgstr "Leth-fheiseil" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Co-roinn" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Co-roinn e co-dhiù" @@ -10097,16 +10586,21 @@ msgstr "Co-roinn e co-dhiù" msgid "Share author DID" msgstr "Co-roinn DID an ùghdair" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Ceangal co-roinnidh" @@ -10114,6 +10608,11 @@ msgstr "Ceangal co-roinnidh" msgid "Share link dialog" msgstr "Còmhradh a’ cheangail cho-roinnidh" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Co-roinn post aig:// URI" msgid "Share QR code" msgstr "Co-roinn an còd QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Co-roinn an t-inbhir seo" @@ -10142,8 +10641,8 @@ msgstr "Co-roinn a’ phacaid tòiseachaidh seo agus cuidich daoine nad choimhea #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Co-roinn air…" @@ -10151,7 +10650,7 @@ msgstr "Co-roinn air…" msgid "Share your contacts to find friends" msgstr "Co-roinn an luchd-aithne agad leinn is faigh lorg air do charaidean" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Deuchainn nan co-roghainnean" @@ -10167,16 +10666,16 @@ msgstr "Seall an roghainn teacsa" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Seall e co-dhiù" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "Seall na roghainnean gnàthachaidh" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Seall nas lugha mar seo" @@ -10219,8 +10718,8 @@ msgstr "Seall tachartasan beòtha san inbhir “Fidir”" msgid "Show More" msgstr "Seall barrachd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Seall barrachd mar seo" @@ -10246,8 +10745,8 @@ msgstr "Seall na freagairtean" msgid "Show replies as" msgstr "Seall na freagairtean mar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Seall an fhreagairt dhan a h-uile duine" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Seall rabhadh is criathraich às na h-inbhirean e" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Leig ris nuair a bhios tu ri craoladh beò" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Innsidh seo cuin a chaidh am post seo a chruthachadh" @@ -10297,15 +10796,17 @@ msgstr "Seallaidh seo an t-susbaint" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Clàraich a-steach no cruthaich cunntas" msgid "Sign in or create your account to join the conversation!" msgstr "Clàraich a-steach no cruthaich cunntas is thig a chòmhradh!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Clàraich a-steach gu cunntas nach eil air an liosta" @@ -10337,8 +10842,12 @@ msgstr "Clàraich a-steach gu cunntas nach eil air an liosta" msgid "Sign in to Bluesky or create a new account" msgstr "Clàraich a-steach gu Bluesky no cruthaich cunntas ùr" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Clàraich a-steach airson am post seo fhaicinn" @@ -10348,9 +10857,9 @@ msgstr "Clàraich a-steach airson am post seo fhaicinn" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Clàraich a-mach" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Clàraich a-mach" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "A bheil thu airson clàradh a-mach?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "Leum seachad air an fhàilteachadh is tòisich air an cunntas agad a chl msgid "Skip to next step" msgstr "Leum air adhart chun an ath-cheum" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Nas lugha" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Cuiridh seo an cuimhneachan na dhùsal" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Chuir cuideigin {0} mar fhrith-fhreagairt" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Bha rudeigin ann nach robh buileach ceart leis an dàta a bha thu airson aithris a dhèanamh air. Cuir fios gu sgioba na taice." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Chaidh rudeigin ceàrr" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Chaidh rudeigin ceàrr!" msgid "Something went wrong. Please try again in a moment." msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist ann am mionaid." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Chaidh rudeigin ceàrr. Feuch ris a-rithist." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Mearachd air choireigin? Innis dhuinn." @@ -10564,11 +11078,16 @@ msgstr "Spama, giùlan-brèige eile no foill" msgid "Sports" msgstr "Spòrs" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Tòisich air còmhradh is nochdaidh e an-seo." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Tòisich air cabadaich ùr" @@ -10582,17 +11101,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:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Tòisich air cabadaich le {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacaid tòiseachaidh" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Leabhar-sgeulachd" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Ri sruthadh air Twitch? Leig ris air Bluesky gu bheil thu beò agus nochd baidse air an avatar agad. Ma bhriogas cuideigin air, thèid an ath-stiùireadh chun an t-srutha agad." @@ -10671,8 +11190,8 @@ msgstr "Ri sruthadh air Twitch? Leig ris air Bluesky gu bheil thu beò agus noch #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Cuir" @@ -10684,9 +11203,9 @@ msgstr "Cuir an t-ath-thagradh" msgid "Submit Appeal" msgstr "Cuir an t-ath-thagradh" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Cuir an aithris thugainn" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Fo-sgrìobh" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Soirbheas" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Soirbheas!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Chaidh a dhearbhadh" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Laighe na grèine" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Taic" msgid "Support for this feature in your country has not been enabled yet! Please check back later." 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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Leum gu cunntas eile" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Leum eadar cunntasan" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Geàrr leum gu {0}" @@ -10824,11 +11347,15 @@ msgstr "Log an t-siostaim" msgid "Tags only" msgstr "Tagaichean a-mhàin" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "Thoir gnogag airson innse gu bheil thu a’ tuigsinn na tha ùr agus ag msgid "Tap to close context menu" msgstr "Thoir gnogag airson an clàr-taice co-theacsail a dhùnadh" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Thoir gnogag airson a leigeil seachad" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Teirmichean na seirbheise" @@ -10939,7 +11484,7 @@ msgstr "Teacsa ⁊ tagaichean" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Raon ion-chur an teacsa" @@ -10981,9 +11526,9 @@ msgstr "Sin agaibh e, a chàirdean!" msgid "That's everything!" msgstr "Sin e!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "’S urrainn dhan chunntas seo eadar-ghabhail a dhèanamh leat a-rithist an dèidh dhut a dhì-bhacadh." @@ -11049,6 +11594,11 @@ msgstr "Thèid na roghainnean a leanas a chleachdadh a ghnàth ’s tu a’ crut msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Tha na laghan far a bheil thu a’ sparradh oirnn dearbhadh gur e inbheach a th’ annad mus fhaigh thu cothrom air gleusan àraidh. Thoir gnogag airson barrachd fiosrachaidh." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Chaidh poileasaidh na prìobhaideachd a ghluasad gu <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "An t-ùrlar" 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 "Chan urrainn dhut latha do bhreith atharrachadh gun sgur. Dh’fhaodte gum feum thu fuireach fad latha no dhà mus urrainn dhut ùrachadh a-rithist." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Cha b’ urrainn dhuinn na h-inbhirean agad ùrachadh, thoir sùil air a’ cheangal ris an eadar-lìon is feuch ris a-rithist." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Bha duilgheadas ann! {0}" @@ -11221,6 +11774,14 @@ msgstr "Seo na roghainnean bunaiteach agad" msgid "These settings only apply to the Following feed." msgstr "Chan eil na roghainnean seo an sàs ach san inbhir “A’ leantainn”." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Chaidh bratach a chur ris an tuairisgeul seo ({screenDescription}):" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Thèid an t-ath-thagradh seo a chur gu <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Thèid an t-ath-thagradh seo a chur gu seirbheis modarataireachd Bhluesky." @@ -11263,7 +11824,7 @@ msgstr "Thèid an t-ath-thagradh seo a chur gu seirbheis modarataireachd Bhluesk msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Cho-dhùin an t-ùghdar seo nach fhaic ach daoine a tha clàraichte a-staigh na puist aca." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Bheir am putan seo comas do dhaoine eile aplacaid Germ DM fhosgladh is teachdaireachd a chur thugad. Is urrainn dhut co-dhùnadh am faicear seo san aplacaid Germ DM no ’s urrainn dhut an cunntas Bluesky agad a dhì-cheangal o Germ DM uile gu lèir le bhith a’ putadh air a’ phutan gu h-ìosal." @@ -11271,11 +11832,21 @@ msgstr "Bheir am putan seo comas do dhaoine eile aplacaid Germ DM fhosgladh is t msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Chaidh a’ chabadaich seo a dhì-cheangal" @@ -11310,7 +11881,11 @@ msgstr "Chan eil an t-susbaint seo ri fhaighinn a chionn ’s gu bheil cleachdai msgid "This content is not viewable without a Bluesky account." msgstr "Chan fhaicear an t-susbaint seo as aonais cunntas Bhluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Seo còmhradh aig cunntas a chaidh a sguabadh às no a chur à gnìomh. Dèan brùthadh is chì thu na ’s urrainn dhut dèanamh" @@ -11318,7 +11893,7 @@ msgstr "Seo còmhradh aig cunntas a chaidh a sguabadh às no a chur à gnìomh. msgid "This draft will be permanently deleted." msgstr "Thèid an dreachd seo a sguabadh às gu buan." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Tha am post-d seo co-cheangailte ris a’ chunntas agad mu thràth." @@ -11356,11 +11931,15 @@ msgstr "Tha an t-inbhir seo falamh." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Chan eil an t-inbhir seo air loidhne tuilleadh. Tha sinn a’ sealltainn dhut an inbhir <0>Fidir na àite." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Seo làmhrachan glèidhte. Feuch fear eile." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "Tha am fiosrachadh seo prìobhaideach is chan fhaic luchd-cleachdaidh eile am fiosrachadh seo." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Seo staid bhàn" @@ -11377,7 +11964,7 @@ msgstr "Seo staid bhàn" msgid "This is not a valid link" msgstr "Chan e ceangal dligheach a tha seo" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "Tha ainm no tuairisgeul na liosta seo – a chruthaich thu fhèin – a msgid "This list is empty." msgstr "Tha an liosta seo falamh." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Tha am post seo a’ cumail a-mach gun deach a chruthachadh <0>{0} ach chunnacas e air Bluesky <1>{1} an toiseach." @@ -11450,23 +12041,24 @@ msgstr "Chan fhaic ach luchd-cleachdaidh a tha clàraichte a-staigh seo." msgid "This post was deleted by its author" msgstr "Sguab ùghdar a’ phuist seo às e" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Chuir ùghdar a’ phuist seo à comas luaidhean air a’ phost." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Chan fhaic ach luchd-cleachdaidh clàraichte a-staigh a’ phròifil seo. Chan fhaic daoine nach eil clàraichte a-staigh e." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Thèid an fhreagairt seo a chur ann an earrann fhalaichte aig bonn an t-snàithlein agad is mùchaidh e brathan mu fhreagairtean na dhèidh – an dà chuid dhut-sa is do dhaoine eile." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 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:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "Ma nì thu seo, thèid an cunntas Bluesky <0>{currentHandle} agad ag msgid "This will remove @{0} from the quick access list." msgstr "Bheir seo air falbh @{0} o liosta a’ ghrad-inntrigidh." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Bheir seo air falbh am post agad on luaidh seo air post mu choinneamh an luchd-chleachdaidh air fad agus cuiridh e glèidheadair-àite na àite." @@ -11574,7 +12166,7 @@ msgstr "Roghainnean an t-snàithlein" msgid "Threaded" msgstr "Mar shnàithlean" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Roghainnean nan snàithleanan" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Airson 2FA air a’ phost-d a chur à comas, dearbh gu bheil cead-inntrigidh agad dhan t-seòladh phuist-d." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Airson 2FA air a’ phost-d a chur à comas, dearbh gu bheil cead-inntrigidh agad gu <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Brod nan toradh" msgid "Top replies first" msgstr "Brod nam freagairtean an toiseach" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Cuspair" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Eadar-theangaich" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Videothan a tha a’ treandadh" msgid "Trolling" msgstr "Trolladh" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Èiridh earbsa à dàimhean, coimhearsnachdan is co-chomann agus ri linn sin, tha sinn a’ toirt a-steach gleus <0>an luchd.-dearbhaidh earbsach: buidhnean aig am bi comas dearbhadh a dhèanamh." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Feuch ris a-rithist" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Feuch ris a-rithist" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Tbh" @@ -11763,11 +12369,15 @@ msgstr "Chan urrainn dhut conaltradh a dhèanamh leis an t-seirbheis agad. Thoir msgid "Unable to delete" msgstr "Cha ghabh a sguabadh às" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "Chan eil seo ri làimh" msgid "Unavailable feed information" msgstr "Chan eil fiosrachadh mun inbhir ri fhaighinn" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Dì-bhac" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Dì-bhac" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Dì-bhac an cunntas" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "A bheil thu airson an cunntas a dhì-bhacadh?" @@ -11837,8 +12452,8 @@ msgstr "Dì-bhac an liosta" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Neo-dhèan" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Neo-dhèan an t-ath-phostadh ({0, plural, one {air ath-phostadh # turas} two {air ath-phostadh # thuras} few {air ath-phostadh # turais} other {air ath-phostadh # turas}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Na lean ri {0} tuilleadh" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Na lean an cunntas tuilleadh" @@ -11872,7 +12487,7 @@ msgstr "Na lean an cunntas tuilleadh" msgid "Unfollows the user" msgstr "Ma nì thu seo, cha lean thu ris a’ chleachdaiche tuilleadh" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Gu mì-fhortanach, chan eil taic do dh’aithrisean dhen t-seòrsa seo aig gin dhe na leubailichean a tha fo-sgrìobhadh agad aca." @@ -11884,14 +12499,6 @@ msgstr "Gu mì-fhortanach, a rèir latha do bhreith a shàbhail thu sa chunntas msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Gu mì-fhortanach, a rèir na h-aoise a thug thu dhuinn, chan eil thu aosta gu leòr ’s chan fhaigh thu cothrom air Bluesky far a bheil thusa." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Neach-dearbhaidh neo-aithnichte" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Cha toil tuilleadh" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Cha toil tuilleadh ({0, plural, one {’s toil le # seo} two {’s toil le # seo} few {’s toil le # seo} other {’s toil le # seo}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "Neo-mhùch" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Neo-mhùch an cunntas" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Neo-mhùch an còmhradh" @@ -11955,12 +12562,12 @@ msgstr "Neo-mhùch an còmhradh" msgid "Unmute list" msgstr "Neo-mhùch an liosta" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Neo-mhùch an snàithlean" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Dì-phrìnich" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Dì-phrìnich an t-inbhir" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Dì-phrìnich on dachaigh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Dì-phrìnich on phròifil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Dì-phrìnich on liosta mhodarataireachd" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Chaidh {0} a dhì-phrìneachadh on dachaigh" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Chan eil taic ri videothan dhen t-seòrsa {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Ùraich" msgid "Update <0>{displayName} in Lists" msgstr "Ùraich <0>{displayName} sna liostaichean" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Ùraich am post-d" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Ùraich air {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Ùraich am post-d agad" @@ -12080,17 +12699,17 @@ msgstr "Ùraich am post-d agad" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Cha b’ urrainn dhuinn ceangladh na luaidh ùrachadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Cha b’ urrainn dhuinn faicsinneachd na freagairt ùrachadh" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Luchdaich suas dealbh an àite sin" @@ -12098,39 +12717,40 @@ msgstr "Luchdaich suas dealbh an àite sin" msgid "Upload a text file to:" msgstr "Luchdaich suas faidhle teacsa gu:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Luchdaich suas on chamara" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Luchdaich suas o na faidhlichean" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Luchdaich suas on leabhar-lann" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "A’ luchdadh suas an GIF…" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "A’ luchdadh suas nan dealbhan…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "A’ luchdadh suas dealbhag a’ cheangail…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "A’ luchdadh suas a’ video…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Chaidh an cleachdaiche a bhacadh" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Liosta luchd-cleachdaidh le {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Liosta luchd-cleachdaidh le {0}" @@ -12255,12 +12875,12 @@ msgstr "luchd-cleachdaidh a tha <0>@{0} gan leantainn" msgid "users following <0>@{0}" msgstr "luchd-cleachdaidh a leanas ri <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "Dh’fhàillig an dearbhadh, feuch ris a-rithist." msgid "Verification settings" msgstr "Roghainnean dearbhaidh" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Roghainnean dearbhaidh" @@ -12304,8 +12924,8 @@ msgstr "Dearbh as ùr" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Dearbh an còd" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Dearbh an clàr DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Dearbh còd a’ phuist-d" @@ -12349,7 +12969,7 @@ msgstr "A bheil thu airson an cunntas seo a dhearbhadh?" msgid "Verify your age" msgstr "Dearbh d’ aois" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Tionndadh {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Cha b’ urrainn dhuinn a’ video a phròiseasadh" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Inbhir video" @@ -12419,7 +13039,7 @@ msgstr "Cha deach a’ video a lorg." msgid "Video settings" msgstr "Roghainnean a’ video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Chaidh a’ video a luchdadh suas" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videothan" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Seall" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Seall a’ phròifil aig {0}" @@ -12467,20 +13087,15 @@ msgstr "Seall a’ phròifil aig {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Seall pròifil a’ chleachdaiche bhacte" @@ -12503,10 +13118,18 @@ msgstr "Seall am mion-fhiosrachadh" msgid "View full thread" msgstr "Seall an snàithlean slàn" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Seall am fiosrachadh mu na leubailean seo" @@ -12522,7 +13145,7 @@ msgstr "Seall barrachd" msgid "View more trending videos" msgstr "Seall barrachd videothan a tha a’ treandadh" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Seall am post" @@ -12539,10 +13162,10 @@ msgstr "Seall a’ phròifil" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Seall an t-avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Seall an t-seirbheis leubailidh aig @{0}" msgid "View this user's verifications" msgstr "Seall na dhearbh an cleachdaiche seo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Seall an luchd-cleachdaidh as toil leotha an t-inbhir seo" @@ -12596,8 +13219,8 @@ msgstr "Seall na cunntasan a mhùch thu" msgid "View your verifications" msgstr "Seall an dearbhadh a rinn thu" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Seallaidh seo an dealbh slàn" @@ -12640,8 +13263,8 @@ msgstr "Rabhadh ron t-susbaint" msgid "Warn content and filter from feeds" msgstr "Thoir rabhadh ron t-susbaint is criathraich às na h-inbhirean e" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Coimhead an-dràsta" @@ -12665,11 +13288,15 @@ msgstr "Cha d’fhuair sinn toradh sam bith leis an taga sin." msgid "We couldn't find any results for that topic." msgstr "Cha d’fhuair sinn lorg air toradh sam bith a tha mun chuspair sin." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Cha b’ urrainn dhuinn an còmhradh seo a luchdadh" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Mholamaid dhut co-dhiù dà rud a thaghadh sa bheil ùidh agad." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Chuir sinn post-d gu <0>{0} sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Cha b’ urrainn dhuinn dearbhadh a bheil cead agad videothan a luchdadh suas. Feuch ris a-rithist." @@ -12744,12 +13371,12 @@ msgstr "Cha d’fhuair sinn greim air an dearbhadh ri linn duilgheadais leis an msgid "We will let you know when your account is ready." msgstr "Innsidh sinn dhut nuair a bhios an cunntas agad deiseil." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Innsidh sinn dhut ma gheibh sinn lorg air caraid agad." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Cuiridh sinn post-d gu <0>{0} sa bheil ceangal. Briog air a’ cheangal airson dearbhadh a’ phuist-d a choileanadh." @@ -12779,12 +13406,12 @@ msgstr "Chan urrainn dhuinn tòiseachadh air d’ aois a dhearbhadh sa chunntas 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:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Tha sinn duilich! Tha thu a’ feuchainn ri post a fhreagairt a chaidh a sguabadh às." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Tha sinn duilich! Chan fhaigh sinn lorg air an duilleag a tha a dhìth ort." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Dè an t-ainm a chuireas sinn air a’ phacaid tòiseachaidh agad?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Dè do naidheachd?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Ma bhriogas tu air cromag, chì thu dè na buidhnean a rinn dearbhadh air a’ chunntas seo." @@ -12878,7 +13505,7 @@ msgstr "Ma bhriogas tu air cromag, chì thu dè na buidhnean a rinn dearbhadh ai msgid "Who can interact with this post?" msgstr "Cò aig a bheil cead eadar-ghabhail a dhèanamh leis a’ phost seo?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Cò aig a bheil cead freagairt?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Cò aig a bheil cead-dearbhaidh?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Oich!" @@ -12939,7 +13566,7 @@ msgstr "Carson bu chòir dhuinn lèirmheas a dhèanamh air a’ phacaid tòiseac msgid "Why should this user be reviewed?" msgstr "Carson bu chòir dhuinn lèirmheas a dhèanamh air an chleachdaiche seo?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Carson bu toil leat an cleachdaiche seo a bhacadh agus/no an còmhradh seo a sguabadh às?" @@ -12951,7 +13578,7 @@ 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "A bheil thu airson seo a shàbhaladh mar dhreachd airson a dheasachadh u msgid "Write a post" msgstr "Sgrìobh post" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Sgrìobh post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Sgrìobh do fhreagairt" @@ -12978,7 +13605,8 @@ msgstr "Sgrìobhadairean" msgid "Wrong DID returned from server. Received: {0}" msgstr "Chaidh an DID ceàrr a thilleadh leis an fhrithealaiche. Na fhuaras: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "Tha, sguab an cunntas agam às" msgid "Yes, delete this starter pack" msgstr "Tha, sguabaibh às a’ phacaid tòiseachaidh seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Tha, dealaichibh seo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Tha, falaichibh seo" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "Tha thu ri sruthadh beò" msgid "You are no longer live" msgstr "Chan eil thu ri sruthadh beò tuilleadh" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Chan eil cead agad videothan a luchdadh." @@ -13117,21 +13745,30 @@ msgstr "’S urrainn dhut an ro-aonta a thoirt air falbh uair sam bith agus an d msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Tha e an urra riut fhèin an dèan brathan cabadaich fuaim ann an roghainnean na cabaich am broinn na h-aplacaid" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "’S urrainn dhut còmhradh beò a leigeil seachad, ge be dè an roghainn a thaghas tu." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Tha gleus againn a-nis a dh’innseas dhut ma phostaicheas daoine àraidh stuth, ma thogras tu. Ma tha thu ag iarraidh brathan mu stuth ùr aig pròifil air choireigin, tadhail air a’ phròifil is cleachd an clag clì air a’ phutan “Ga leantainn”." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 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." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 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." @@ -13139,11 +13776,11 @@ msgstr "’S urrainn dhut dreachdan a shàbhaladh anns am bi suas ri mìle carac msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "’S urrainn dhut dreachdan a shàbhaladh anns am bi suas ri mìle caractar. A bheil thu airson am post seo a thilgeil air falbh mus coimhead thu air na dreachdan agad?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Chan fhaod thu barrachd air aon GIF a thaghadh aig an aon àm." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Chan fhaod thu barrachd air aon video a thaghadh aig an aon àm." @@ -13155,10 +13792,10 @@ msgstr "Cuir an cunntas agad an gnìomh as ùr airson clàradh a-steach. Chì da 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "’S urrainn dhut suas ri {MAX_IMAGES, plural, one {# dealbh} two {# dhealbh} few {# dealbhan}other {# dealbh}} a thaghadh uile gu lèir." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,7 +13803,12 @@ msgstr "’S urrainn dhut suas ri {MAX_IMAGES, plural, one {# dealbh} two {# dhe msgid "You can update this later from your settings." msgstr "’S urrainn dhut seo ùrachadh sna roghainnean agad uair sam bith." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Cha do shàbhail thu inbhir gu ruige seo." msgid "You got here first" msgstr "Thusa air thoiseach chàich" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna a dh’aois mus urrainn dhut Bluesky a chleachadh. Leugh <0>teirmichean na seirbheise againn airson barrachd fiosrachaidh." @@ -13332,11 +13982,12 @@ msgstr "Feumaidh tu a bhith co-dhiù 13 bliadhna a dh’aois mus urrainn dhut Bl msgid "You must be following at least seven other people to generate a starter pack." msgstr "Feumaidh tu co-dhiù seachdnar a leantainn mus urrainn dhut pacaid tòiseachaidh a ghintinn." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nan dealbhan agad a thoirt seachad mus urrainn dhut còd QR a shàbhaladh" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Feumaidh tu cead-inntrigidh do leabhar-lann nam meadhanan agad a thoirt seachad." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Chuir thu {0} mar fhrith-fhreagairt" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "Dh’atharraich thu latha do bhreith o chionn goirid" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Thèid do chlàradh a-mach às gach cunntas agad." @@ -13378,11 +14038,11 @@ msgstr "Thèid do chlàradh a-mach às gach cunntas agad." msgid "You will no longer receive notifications for {0}" msgstr "Chan fhaigh thu brathan mun ghnìomhachd aig {0} tuilleadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Chan fhaigh thu brathan mun t-snàithlean seo tuilleadh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Gheibh thu brathan mun t-snàithlean seo a-nis" @@ -13390,12 +14050,12 @@ msgstr "Gheibh thu brathan mun t-snàithlean seo a-nis" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Gheibh thu post-d anns am bi còd airson ath-shuidheachadh. Cuir a-steach an còd an-seo agus an uair sin am facal-faire ùr agad." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "Gheibh thu brathan mu stuth ùr aig {0} a-nis!" msgid "You'll stay updated with these feeds" msgstr "Cumaidh tu ceum ris na naidheachdan leis na h-inbhirean seo" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Tha thu sa chiutha" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Tha uiread a dhreachdan agad ’s a tha ceadaichte" @@ -13475,11 +14139,11 @@ msgstr "Rinn thu uiread a dh’iarrtas ’s a tha ceadaichte mar-thà. Feuch ris msgid "You've reached the start of the active content." msgstr "Seo toiseach na susbainte ghnìomhach." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus dàta)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Luchdaich thu suas na tha ceadaichte dhut de videothan an-diugh (cus videothan)" @@ -13499,10 +14163,18 @@ msgstr "Chaidh an cunntas agad a sguabadh às. Slàn leat, a charaid! ✌️" msgid "Your account has been suspended" msgstr "Chaidh an cunntas agad a chur na dhàil" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Chan eil an cunntas agad aosta gu leòr fhathast airson videothan a luchdadh suas. Feuch ris a-rithist an ceann greis." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "’S urrainn dhut ionad-tasgaidh a’ chunntais agad, a’ gabhail a-staigh na clàran dàta poblach air fad, a luchdadh a-nuas mar fhaidhle “CAR”. Cha bhi meadhanan leabaichte, mar dhealbhan, no an dàta prìobhaideach agad san fhaidhle seo agus feumaidh tu greim fhaighinn air seo fa leth." @@ -13519,7 +14191,7 @@ msgstr "Chaidh an t-ath-thagradh agad a chur. Ma thèid leis an ath-thagradh aga msgid "Your birth date" msgstr "Latha do bhreith" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Chaidh a’ chabadaich agad a chur à comas" @@ -13527,11 +14199,11 @@ msgstr "Chaidh a’ chabadaich agad a chur à comas" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Cumaidh sinn seo nar cuimhne airson ceanglaichean san àm ri teachd. ’S urrainn dhut seo a chur air gleus uair sam bith sna roghainnean." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Tha neach-aithne agad, {firstAuthorLink}, air Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Tha neach-aithne agad, {firstAuthorName}, air Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Am post-d agad" msgid "Your email appears to be invalid." msgstr "Tha coltas nach eil am post-d agad dligheach." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Cha deach am post-d agad a dhearbhadh fhathast. Dearbh e ’s faigh làn-chothrom air Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Tha inbhir nan daoine a tha thu gan leantainn falamh! Lean barrachd dhao msgid "Your full handle will be <0>@{0}" msgstr "’S e <0>@{0} an làmhrachan slàn a bhios agad" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "Chaidh an t-ionad agad ùrachadh." msgid "Your muted words" msgstr "Na faclan a mhùch thu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Chaidh am post agad a chur" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Chaidh na puist agad a chur" @@ -13635,7 +14307,7 @@ msgstr "Chaidh na puist agad a chur" msgid "Your preferred language" msgstr "An cànan as fheàrr leat" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Dealbh na pròifil agad" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Chaidh do fhreagairt a chur" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Thèid an aithris agad a chur gu <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Thèid an aithris agad a chur gu <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Ma leigeis tu ris dè na rudan sa bheil ùidh agad, bidh e nas fhasa susbaint a shealltainn dhut a bhuineas riut-sa." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 3afc49c208..a7abbdf2b7 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Galician\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(contén contido incrustado)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mes} other {# meses}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>en <1>texto e etiquetas" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} seguindo" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Non é posíbel enviar mensaxes a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, e {2, plural, one {# máis} other {# máis}} for #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {gustoulle} other {gustoulles}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cita} other {citas}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicación} other {republicacións}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} membros" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accesibilidade" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Axustes de accesibilidade" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Axustes de accesibilidade" msgid "Account" msgstr "Conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Conta bloqueada" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Conta seguida" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Conta elimada de acceso rápido" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Conta desbloqueada" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Deixaches de seguir esta conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Conta desenmudecida" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Engadir" @@ -999,8 +1094,8 @@ msgstr "Engadir conta" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Engadir texto alternativo (opcional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "Engadir contrasinal de app" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Todas" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Permitir o acceso ás túas mensaxes directas" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Sesión iniciada como @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Texto alternativo" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "O texto alternativo describe imaxes a persoas cegas ou con baixa visión e axuda a dar máis contexto." @@ -1387,7 +1486,7 @@ msgstr "Produciuse un erro" msgid "An error occurred" msgstr "Ocurreu un erro" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Ocurreu un erro ao comprimir o vídeo." @@ -1421,7 +1520,8 @@ msgstr "Ocurreu un erro mentres cargaba o vídeo. Por favor, proba de novo." msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Ocurreu un erro ao gardar o código QR!" @@ -1432,11 +1532,11 @@ msgstr "Ocurreu un erro ao gardar o código QR!" msgid "An error occurred while trying to follow all" msgstr "Produciuse un erro ao tentar seguir todo" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Un problema non presente nestas opcións" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Ocurreu un erro mentres tentabas abrir as conversas." #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Ocurreu un erro. Proba de novo." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasinais da app" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Apelación enviada" @@ -1632,14 +1740,14 @@ msgstr "Apelar suspensión" msgid "Appeal Suspension" msgstr "Apelar suspensión" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Apelar esta decisión" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arquivada dende {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Publicación arquivada" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Tes a certeza de querer eliminar o contrasinal de aplicación \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Tes a certeza de que queres eliminar este paquete de inicio?" msgid "Are you sure you want to discard your changes?" msgstr "Tes a certeza de que queres descartar os teus cambios?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Tes a certeza de que queres eliminar esta conversa? As túas mensaxes eliminaranse para ti, mais non para a outra persoa." +#: src/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 "Tes a certeza de que desexas eliminar isto das túas canles?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Tes a certeza de querer desbotar esta publicación?" @@ -1724,8 +1838,8 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Espidos artísticos ou non eróticos." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Reprodución auto. de vídeos e GIFs" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Atrás" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Aniversario" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloquear conta" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Bloquear conta?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloquear contas" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Bloquear listaxe" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "Bloquear estas contas?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloquear conta" @@ -1946,9 +2057,9 @@ msgstr "Bloquear conta" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloquear conta" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloqueado" @@ -1964,14 +2075,12 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha maneira." @@ -1987,7 +2096,7 @@ msgstr "Se bloqueas a un etiquetador aínda poderá seguir aplicando etiquetas n msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "O bloqueo é público. Se bloqueas unha conta non poderá responder os teus fíos, mencionarte nin interactuar contigo de ningunha maneira." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Se bloqueas a un etiquetador aínda poderá seguir aplicando etiquetas na túa conta, mais evitará que responda nos teus fíos, que te mencione e non poderá interactuar contigo de ningunha maneira." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pode confirmar a autenticidade da data solicitada." @@ -2029,7 +2138,7 @@ msgstr "Bluesky é mellor con amizades!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Termos do Servizo do Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky elexirá un conxunto de contas recomendadas na túa rede." msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky non amosará o teu perfil ou chíos a persoas que non iniciaran sesión. É posíbel que outras apps non respecten esta solicitude. Isto non fai que a túa conta sexa privada." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "Libros" 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" @@ -2137,24 +2254,34 @@ msgstr "Negocios" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Por {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Por <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Ao crear unha conta, aceptas os <0>Termos de servizo." msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Cámara" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Cámara" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Cámara" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Cámara" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancelar" @@ -2248,9 +2384,9 @@ msgstr "Cancelar a reactivación e pechar a sesión" msgid "Cancel search" msgstr "Cancelar procura" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Non se pode interactuar cunha conta bloqueada" @@ -2264,7 +2400,7 @@ msgstr "Lexendaxe (.vtt)" msgid "Captions & alt text" msgstr "Lexendaxe e texto alternativo" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Cambiar alcume" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Conversa" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Axustes da conversa" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Axustes da Conversa" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Elixe esta color como o teu avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Preme para reintentar a mensaxe fallida" @@ -2594,28 +2745,30 @@ msgstr "Preme para reintentar a mensaxe fallida" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Preme para reintentar a mensaxe fallida" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Pechar" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Pechar xanela activa" @@ -2647,6 +2800,10 @@ msgstr "Pechar xanela activa" msgid "Close alert" msgstr "Pechar alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Pechar o caixón inferior" @@ -2657,8 +2814,10 @@ msgstr "Pechar o caixón inferior" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Pechar" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Pechar imaxe" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Pechar esta xanela" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Pecha a alerta de actualización de contrasinal" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Pechar listaxe de contas" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Pechar a listaxe de contas para unha notificación en particular" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Bandas deseñadas" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directrices da comunidade" @@ -2740,12 +2915,12 @@ msgstr "Completa o desafío" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Escribir nova publicación" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "Redactar resposta" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Comprimindo vídeo..." @@ -2780,7 +2955,7 @@ msgstr "Configurado en <0>axustes de moderación" msgid "Confirm" msgstr "Confirmar" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contacta co soporte" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Contido e Multimedia" msgid "Content and media" msgstr "Contido e multimedia" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Contido e Multimedia" @@ -2889,7 +3064,7 @@ msgstr "Fondo do menú contextual, preme para pechar o menú." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Continuar fío..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Sigue co seguinte paso" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversa eliminada" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversa eliminada" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Versión de compilación copiada ao portapapeis" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiado!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiar" @@ -2997,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Copia ligazón á lista" msgid "Copy link to post" msgstr "Copiar ligazón ao chío" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiar texto da mensaxe" @@ -3037,12 +3229,12 @@ msgstr "Copiar texto da mensaxe" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiar texto do chío" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiar código QR" @@ -3052,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de dereitos de autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Non se puido saír deste conversa" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Non se puido cargar esta canle" @@ -3100,7 +3308,11 @@ msgstr "Non se puido cargar esta canle" msgid "Could not load list" msgstr "Non se puido cargar esta listaxe" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Non se puido silenciar a conversa" @@ -3108,11 +3320,19 @@ msgstr "Non se puido silenciar a conversa" msgid "Could not process your video" msgstr "Non se puido procesar o teu vídeo" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Crear" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Crea un paquete de inicio" @@ -3174,13 +3394,14 @@ msgstr "Crea un paquete de inicio para min" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Crea unha conta" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Crea un avatar" @@ -3206,7 +3427,7 @@ msgstr "Crea un avatar" msgid "Create another" msgstr "Crea outro" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crear unha conta nova" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Crea un reporte de {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Creado {0}" @@ -3270,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tema escuro" msgid "Date of birth" msgstr "Data de nacemento" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Por Defecto" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Borrar contrasinal de aplicación" msgid "Delete app password?" msgstr "Borrar contrasinal de aplicación?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "Eliminar rexistro de declaración de conversa" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Eliminar conversa" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Borrar para min" @@ -3399,11 +3633,11 @@ msgstr "Borrar para min" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Borrar mensaxe" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Borrar mensaxe para min" @@ -3411,9 +3645,9 @@ msgstr "Borrar mensaxe para min" msgid "Delete my account" msgstr "Borrar a miña conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Borrar un chío" @@ -3430,17 +3664,17 @@ msgstr "Borrar paquete de inicio?" msgid "Delete this list?" msgstr "Borrar esta listaxe?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Borrar este chío?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Eliminado" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Conta eliminada" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Texto descritivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Desvincular cita" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Desvincular chío da cita?" @@ -3507,13 +3741,13 @@ msgstr "Xanela: axustar quen pode interactuar con este chío" msgid "Dim" msgstr "Atenuar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Desactivar Correo 2FA" msgid "Disable haptic feedback" msgstr "Desactivar a retroalimentación háptica" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Deshabilitado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Desbotar" msgid "Discard changes?" msgstr "Desbotar cambios?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Desbotar publicación?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Descobre Novas Canles" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Desbotar" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Desbotar erro" @@ -3642,6 +3877,10 @@ msgstr "Ignorar esta sección" 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" @@ -3673,7 +3912,7 @@ msgstr "Non inclúe espidos." msgid "Domain verified!" msgstr "Dominio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Listo" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Doble toque para pechar a xanela" @@ -3737,19 +3981,14 @@ msgstr "Doble toque para pechar a xanela" msgid "Double tap to like" msgstr "Duplo toque para marcar cun \"gústame\"" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Descargar Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Descargar ficheiro CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Descargar ficheiro CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Duración:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "ex. alicia" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editar avatar" @@ -3847,19 +4102,19 @@ msgstr "Editar avatar" msgid "Edit Feeds" msgstr "Editar Canles" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editar imaxe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editar axustes de interacción" @@ -3868,7 +4123,16 @@ msgstr "Editar axustes de interacción" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar as Miñas Canles" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Persoas" @@ -3912,12 +4171,12 @@ msgstr "Editar axustes de interacción do chío" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Editar o perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editar o perfil" @@ -3925,7 +4184,8 @@ msgstr "Editar o perfil" msgid "Edit starter pack" msgstr "Editar paquete de inicio" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Editar quen pode responder" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Edita o teu paquete de inicio" @@ -3971,7 +4231,7 @@ msgstr "Enderezo de correo electrónico" msgid "Email Resent" msgstr "Correo electrónico reenviado" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Incrusta este chío no teu sitio web. Simplemente copia o seguinte fragm msgid "Embedded video player" msgstr "Reprodutor de vídeo incrustado" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Habilitar" @@ -4025,7 +4285,7 @@ msgstr "Activar contido para persoas adultas" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "Activar medios externos" msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Ingresa un contrasinal" msgid "Enter a word or tag" msgstr "Ingresa unha palabra ou etiqueta" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Exclúe ás contas que segues" msgid "Exit fullscreen" msgstr "Saír da pantalla completa" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expandir o texto alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expandir listaxe de persoas" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou minimizar o chío completo ao que estás respondendo" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Esperábase que a URI se resolvera nun rexistro" @@ -4277,10 +4536,10 @@ msgstr "Medios explícitos ou potencialmente perturbadores." msgid "Explicit sexual images." msgstr "Imaxes sexuais explícitas." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Medios externos" @@ -4331,18 +4587,22 @@ msgstr "Medios externos" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Erro ao mudar o nome de usuario. Téntao de novo." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Error ao crear o paquete de inicio." -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Error ao eliminar a mensaxe." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Error ao eliminar o chío, por favor, inténtao de novo." @@ -4394,24 +4655,24 @@ msgstr "Error ao eliminar o chío, por favor, inténtao de novo." msgid "Failed to delete starter pack" msgstr "Error ao eliminar o paquete inicial." -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Error ao cargar as preferencias das canles." -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Error ao cargar as canles suxeridas." msgid "Failed to load suggested follows" msgstr "Error ao cargar as suxerencias de seguimento." -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Error ao fixar o chío." #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Error ao enviar a apelación, por favor, inténtao de novo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Error ao cambiar o estado de silencio do fío, por favor, inténtao de novo." -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Error ao actualizar as canles" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Error ao actualizar os axustes" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Canles" @@ -4649,7 +4914,7 @@ msgstr "Canles" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Canle por {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menú de canles" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Comentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Canles" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Finalizando" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Procurar contas para seguir" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Procurar contas a seguir" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Seguir" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Seguir a {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Seguir esta conta" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Seguir tamén" @@ -4916,7 +5183,7 @@ msgstr "Seguir tamén" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Seguido por <0>{0} e <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1}, e {2, plural, one {# other} other {# others}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que coñeces" @@ -4960,10 +5231,10 @@ msgstr "Seguidores que coñeces" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Seguindo" @@ -4977,12 +5248,12 @@ msgstr "Seguindo" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Seguindo {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Seguindo a {handle}" msgid "Following feed preferences" msgstr "Preferencias das canles de Seguimento" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencias das canles de Seguimento" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Séguete" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Séguete" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Fonte" @@ -5065,11 +5333,16 @@ msgstr "Esquecéches o teu contrasinal?" msgid "Forgot?" msgstr "Esquecéchelo?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "De <0/>" msgid "Generate a starter pack" msgstr "Xera un paquete de inicio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obtén axuda" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Dálle ao teu perfil unha cara bonita" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Volver" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Volver" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Volver ao paso anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ir ao inicio" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ir ao inicio" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ir ao inicio" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ir á conversa con {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Ir ao seguinte" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ir ao perfil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ir ao perfil da conta" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "O alcume é longo de máis. Por favor, insire un máis curto." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Cancelo" @@ -5458,8 +5756,8 @@ msgstr "Cancelo {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Axuda" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Listaxe oculta" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Listaxe oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ocultar o chío para min" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ocultar rechouchío para todo o mundo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ocultar rechouchío para min" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ocultar este chío?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ocultar este rechouchío?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Ocultar os temas de tendencia?" msgid "Hide trending videos?" msgstr "Ocultar os vídeos en tendencia?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ocultar listaxe de persoas" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "Oculta o contido" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Vaites! Parece que temos problemas para cargar estes datos. Consulta má msgid "Hmmmm, we couldn't load that moderation service." msgstr "Vaites! Non puidemos cargar ese servizo de moderación." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espera! Estamos dando acceso a vídeos gradualmente e aínda estás na listaxe de espera. Volve a consultar máis adiante." -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Inicio" @@ -5721,7 +6019,7 @@ msgstr "Enténdoo" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Se o texto alternativo é longo, alterna o estado expandido do texto alternativo. " @@ -5757,15 +6055,15 @@ msgstr "Se eliminas esta listaxe, non poderás recuperala." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se tes o teu propio dominio, podes empregalo como nome de usuario. Isto permíteche auto-verificar a túa identidade. <0>Máis información aquí." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Se eliminas este chío, non poderás recuperalo." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "Se es desenvolvedor, podes hospedar o teu propio servidor." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Se estás intentando cambiar o teu alcume ou enderezo electrónico, faino antes de desactivar a túa conta." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imaxe" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "O código de confirmación 2FA non é válido." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Alcume non válido. Por favor, insire un diferente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "O Código de Verificación incorrecto" @@ -6001,8 +6315,15 @@ msgstr "Código de convite" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Convida a persoas a este paquete inicial!" +#: 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 "Convida ás túas amizades a seguir as túas canles e persoas favoritas" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Tarefa ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Tarefa ID: {0}" msgid "Jobs" msgstr "Tarefas" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Tarefas" msgid "Join Bluesky" msgstr "Únete a Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Únete á conversa" msgid "Journalism" msgstr "Xornalismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Etiquetas na túa conta" msgid "Labels on your content" msgstr "Etiquetas no teu contido" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Axustes de Idiomas" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Último" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Aprender máis sobre esta advertencia" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Máis información sobre o que é público en Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Aprender máis." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Deixar" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Deixar conversa" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Deixar conversación" @@ -6284,13 +6642,14 @@ msgstr "Deixar conversación" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Deixar conversación" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Saír de Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "queda por ir." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Dar «gústame» a esta canle" @@ -6358,8 +6721,8 @@ msgstr "Dar «gústame» a esta canle" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Gustoulle a" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Gústame" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Gústame en este chío" @@ -6409,11 +6768,11 @@ msgstr "Gústame en este chío" msgid "Linear" msgstr "Lineal" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Listaxe" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "A listaxe xa non está silenciada" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listaxes" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Cargando..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Rexistro" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo por @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo por <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Parece que che falta unha canle de seguimento. <0>Preme aquí para agreg msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Xestiona as túas palabras e etiquetas silenciadas" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcar como lido" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "persoas mencionadas" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mencións" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Mensaxe {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mensaxe eliminada" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mensaxe eliminada" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "A mensaxe é demasiado longa" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mensaxes" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderación" @@ -6894,7 +7247,7 @@ msgstr "Listaxe de moderación actualizada" msgid "Moderation lists" msgstr "Listaxes de moderación" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listaxes de Moderación" @@ -6903,7 +7256,7 @@ msgstr "Listaxes de Moderación" msgid "moderation settings" msgstr "axustes de moderación" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Estados de moderación" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Máis opcións" @@ -6949,7 +7302,7 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silenciar" @@ -6965,8 +7318,8 @@ msgstr "Silenciar" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Silenciar conta" msgid "Mute accounts" msgstr "Silenciar contas" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silenciar conversa" @@ -6994,7 +7347,7 @@ msgstr "Silenciar a listaxe" msgid "Mute these accounts?" msgstr "Silenciar estas contas?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Silenciar esta palabra só nas etiquetas" msgid "Mute this word until you unmute it" msgstr "Silenciar esta palabra ata que a actives" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silenciar fío" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silenciar palabras e etiquetas" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7062,6 +7419,10 @@ msgstr "Palabras e etiquetas silenciadas" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Ninguén pode ver a quen silencias. As contas silenciadas poden interactuar contigo, máis non verás os seus chíos nin recibirás notificacións deles." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Navega á seguinte pantalla" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navega ao teu perfil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un alcume para min" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Novo" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Novo chat" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Novo chío" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Novo chío" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Noticias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Siguinte" msgid "Next image" msgstr "Nova imaxe" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Xa non segues a {0}" @@ -7362,7 +7726,7 @@ msgstr "Xa non segues a {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Aínda non hai mensaxes" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Aínda non hai notificacións!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Ninguén, excepto a persoa autora, pode citar este chío." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Sen resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sen resultados" @@ -7446,8 +7810,8 @@ msgstr "Sen resultados" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Non se encontraron resultados" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nudez non sexual" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Non se encontrou" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Axustes de notificacións" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sons de notificacións" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificacións" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Apagar" @@ -7623,9 +7974,10 @@ msgstr "Ben" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Está ben" @@ -7648,35 +8000,35 @@ msgstr "en<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Restablecemento da incorporación" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Falta o texto alternativo nunha ou máis imaxes." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Falta o texto alternativo nun ou máis vídeos." @@ -7685,6 +8037,26 @@ msgstr "Falta o texto alternativo nun ou máis vídeos." msgid "Only {0} can reply." msgstr "Só {0} pode responder." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Só se admiten ficheiros de imaxe" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Só se admiten ficheiros WebVTT (.vtt)." @@ -7703,6 +8085,10 @@ msgstr "Só se admiten ficheiros WebVTT (.vtt)." msgid "Oops, something went wrong!" msgstr "Vaites, algo non furrula ben!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Vaites, algo non furrula ben!" msgid "Oops!" msgstr "Vaites!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Abrir o creador de avatares" @@ -7720,12 +8106,17 @@ msgstr "Abrir o creador de avatares" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Abrir as opcións de conversa" @@ -7739,16 +8130,16 @@ msgstr "Abrir menú lateral" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Abrir o selector de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Abre o menú de opcións das canles" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Abrir ligazón a {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Abrir menú de opciones do chío" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Abrir pagina de histórico" msgid "Open system log" msgstr "Abrir registro do sistema." +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Abre unha xanela para engadir unha advertencia de contido á túa public msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Abre detalles adicionales para una entrada de depuración." @@ -7838,7 +8250,7 @@ msgstr "Abre detalles adicionales para una entrada de depuración." msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Abrir cámara do dispositivo" @@ -7858,22 +8270,24 @@ msgstr "Abrir compositor" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Abrir o fluxo para crear unha nova conta Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Abrir o formulario de restablecemento do contrasinal" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Abrir este perfil" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "O noso equipo de moderación recibiu a túa denuncia." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Os nosos moderadores revisaron os informes e decidiron desactivar o teu acceso ás conversas en Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Os nosos moderadores revisaron os informes e decidiron desactivar o teu msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Non se atopou a páxina" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Non se atopou a páxina" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Pausar vídeo" msgid "People" msgstr "Persoas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Persoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Persoas siguindo a @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Fotografía" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imaxes pensadas para persoas adultas." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar canle" @@ -8152,12 +8578,12 @@ msgstr "Fixar canle" msgid "Pin to home" msgstr "Fixar no inicio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fixar no Inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fixar no teu perfil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} fixouse á páxina de inicio" @@ -8236,7 +8662,7 @@ msgstr "Por favor, escolle o teu alcume." msgid "Please choose your password." msgstr "Por favor, escolle o teu contrasinal." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Por favor, completa a verificación CAPTCHA" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "Por favor, insire un contrasinal. Este debe ter polo menos 8 caracteres. msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Por favor, insire un nome único para este contrasinal de aplicación ou usa un xerado ao chou por nós." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Introduce o teu correo electrónico." msgid "Please enter your invite code." msgstr "Introduce o teu código de convite." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "Por favor, insire o teu alcume" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Explica por que cres que esta etiqueta foi aplicada incorrectamente por {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Explica por que cres que se desactivaron incorrectamente as túas conversas" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "Inicia sesión como @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Chiar" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publicar todo" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Chío de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Chío eliminado" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Produciuse un erro ao cargar o chío. Comproba a túa conexión a Internet e téntao de novo." @@ -8454,18 +8884,22 @@ msgstr "Chío ocultado por ti" msgid "Post interaction settings" msgstr "Axustes de interacción do chío" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Axustes de interacción da publicación" +#: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Preme para tentar a conexión" -#: src/components/Error.tsx:61 +#: 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 "Preme para reintentar" @@ -8536,7 +8966,7 @@ msgstr "Preme para reintentar" msgid "Press to view followers of this account that you also follow" msgstr "Preme para ver as persoas desta conta que tamén segues" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e seguranza" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Política de privacidade" @@ -8586,15 +9015,15 @@ msgstr "Política de privacidade" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Procesando vídeo..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Procesando..." @@ -8602,10 +9031,10 @@ msgstr "Procesando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Perfil" @@ -8613,6 +9042,7 @@ msgstr "Perfil" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "O código QR copiouse no portapapeis!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "O código QR foi descargado!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "O código QR gardouse no carrete da cámara." -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Citar un chío" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "O chío citado foi anexado de novo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "O chío citado separouse correctamente" @@ -8711,12 +9138,12 @@ msgstr "Citas deshabilitadas" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citas" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citas deste chío" @@ -8728,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Volver a anexar cita" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Razón para apelar" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "Recomendados" msgid "Reconnect" msgstr "Reconectar" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Recargar as conversas" @@ -8863,6 +9304,8 @@ msgstr "Recargar as conversas" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Eliminar a {displayName} do paquete inicial" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Eliminar a conta" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Eliminar anexo" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Eliminar Avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Eliminar Banner" @@ -8914,8 +9362,9 @@ msgstr "Eliminar Banner" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Eliminar incrustación" @@ -8929,12 +9378,12 @@ msgstr "Eliminar canle" msgid "Remove feed?" msgstr "Eliminar canle?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "Eliminar das túas canles?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Eliminar a imaxe" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Eliminar rechouchío" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Eliminado pola persoa autora" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Eliminado por ti" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Respostas" @@ -9104,14 +9552,14 @@ msgstr "Respostas deshabilitadas" msgid "Replies to this post are disabled." msgstr "As respostas a este chío están desactivadas." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Responder" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "Resposta oculta pola persoa autora do fío" msgid "Reply Hidden by You" msgstr "Resposta ocultada por ti" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "A configuración de resposta é elixida pola persoa autora do fío" @@ -9137,18 +9581,18 @@ msgstr "A configuración de resposta é elixida pola persoa autora do fío" msgid "Reply sorting" msgstr "Orde das respostas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidade da resposta actualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "A resposta ocultouse correctamente." -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Denunciar" @@ -9157,20 +9601,20 @@ msgstr "Denunciar" msgid "Report account" msgstr "Denunciar conta" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Denunciar conversación" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Xanela da denuncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Denunciar canle" @@ -9179,12 +9623,12 @@ msgstr "Denunciar canle" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Denunciar mensaxe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Denunciar chío" @@ -9199,8 +9643,8 @@ msgstr "Denunciar paquete de inicio" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Denuncia enviada" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Denunciar esta canle" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Denunciar esta listaxe" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Rechouchiar" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Rechouchiado por ti" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Rechouchíos deste chío" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Require texto alternativo antes de publicar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Obrigatorio un código de correo para identificarte na túa conta." @@ -9328,7 +9791,17 @@ msgstr "Obrigatorio para este provedor" msgid "Required in your region" msgstr "Obrigatorio na túa rexión" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "Restablecer o estado de incorporación" msgid "Reset password" msgstr "Restablecer o contrasinal" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Tenta de novo a última acción, que errou" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Tenta de novo a última acción, que errou" msgid "Retry" msgstr "Reintentar" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Volver á páxina anterior" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volve á páxina anterior" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Gardar cambios" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Gardar imaxe" msgid "Save new handle" msgstr "Gardar novo alcume" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Gardar código QR" @@ -9518,13 +9994,13 @@ msgstr "Gardar código QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Gardar nas miñas canles" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Canles guardadas" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado nas túas canles" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Di ola!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Ciencia" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Desprázate cara arriba" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Buscar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Buscar perfís" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Selecciona unha cor" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Seleccionar GIF" msgid "Select GIF \"{0}\"" msgstr "Seleccionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Seleccionar idioma..." msgid "Select languages" msgstr "Seleccionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "Seleccione os teus intereses entre as seguintes opcións" msgid "Select your preferred language for translations in your feed." msgstr "A que idioma queres traducir os chíos na túa canle." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Enviar correo" @@ -9935,11 +10421,11 @@ msgstr "Enviar correo" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Enviar comentarios" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Enviar mensaxe" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Enviar chío a..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Enviar vía mensaxe directa" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Establece o correo electrónico para restablecer o contrasinal" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Axustes" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Actividade sexual ou nudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente suxestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Compartir" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Compartir de todas as maneiras" @@ -10097,16 +10586,21 @@ msgstr "Compartir de todas as maneiras" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Compartir ligazón" @@ -10114,6 +10608,11 @@ msgstr "Compartir ligazón" msgid "Share link dialog" msgstr "Xanela para compartir ligazón" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Compartir código QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Compartir esta canle" @@ -10142,8 +10641,8 @@ msgstr "Comparte este paquete de iniciación e axuda a xente a unirse á túa co #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Probador de Preferencias Compartidas" @@ -10167,16 +10666,16 @@ msgstr "Ver texto alternativo" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Ver de todas as maneiras" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Mostrar menos como este" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Ver máis" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mostrar máis como este" @@ -10246,8 +10745,8 @@ msgstr "Amosar respostas" msgid "Show replies as" msgstr "Amosar respostas como" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Mostrar resposta para todo o mundo" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Mostrar advertencia e filtrar desde as canles" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Amosa información sobre cando foi creada esta publicación" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Inicia sesión ou crea a túa conta para unirte á conversa!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Acceder a unha conta que non está na listaxe" @@ -10337,8 +10842,12 @@ msgstr "Acceder a unha conta que non está na listaxe" msgid "Sign in to Bluesky or create a new account" msgstr "Inicia sesión en Bluesky ou crea unha nova conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Pechar sesión" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Pechar sesión" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Pechar sesión?" @@ -10391,7 +10900,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Máis pequeno" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Algo saíu mal" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Algo saíu mal!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Ocorreu un erro? Dínolo." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Deportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Iniciar un novo chat" @@ -10582,17 +11101,17 @@ msgstr "Comeza a engadir xente" msgid "Start adding people!" msgstr "Comeza a engadir xente!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Iniciar chat con {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paquete de inicio" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Libro de contos" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Enviar" @@ -10684,9 +11203,9 @@ msgstr "Enviar apelación" msgid "Submit Appeal" msgstr "Enviar Apelación" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Suscribirse" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Éxito!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Soporte" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Cambiar de conta" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Cambiar de contas" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Cambiar para {0}" @@ -10824,11 +11347,15 @@ msgstr "Rexistro do sistema" msgid "Tags only" msgstr "Só etiquetas" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Toca para descartar" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Condicións de servizo" @@ -10939,7 +11484,7 @@ msgstr "Texto e etiquetas" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campo de entrada de texto" @@ -10981,9 +11526,9 @@ msgstr "Iso é todo, parroquia!" msgid "That's everything!" msgstr "Iso é todo!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderá interactuar contigo despois de desbloqueala." @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade moveuse a <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Produciuse un problema ao contactar co servidor" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Houbo un problema ao actualizar as túas canles. Comproba a túa conexión a Internet e téntao de novo." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Houbo un problema! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Estas opcións só se aplicarán ao seguinte fío." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Esta {screenDescription} foi marcada:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Esta apelación enviarase a <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Esta apelación enviarase ao servizo de moderación de Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Esta apelación enviarase ao servizo de moderación de Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Desconectouse este conversa" @@ -11310,7 +11881,11 @@ msgstr "Este contido non está dispoñíbel porque unha das persoas implicadas b msgid "This content is not viewable without a Bluesky account." msgstr "Este contido non se pode ver sen unha conta Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Esta conversa é cunha conta eliminada ou desactivada. Preme para ver as opcións" @@ -11318,7 +11893,7 @@ msgstr "Esta conversa é cunha conta eliminada ou desactivada. Preme para ver as msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Esta canle está baleira." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Esta canle xa non está en liña. No seu lugar, mostramos <0>Descubrir." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Este nome de usuario está reservado. Fai o favor de escoller un diferente." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "Esta lista está baleira." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta publicación declara que foi feita en <0>{0}, pero foi vista por primeira vez por Bluesky en <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "A persoa autora deste chío desactivou os chíos de citas." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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 "Esta resposta ordenarase nunha sección oculta na parte inferior do teu fío e silenciará as notificacións para as respostas posteriores, tanto para ti como para os demais." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Esta persoa non ten seguidores." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Isto eliminará @{0} da listaxe de acceso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Esto eliminará o teu chío desta cita para todas as persoas e substituirase por un marcador de posición." @@ -11574,7 +12166,7 @@ msgstr "Preferencias de Fíos" msgid "Threaded" msgstr "Enfiado" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferencias de fíos" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Para desactivar o método 2FA de correo electrónico, verifica o teu acceso ao enderezo de correo electrónico." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Arriba" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Tema" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traducir" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Vídeos en tendencia" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Intentar de novo" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Intentar de novo" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "TV" @@ -11763,11 +12369,15 @@ msgstr "Non se puido contactar co teu servizo. Comproba a túa conexión a Inter msgid "Unable to delete" msgstr "Non se pode eliminar" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desbloquear conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Desbloquear Conta?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Deixa de seguir a {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11872,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "No me gusta" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Activar a conversa" @@ -11955,12 +12562,12 @@ msgstr "Activar a conversa" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Activar o fío" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Desfixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desfixar canle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Desfixar do inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Desfixar do perfil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Desfixar a listaxe de moderación" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} desfixada do Inicio" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "Actualizar <0>{displayName} nas listaxes" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Actualizar para {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Produciuse un erro ao actualizar o anexo da cotización" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Produciuse un erro ao actualizar a visibilidade das respostas" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Carga unha foto no seu lugar" @@ -12098,39 +12717,40 @@ msgstr "Carga unha foto no seu lugar" msgid "Upload a text file to:" msgstr "Carga un ficheiro de texto a:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Cargar desde a cámara" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Cargar desde ficheiros" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Cargar desde a biblioteca" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Cargando imaxes..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Cargando miniatura da ligazón..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Cargando vídeo..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Listaxe de persoas por {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "persoas seguidas por <0>@{0}" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificar rexistro DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Vídeo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Non se puido procesar o vídeo" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Canle de vídeo" @@ -12419,7 +13039,7 @@ msgstr "Non se encontrou o vídeo." msgid "Video settings" msgstr "Axustes do video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Vídeo cargado" @@ -12432,18 +13052,18 @@ msgstr "Vídeo: {0}" msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Ver o perfil de {0}" @@ -12467,20 +13087,15 @@ msgstr "Ver o perfil de {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Ver o perfil da persoa bloqueada" @@ -12503,10 +13118,18 @@ msgstr "Ver detalles" msgid "View full thread" msgstr "Ver fío completo" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Consulta información sobre estas etiquetas" @@ -12522,7 +13145,7 @@ msgstr "Ver máis" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Ver perfil" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Ver o avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Consulta o servizo de etiquetado proporcionado por @{0}" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Consulta as persoas ás que lles gusta esta canle" @@ -12596,8 +13219,8 @@ msgstr "Consulta as túas contas silenciadas" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "Advertir contido" msgid "Warn content and filter from feeds" msgstr "Advirtir contido e filtra desde canles" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Non foi posíbel atopar resultados para ese tema." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Non puidemos cargar esta conversa" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Non puidemos determinar se tes permiso para cargar vídeos. Téntao de novo." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Informarémosche cando a túa conta estea lista." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Temos problemas de rede, téntao de novo" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentímolo! Eliminouse o chío ao que estás respondendo." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Sentímolo! Non podemos encontrar a páxina que buscabas." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Como queres chamar ao teu paquete de inicio?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Que hai de novo?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Quen pode interactuar con este chío?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Quen pode responder" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Vaia!" @@ -12939,7 +13566,7 @@ msgstr "Por que se debería revisar este paquete inicial?" msgid "Why should this user be reviewed?" msgstr "Por que se debería revisar esta persoa?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Escribe un chío" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Escribe a túa resposta" @@ -12978,7 +13605,8 @@ msgstr "Escritores e escritoras" msgid "Wrong DID returned from server. Received: {0}" msgstr "O servidor devolveu un DID incorrecto. Recibido: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Si, eliminar este paquete de inicio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Si, desprenderse" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Si, ocultar" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Non tes permiso para cargar vídeos." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Podes continuar as conversas en curso independentemente da configuración que elixas." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Agora podes iniciar sesión co teu novo contrasinal." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Podes reactivar a túa conta para continuar iniciando sesión. O teu per 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Podes actualizar posteriormente desde as túas preferencias." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Non tes canles gardadas." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Só podes engadir ata 3 canles" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Debes seguir polo menos a outras sete persoas para xerar un paquete de inicio." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Debes conceder acceso á túa biblioteca de fotos para gardar un código QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Sairás da sesión de todas as túas contas." @@ -13378,11 +14038,11 @@ msgstr "Sairás da sesión de todas as túas contas." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Xa non recibirás notificacións deste fío" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Agora recibirás notificacións deste fío" @@ -13390,12 +14050,12 @@ msgstr "Agora recibirás notificacións deste fío" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Recibirás un correo electrónico cun \"código de restablecemento\". Introduce ese código aquí e, a continuación, introduce o teu novo contrasinal." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "Manteraste á última con estas canles" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Estás en liña" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados bytes por hoxe)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Chegaches ao teu límite diario de carga de vídeos (demasiados vídeos por hoxe)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "A túa conta foi suspendida" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A túa conta aínda non ten suficiente antigüidade para subir vídeos. Por favor, inténtao de novo máis tarde." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "O repositorio da túa conta, que contén todos os rexistros de datos público, pode ser descargado como un ficheiro \"CAR\". Este ficheiro non inclúe ficheiros multimedia incrustados, como imaxes nin os teus datos privados, que deben ser obtidos por separado." @@ -13519,7 +14191,7 @@ msgstr "A túa apelación foi enviada. Se a túa apelación se tiver en conta, e msgid "Your birth date" msgstr "A túa data de nacemento" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "As túas conversas foron deshabilitadas." @@ -13527,11 +14199,11 @@ msgstr "As túas conversas foron deshabilitadas." 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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "O teu enderezo electrónico parece non ser válido." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "A seguinte canle está baleira! Sigue a máis persoas para ver o que est msgid "Your full handle will be <0>@{0}" msgstr "O teu alcume será <0>@{0} " -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "As túas palabras silenciadas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 6f7deb1e45..5fdd744ab4 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Hawaiian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:203 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:639 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" msgid "{0}s" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:427 +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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:811 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,13 +645,13 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:33 -msgid "{memberCount}/{MEMBER_LIMIT}" +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" msgstr "" #: src/features/liveNow/utils.ts:10 @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,6 +870,13 @@ 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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -802,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -825,7 +907,11 @@ msgstr "" 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/Navigation.tsx:547 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -837,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:452 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -854,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -872,15 +977,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -893,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -993,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1006,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1505 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2168 msgid "Add another post to thread" msgstr "" @@ -1029,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1037,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1046,7 +1147,7 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" @@ -1056,8 +1157,8 @@ msgstr "" msgid "Add members" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:528 #: src/components/moderation/ReportDialog/index.tsx:532 -#: src/components/moderation/ReportDialog/index.tsx:536 msgid "Add more details (optional)" msgstr "" @@ -1074,8 +1175,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 #: src/screens/ProfileList/AboutSection.tsx:72 #: src/screens/ProfileList/AboutSection.tsx:90 msgid "Add people" @@ -1085,6 +1186,10 @@ msgstr "" 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 "" @@ -1133,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1159,11 +1264,11 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:550 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 msgid "Admin" msgstr "" @@ -1222,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1235,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1272,13 +1377,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1332,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1356,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1381,7 +1486,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "" @@ -1416,6 +1521,7 @@ msgid "An error occurred while loading your lists :/" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1426,11 +1532,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1450,25 +1556,29 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: src/screens/Messages/components/InviteLinkDialog.tsx:190 +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:56 -msgid "An issue occurred creating the group chat, please try again" +#: 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:42 -msgid "An issue occurred starting the chat, please try again" +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +msgid "An issue occurred starting the chat, please try again." msgstr "" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 @@ -1479,12 +1589,12 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1533,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 msgid "Anyone can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 msgid "Anyone can request to join" msgstr "" @@ -1549,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: src/screens/Messages/components/InviteLinkDialog.tsx:458 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1591,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1612,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "" @@ -1626,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1651,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1669,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1682,23 +1796,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1718,8 +1838,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1746,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1761,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1777,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1790,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1826,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1834,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 msgid "Before you can message another user, you must first verify your email." msgstr "" @@ -1868,53 +1991,53 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:147 -msgid "Block and Delete" +#: 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:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1922,20 +2045,29 @@ msgstr "" msgid "Block these accounts?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:188 -#: src/components/dms/AfterReportDialog.tsx:191 +#: 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 "" -#: src/components/dms/AfterReportDialog.tsx:153 -msgid "Block User" +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:184 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:196 +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -1943,14 +2075,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1966,7 +2096,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -1979,7 +2109,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2008,7 +2138,7 @@ msgstr "" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2016,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2032,7 +2166,7 @@ msgstr "" 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2060,6 +2194,10 @@ msgstr "" 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" @@ -2116,24 +2254,34 @@ msgstr "" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:853 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:174 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2160,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2171,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2191,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2207,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2227,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "" @@ -2243,7 +2400,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2276,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:449 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2289,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:314 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:394 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2323,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2340,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2352,31 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:199 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:82 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2393,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:201 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2454,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 msgid "Choose who can join this group chat and how." msgstr "" @@ -2508,7 +2684,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:126 msgid "Click here to add people to this group chat" msgstr "" @@ -2516,7 +2692,7 @@ msgstr "" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 msgid "Click here to create or manage an invite link for this group chat" msgstr "" @@ -2533,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2542,11 +2718,11 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:141 msgid "Click here to view the invite link for this group chat" msgstr "" @@ -2555,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "" @@ -2569,24 +2745,30 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 -#: src/components/dms/AfterReportDialog.tsx:93 -#: src/components/dms/AfterReportDialog.tsx:98 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2594,14 +2776,14 @@ msgstr "" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 #: src/screens/Settings/components/ChangePasswordDialog.tsx:288 #: src/screens/Settings/components/ChangePasswordDialog.tsx:293 #: src/view/com/feeds/MissingFeed.tsx:211 @@ -2610,7 +2792,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2618,6 +2800,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2628,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "" @@ -2643,17 +2831,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "" @@ -2666,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1727 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2696,7 +2900,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2711,12 +2915,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1603 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2724,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2565 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2567 msgid "Compressing video..." msgstr "" @@ -2751,7 +2955,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2788,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2796,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2813,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2860,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2879,40 +3083,53 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:148 -#: src/components/dms/AfterReportDialog.tsx:151 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2929,7 +3146,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 msgid "Copy" msgstr "" @@ -2962,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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" @@ -2983,8 +3210,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -2992,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "" @@ -3002,8 +3229,8 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" @@ -3017,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3030,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3038,22 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:138 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: 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:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3064,7 +3308,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:205 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3072,11 +3320,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3103,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3123,7 +3379,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:207 #: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3138,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3162,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3170,7 +3427,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3192,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:301 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:547 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:713 -#: src/components/moderation/ReportDialog/index.tsx:759 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3220,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:461 +#: src/screens/Messages/components/InviteLinkDialog.tsx:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3234,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3275,6 +3537,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3305,8 +3575,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3333,8 +3603,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3342,22 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:194 -#: src/components/dms/AfterReportDialog.tsx:197 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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/AfterReportDialog.tsx:150 -msgid "Delete Conversation" -msgstr "" - -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3366,11 +3633,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3378,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1615 msgid "Delete post" msgstr "" @@ -3397,17 +3664,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:189 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3438,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3474,13 +3741,13 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 msgid "Disable" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3488,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3501,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 msgid "Disable link" msgstr "" @@ -3514,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:455 msgid "Disable this invite link?" msgstr "" @@ -3527,9 +3794,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3540,19 +3807,19 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1396 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1640 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3576,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2486 msgid "Dismiss error" msgstr "" @@ -3609,6 +3877,10 @@ msgstr "" 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" @@ -3640,7 +3912,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3648,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3667,15 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 -#: src/components/dms/AfterReportDialog.tsx:144 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3691,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3703,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3725,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3753,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3789,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3804,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3813,19 +4102,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3834,7 +4123,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 msgid "Edit link settings" msgstr "" @@ -3852,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:495 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -3878,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -3891,7 +4184,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:494 +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Edit this group chat’s name" msgstr "" @@ -3903,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3937,7 +4231,7 @@ msgstr "" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -3972,8 +4266,8 @@ msgstr "" msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -3991,7 +4285,7 @@ msgstr "" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4004,13 +4298,12 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4057,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4109,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2585 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4151,23 +4444,23 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4183,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4204,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4243,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4255,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4288,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4297,13 +4587,17 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" @@ -4320,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 msgid "Failed to copy link" msgstr "" @@ -4329,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:101 msgid "Failed to create invite link" msgstr "" @@ -4342,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4360,24 +4655,24 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:124 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:343 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 msgid "Failed to enable invite link" msgstr "" @@ -4393,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:370 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4422,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4459,16 +4753,15 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:391 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:357 +#: src/screens/Messages/ConversationSettings/index.tsx:383 msgid "Failed to mute group chat" msgstr "" @@ -4477,22 +4770,22 @@ msgid "Failed to pin post" msgstr "" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4500,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:73 msgid "Failed to remove group chat member" msgstr "" @@ -4508,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:158 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4535,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4546,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:394 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:429 msgid "Failed to unlock group chat" msgstr "" @@ -4563,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4580,7 +4879,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4607,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4615,7 +4914,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4628,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4642,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4705,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4713,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4734,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4761,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4813,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4858,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4872,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -4882,7 +5183,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4910,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -4926,10 +5231,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -4943,12 +5248,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4961,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5031,11 +5333,16 @@ msgstr "" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5052,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 msgid "Generate invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 msgid "Generate new link" msgstr "" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5140,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2590 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5179,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "" @@ -5203,7 +5514,9 @@ msgid "Go back to previous step" msgstr "" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5213,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5238,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5250,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5262,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:255 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:251 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5286,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5306,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:383 +#: src/screens/Messages/ConversationSettings/index.tsx:412 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:350 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:338 +#: src/screens/Messages/ConversationSettings/index.tsx:364 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:89 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:378 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5387,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5412,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5424,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5445,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5488,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5497,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5519,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5543,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5572,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5586,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5618,19 +5954,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5679,7 +6011,6 @@ msgid "I have my own domain" msgstr "" #: src/components/dms/BlockedByListDialog.tsx:55 -#: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" msgstr "" @@ -5688,7 +6019,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5724,15 +6055,15 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5740,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5753,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5784,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5824,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5848,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5921,6 +6255,10 @@ msgstr "" 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 "" @@ -5930,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5948,6 +6290,11 @@ msgstr "" msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -5968,8 +6315,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 msgid "Invite Friends" msgstr "" @@ -5977,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 -#: src/screens/Messages/ConversationSettings/index.tsx:508 +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 msgid "Invite link disabled" msgstr "" @@ -6007,6 +6371,11 @@ msgstr "" 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 "" @@ -6041,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2505 msgid "Job ID: {0}" msgstr "" @@ -6050,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6057,6 +6431,16 @@ msgstr "" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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" @@ -6066,8 +6450,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1446 +#: src/view/com/composer/Composer.tsx:1456 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6076,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6110,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6141,7 +6530,7 @@ msgid "Latest" msgstr "" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6168,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6196,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6206,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6219,37 +6608,48 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:542 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 msgid "Leave" msgstr "" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" -#: src/components/dms/ConvoMenu.tsx:229 -#: src/components/dms/ConvoMenu.tsx:233 -#: src/components/dms/ConvoMenu.tsx:299 -#: src/components/dms/ConvoMenu.tsx:303 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:541 +#: src/screens/Messages/ConversationSettings/index.tsx:584 msgid "Leave this group chat" msgstr "" @@ -6258,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6286,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6305,11 +6713,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6317,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6336,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6368,11 +6768,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6458,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6504,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6554,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:520 +#: src/screens/Messages/ConversationSettings/index.tsx:562 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6591,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6621,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6646,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:241 -#: src/components/dms/ConvoMenu.tsx:245 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6685,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6720,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 msgctxt "action" msgid "Message" msgstr "" @@ -6730,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6772,19 +7170,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:651 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6797,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6809,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -6853,7 +7247,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -6862,7 +7256,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6887,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "" @@ -6908,7 +7302,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:526 msgid "Mute" msgstr "" @@ -6924,8 +7318,8 @@ msgstr "" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6936,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:260 #: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -6953,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:485 +#: src/screens/Messages/ConversationSettings/index.tsx:524 msgid "Mute this group chat" msgstr "" @@ -6981,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: 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:526 msgid "Muted" msgstr "" @@ -6999,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7021,6 +7419,10 @@ msgstr "" 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" @@ -7063,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:345 -#: src/components/moderation/ReportDialog/index.tsx:362 +#: 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 "" @@ -7076,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7087,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:107 -#: src/components/dms/dialogs/NewChatDialog.tsx:117 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 msgid "New chat with {0}" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 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 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7130,26 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 -#: src/components/dms/InitiateChatFlow.tsx:715 -#: src/components/dms/InitiateChatFlow.tsx:743 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#. 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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7180,16 +7587,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7215,8 +7622,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7237,6 +7644,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7274,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7288,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7306,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7315,7 +7726,7 @@ msgstr "" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "" @@ -7331,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7352,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7388,8 +7799,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7399,8 +7810,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7462,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7475,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "" @@ -7501,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "" @@ -7554,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "" @@ -7576,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:658 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7601,27 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7630,6 +8037,26 @@ msgstr "" 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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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 @@ -7640,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -7648,6 +8085,10 @@ msgstr "" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7657,7 +8098,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7665,12 +8106,17 @@ msgstr "" msgid "Open camera" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 msgid "Open chat member options for {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7684,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2145 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7705,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:408 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7735,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7762,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:409 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7775,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "" @@ -7783,7 +8250,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7803,22 +8270,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:302 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:288 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7835,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7847,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7864,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -7940,12 +8416,14 @@ msgstr "" msgid "Our blog post" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:88 -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" @@ -7953,14 +8431,15 @@ msgstr "" msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8011,34 +8490,34 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 msgid "People I follow can request to join" msgstr "" @@ -8079,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8095,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8109,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8179,7 +8662,7 @@ msgstr "" msgid "Please choose your password." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8187,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8208,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8228,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8236,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8249,7 +8732,7 @@ msgstr "" msgid "Please enter your invite code." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8266,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" @@ -8301,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8309,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8326,7 +8813,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1793 msgctxt "action" msgid "Post" msgstr "" @@ -8346,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1791 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1455 msgid "Post anyway" msgstr "" @@ -8360,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8397,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 msgid "Post link" msgstr "" @@ -8434,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8448,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8468,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:349 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8479,7 +8966,7 @@ msgstr "" msgid "Press to view followers of this account that you also follow" msgstr "" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8502,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8529,15 +9015,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2579 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2581 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8545,10 +9031,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8556,6 +9042,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8578,39 +9065,39 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1777 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1772 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1761 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1766 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:140 @@ -8622,13 +9109,10 @@ msgid "QR code has been downloaded!" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8637,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8654,12 +9138,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8671,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:413 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 msgid "Re-enable link" msgstr "" @@ -8688,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8707,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8755,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8784,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8806,6 +9304,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8821,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:231 msgid "Remove {displayName} from this group chat" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8834,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8857,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8872,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8902,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8925,7 +9431,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -8952,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:224 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:222 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -8978,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9032,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "" @@ -9047,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1789 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9068,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9080,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:533 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 msgid "Report" msgstr "" @@ -9100,21 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:287 -#: src/components/dms/ConvoMenu.tsx:291 -#: src/components/dms/ReportConversationPrompt.tsx:17 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:265 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9123,12 +9623,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9141,12 +9641,15 @@ msgstr "" msgid "Report starter pack" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:85 -#: src/components/dms/AfterReportDialog.tsx:177 +#: 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 "" @@ -9154,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:532 +#: src/screens/Messages/ConversationSettings/index.tsx:576 msgid "Report this group chat" msgstr "" @@ -9163,7 +9666,7 @@ msgid "Report this list" msgstr "" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9197,10 +9700,6 @@ msgstr "" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9223,23 +9722,27 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9247,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9269,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9314,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9332,17 +9864,18 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:299 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 @@ -9356,25 +9889,25 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:296 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9395,7 +9928,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:207 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9420,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1408 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1410 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9459,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9475,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9501,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9517,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9603,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9618,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9700,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9769,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9791,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:434 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9845,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9862,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9876,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9893,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:824 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9901,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9915,7 +10460,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -9956,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -9971,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10020,16 +10565,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 #: src/components/StarterPack/QrCodeDialog.tsx:195 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "" @@ -10038,16 +10586,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10055,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10065,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10083,8 +10641,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10092,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10108,16 +10666,16 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10138,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10160,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10187,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10211,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10238,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10270,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:213 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10278,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:212 +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 "" @@ -10289,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10300,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10332,7 +10900,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1453 msgid "Skip empty posts?" msgstr "" @@ -10346,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10354,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10403,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10428,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:110 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/JoinRequests.tsx:87 msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:291 +#: 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 @@ -10458,11 +11031,11 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:239 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10505,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:123 +#: 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:191 msgid "Start a new chat" msgstr "" @@ -10523,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:779 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10595,12 +11173,12 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10612,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "" @@ -10625,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:512 -#: src/components/moderation/ReportDialog/index.tsx:573 -#: src/components/moderation/ReportDialog/index.tsx:580 +#: 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 "" @@ -10636,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10673,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:108 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10711,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10721,12 +11303,20 @@ msgstr "" 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10735,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10757,11 +11347,15 @@ msgstr "" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10787,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10857,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -10872,7 +11484,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "" @@ -10914,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -10982,6 +11594,11 @@ msgstr "" 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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -10990,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11034,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:499 msgid "There is no invite link for this group chat." msgstr "" @@ -11048,10 +11665,13 @@ 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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11059,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11069,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11094,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11154,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11187,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" @@ -11196,7 +11824,7 @@ msgstr "" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11204,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11243,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:128 +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 "" @@ -11251,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11289,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11301,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11310,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11343,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:624 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:620 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11367,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11383,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:130 +#: src/screens/Messages/ConversationSettings/index.tsx:151 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "This screen is only available for group conversations." msgstr "" @@ -11407,7 +12066,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/features/liveNow/index.tsx:200 +#: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." msgstr "" @@ -11423,15 +12082,23 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: 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 +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 "" @@ -11476,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11499,7 +12166,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11525,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11534,10 +12201,6 @@ msgstr "" msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." msgstr "" -#: src/components/dms/ReportConversationPrompt.tsx:19 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" - #: src/components/dms/DateDivider.tsx:27 msgid "Today" msgstr "" @@ -11575,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11596,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11631,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11640,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:167 +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 "" @@ -11692,6 +12369,18 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" msgstr "" @@ -11712,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:662 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "" @@ -11758,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11780,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11793,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:496 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11805,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11825,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:519 +#: src/screens/Messages/ConversationSettings/index.tsx:561 msgid "Unlock this group chat" msgstr "" @@ -11860,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:265 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -11876,12 +12562,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:484 +#: src/screens/Messages/ConversationSettings/index.tsx:523 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11895,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11917,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -11951,14 +12637,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1542 msgid "Unsupported video type: {mimeType}" 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" @@ -11968,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 #: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 msgid "Update invite link" msgstr "" @@ -11986,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12001,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12019,39 +12717,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2572 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2574 msgid "Uploading video..." msgstr "" @@ -12094,7 +12793,8 @@ msgstr "" msgid "user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12131,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12175,12 +12875,12 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12197,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12224,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12236,7 +12936,7 @@ 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12269,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12300,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12339,7 +13039,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2592 msgid "Video uploaded" msgstr "" @@ -12352,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1136 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:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12375,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12387,20 +13087,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 +#: src/components/dms/MessagesListHeader.tsx:111 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 msgid "View {displayName}’s profile" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12423,10 +13118,18 @@ msgstr "" msgid "View full thread" msgstr "" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42 +#: 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:56 msgid "View information about these labels" msgstr "" @@ -12442,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1131 msgid "View post" msgstr "" @@ -12459,10 +13162,10 @@ msgstr "" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12470,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:506 +#: src/screens/Messages/ConversationSettings/index.tsx:548 msgid "View the invite link for this group chat" msgstr "" @@ -12483,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12516,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12560,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12585,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:111 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 msgid "We couldn’t load this conversation’s settings" msgstr "" @@ -12635,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -12664,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12699,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12734,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "" @@ -12785,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12798,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 msgid "Who can join this group chat and how" msgstr "" @@ -12807,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12827,6 +13534,7 @@ 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 "" @@ -12858,15 +13566,19 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:49 +#: 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:1320 +#: src/view/com/composer/Composer.tsx:1424 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12875,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1602 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1504 msgid "Write your reply" msgstr "" @@ -12893,7 +13605,8 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:129 +#: src/screens/Messages/ConversationSettings/index.tsx:150 +#: src/screens/Messages/JoinRequests.tsx:109 msgid "Wrong kind of conversation" msgstr "" @@ -12920,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -12945,7 +13658,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:635 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -12979,11 +13692,11 @@ msgstr "" msgid "You are Live" msgstr "" -#: src/features/liveNow/index.tsx:368 +#: src/features/liveNow/index.tsx:371 msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "" @@ -12991,7 +13704,7 @@ msgstr "" msgid "You are not following anyone yet" msgstr "" -#: src/features/liveNow/index.tsx:312 +#: src/features/liveNow/index.tsx:315 msgid "You are now live!" msgstr "" @@ -13032,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13054,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13070,9 +13792,9 @@ msgstr "" 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13081,6 +13803,15 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13108,6 +13839,10 @@ msgstr "" msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13177,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1419 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13235,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13244,10 +13983,11 @@ msgid "You must be following at least seven other people to generate a starter p msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13255,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13265,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13279,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13289,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13301,12 +14050,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13340,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13374,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13386,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -13410,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "" @@ -13430,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "" @@ -13438,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13472,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13493,7 +14254,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13522,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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 @@ -13534,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1127 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1124 msgid "Your posts were sent" msgstr "" @@ -13546,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13559,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1126 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:523 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13572,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1454 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 25ad6aa232..f2e673818c 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(एम्बेडेड सामग्री मौजूद है)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# पसंद} other {# पसंद}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, other {# मिनट}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# महीना} other {# महीने}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, other {# सेकंड}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "<0><1>टेक्स्ट और टैगमें{0}" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0} का अवतार" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}मि" msgid "{0}s" msgstr "{0}से" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {मिनट}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} और <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} ने आपको वापस फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} और {additionalAuthorsCount, plural, one {{formattedAuthorsCount} अन्य} other {{formattedAuthorsCount} अन्यों}} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "ने आपको फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} ने आपको वापस फ़ॉलो किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ने आपके कस्टम फ़ीड को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ने आपके पोस्ट को पसंद किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ने आपके पोस्ट को रीपोस्ट किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} ने आपके स्टार्टर पैक से साइन अप किया" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} फ़ॉलोइंग" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} को संदेश भेजा नहीं जा सकता" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, और {2, plural, other {# अन्य}} आ #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {फ़ॉलोअर} other {फ़ॉलोअर}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {फ़ॉलोइंग} other {फ़ॉलोइंग}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {पसंद}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {क्वोट}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {रीपोस्ट}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} सदस्य" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "सुलभता" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "सुलभता के सेटिंग" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "सुलभता के सेटिंग" msgid "Account" msgstr "खाता" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "खाता अवरुद्ध" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "खाता फ़ॉलो किया गया" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "जल्द पहुँच से खाता हटाया गया" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "खाता अनअवरुद्ध" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "खाता अनफ़ॉलो किया गया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "खाता अनम्यूट किया गया" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "जोड़ें" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "विवरण जोड़ें (वैकल्पिक)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "एक और पोस्ट जोड़ें" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "ऐप पासवर्ड जोड़ें" msgid "Add App Password" msgstr "ऐफ पासवर्ड जोड़ें" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "लोगों को जोड़ें" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "सभी" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "आपके सीधे संदेशों तक पहुँच msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "@{0} द्वारा पहले से साइन इन किया गया है" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "वैकल्पिक पाठ" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "वैकल्पिक पाठ अंधे और कम दृश्य लोगों के लिए छवियों का वर्णन करता है, और सब को संदर्भ देने में मदद करता है।" @@ -1387,7 +1486,7 @@ msgstr "त्रुटि हुई" msgid "An error occurred" msgstr "त्रुटि हुई" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "वीडियो कंप्रेशन के दौरान त्रुटि हुई।" @@ -1421,7 +1520,8 @@ msgstr "वीडियो लोड करते समय में त्र msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "QR कोड सहेजने में त्रुटि हुई!" @@ -1432,11 +1532,11 @@ msgstr "QR कोड सहेजने में त्रुटि हुई!" msgid "An error occurred while trying to follow all" msgstr "सभी को फ़ॉलो करते समय त्रुटि हुई" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "बातचीत खोलते समय समस्या हु #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "कोई समस्या हुई, फिर से प्रयास करें।" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "ऐप पासवर्ड नाम में कम से कम 4 msgid "App passwords" msgstr "ऐप पासवर्ड" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ऐप पासवर्ड" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "अपील जमा हुई" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "{0} से पुरालेखित" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "पुरालेखित पोस्ट" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "क्या आप सच में ऐप पासवर्ड \"{0}\" को मिटाना चाहते हैं?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "क्या आप सच में इस स्टार्टर प msgid "Are you sure you want to discard your changes?" msgstr "क्या आप सच में अपने बदलाव ख़ारिज करना चाहते हैं?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "क्या आप सच में इस बातचीत को छोड़ना चाहते हैं? आपके संदेश आपके लिए मिट जाएँगे, पर दूसरे प्रतिभागी के लिए नहीं।" +#: src/components/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 "क्या आप सच में इसे अपने फ़ीड से हटाना चाहते हैं?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "क्या आप सच में इस पोस्ट को ख़ारिज करना चाहेंगे?" @@ -1724,8 +1838,8 @@ msgstr "कला" msgid "Artistic or non-erotic nudity." msgstr "कलात्मक या गैर-कामुक नग्नता।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "वीडियो और GIF स्वतः चलाएँ" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "वापस" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "स्टार्टर पैक बनाने से पहले, आपको अपना ईमेल सत्यापित करना होगा।" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "जन्मदिन" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "अवरुद्ध करें" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "खाता अवरुद्ध करें" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "अवरोध की सूची" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "खाता ब्लॉक करें?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "उपयोगकर्ता को अवरुद्ध करें" @@ -1946,9 +2057,9 @@ msgstr "उपयोगकर्ता को अवरुद्ध करें #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "उपयोगकर्ता को अवरुद्ध करें" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "अवरुद्ध" @@ -1964,14 +2075,12 @@ msgstr "अवरुद्ध" msgid "Blocked accounts" msgstr "अवरुद्ध किए गए खाते" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "अवरुद्ध किए गए खाते" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "अवरुद्ध खाते आपके थ्रेड में जवाब नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते।" @@ -1987,7 +2096,7 @@ msgstr "अवरुद्ध करने पर भी यह लेबलक msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "अवरोधन सार्वजनिक है. अवरुद्ध खाते आपके थ्रेड्स में उत्तर नहीं दे सकते, आपका उल्लेख नहीं कर सकते, या अन्यथा आपसे संपर्क नहीं कर सकते।" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "अवरुद्ध करने पर भी आपके खाते पर लेबल लग सकता है, पर इससे यह खाता आपके थ्रेड में जवाब नहीं दे सकेगा या आपसे संपर्क नहीं कर सकेगा।" @@ -2000,7 +2109,7 @@ msgstr "ब्लॉग" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky दावा किए गए तिथि के प्रामाणिकता की पुष्टि नहीं कर सकता।" @@ -2029,7 +2138,7 @@ msgstr "Bluesky दोस्तों के साथ बेहतर है!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky आपके नेटवर्क से कुछ अनुश msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky लॉग आउट उपयोगकर्ताओं को आपके प्रोफ़ाइल और पोस्ट नहीं दिखाएगा। अन्य ऐप इस अनुरोध का पालन नहीं भी कर सकते हैं। इससे आपका खाता निजी नहीं होगा।" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "किताबें" 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" @@ -2137,24 +2254,34 @@ msgstr "व्यवसाय" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "{0} के द्वारा" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "<0>{0} के द्वार" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "खाता बनाने से आप <0>सेवा की शर msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "कैमरा" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "कैमरा" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "कैमरा" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "रद्द करें" @@ -2248,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "खोज रद्द करें" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "अवरुद्ध उपयोगकर्ता से संपर्क नहीं कर सकते" @@ -2264,7 +2400,7 @@ msgstr "अनुशीर्षक (.vtt)" msgid "Captions & alt text" msgstr "अनुशीर्षक और वैकल्पिक पाठ" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "हैंडल बदलें" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "बातचीत" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "बातचीत म्यूट किया गया" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "बातचीत सेटिंग" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "बातचीत सेटिंग" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "बातचीत अनम्यूट किया गया" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "इस रंग को अपना अवतार के रूप में चुनें" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "असफल संदेश को फिर से भेजने के लिए क्लिक करें" @@ -2594,28 +2745,30 @@ msgstr "असफल संदेश को फिर से भेजने क #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "असफल संदेश को फिर से भेजने क #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "बंद करें" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "सक्रिय डायलॉग बंद करें" @@ -2647,6 +2800,10 @@ msgstr "सक्रिय डायलॉग बंद करें" msgid "Close alert" msgstr "सूचना बंद करें" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "निचला ड्रॉयर बंद करो" @@ -2657,8 +2814,10 @@ msgstr "निचला ड्रॉयर बंद करो" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "डायलॉग बंद करें" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "छवि बंद करें" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "यह डायलॉग बंद करें" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "पासवर्ड अपडेट सूचना बंद करता है" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "उपयोगकर्ताओं की सूची को संक्षिप्त करें" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "किसी अधिसूचना के उपयोगकर्ताओं की सूची को संक्षिप्त करता है" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "कॉमिक" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "समुदाय दिशानिर्देश" @@ -2740,12 +2915,12 @@ msgstr "चुनौती पूरी करें" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "नया पोस्ट बनाएँ" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "जवाब लिखें" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "वीडियो कंप्रेस हो रहा है..." @@ -2780,7 +2955,7 @@ msgstr "<0>मॉडरेशन सेटिंग में व्यव msgid "Confirm" msgstr "पुष्टि करें" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "सहायता से संपर्क करें" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "सामाग्री और मीडिया" msgid "Content and media" msgstr "सामग्री और मीडिया" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "सामग्री और मीडिया" @@ -2889,7 +3064,7 @@ msgstr "संदर्भ मेनू पृष्ठभूमि, मेन #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "थ्रेड को जारी रखें..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "बातचीत मिटा दी गई" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "बातचीत मिटा दी गई" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "बिल्ड संस्कारण क्लिपबोर्ड पर कॉपी की गई" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "कॉपी की गई!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "कॉपी करें" @@ -2997,6 +3184,11 @@ msgstr "DID कॉपी करें" msgid "Copy host" msgstr "होस्ट कॉपी करें" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "सूची पर लिंक कॉपी करें" msgid "Copy link to post" msgstr "पोस्ट की लिंक कॉपी करें" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "संदेश पाठ कॉपी करें" @@ -3037,12 +3229,12 @@ msgstr "संदेश पाठ कॉपी करें" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "पोस्ट पाठ कॉपी करें" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR कोड कॉपी करें" @@ -3052,11 +3244,15 @@ msgstr "TXT रिकॉर्ड मूल्य कॉपी करें " #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "कॉपीराइट नीति" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "बातचीत छोड़ी नहीं जा सकी" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "फ़ीड लोड नहीं किया जा सका" @@ -3100,7 +3308,11 @@ msgstr "फ़ीड लोड नहीं किया जा सका" msgid "Could not load list" msgstr "सूची लोड नहीं किया जा सका" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "बातचीत म्यूट नहीं किया जा सका" @@ -3108,11 +3320,19 @@ msgstr "बातचीत म्यूट नहीं किया जा स msgid "Could not process your video" msgstr "आपका वीडियो प्रोसेस नहीं किया जा सका" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "बनाएँ" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "स्टार्टर पैक बनाएँ" @@ -3174,13 +3394,14 @@ msgstr "मेरे लिए स्टार्टर पैक बनाए #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "खाता बनाएँ" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "इसके बदले अवतार बनाएँ" @@ -3206,7 +3427,7 @@ msgstr "इसके बदले अवतार बनाएँ" msgid "Create another" msgstr "एक और बनाएँ" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "नया खाता बनाएँ" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "{0} के लिए शिकायत लिखें" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "{0} बनाया गया" @@ -3270,6 +3492,10 @@ msgstr "रचयिता को अवरुद्ध किया गया" msgid "Culture" msgstr "संस्कृति" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "अँधेरा थीम" msgid "Date of birth" msgstr "जन्मतिथि" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "डिफ़ॉल्‍ट" msgid "Default icons" msgstr "डिफ़ॉल्‍ट आइकॉन" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "अप्प पासवर्ड हटाएं" msgid "Delete app password?" msgstr "ऐप पासवर्ड मिटाएँ?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "बातचीत घोषणा रेकॉर्ड मिटाएँ" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "मेरे लिए मिटाएँ" @@ -3399,11 +3633,11 @@ msgstr "मेरे लिए मिटाएँ" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "संदेश मिटाएँ" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "मेरे लिए संदेश मिटाएँ" @@ -3411,9 +3645,9 @@ msgstr "मेरे लिए संदेश मिटाएँ" msgid "Delete my account" msgstr "मेरा खाता मिटाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "पोस्ट मिटाएँ" @@ -3430,17 +3664,17 @@ msgstr "स्टार्टर पैक मिटाएँ?" msgid "Delete this list?" msgstr "यह सूची मिटाएँ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "यह पोस्ट मिटाएँ?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "मिटाया गया" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "मिटाया गया खाता" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "विस्तृत वैकल्पिक पाठ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "क्वोट अलग करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "क्वोट पोस्ट अलग करें" @@ -3507,13 +3741,13 @@ msgstr "डायलॉग: चुनें कि इस पोस्ट से msgid "Dim" msgstr "मंद" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "ईमेल 2FA अक्षम करें" msgid "Disable haptic feedback" msgstr "कंपन फीडबैक अक्षम करें" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "अक्षम" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "ख़ारिज करें" msgid "Discard changes?" msgstr "बदलाव ख़ारिज करें?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "पोस्ट ख़ारिज करें?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "नए फ़ीड की खोज करें" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ख़ारिज करें" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "त्रुटि ख़ारिज करें" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "नग्नता शामिल नहीं है" msgid "Domain verified!" msgstr "डोमेन सत्यापित!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "हो गया" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "डायलॉग बंद करने के लिए दो बार दबाएँ" @@ -3737,19 +3981,14 @@ msgstr "डायलॉग बंद करने के लिए दो बा 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 "Bluesky डाउनलोड करें" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR फ़ाइल डाउनलोड करें " - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR फ़ाइल डाउनलोड करें " - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "अवधि:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "उदाहरण के लिए, राम" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "संपादित करें" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "अवतार संपादित करें" @@ -3847,19 +4102,19 @@ msgstr "अवतार संपादित करें" msgid "Edit Feeds" msgstr "फ़ीड संपादित करें" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "छवि संपादित करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "संपर्क सेटिंग संपादित करें" @@ -3868,7 +4123,16 @@ msgstr "संपर्क सेटिंग संपादित करें msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "मेरे फ़ीड संपादित करें" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "लोग संपादित करें" @@ -3912,12 +4171,12 @@ msgstr "पोस्ट संपर्क सेटिंग संपादि #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" @@ -3925,7 +4184,8 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे msgid "Edit starter pack" msgstr "स्टार्टर पैक संपादित करें" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "संपादित करें कि कौन जवाब दे सकता है" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "अपना स्टार्टर पैक संपादित करें" @@ -3971,7 +4231,7 @@ msgstr "ईमेल" msgid "Email Resent" msgstr "ईमेल फिर से भेजा गया" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "इस पोस्ट को अपने वेबसाइट मे msgid "Embedded video player" msgstr "एम्बेडेड वीडियो प्लेयर" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "सक्षम करें" @@ -4025,7 +4285,7 @@ msgstr "वयस्क सामग्री सक्षम करें" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "बाहरी मीडिया सक्षम करें" msgid "Enable media players for" msgstr "इनके लिए मीडिया प्लेयर सक्षम करें" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "पासवर्ड दर्ज करें" msgid "Enter a word or tag" msgstr "शब्द या टैग दर्ज करें" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "त्रुटि" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ msgstr "सब जवाब दे सकते हैं" msgid "Everybody can reply to this post." msgstr "सब इस पोस्ट का जवाब दे सकते हैं" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "सब" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "सब" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "सब" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "आपके फ़ॉलो किए गए उपयोगकर् msgid "Exit fullscreen" msgstr "फ़ुलस्क्रीन से निकलें" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "उपयोगकर्ताओं की सूची बढ़ाताा है" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "जिस पोस्ट का जवाब दे रहे हैं उसे बढ़ाता या संक्षिप्त करता है" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "URI के रिकॉर्ड पर रिसॉल्व होने की अपेक्षा थी" @@ -4277,10 +4536,10 @@ msgstr "अश्लील या संभावित व्यथित क msgid "Explicit sexual images." msgstr "अश्लील यौन छवि" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "बाहरी मीडिया प्राथमिकताएँ" @@ -4331,18 +4587,22 @@ msgstr "बाहरी मीडिया प्राथमिकताएँ" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "हैंडल बदलने में असफल। कृपया फिर से प्रयास करें।" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "ऐप पासवर्ड बनाने में असफल। कृपया फिर से प्रयास करें।" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "स्टार्टर पैक बनाने मे असफल" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "संदेश मिटाने में असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "पोस्ट मिटाने में असफल, फिर से प्रयास करें" @@ -4394,24 +4655,24 @@ msgstr "पोस्ट मिटाने में असफल, फिर स msgid "Failed to delete starter pack" msgstr "स्टार्टर पैक मिटाने में असफल" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "फ़ीड प्राथमिकताएँ लोड करने में असफल" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "अनुशंसित फ़ीड लोड करने में msgid "Failed to load suggested follows" msgstr "अनुशंसित फ़ॉलो लोड करने में असफल" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "पोस्ट को पिन करने में असफल" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "अपील जमा करने में असफल, फिर से प्रयास करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "थ्रेड म्यूट स्थिति बदलने में असफल, फिर से प्रयास करें" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "फ़ीड अपडेट करने में असफल" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "सेटिंग अपडेट करने में असफल" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "फ़ीड" @@ -4649,7 +4914,7 @@ msgstr "फ़ीड" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "{0} द्वारा फ़ीड" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "फ़ीड मेनू" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "प्रतिक्रिया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "फ़ीड" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "अंतिम रूप दिया जा रहा" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "फ़ॉलो करने के लिए खाते खोजें" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "फ़ॉलो करने के लिए लोग खोजें" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "फ़ॉलो करें" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} को फ़ॉलो करें" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "वापस फ़ॉलो करें" @@ -4916,7 +5183,7 @@ msgstr "वापस फ़ॉलो करें" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "<0>{0} और <1>{1} फ़ॉलो करते हैं" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1}, और {2, plural, one {# अन्य} other {# अन्य}} फ़ॉलो करते हैं" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "@{0} के फ़ॉलोअर जिन्हें आप जानते हैं" @@ -4960,10 +5231,10 @@ msgstr "फ़ॉलोअर जिन्हें आप जानते ह #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "फ़ॉलोइंग" @@ -4977,12 +5248,12 @@ msgstr "फ़ॉलोइंग" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "{0} को फ़ॉलो करते हैं" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "फ़ॉलोइंग फ़ीड प्राथमिकताएँ" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "आपको फ़ॉलो करते हैं" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "आपको फ़ॉलो करते हैं" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "फ़ॉन्ट" @@ -5065,11 +5333,16 @@ msgstr "पासवर्ड भूल गए?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "<0/> से" msgid "Generate a starter pack" msgstr "स्टार्टर पाक उत्पन्न करें" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "सहायता लें" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "अपने प्रोफ़ाइल को एक चेहरा दें" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "वापस जाएँ" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "पिछले चरण पर वापस जाएँ" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "होम जाएँ" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "होम जाएँ" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "होम जाएँ" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "{0} के साथ बातचीत पर जाएँ" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "अगले पर जाएँ" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "उपयोगकर्ता प्रोफ़ाइल पर जाएँ" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "हैंडल बहुत अधिक लंबा है। कृपया कुछ छोटा चुनें।" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "हैशटैग" @@ -5458,8 +5756,8 @@ msgstr "हैशटैग {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "सहायता" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "तस्वीर अपलोड कर के या अवतार बनाकर लोगों को जताएँ की आप एक रोबोट नहीं हैं।" @@ -5522,7 +5820,7 @@ msgstr "छिपाई गई सूची" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "छिपाई गई सूची" msgid "Hide" msgstr "छिपाएँ" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "छिपाएँ" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "मेरे लिए जवाब छिपाएँ" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "यह पोस्ट छिपाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "रुझान छिपाएँ?" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "उपयोगकर्ता सूची छुपाएँ" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "अरे, लगता है हमें यह डेटा लो msgid "Hmmmm, we couldn't load that moderation service." msgstr "अरे, हम उस मॉडरेशन सेवा को लोड नहीं कर सके।" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "कृपया रुकिए। हम धीरे-धीरे वीडियो तक पहुँच दे रहें हैं, और आप अभी भी पंक्ति में हैं। बाद में प्रयास करें!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "होम फ़ीड" @@ -5721,7 +6019,7 @@ msgstr "मैं समझा" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "यदि वैकल्पिक पाठ लंबा है, बड़े आकार का वैकल्पिक पाठ लागू कर्ता है" @@ -5757,15 +6055,15 @@ msgstr "यदि आप इस सूची को मिटते हैं, msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "यदि आपका अपना डोमेन है, आप उसे अपने हैंडल के तौर पर उपयोग कर सकते हैं। इसे आप ख़ुद अपने पहचान की पुष्टि कर सकते हैं। <0>यहाँ अधिक जानें।" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "यदि आप अपना हैंडल या ईमेल बदलने का प्रयास कर रहे हैं, ऐसा निष्क्रिय करने से पहले करें।" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "छवि" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "अमान्य 2FA पुष्टिकरण कोड" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "अमान्य सत्यापन कोड" @@ -6001,8 +6315,15 @@ msgstr "आमंत्रण कोड" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "आमंत्रण कोड स्वीकार नहीं हुआ। देख लें कि आपने उसे सही से दर्ज किया है और फिर से प्रयास करें।" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "काम आईडी: {0}" @@ -6083,6 +6419,11 @@ msgstr "काम आईडी: {0}" msgid "Jobs" msgstr "काम" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "काम" msgid "Join Bluesky" msgstr "Bluesky में शामिल हों" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "बातचीत में शामिल हों" msgid "Journalism" msgstr "पत्रकारिता" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "आपके खाते पर लेबल" msgid "Labels on your content" msgstr "आपकी सामग्री पर लेबल" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "भाषा सेटिंग" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "नए" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "इस चेतावनी के बारे में अधिक जानें" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Bluesky पर क्या सार्वजनिक है, इसके के बारे में अधिक जानें" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "अधिक जानें।" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "निकलें" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "बातचीत से निकलें" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "बातचीत से निकलें" @@ -6284,13 +6642,14 @@ msgstr "बातचीत से निकलें" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "बातचीत से निकलें" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Bluesky से बाहर जा रहे हैं" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "बाक़ी" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "रोशन" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "पसंद करें ({0, plural, one {# पसंद} other {# पसंद}})" @@ -6346,11 +6713,7 @@ msgstr "10 पोस्ट पसंद करें" msgid "Like 10 posts to train the Discover feed" msgstr "डिस्कवर फ़ीड को प्रशिक्षित करने के लिए 10 पोस्ट पसंद करें" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "इस फ़ीड को पसंद करें" @@ -6358,8 +6721,8 @@ msgstr "इस फ़ीड को पसंद करें" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "इन्होनें पसंद किया" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# उपयोगकर्ता} other {# उपयोगकर्ताओं}} ने पसंद किया" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "पसंद" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "इस पोस्ट पर पसंद" @@ -6409,11 +6768,11 @@ msgstr "इस पोस्ट पर पसंद" msgid "Linear" msgstr "रेखीय" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "सूची" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "सूची अनम्यूट की गई" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "सूची" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "लोड हो रहा है..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "लॉग" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social द्वारा लोगो" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social द्वारा लोगो" @@ -6662,7 +7021,7 @@ msgstr "लगता है आप फ़ॉलोइंग फ़ीड भूल msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "अपने म्यूट किए गए शब्द और टैग प्रबंधित करें" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "पढ़ा हुआ मार्क करें" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "मीडिया जो कुछ दर्शकों के लिए भयावह या अनुचित हो सकता है" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "उल्लेखित उपयोगकर्ता" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "उल्लेख" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "संदेश {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "संदेश मिटाई गई" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "संदेश मिटाई गई" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "संदेश बहुत लंबा है" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "संदेश" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "मॉडरेशन" @@ -6894,7 +7247,7 @@ msgstr "मॉडरेशन सूची अपडेट की गई" msgid "Moderation lists" msgstr "मॉडरेशन सूचियाँ" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "मॉडरेशन सूचियाँ" @@ -6903,7 +7256,7 @@ msgstr "मॉडरेशन सूचियाँ" msgid "moderation settings" msgstr "मॉडरेशन सेटिंग" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "मॉडरेशन स्थिति" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "अधिक विकल्प" @@ -6949,7 +7302,7 @@ msgstr "सिनेमा" msgid "Music" msgstr "संगीत" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "म्यूट" @@ -6965,8 +7318,8 @@ msgstr "म्यूट" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "खाता म्यूट करें" msgid "Mute accounts" msgstr "खातों को म्यूट करें" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "बातचीत म्यूट करें" @@ -6994,7 +7347,7 @@ msgstr "सूची म्यूट करें" msgid "Mute these accounts?" msgstr "इन खातों को म्यूट करें?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "इस शब्द को केवल टैग में म्यू msgid "Mute this word until you unmute it" msgstr "इस शब्द को म्यूट करें जब तक आप इसे अनम्यूट नहीं करते" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "थ्रेड म्यूट करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "शब्द और टैग म्यूट करें" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "म्यूट किए गए खाते" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "म्यूट किए गए खाते" @@ -7062,6 +7419,10 @@ msgstr "म्यूट किए गए शब्द और टैग" 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "अगले स्क्रीन पर जाता है" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "आपके प्रोफ़ाइल पर जाता है" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "छोड़ें, मेरे लिए हैंडल बनाएँ" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "नया" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "नया बातचीत" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "नया पोस्ट" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "नया पोस्ट" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "समाचार" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "अगला" msgid "Next image" msgstr "अगली छवि" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "कोई फीड नहीं मिली। कुछ और खोजने का प्रयास करें।" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "{0} को और फ़ॉलो नहीं कर रहे" @@ -7362,7 +7726,7 @@ msgstr "{0} को और फ़ॉलो नहीं कर रहे" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "अभी तक कोई संदेश नहीं" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "अभी तक कोई अधिसूचनाएँ नहीं!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "केवल लेखक ही इस पोस्ट को क्वोट कर सकता है।" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "कोई परिणाम नहीं" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "कोई परिणाम नहीं" @@ -7446,8 +7810,8 @@ msgstr "कोई परिणाम नहीं" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "कोई परिणाम नहीं मिले" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "ग़ैर-यौन नग्नता" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "नहीं मिला" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "साझा करने के बारे में" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "अधिसूचना सेटिंग" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "अधिसूचना ध्वनि" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "अधिसूचनाएँ" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "अभी" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "कुछ नहीं" @@ -7623,9 +7974,10 @@ msgstr "ठीक" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "ठीक है" @@ -7648,35 +8000,35 @@ msgstr "<0><1/><2><3/>" msgid "Onboarding reset" msgstr "ज्ञानप्राप्ति रीसेट" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "एक या अधिक GIF के विवरण नहीं हैं।" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "एक या अधिक छवियों पर वैकल्पिक पाठ नहीं है।" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "एक या अधिक वीडियो के विवरण नहीं हैं।" @@ -7685,6 +8037,26 @@ msgstr "एक या अधिक वीडियो के विवरण न msgid "Only {0} can reply." msgstr "केवल {0} जवाब दे सकता है" +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "केवल छवि फाइलें समर्थित हैं" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "केवल वेबवीटीटी (.vtt) फ़ाइलें समर्थित हैं" @@ -7703,6 +8085,10 @@ msgstr "केवल वेबवीटीटी (.vtt) फ़ाइलें स 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "अरे, कोई गड़बड़ हुई!" msgid "Oops!" msgstr "अरे!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "अवतार निर्माता खोलें" @@ -7720,12 +8106,17 @@ msgstr "अवतार निर्माता खोलें" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "बातचीत विकल्प खोलें" @@ -7739,16 +8130,16 @@ msgstr "ड्रॉअर मेनू खोलें" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "इमोजी चयन खोलें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "फ़ीड विकल्प मेनू खोलें" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "{niceUrl} का लिंक खोलें" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "पोस्ट विकल्प मेनू खोलें" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "कहानी की किताब का पृष्ठ खोल msgid "Open system log" msgstr "सिस्टम लॉग खोलें" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "आपके पोस्ट पर सामग्री चेता msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "डीबग प्रविष्टि के लिए अतिरिक्त विवरण खोलता है" @@ -7838,7 +8250,7 @@ msgstr "डीबग प्रविष्टि के लिए अतिर msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "उपकरण कर कैमरा खोलता है" @@ -7858,22 +8270,24 @@ msgstr "रचयिता खोलता है" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "नया Bluesky खाता बनाने का साधन खोलता है" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "अपने मौजूदा Bluesky खाते में साइन इन करने का साधन खोलता है" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "पासवर्ड रीसेट फ़ॉर्म खोलें" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "यह प्रोफ़ाइल खोलता है" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "हमारे मॉडरेटर ने शिकायतें देखी और Bluesky पर आपकी बातचीत तक पहुँच को अक्षम करने का निर्णय लिया।" @@ -8010,14 +8431,15 @@ msgstr "हमारे मॉडरेटर ने शिकायतें msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "पृष्ठ नहीं मिला" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "वीडियो रोकें" msgid "People" msgstr "लोग" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "@{0} द्वारा फ़ॉलो किए गए लोग" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "@{0} को फ़ॉलो करते लोग" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "फ़ोटोग्राफ़ी" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "फ़ीड पिन करें" @@ -8152,12 +8578,12 @@ msgstr "फ़ीड पिन करें" msgid "Pin to home" msgstr "होम में पिन करें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "होम में पिन करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "अपने प्रोफ़ाइल में पिन करें" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "पिन किया गया" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "होम में {0} पिन किया गया" @@ -8236,7 +8662,7 @@ msgstr "कृपया अपना हैंडल चुनें" msgid "Please choose your password." msgstr "कृपया अपना पासवर्ड चुनें" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "कृपया सत्यापन कैपचा समाप्त करें" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "कृपया अपना ईमेल दर्ज करें।" msgid "Please enter your invite code." msgstr "कृपया अपना ईमेल दर्ज करें।" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "कृपया व्याख्या करें कि क्यों आपको लगता है {0} ने यह लेबल ग़लती से लगाई" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "कृपया व्याख्या करें कि क्यों आपको लगता है कि आपके बातचीत ग़लती से अक्षम की गई" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "कृपया @{0} के रूप में साइन इन करें" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "राजनीति" msgid "Porn" msgstr "अश्लील" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "पोस्ट करें" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "सभी पोस्ट करें" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} द्वारा पोस्ट" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "पोस्ट मिटाया गया" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "पोस्ट अपलोड करने में असफल। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" @@ -8454,18 +8884,22 @@ msgstr "पोस्ट आपके द्वारा छिपाया ग msgid "Post interaction settings" msgstr "पोस्ट संपर्क सेटिंग" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "पोस्ट को उनके पाठ, उनके टैग, msgid "Posts hidden" msgstr "पोस्ट छिपाए गए" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "फिर कनेक्ट करने का प्रयास करने के लिए दबाएँ" -#: src/components/Error.tsx:61 +#: 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 "फिर प्रयास करने के लिए दबाएँ" @@ -8536,7 +8966,7 @@ msgstr "फिर प्रयास करने के लिए दबाए msgid "Press to view followers of this account that you also follow" msgstr "इस खाते के फ़ॉलोअर देखने के लिए दबाएँ जिन्हें आप भी फ़ॉलो करते हैं" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "गोपनीयता" msgid "Privacy and security" msgstr "गोपनियता और सुरक्षा" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "गोपनियता और सुरक्षा" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "गोपनीयता नीति" @@ -8586,15 +9015,15 @@ msgstr "गोपनीयता नीति" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "वीडियो प्रसंस्करण हो रहा है..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "प्रसंस्करण हो रहा है..." @@ -8602,10 +9031,10 @@ msgstr "प्रसंस्करण हो रहा है..." msgid "profile" msgstr "प्रोफ़ाइल" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "प्रोफ़ाइल" @@ -8613,6 +9042,7 @@ msgstr "प्रोफ़ाइल" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR कोड आपके क्लिपबोर्ड में कॉपी की गई!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR कोड डाउनलोड की गई!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR कोड आपके कैमरा रोल में सहेजी गई!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "क्वोट पोस्ट करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "क्वोट पोस्ट को फिर जोड़ा गया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "क्वोट पोस्ट को सफलतापूर्वक अलग किया गया" @@ -8711,12 +9138,12 @@ msgstr "क्वोट पोस्ट अक्षम किए गए" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "क्वोट" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "इस पोस्ट के क्वोट" @@ -8728,16 +9155,16 @@ msgstr "दर सीमा से अधिक - आपने अपना ह msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "अनुशंसित" msgid "Reconnect" msgstr "फिर कनेक्ट करें" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "बातचीत फिर लोड करें" @@ -8863,6 +9304,8 @@ msgstr "बातचीत फिर लोड करें" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "स्टार्टर पैक से {displayName} को हटाएँ" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "खाता हटाएँ" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "अटैचमेंट हटाएँ" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "अवतार हटाएँ" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "बैनर हटाएँ" @@ -8914,8 +9362,9 @@ msgstr "बैनर हटाएँ" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "एंबेड हटाएँ" @@ -8929,12 +9378,12 @@ msgstr "फ़ीड हटाएँ" msgid "Remove feed?" msgstr "फ़ीड हटाएँ?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "छवि हटाएँ" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "रिपोस्ट हटाएँ" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "लेखक द्वारा हटाया गया" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "आपके द्वारा हटाया गया" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "जवाब" @@ -9104,14 +9552,14 @@ msgstr "जवाब अक्षम" msgid "Replies to this post are disabled." msgstr "इस पोस्ट पर जवाब अक्षम है" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "जवाब दें ({0, plural, one {# जवाब} other {# जवाब}})" @@ -9125,10 +9573,6 @@ msgstr "जवाब थ्रेड लेखक द्वारा छिप msgid "Reply Hidden by You" msgstr "जवाब आपके द्वारा छिपाया गया" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "जवाब सेटिंग थ्रेड का लेखक चुनता है" @@ -9137,18 +9581,18 @@ msgstr "जवाब सेटिंग थ्रेड का लेखक च msgid "Reply sorting" msgstr "जवाब क्रम" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "जवाब दृश्यता अपडेट की गई" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "जवाब सफलतापूर्वक छिपाई गई" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "शिकायत करें" @@ -9157,20 +9601,20 @@ msgstr "शिकायत करें" msgid "Report account" msgstr "खाते की शिकायत करें" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "शिकायत डायलॉग" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "फ़ीड की शिकायत करें" @@ -9179,12 +9623,12 @@ msgstr "फ़ीड की शिकायत करें" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "संदेश की शिकायत करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "पोस्ट की शिकायत करें" @@ -9199,8 +9643,8 @@ msgstr "स्टार्टर पैक की शिकायत करे #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "इस फ़ीड की शिकायत करें" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "इस सूची की शिकायत करें" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "रीपोस्ट करें" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "रीपोस्ट करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "आपने रीपोस्ट किया" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "इस पोस्ट के रीपोस्ट" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "इस प्रदाता के लिए आवश्यक" msgid "Required in your region" msgstr "आपके क्षेत्र में आवश्यक" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "ज्ञानप्राप्ति स्थिति को री msgid "Reset password" msgstr "पासवर्ड रीसेट करें" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "पिछली क्रिया का फिर से प्रय #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "पिछली क्रिया का फिर से प्रय msgid "Retry" msgstr "फिर प्रयास करें" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "पिछले पृष्ठ पर वापस जाता है" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "बदलाव सहेजें" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "छवि सहेजें" msgid "Save new handle" msgstr "नया हैंडल सहेजें" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR कोड सहेजें" @@ -9518,13 +9994,13 @@ msgstr "QR कोड सहेजें" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "मेरे फ़ीड में सहेजें" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "सहेजे गए फ़ीड" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "आपके फ़ीड में सहेजा गया" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "नमस्ते कहें!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "विज्ञान" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "ऊपर जाएँ" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "खोजें" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "प्रोफ़ाइल खोजें" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "रंग चुनें" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "GIF चुनें" msgid "Select GIF \"{0}\"" msgstr "\"{0}\" GIF चुनें" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "भाषा चुनें..." msgid "Select languages" msgstr "भाषाएँ चुनें" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "नीचे दिए विकल्पों में अपनी msgid "Select your preferred language for translations in your feed." msgstr "अपने फ़ीड में अनुवाद के लिए अपनी पसंदीदा भाषा चुनें।" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "ईमेल भेजें" @@ -9935,11 +10421,11 @@ msgstr "ईमेल भेजें" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "प्रतिक्रिया भेजें" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "संदेश भेजें" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "इन्हें पोस्ट भेजें" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "सीधा संदेश द्वारा भेजें" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "पासवर्ड रीसेट करने के लिए ईमेल चुनता है" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "सेटिंग" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "यौन गतिविधि या कामुक नग्नत msgid "Sexually Suggestive" msgstr "यौन रूप से भड़काऊ" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "साझा करें" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "फिर भी साझा करें" @@ -10097,16 +10586,21 @@ msgstr "फिर भी साझा करें" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "लिंक साझा करें" @@ -10114,6 +10608,11 @@ msgstr "लिंक साझा करें" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "QR कोड साझा करें" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "इस फ़ीड को साझा करें" @@ -10142,8 +10641,8 @@ msgstr "इस स्टार्टर पैक को साझा करे #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "साझा की गई प्राथमिकताओं का परीक्षक" @@ -10167,16 +10666,16 @@ msgstr "वैकल्पिक पाठ दिखाएँ" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "फिर भी दिखाएँ" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "ऐसी चीज़ें कम देखें" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "अधिक दिखाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "ऐसी चीज़ें अधिक देखें" @@ -10246,8 +10745,8 @@ msgstr "जवाब दिखाएँ" msgid "Show replies as" msgstr "जवाबों को ऐसे दिखाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "जवाब सब के लिए दिखाएँ" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "चेतावनी दिखाएँ और फ़ीड से फ़िल्टर करें" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "बातचीत में जुड़ने के लिए साइन इन करें या अपना खाता बनाएँ" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10337,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "Bluesky में साइन इन करें या नया खाता बनाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "साइन आउट करें" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "साइन आउट करें" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "साइन आउट करें?" @@ -10391,7 +10900,7 @@ msgstr "छोड़ें" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "छोटा" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "कोई गड़बड़ हुई!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "कुछ गड़बड़ है? हमें बताएँ।" @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "खेल" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "नया बातचीत शुरू करें" @@ -10582,17 +11101,17 @@ msgstr "लोगों को जोड़ना शुरू करें" msgid "Start adding people!" msgstr "लोगों को जोड़ना शुरू करें!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "{displayName} से बातचीत शुरू करें" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "स्टार्टर पैक" @@ -10654,12 +11173,12 @@ msgstr "स्टोरेज खाली की गई, आपको ऐप msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "कहानी की किताब" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "जमा करें" @@ -10684,9 +11203,9 @@ msgstr "अपील जमा करें" msgid "Submit Appeal" msgstr "अपील जमा करें" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "सदस्यता लें" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "सफल!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "सहायता" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "खाता बदलें" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "खाता बदलें" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "सिस्टम लॉग" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "ख़ारिज करने के लिए दबाएँ" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "सेवा की शर्तें" @@ -10939,7 +11484,7 @@ msgstr "पाठ और टैग" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "पाठ दर्ज करने की फ़ील्ड" @@ -10981,9 +11526,9 @@ msgstr "बस इतना ही, दोस्तों!" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "अनअवरुद्ध करने के बाद खाता आपसे संपर्क कर सकेगा।" @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "थीम" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "सर्वर से संपर्क करने में समस्या हुई" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "सर्वर से संपर्क करने में समस्या हुई, कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्ट लाने में समस्या हुई। फिर प्रयास करने के लिए यहाँ दबाएँ।" @@ -11161,31 +11714,31 @@ msgstr "आपके सेवा जानकारी को लाने म msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "इस फ़ीड को हटाने में समस्या हुई। कृपया अपना इंटरनेट कनेक्शन जाँच लें और फिर प्रयास करें।" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "कोई समस्या हुई! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "ये सेटिंग केवल फ़ॉलोइंग फ़ीड पर लागू होते हैं।" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "यह {screenDescription} फ्लैग किया गया है:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "यह अपील <0>{sourceName} को भेजी जाएगी।" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "यह अपील Bluesky की मॉडरेशन सेवा को भेजी जाएगी।" @@ -11263,7 +11824,7 @@ msgstr "यह अपील Bluesky की मॉडरेशन सेवा msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "यह बातचीत डिसकनेक्ट हो गया।" @@ -11310,7 +11881,11 @@ msgstr "यह सामग्री उपलब्ध नहीं है क msgid "This content is not viewable without a Bluesky account." msgstr "यह सामग्री Bluesky खाते के बिना देखी नहीं जा सकती।" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "यह फ़ीड खाली है।" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "यह फ़ीड और ऑनलाइन नहीं है। हम इसके बदले <0>डिस्कवर दिखा रहे हैं।" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "यह सूची खाली है।" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "यह पोस्ट <0>{0} को बनने का दावा करता है, पर इसे Bluesky पर सबसे पहले <1>{1} को देखा गया।" @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "इस पोस्ट के लेखक ने क्वोट पोस्ट अक्षम किए हैं।" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "इस उपयोगकर्ता के कोई फ़ॉलोअर नहीं हैं" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "इस उपयोगकर्ता ने आपको अवरुद्ध किया है। आप उनके सामग्री नहीं देख सकते।" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "यह @{0} को जल्द पहुँच सूची से हटा देगा।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "यह आपके पोस्ट को इस क्वोट पोस्ट से सभी उपयोगकर्ताओं के लिए हटा देगा, और उसके बदले एक स्थानधारक छोड़ देगा।" @@ -11574,7 +12166,7 @@ msgstr "थ्रेड प्राथमिकताएँ" msgid "Threaded" msgstr "थ्रेड" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "थ्रेड प्राथमिकताएँ" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "ईमेल 2FA विधि अक्षम करने के लिए, कृपया ईमेल पते तक पहुँच को सत्यापित करें।" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "बहतरीन" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "विषय" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "अनुवाद करें" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:170 +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 "टीवी" @@ -11763,11 +12369,15 @@ msgstr "आपकी सेवा से संपर्क करने मे msgid "Unable to delete" msgstr "मिटाने में असमर्थ" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "अनअवरुद्ध करें" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "अनअवरुद्ध करें" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "खाता अनअवरुद्ध करें" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "खाता अनअवरुद्ध करें?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "रीपोस्ट पूर्ववत करें ({0, plural, one {# रीपोस्ट} other {# रीपोस्ट}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} को अनफ़ॉलो करें" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "खाता अनफ़ॉलो करें" @@ -11872,7 +12487,7 @@ msgstr "खाता अनफ़ॉलो करें" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "नापसंद करें ({0, plural, one {# पसंद} other {# पसंद}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "खाता अनम्यूट करें" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "बातचीत अनम्यूट करें" @@ -11955,12 +12562,12 @@ msgstr "बातचीत अनम्यूट करें" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "थ्रेड अनम्यूट करें" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "पिन से हटाएँ" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "फ़ीड को पिन से हटाएँ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "होम से पिन से हटाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "प्रोफ़ाइल से पिन से हटाएँ" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "मॉडरेशन सूची को पिन से हटाएँ" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} को होम पिन से हटाया गया" @@ -12030,14 +12637,18 @@ msgstr "इस लेबलकर्ता की सदस्यता छो msgid "Unsubscribed from list" msgstr "सूची की सदस्यता छोड़ी गई" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "सूची में <0>{displayName} अपडेट करें" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "{domain} को अपडेट करें" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "क्वोट अटैचमेंट का अपडेट असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "जवाब दृश्यता का अपडेट असफल" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "इसके बदले फ़ोटो अपलोड करें" @@ -12098,39 +12717,40 @@ msgstr "इसके बदले फ़ोटो अपलोड करें" msgid "Upload a text file to:" msgstr "यहाँ पाठ फ़ाइल अपलोड करें:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "छवि अपलोड हो रहा है..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "लिंक थंबनेल अपलोड हो रहा है..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "वीडियो अपलोड हो रहा है..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "{0} द्वारा उपयोगकर्ता सूची" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "<0>@{0} द्वारा फ़ॉलो किए गए उप msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNS रिकॉर्ड सत्यापित करें" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "वीडियो" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "वीडियो संसाधित करने में असफल" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "वीडियो नहीं मिला" msgid "Video settings" msgstr "वीडियो सेटिंग" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "वीडियो अपलोड किया गया" @@ -12432,18 +13052,18 @@ msgstr "वीडियो: {0}" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "{0} का प्रोफ़ाइल देखें" @@ -12467,20 +13087,15 @@ msgstr "{0} का प्रोफ़ाइल देखें" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "अवरुद्ध उपयोगकर्ता का प्रोफ़ाइल देखें" @@ -12503,10 +13118,18 @@ msgstr "विवरण देखें" msgid "View full thread" msgstr "पूरा थ्रेड देखें" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "इन लेबलों के बारे में जानकारी देखें" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "प्रोफ़ाइल देखें" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "अवतार देखें" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "@{0} द्वारा दी गई लेबल सेवा दे msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "इस फ़ीड को पसंद करने वाले उपयोगकर्ता देखें" @@ -12596,8 +13219,8 @@ msgstr "अपने म्यूट किए गए खाते देखे msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "सामग्री की चेतावनी दें" msgid "Warn content and filter from feeds" msgstr "सामग्री की चेतावनी दें और फ़ीड से फ़िल्टर करें" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "उस विषय से जुड़े हमें कोई परिणाम नहीं मिले।" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "हम इस बातचीत को लोड नहीं कर सके" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "हम तय नहीं कर पाए कि आपको वीडियो आपलोग करने की अनुमति है या नहीं। कृपया फिर प्रयास करें।" @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "हम आपको बताएँगे जब आपका खाता तैयार हो जाएगा।" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "हमें नेटवर्क समस्याएँ हो रही हैं, फिर प्रयास करें।" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "हमें क्षमा करें! आप जिस पोस्ट को जवाब दे रहे हैं उसे मिटा दिया गया है।" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "हमें क्षमा करें! हमें वह पृष्ठ नहीं मिल रहा जिसे आप ढूँढ रहे थे।" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "आप अपने स्टार्टर पैक को क्या नाम देना चाहते हैं?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "क्या चल रहा है?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "इस पोस्ट से कौन संपर्क कर सकता है?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "कौन जवाब दे सकता है" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "उफ़!" @@ -12939,7 +13566,7 @@ msgstr "इस स्टार्टर पैक की समीक्षा msgid "Why should this user be reviewed?" msgstr "इस उपयोगकर्ता की समीक्षा क्यों होनी चाहिए?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "पोस्ट लिखें" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "अपना जवाब दें" @@ -12978,7 +13605,8 @@ msgstr "लेखक" msgid "Wrong DID returned from server. Received: {0}" msgstr "सर्वर से ग़लत DID प्राप्त हुआ। प्राप्त: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "हाँ, इस स्टार्टर पैक को मिटाएँ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "हाँ, अलग करें" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "हाँ, छिपाएँ" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "आपको वीडियो अपलोड करने की अनुमति नहीं है।" @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "कोई भी सेटिंग चुनने पर भी आप चल रहे बातचीत को जारी रख सकते हैं।" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "अब आप अपने नए पासवर्ड के साथ साइन इन कर सकते हैं।" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "आप लॉग इन जारी रखने के लिए अ 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "आप इसे बाद में अपने सेटिंग में बदल सकते हैं।" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "आपकी कोई सहेजे गए फ़ीड नहीं msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "आप अस्थायी रूप से वीडियो अपलोड की सीमा तक पहुँच गए हैं। कृपया बाद मे फिर प्रयास करें।" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "आप अधिकतम केवल 3 फ़ीड जोड़ सकते हैं" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "स्टार्टर पैक उत्पन्न करने के लिए आपको कम से कम सात अन्य लोगों को फ़ॉलो करना होगा।" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "QR कोड सहेजने के लिए आपको फ़ोटो लाइब्रेरी तक पहुँच देनी पड़ेगी।" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "आप अपने सभी खातों से साइन आउट हो जाएँगे।" @@ -13378,11 +14038,11 @@ msgstr "आप अपने सभी खातों से साइन आउ msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "आपको और इस थ्रेड के लिए अधिसूचनाएँ नहीं मिलेंगी।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "आपको अब इस थ्रेड के लिए अधिसूचनाएँ नहीं मिलेंगी।" @@ -13390,12 +14050,12 @@ msgstr "आपको अब इस थ्रेड के लिए अधिस 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "आप पंक्ति में हैं" @@ -13463,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "आप अपने फ़ीड के अंत तक पहुँच गए! कुछ और खातों को फ़ॉलो करें!" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक बाइट)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "आप वीडियो अपलोड करने की दैनिक सीमा तक पहुँच गए (अत्यधिक वीडियो)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "आपका खाता वीडियो अपलोड करने के जितना पुराना नहीं है। कृपया बाद मे फिर प्रयास करें।" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "आपका खाता रेपोसीटोरी को एक \"CAR\" फ़ाइल के रूप में डाउनलोड किया जा सकता है, जिसमें सभी सार्वजनिक डेटा रेकॉर्ड है। इस फ़ाइल में मीडिया एंबेड (जैसे छवियाँ), या आपका निजी डेटा नहीं है जिसे अलग से लाने की आवश्यकता है। " @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "आपकी जन्मतिथि" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "आपके बतचिक अक्षम किए गए हैं।" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "आपका ईमेल अमान्य प्रतीत हो रहा है।" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "आपका फ़ॉलोइंग फ़ीड खाली है! क msgid "Your full handle will be <0>@{0}" msgstr "आपका पूरा हैंडल <0>@{0} होगा" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "आपके म्यूट किए गए शब्द" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "आपके प्रोफ़ाइल, पोस्ट, फ़ीड और सूचियाँ अन्य Bluesky उपयोगकर्ताओं को और नहीं दिखेंगे। आप लॉग इन करके अपने खाते को फिर से सक्रिय कर सकते हैं।" -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 4338e669ab..c473680ef1 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "{interestsDisplayName} kategória (aktív)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(csoportmeghívó)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(beágyazott tartalom)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# kedvelés} other {# kedvelés}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# tag}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# perce} other {# perce}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# hónapja} other {# hónapja}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {#}} személy reagált – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# másodperce} other {# másodperce}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# olvasatlan} other {# olvasatlan}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {#} other {#}} perc" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>a <1>szövegekben és címkékben" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} fel lett véve a csoportba" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} és {1} fel lett véve a csoportba" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} követett" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} letiltott Téged" @@ -264,7 +273,7 @@ msgstr "50/{0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} {1} emojival reagált" @@ -290,7 +299,7 @@ msgstr "{0} el lett távolítva a csoportból" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0} – szerző: {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0} profilképe" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0} profilképe" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{1}/{0}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{1}/{0}{2, plural, one {} other {}} személy" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{1}/{0} személy" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{imageCount}/{0}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} perce" msgid "{0}s" msgstr "{0} másodperce" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Nincsenek csatlakozási kérelmek} one {# csatlakozási kérelem} other {# csatlakozási kérelem}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {#} other {#}} új esemény a csevegésben" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {#} other {#}} új csatlakozási kérelem" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {#} other {#}} kérelem" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# olvasatlan} other {# olvasatlan}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {A megtekintéshez frissítsd a lapot.} other {A megtekintéshez frissítsd a lapot.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "Ehhez a bejegyzéshez {count, plural, one {#} other {#}} fényképet csatoltak." + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {A megtekintéshez frissítsd az alkalmazást.} other {A megtekintéshez frissítsd az alkalmazást.}}" + +#. 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 "Több, mint {count, plural, one {#} other {#}} csatlakozási kérelem" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "Több, mint {count} kérelem" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {# óra} other {# óra}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {# perc} other {# perc}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy hitelesített Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} kölcsönözte a követésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} hitelesített Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy hitelesített Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} mostantól követ Téged" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} kölcsönözte a követésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} kedvelte az egyéni hírfolyamodat" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} kedvelte a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} kedvelte a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} eltávolította a hitelesítését a fiókodról" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} megosztotta a bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} megosztotta a megosztott bejegyzésedet" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} a Te kezdőcsomagoddal regisztrált" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} hitelesített Téged" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} hitelesített Téged" msgid "{following} following" msgstr "{following} követett" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} nem vehető fel a csoportba" @@ -547,7 +606,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:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} jelenleg nem fogad üzeneteket" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# óra {minutesString}} other {# óra {minutesStrin msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# óra} other {# óra}}" +#. 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 "Több, mint {JOIN_REQUESTS_THRESHOLD} új csatlakozási kérelem" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "Több, mint {JOIN_REQUESTS_THRESHOLD} új csatlakozási kérelem" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {A leírás túl hosszú. A korlát # ka msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {A megjelenítendő név túl hosszú. A korlát # karakter.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Legfeljebb # választ lehet elrejteni.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberLimit}/{memberCount}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} {0} emojival reagált erre: {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name} kedvenc hírfolyamai és személyei – csatlakozz!" msgid "{name}'s starter pack" msgstr "{name} kezdőcsomagja" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# olvasatlan értesítés} other {# olvasatlan értesítés}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {# névjegyet találtunk}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, other {# felkérés}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "Több, mint {requestCount} kérelem" @@ -656,6 +725,12 @@ msgstr "{userName} hitelesített" msgid "{userName}'s verifications" msgstr "{userName} hitelesítései" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} és {2, plural, one {#} other {#}} további szem #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {követő} other {követő}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {követett} other {követett}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {kedvelés}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {idézés}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {megosztás}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, other {mentés}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "a(z) <0>{0} lista tagjai" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> vett fel Téged" @@ -795,8 +870,13 @@ msgstr "Hálózati hiba történt. Ellenőrizd az internetkapcsolatot" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Hálózati hiba történt. Ellenőrizd az internetkapcsolatot." @@ -804,7 +884,7 @@ msgstr "Hálózati hiba történt. Ellenőrizd az internetkapcsolatot." msgid "A new code has been sent" msgstr "Új kód elküldve" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "A hitelesítés egy új formája" @@ -827,11 +907,11 @@ msgstr "Képernyőkép egy felhasználói profilról, amelyen egy harang ikon l 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Az egyik címzettet nem követi a feladó." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Abuzív vagy diszkriminatív viselkedés" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Elfogadás" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Elfogadás" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Csevegési kérelem elfogadása" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Csatlakozási kérelem elfogadása" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Kérelem elfogadása" @@ -860,17 +950,26 @@ msgstr "Kérelem elfogadása" msgid "Accept this language suggestion" msgstr "Javasolt nyelv elfogadása" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Elfogadott beszélgetések" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Kérelem elküldve. Az elfogadást csoport tulajdonosa fogja bírálni." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Akadálymentesítés" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Akadálymentesítés" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,18 +977,18 @@ msgstr "Akadálymentesítés" msgid "Account" msgstr "Fiók" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Fiók letiltva" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" -msgstr "Mostantól követed a fiókot" +msgstr "Fiók követve" #: src/lib/strings/errors.ts:34 msgid "Account has been suspended" @@ -899,11 +998,11 @@ msgstr "Ez a fiók felfüggesztésre került" msgid "Account is deactivated" msgstr "Ez a fiók deaktiválásra került" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" -msgstr "Elnémítottad a fiókot" +msgstr "Fiók elnémítva" #: src/components/moderation/ModerationDetailsDialog.tsx:107 #: src/lib/moderation/useModerationCauseDescription.ts:99 @@ -926,44 +1025,40 @@ msgstr "Fiókszolgáltató" msgid "Account removed from quick access" msgstr "Fiók levéve a listáról" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Fiók tiltása feloldva" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" -msgstr "Mostantól már nem követed a fiókot" +msgstr "Fiók követése megszakítva" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Fiók némítása feloldva" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Másokat hitelesíteni csak a <0><1/> recés pipával rendelkező fiókok képesek. Ezeket a megbízható hitelesítőket a Bluesky jelöli ki." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Mások tevékenységei" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Tevékenységértesítések" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Felvesz" @@ -999,8 +1094,8 @@ msgstr "Fiók felvétele a listára" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Helyettesítő szöveg hozzáadása (nem kötelező)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Fiók felvétele a listára" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Válaszlánc folytatása" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Válaszlánc bővítése" @@ -1035,7 +1130,7 @@ msgstr "Alkalmazásjelszó létrehozása" msgid "Add App Password" msgstr "Alkalmazásjelszó létrehozása" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Automatizálási feljegyzés alkalmazása" @@ -1043,7 +1138,7 @@ msgstr "Automatizálási feljegyzés alkalmazása" msgid "Add emoji reaction" msgstr "Emoji-reakció hozzáfűzése" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Tagok felvétele" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Kép csatolása" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Médiatartalom csatolása a bejegyzéshez" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Tagok hozzáadása" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "További részletek megadása (nem kötelező)" @@ -1091,6 +1186,10 @@ msgstr "Személyek felvétele" msgid "Add people to list" msgstr "Személyek felvétele a listára" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Hivatkozásba bújt meghívó" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Reakció hozzáfűzése" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Születési dátum megadása" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "{0} vette fel a csoportba" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Meghívóval csatlakozott" @@ -1165,12 +1264,12 @@ msgstr "Listatagok felvétele folyamatban…" msgid "Additional details (limit 1000 characters)" msgstr "További részletek (legfeljebb 1000 karakter)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "További részletek (legfeljebb 300 karakter)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Adminisztrátor" @@ -1228,12 +1327,12 @@ msgstr "Az életkor-igazolási kérelem küldése sikeresen megtörtént" msgid "Age assurance only takes a few minutes" msgstr "Az életkor-igazolás általában csupán néhány percet vesz igénybe" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "janos@pelda.hu" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,9 +1340,9 @@ msgstr "Mind" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" -msgstr "" +msgstr "Mind {0, selectordinal, one {az #} other {a #}}" #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 #: src/screens/StarterPack/StarterPackScreen.tsx:400 @@ -1278,15 +1377,15 @@ msgstr "Hozzáférés megadása a személyes üzenetekhez" msgid "Allow anyone to reply" msgstr "Bárki válaszolhat" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Bejövő üzenetek fogadása" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" -msgstr "Csevegőcsoportos meghívók fogadása" +msgstr "Csoportbeszélgetéses meghívók fogadása" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 @@ -1338,12 +1437,12 @@ msgstr "Már van fiókod?" msgid "Already signed in as @{0}" msgstr "Már bejelentkeztél, mint @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "HLYT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Helyettesítő szöveg" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "A helyettesítő szöveg segít leírni egy képet vak vagy gyengén látó felhasználók számára, és mindenki más számára is további információval szolgálhat." @@ -1387,7 +1486,7 @@ msgstr "Hiba történt" msgid "An error occurred" msgstr "Hiba történt" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "A videó tömörítése meghiúsult." @@ -1421,7 +1520,8 @@ msgstr "A videó betöltése meghiúsult. Próbáld újra." msgid "An error occurred while loading your lists :/" msgstr "A listák betöltése meghiúsult :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "A QR-kód mentése meghiúsult!" @@ -1432,11 +1532,11 @@ msgstr "A QR-kód mentése meghiúsult!" msgid "An error occurred while trying to follow all" msgstr "Az összes felhasználó követése meghiúsult" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "A videó feltöltése meghiúsult. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "A videó feltöltése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra." @@ -1456,26 +1556,30 @@ msgstr "Egy telefonkönyvből a Bluesky alkalmazásba áramló profilképeket á 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" +#: 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 "A Bluesky alkalmazás egy mobiltelefon képernyőjén, amelyből egy meghívót tartalmazó papírrepülő száll ki" + #: 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 "A megbízható hitelesítőket a Bluesky jelöli ki, akik ezután képesek más személyeket hitelesíteni." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Meghívóval bárki csatlakozhat anélkül, hogy kézileg hozzá kelljen adni őt a csevegőcsoporthoz. A hivatkozás lehet korlátozott felhasználású és a csatlakozás lehet jóváhagyandó. A hivatkozás bármikor érvényteleníthető." +#: 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 "Meghívóval bárki csatlakozhat anélkül, hogy kézileg hozzá kelljen adni őt a csoportbeszélgetéshez. A meghívó érvényességi köre személyre szabható és bármikor érvényteleníthető." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Hiba történt a csoportbeszélgetés létrehozása közben. Próbáld újra." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "A csevegés megnyitása meghiúsult" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Hiba történt. Próbáld újra." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Egy kék pipával rendelkező felhasználó, az iPhone-os Bluesky alkalmazásban megjelenítve." @@ -1539,13 +1643,17 @@ msgstr "Bárki" msgid "Anyone can interact" msgstr "Bárki kapcsolatba léphet" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Bárki csatlakozhat" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Bárki azonnal csatlakozhat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Bárki kérelmezheti a csatlakozást" @@ -1555,11 +1663,11 @@ msgstr "Bárki kérelmezheti a csatlakozást" msgid "Anyone who follows me" msgstr "Bármelyik követőtől" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Egy alkalmazásjelszónak legalább 4 karakter hosszúnak kell lennie" msgid "App passwords" msgstr "Alkalmazásjelszók" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Alkalmazásjelszók" @@ -1618,7 +1726,7 @@ msgstr "Felfüggesztés fellebbezése" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Fellebbezés elküldve" @@ -1632,14 +1740,14 @@ msgstr "Felfüggesztés fellebbezése" msgid "Appeal Suspension" msgstr "Felfüggesztés fellebbezése" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Döntés fellebbezése" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,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:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archiválás dátuma: {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Archivált bejegyzés" @@ -1675,7 +1783,7 @@ msgstr "Egészen biztos vagy benne?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Biztosan törölni akarod a(z) „{0}” nevű alkalmazásjelszót?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Biztosan törölni akarod ezt az üzenetet? Az üzenet a Te nézőpontodból el lesz távolítva, de a többi fél számára nem." @@ -1688,23 +1796,29 @@ msgstr "Biztosan törölni akarod ezt a kezdőcsomagot?" msgid "Are you sure you want to discard your changes?" msgstr "Biztosan el akarod vetni a változtatásokat?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Biztosan el akarod hagyni a(z) {groupName} csoportot?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Biztosan el akarod hagyni ezt a beszélgetést?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Biztosan el akarod hagyni ezt a csevegést? Már nem fogsz tudni hozzáférni az üzeneteidhez, a másik fél viszont igen." +#: src/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 "Biztosan el akarod hagyni ezt a csoportbeszélgetést? Már nem fogsz tudni hozzáférni az üzeneteidhez, a többiek viszont igen." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Biztosan el akarod távolítani ezt a hírfolyamgyűjteményedből?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Biztosan el akarod vetni ezt a bejegyzést?" @@ -1724,8 +1838,8 @@ msgstr "Művészet" msgid "Artistic or non-erotic nudity." msgstr "Művészi- vagy nem erotikus meztelenség" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Témakör hozzárendelése" @@ -1752,7 +1866,7 @@ msgstr "Automatikus fiók" msgid "Automation label" msgstr "Automatizálási feljegyzés" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatizálási feljegyzés" @@ -1767,12 +1881,12 @@ msgstr "Videók és GIF-ek automatikus lejátszása" msgid "Available" msgstr "Elérhető" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Elérhető" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Elérhető" msgid "Back" msgstr "Vissza" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Vissza a csevegésekhez" @@ -1832,7 +1948,7 @@ msgstr "A bejegyzés- vagy válaszírás előtt ellenőriznünk kell az e-mail-c 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Az üzenetfogadás előtt ellenőriznünk kell az e-mail-címedet." @@ -1840,13 +1956,14 @@ msgstr "Az üzenetfogadás előtt ellenőriznünk kell az e-mail-címedet." msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "A feliratkozás előtt vissza kell igazolnod az e-mail-címedet." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Az üzenetküldés előtt ellenőriznünk kell az e-mail-címedet." @@ -1874,59 +1991,53 @@ msgstr "Születési dáum" msgid "Birthday" msgstr "Születésnap" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Letiltás" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "{displayName} letiltása" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Fiók letiltása" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Fiók letiltása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Fiók letiltása" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Fiókok letiltása" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Letiltás és törlés" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Letiltás és csevegés elhagyása" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Lista letiltása" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Letiltás/jelentés" @@ -1936,9 +2047,9 @@ msgstr "Fiókok letiltása" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Felhasználó letiltása" @@ -1946,17 +2057,17 @@ msgstr "Felhasználó letiltása" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Felhasználó letiltása" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "A másik fél letiltása és/vagy a beszélgetés törlése" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "A másik fél letiltása és/vagy a beszélgetés elhagyása" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Letiltva" @@ -1964,14 +2075,12 @@ msgstr "Letiltva" msgid "Blocked accounts" msgstr "Letiltott fiókok" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Letiltott fiókok" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Az Általad letiltott fiókok nem képesek válaszolni a bejegyzéseidre, megemlíteni Téged vagy bármilyen egyéb módon kapcsolatba lépni Veled." @@ -1987,7 +2096,7 @@ msgstr "A feljegyző letiltása nem akadályozza meg abban, hogy feljegyzéseket msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "A letiltás nyilvános. 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." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "A fiók letiltása nem fogja megakadályozni a feljegyzések hozzárendelését a saját fiókodhoz, viszont a letiltott fiók nem lesz képes válaszolni a bejegyzéseidre és egyéb módon kapcsolatba lépni Veled." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 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." @@ -2029,7 +2138,7 @@ msgstr "A Bluesky ismerősökkel még jobb!" msgid "Bluesky is more fun with friends" msgstr "A Bluesky ismerősökkel még mókásabb" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "A Bluesky ismerősökkel még mókásabb! Importáld a névjegyeidet, hogy könnyebben megtalálhasd a barátaidat!" @@ -2037,11 +2146,15 @@ msgstr "A Bluesky ismerősökkel még mókásabb! Importáld a névjegyeidet, ho msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "A Bluesky ismerősökkel még mókásabb. Szeretnél meghívni valakit? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "A Blueskynak kamera-hozzáférésre van szüksége QR-kódok beolvasásához." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "A Bluesky felhasználási feltételei" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "A Bluesky egy javasolt felhasználócsoportot fog kijelölni a hálózat 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 "A Bluesky nem fogja megjeleníteni a profilodat és a bejegyzéseidet a kijelentkezett felhasználók számára. Lehetséges, hogy ezt a kérést nem minden alkalmazás fogja tiszteletben tartani. Ez a beállítás nem teszi priváttá a profilodat." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "A Bluesky mostantól hitelesíti a jelentős és megbízható fiókokat." @@ -2081,6 +2194,10 @@ msgstr "Könyvek" msgid "Breaking site rules" msgstr "A Bluesky szabályzatának megszegése" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Gyűljetek össze akár 50-en egy csoportbeszélgetésben!" + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "Honlap" msgid "Button to go back to the home timeline" msgstr "Gomb a kezdőoldali idővonalra ugráshoz" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Szerző: {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Szerző: <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "szerző: <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Szerző: <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "A fiók létrehozásával elfogadod a <0>felhasználási feltételeketmoderálási beállításokban módosítható." msgid "Confirm" msgstr "Megerősítés" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Támogatás" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Ezen az eszközön nem elérhető a szinkronizáció, ugyanis az alkalmazásnak nics hozzáférése a névjegyeidhez." @@ -2825,11 +3000,11 @@ msgstr "Ezen az eszközön nem elérhető a szinkronizáció, ugyanis az alkalma msgid "Contact us" msgstr "Kapcsolat" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Névjegyek importálva" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Névjegyek eltávolítva" @@ -2842,7 +3017,7 @@ msgstr "Tartalom és média" msgid "Content and media" msgstr "Tartalom és média" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Tartalom és média" @@ -2889,7 +3064,7 @@ msgstr "A környezetérzékeny menü háttere. Kattints ide a menü bezárásáh #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Válaszlánc folytatása" msgid "Continue thread..." msgstr "Válaszlánc folytatása…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Csoportnév megadása" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Következő lépés" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Beszélgetés" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Beszélgetés törölve" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Beszélgetés törölve" @@ -2939,15 +3114,22 @@ msgstr "Beszélgetés törölve" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Beszélgetés elhagyva" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "A csoportbeszélgetés nem található." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Buildszám a vágólapra helyezve" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Vágólapra helyezve." msgid "Copies build version to clipboard" msgstr "Buildszám másolása a vágólapra" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "A profil hivatkozásának másolása a vágólapra" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Másolás" @@ -2997,6 +3184,11 @@ msgstr "DID másolása" msgid "Copy host" msgstr "Gazda másolása" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Meghívó hivatkozásának másolása" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Lista hivatkozásának másolása" msgid "Copy link to post" msgstr "Bejegyzés hivatkozásának másolása" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Profil hivatkozásának másolása" @@ -3027,8 +3219,8 @@ msgstr "Profil hivatkozásának másolása" msgid "Copy link to starter pack" msgstr "Kezdőcsomag hivatkozásának másolása" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Üzenet szövegének másolása" @@ -3037,12 +3229,12 @@ msgstr "Üzenet szövegének másolása" msgid "Copy post at:// URI" msgstr "Bejegyzés „at://” URI-jének másolása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Bejegyzés szövegének másolása" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR-kód másolása" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Jogi irányelvek" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Nem található QR-kód" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Megszakadt a kapcsolat az egyéni hírfolyammal" @@ -3065,7 +3261,15 @@ msgstr "Megszakadt a kapcsolat az egyéni hírfolyammal" msgid "Could not connect to feed service" msgstr "Megszakadt a kapcsolat a hírfolyam-szolgáltatóval" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "A másolás meghiúsult. Próbáld újra." + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "A letöltés meghiúsult. Próbáld újra." + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "A bejegyzés lekérése meghiúsult" @@ -3073,23 +3277,27 @@ msgstr "A bejegyzés lekérése meghiúsult" msgid "Could not find profile" msgstr "Ez a profil nem található" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Az ismerőseid követése meghiúsult. Ellenőrizd az internetkapcsolatot." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Az ismerőseid követése meghiúsult. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "A csevegés elhagyása meghiúsult" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "A csevegés elhagyása meghiúsult." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "A hírfolyam betöltése meghiúsult" @@ -3100,7 +3308,11 @@ msgstr "A hírfolyam betöltése meghiúsult" msgid "Could not load list" msgstr "A lista betöltése meghiúsult" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "A profil betöltése meghiúsult" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "A csevegés elnémítása meghiúsult" @@ -3108,11 +3320,19 @@ msgstr "A csevegés elnémítása meghiúsult" msgid "Could not process your video" msgstr "A videó feldolgozása meghiúsult." +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "A tag eltávolítása meghiúsult." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "A mentés meghiúsult. Indoklás: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "A továbbítás meghiúsult. Próbáld újra." + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Az értesítési beállítások frissítése meghiúsult" @@ -3139,7 +3359,7 @@ msgstr "Országhívószám" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Létrehozás" @@ -3153,13 +3373,13 @@ msgstr "Lista létrehozása" msgid "Create a list from this starter pack" msgstr "Lista létrehozása a kezdőcsomag alapján" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Kezdőcsomag létrehozása" @@ -3174,13 +3394,14 @@ msgstr "Automatikus létrehozás" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Profilkép létrehozása" @@ -3206,9 +3427,9 @@ msgstr "Profilkép létrehozása" msgid "Create another" msgstr "Másik létrehozása" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" -msgstr "Csevegőcsoport létrehozása" +msgstr "Csoportbeszélgetés létrehozása" #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:180 #: src/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:188 @@ -3228,19 +3449,20 @@ msgstr "Lista létrehozása a kezdőcsomag alapján" msgid "Create moderation list" msgstr "Moderálólista létrehozása" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Regisztráció" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" -msgstr "Meghívó létrehozása vagy szerkesztése a csevegőcsoporthoz" +msgstr "Meghívó létrehozása vagy szerkesztése a csoportbeszélgetéshez" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Jelentés neki: {0}" @@ -3256,8 +3478,8 @@ msgstr "Felhasználólista létrehozása" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Létrehozás dátuma: {0}" @@ -3270,6 +3492,10 @@ msgstr "Letiltott szerző" msgid "Culture" msgstr "Kultúra" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Jelenlegi csevegés" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Sötét téma" msgid "Date of birth" msgstr "Születési dátum" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Alkonyat" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Dél" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Alapértelmezett" msgid "Default icons" msgstr "Alapértelmezett ikonok" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Alkalmazásjelszó törlése" msgid "Delete app password?" msgstr "Alkalmazásjelszó törlése" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Csevegés törlése" @@ -3378,19 +3612,19 @@ msgstr "Csevegés törlése" msgid "Delete chat declaration record" msgstr "Csevegéskijelentési jegyzőkönyv ürítése" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Névjegyek törlése" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Beszélgetés törlése" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Törlés helyileg" @@ -3399,11 +3633,11 @@ msgstr "Törlés helyileg" msgid "Delete list" msgstr "Lista törlése" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Üzenet törlése" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Üzenet törlése helyileg" @@ -3411,9 +3645,9 @@ msgstr "Üzenet törlése helyileg" msgid "Delete my account" msgstr "Fiók törlése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Bejegyzés törlése" @@ -3430,17 +3664,17 @@ msgstr "Kezdőcsomag törlése" msgid "Delete this list?" msgstr "Lista törlése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Bejegyzés törlése" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Törölt tartalom" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Törölt fiók" @@ -3471,24 +3705,24 @@ msgstr "Leírás (legfeljebb 1000 karakter)" msgid "Descriptive alt text" msgstr "Helyettesítő szöveg" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Idézet leválasztása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Idézet leválasztása" #: src/screens/Settings/AboutSettings.tsx:151 msgctxt "toast" msgid "Developer mode disabled" -msgstr "Kikapcsoltad a fejlesztői módot" +msgstr "Fejlesztői mód letiltva" #: src/screens/Settings/AboutSettings.tsx:145 msgctxt "toast" msgid "Developer mode enabled" -msgstr "Bekapcsoltad a fejlesztői módot" +msgstr "Fejlesztői mód engedélyezve" #: src/screens/Settings/Settings.tsx:282 #: src/screens/Settings/Settings.tsx:285 @@ -3507,13 +3741,13 @@ msgstr "Párbeszédablak: A bejegyzés kapcsolatbalépési jogosultságainak tes msgid "Dim" msgstr "Félhomályos" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Letiltás" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Kétlépcsős azonosítás kikapcsolása" @@ -3521,7 +3755,7 @@ msgstr "Kétlépcsős azonosítás kikapcsolása" msgid "Disable captions" msgstr "Feliratok ki" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "E-mailes kétlépcsős azonosítás kikapcsolása" @@ -3534,8 +3768,8 @@ msgstr "Kétlépcsős azonosítás kikapcsolása" msgid "Disable haptic feedback" msgstr "Rezgés letiltása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Meghívó letiltása" @@ -3547,7 +3781,7 @@ msgstr "A bejegyzés idézésének letiltása" msgid "Disable replies entirely" msgstr "Válaszadás letiltása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Meghívó letiltása" @@ -3560,9 +3794,9 @@ msgstr "Letiltva" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Elvetés" msgid "Discard changes?" msgstr "Változtatások elvetése" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Bejegyzés elvetése" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "A Germ DM szétkapcsolása" @@ -3609,15 +3843,16 @@ msgstr "Új hírfolyamok felfedezése" msgid "Discover New Feeds" msgstr "Új hírfolyamok felfedezése" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Bezárás" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Reklámcsík bezárása" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Hiba bezárása" @@ -3642,6 +3877,10 @@ msgstr "Szakasz bezárása" msgid "Dismiss this suggestion" msgstr "Javaslat mellőzése" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "QR-kódolvasó bezárása" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "Nem ábrázol meztelenséget." msgid "Domain verified!" msgstr "A tartományellenőrzés kész." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Ha nem rendelkezel kóddal vagy újra van szükséged, <0>kattints ide." @@ -3681,7 +3920,7 @@ msgstr "Ha nem rendelkezel kóddal vagy újra van szükséged, <0>kattints ideClick here to resend." msgstr "Ha nem kaptad meg, <0>kattints ide egy új kód küldéséhez." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Ha nem kaptad meg, <0>kattints ide egy új e-mail küldéséhez." @@ -3700,16 +3939,21 @@ msgstr "Ne aggódj! A korábbi üzeneteid és beállításaid nem vesztek el és #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Kész" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Koppints kétszer a párbeszédablak bezárásához" @@ -3737,19 +3981,14 @@ msgstr "Koppints kétszer a párbeszédablak bezárásához" msgid "Double tap to like" msgstr "Koppints kétszer a kedveléshez" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Letöltés" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "A Bluesky letöltése" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR fájl letöltése" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR fájl letöltése" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Csevegési adatok letöltése" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Csevegési adatok letöltése" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Kép letöltése" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "A meghívóhoz tartozó QR-kód letöltése" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Profiladatok letöltése" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Profiladatok letöltése" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Személyes információ kiszivárogtatása" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Helyi törvények miatt a Bluesky bizonyos funkciói jelenleg korlátoz msgid "Duration:" msgstr "Időtartam:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Szürkület" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "pl.: janos" @@ -3823,9 +4079,8 @@ msgstr "pl.: Akik folyton csak reklámokkal válaszolnak." msgid "Eating disorders" msgstr "Étkezési zavar" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Szerkesztés" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Profilkép szerkesztése" @@ -3847,19 +4102,19 @@ msgstr "Profilkép szerkesztése" msgid "Edit Feeds" msgstr "Hírfolyamok szerkesztése" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" -msgstr "Csoportnév szerkesztése" +msgstr "Csoport átnevezése" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Kép szerkesztése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Kapcsolatbalépési beállítások szerkesztése" @@ -3868,7 +4123,16 @@ msgstr "Kapcsolatbalépési beállítások szerkesztése" msgid "Edit interests" msgstr "Érdeklődési körök szerkesztése" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Meghívó szerkesztése" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Meghívó szerkesztése" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Meghívó beállításai" @@ -3886,19 +4150,14 @@ msgstr "Élőadásos állapot szerkesztése" msgid "Edit moderation list" msgstr "Moderálólista szerkesztése" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Hírfolyamgyűjtemény szerkesztése" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" -msgstr "Név szerkesztése" - -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "{0} értesítéseinek szerkesztése" +msgstr "Átnevezés" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" @@ -3912,12 +4171,12 @@ msgstr "A bejegyzés kapcsolatbalépési beállításainak szerkesztése" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Profil szerkesztése" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Profil szerkesztése" @@ -3925,7 +4184,8 @@ msgstr "Profil szerkesztése" msgid "Edit starter pack" msgstr "Kezdőcsomag szerkesztése" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "A csoport nevének szerkesztése" @@ -3937,7 +4197,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:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Kezdőcsomag szerkesztése" @@ -3971,7 +4231,7 @@ msgstr "E-mail-cím" msgid "Email Resent" msgstr "E-mail újraküldve" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-mail elküldve!" @@ -4006,8 +4266,8 @@ msgstr "Jelenítsd meg ezt a bejegyzést a honlapodon! Másold ki az alábbi kó msgid "Embedded video player" msgstr "Beágyazott videólejátszó" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Engedélyezés" @@ -4025,7 +4285,7 @@ msgstr "Felnőtt tartalmak megjelenítése" msgid "Enable captions" msgstr "Feliratok be" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "E-mailes kétlépcsős azonosítás kikapcsolása" @@ -4038,13 +4298,12 @@ msgstr "Külső médiatartalmak engedélyezése" msgid "Enable media players for" msgstr "Az alábbi külső médialejátszók vannak engedélyezve:" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Egy fiók értesítéseit a profilján, a <0>harang ikonon <1/> keresztül elérhető menüben módosíthatod." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Leküldéses értesítések engedélyezése" @@ -4091,8 +4350,8 @@ msgstr "Jelszó megadása" msgid "Enter a word or tag" msgstr "Szó vagy címke megadása" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Kód megadása" @@ -4143,12 +4402,12 @@ msgstr "Teljes képernyős mód" msgid "Entertainment" msgstr "Szórakozás" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Hiba" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "A legfrissebb adatok lekérése meghiúsult." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Bárkitől" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Bárkitől" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Bárkitől" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Minden más" @@ -4217,16 +4476,16 @@ msgstr "A követett felhasználók bejegyzéseit nem szűri" msgid "Exit fullscreen" msgstr "Kilépés a teljes képernyős módból" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Helyettesítő szöveg folytatásának megjelenítése" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Lista kibontása" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 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" @@ -4238,7 +4497,7 @@ msgstr "Továbbiak" msgid "Expands or collapses post text" msgstr "Bejegyzés teljes szövegének kibontása/összecsukása" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Az URI nem old fel egy rekordot" @@ -4277,10 +4536,10 @@ 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:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Felfedezés" @@ -4289,11 +4548,8 @@ msgstr "Felfedezés" msgid "Explore the app" msgstr "Az alkalmazás felfedezése" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Csevegési adatok exportálása" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Csevegési adatok exportálása" @@ -4322,7 +4578,7 @@ msgstr "Külső médiatartalom" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "A külső médiatartalmak engedélyezése lehetővé teszi más honlapok számára az adatgyűjtést Rólad vagy az eszközödről. A „Lejátszás” gomb megnyomásáig semmilyen adatot sem küldünk vagy kérünk le." -#: src/Navigation.tsx:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Külső médiatartalmak" @@ -4331,18 +4587,22 @@ msgstr "Külső médiatartalmak" msgid "Extremist content" msgstr "Szélsőséges tartalom" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "A csevegési kérelem elfogadása meghiúsult" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "A csatlakozási kérelem elfogadása meghiúsult" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Az emoji-reakció hozzáfűzése meghiúsult" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "A tagfelvétel meghiúsult" @@ -4354,7 +4614,8 @@ msgstr "A kezdőcsomag bővítése meghiúsult" msgid "Failed to change handle. Please try again." msgstr "A felhasználónév megváltoztatása meghiúsult. Próbáld újra." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "A hivatkozás másolása meghiúsult" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Az alkalmazásjelszó létrehozása meghiúsult. Próbáld újra." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "A csevegés törlése meghiúsult" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "A meghívó létrehozása meghiúsult" @@ -4376,17 +4637,17 @@ msgstr "A meghívó létrehozása meghiúsult" msgid "Failed to create starter pack" msgstr "A kezdőcsomag létrehozása meghiúsult" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "A csevegés törlése meghiúsult" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Az üzenet törlése meghiúsult" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "A bejegyzés törlése meghiúsult. Próbáld újra." @@ -4394,24 +4655,24 @@ msgstr "A bejegyzés törlése meghiúsult. Próbáld újra." msgid "Failed to delete starter pack" msgstr "A kezdőcsomag törlése meghiúsult" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "A meghívó letiltása meghiúsult" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "A Germ DM szétkapcsolása meghiúsult. Hibaüzenet: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" -msgstr "A csevegőcsoport átnevezése meghiúsult" +msgstr "A csoportbeszélgetés átnevezése meghiúsult" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "A meghívó szerkesztése meghiúsult" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "A meghívó engedélyezése meghiúsult" @@ -4427,19 +4688,27 @@ msgstr "Az ismerőseid követése meghiúsult. Próbáld újra" msgid "Failed to hide suggestion, please check your internet connection" msgstr "A javaslat elrejtése meghiúsult. Ellenőrizd az internetkapcsolatot" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "A csatlakozási kérelem figyelmen kívül hagyása meghiúsult" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "A csatlakozás meghiúsult. Próbáld újra később." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Az SMS-alkalmazás megnyitása meghiúsult" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" -msgstr "A csevegőcsoport elhagyása meghiúsult" +msgstr "A csoportbeszélgetés elhagyása meghiúsult" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "A csevegések betöltése meghiúsult" @@ -4456,17 +4725,8 @@ msgstr "A hírfolyamok betöltése meghiúsult" msgid "Failed to load feeds preferences" msgstr "A hírfolyambeállítások betöltése meghiúsult" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Az értesítési beállítások betöltése meghiúsult." @@ -4493,40 +4753,39 @@ msgstr "Az ajánlott hírfolyamok betöltése meghiúsult" msgid "Failed to load suggested follows" msgstr "A javasolt személyek betöltése meghiúsult" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" -msgstr "A csevegőcsoport zárolása meghiúsult" +msgstr "A csoportbeszélgetés zárolása meghiúsult" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "A kérelmek megjelölése olvasottként meghiúsult" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" -msgstr "A csevegőcsoport elnémítása meghiúsult" +msgstr "A csoportbeszélgetés elnémítása meghiúsult" #: src/state/queries/pinned-post.ts:75 msgid "Failed to pin post" msgstr "A bejegyzés kitűzése meghiúsult" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "A Germ DM újra összekapcsolása meghiúsult. Hibaüzenet: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Hálózati hiba miatt az adatok eltávolítása meghiúsult. Ellenőrizd az internetkapcsolatot." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Az adatok eltávolítása meghiúsult. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Az emoji-reakció eltávolítása meghiúsult" @@ -4534,7 +4793,8 @@ msgstr "Az emoji-reakció eltávolítása meghiúsult" msgid "Failed to remove from starter pack" msgstr "A kezdőcsomagról levétel meghiúsult" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "A csoporttag eltávolítása meghiúsult" @@ -4542,15 +4802,20 @@ msgstr "A csoporttag eltávolítása meghiúsult" msgid "Failed to remove verification" msgstr "A hitelesítés eltávolítása meghiúsult" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "A kérelem visszavonása meghiúsult. Próbáld újra később." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "A piszkozat mentése meghiúsult" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "A kép mentése meghiúsult" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Az érdeklődési körök mentése meghiúsult." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Az e-mail elküldése meghiúsult. Próbáld újra." @@ -4580,29 +4845,29 @@ msgstr "A jelentés elküldése meghiúsult" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "A fellebbezés elküldése meghiúsult. Próbáld újra." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "A beszélgetés némításának be-/kikapcsolása meghiúsult. Próbáld újra." -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" -msgstr "A csevegőcsoport zárolásának feloldása meghiúsult" +msgstr "A csoportbeszélgetés zárolásának feloldása meghiúsult" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 msgid "Failed to unpin list" msgstr "A lista kitűzésének feloldása meghiúsult" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "A kétlépcsős azonosítási beállítások mentése meghiúsult" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Az e-mail-cím frissítése meghiúsult. Próbáld újra." @@ -4614,7 +4879,7 @@ msgstr "A hírfolyamok frissítése meghiúsult" msgid "Failed to update notification declaration" msgstr "Az értesítési beállítások frissítése meghiúsult" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "A beállítások mentése meghiúsult" @@ -4641,7 +4906,7 @@ msgstr "Hamis vagy automatikusan üzemeltetett fiók" msgid "False information about elections" msgstr "Választási dezinformáció" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Hírfolyam" @@ -4649,7 +4914,7 @@ msgstr "Hírfolyam" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Hírfolyam – Szerző: {0}" @@ -4662,7 +4927,7 @@ msgstr "Hírfolyamszerző" msgid "Feed identifier" msgstr "Hírfolyam-azonosító" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Hírfolyammenü" @@ -4676,25 +4941,25 @@ msgstr "A hírfolyam nem elérhető" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Visszajelzés" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" -msgstr "Elküldtük a visszajelzést az üzemeltetőnek" +msgstr "Visszajelzés elküldve az üzemeltetőnek" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Hírfolyamok" @@ -4739,7 +5004,7 @@ msgstr "Szűrés nyelv alapján (Jelenlegi: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Értesítések forrásainak szűrése" @@ -4747,11 +5012,11 @@ msgstr "Értesítések forrásainak szűrése" msgid "Finalizing" msgstr "Befejezés folyamatban…" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Végre!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Végre nyomon követheted a számodra fontos bejegyzéseket! Ha szeretnél könnyen újra megtalálni egy bejegyzést, mostantól elmentheted azt." @@ -4768,19 +5033,17 @@ msgstr "Pénzügy" msgid "Find accounts to follow" msgstr "Követendő fiókok felfedezése" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Ismerősök felkutatása" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Ismerősök felkutatása" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Ismerősök felkutatása névjegyek alapján" +msgid "Find and invite friends" +msgstr "Barátok meghívása" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Ismerősök felkutatása" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Ismerősök felkutatása" msgid "Find people to follow" msgstr "Követendő személyek felfedezése" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Ismerősök felkutatása" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Bejegyzések, felhasználók és hírfolyamok felfedezése a Blueskyon" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Ismerősök felkutatása" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "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ó" @@ -4847,22 +5114,22 @@ msgstr "Fókuszálás a keresőmezőre" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Követés" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} követése" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "{displayName} követése" @@ -4892,8 +5159,8 @@ msgstr "Fiók követése" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Összes fiók követése" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Követés kölcsönzése" @@ -4916,7 +5183,7 @@ msgstr "Követés kölcsönzése" msgid "Followed all accounts!" msgstr "Mostantól követed az összes fiókot!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Mostantól követed az összes fiókot" @@ -4944,8 +5211,12 @@ msgstr "<0>{0} és <1>{1} követi" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1} és {2, plural, one {#} other {#}} további személy követi" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Csak követők csatlakozhatnak" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "@{0} Általad ismert követői" @@ -4960,10 +5231,10 @@ msgstr "Ismert követők" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Követett" @@ -4977,12 +5248,12 @@ msgstr "Követett" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Mostantól követed: {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Mostantól követed: {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Mostantól követed: {handle}" msgid "Following feed preferences" msgstr "Követett hírfolyam" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Követett hírfolyam" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Követ Téged" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Követ Téged" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Betűtípus" @@ -5065,11 +5333,16 @@ msgstr "Elfelejtett jelszó" msgid "Forgot?" msgstr "Elfelejtetted?" +#. 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 "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 msgid "Free your feed" msgstr "Szabadítsd fel a hírfolyamodat!" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Forrás" @@ -5086,82 +5359,86 @@ msgstr "A(z) <0/> hírfolyamból" msgid "Generate a starter pack" msgstr "Kezdőcsomag létrehozása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Meghívó létrehozása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Új meghívó létrehozása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Új meghívó létrehozása" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "A Germ DM szétkapcsolva" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM-hivatkozás" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "A Germ DM újra összekapcsolva" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Súgó" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Értesítés, ha valaki követni kezd Téged." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Értesítés, ha valaki kedvel egy bejegyzést, amelyet megosztottál." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Értesítés, ha valaki kedveli az egyik bejegyzésedet." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +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:285 msgid "Get notifications when people mention you." msgstr "Értesítés, ha valaki megemlít Téged." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Értesítés, ha valaki idézi az egyik bejegyzésedet." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Értesítés, ha valaki válaszol az egyik bejegyzésedre." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Értesítés, ha valaki megoszt egy bejegyzést, amelyet megosztottál." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 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:333 +msgid "Get notifications when people repost your reposts." +msgstr "Értesítés, ha valaki megosztja az egyik megosztott bejegyzésedet." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Feliratkozás értesítésekre" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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" @@ -5174,27 +5451,27 @@ msgstr "Feliratkozás a fiók tevékenységeire" msgid "Get notified when {name} posts" msgstr "Feliratkozás {name} új bejegyzéseire" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Feliratkozás egy fiók új bejegyzéseire" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Rendben" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF sikeresen feltöltve" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Adj arcot a profilodnak!" @@ -5213,20 +5490,20 @@ msgstr "Az erőszak népszerűsítése" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Vissza" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Vissza" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Vissza az előző lépéshez" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ugrás a kezdőoldalra" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ugrás a kezdőoldalra" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ugrás a kezdőoldalra" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Élő adás indítása (korlátozva)" msgid "Go live for" msgstr "Élő adás indítása az alábbi időintervallumra:" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "{firstAuthorName} profiljának megnyitása" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Ugrás a fiókbeállításokhoz" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ugrás a beszélgetéshez vele: {0}" @@ -5296,23 +5571,23 @@ msgstr "Ugrás a hírfolyamhoz" msgid "Go to next" msgstr "Tovább" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Profil megnyitása" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" -msgstr "A(z) {chatName} megnevezésű csevegőcsoport megnyitása" +msgstr "A(z) {chatName} megnevezésű csoportbeszélgetés megnyitása" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ugrás a felhasználó profiljára" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Ugrás a felhasználó profiljára" @@ -5320,11 +5595,18 @@ msgstr "Ugrás a felhasználó profiljára" msgid "Going live is currently disabled for your account" msgstr "A fiókodról jelenleg nem képes élő adást indítani" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Rendben" +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Hozzáférés megadása" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5340,59 +5622,75 @@ msgstr "Az erőszak látványos megjelenítése" msgid "Grooming or predatory behavior" msgstr "Kiskorúak kizsákmányolása vagy szexuális ragadozás" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Csoportbeszélgetés" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Csoportmeghívó-kezelési párbeszédablak" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Csoport zárolva" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" -msgstr "Csevegőcsoport elnémítva" +msgstr "Csoportbeszélgetés elnémítva" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" -msgstr "Átnevezték a csevegőcsoportot" +msgstr "Csoportbeszélgetés átnevezve" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" -msgstr "Csevegőcsoport beállításai" +msgstr "Csoportbeszélgetés beállításai" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Csoport zárolása feloldva" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" -msgstr "Csevegőcsoport némítása feloldva" +msgstr "Csoportbeszélgetés némítása feloldva" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "A csevegőcsoportok még nem elérhetők." +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Csoportbeszélgetések" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "A csevegőcsoportok mostantól elérhetők." +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Csoportbeszélgetésekben csak felnőtt felhasználók vehetnek részt." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Egy csoportbeszélgetésnek legfeljebb {0, plural, one {#} other {#}} tagja lehet." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "A csoport zárolva van" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Csoportnév" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Informatikai rendszerek feltörése (hackelés) vagy támadása" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Ez a felhasználónév túl hosszú. Adj meg egy rövidebbet." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Folyamatban lévő események" @@ -5446,7 +5744,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:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Címke" @@ -5458,8 +5756,8 @@ msgstr "Címke: {tag}" msgid "Hate speech" msgstr "Gyűlöletbeszéd" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Ha már rendelkezel kóddal, <0>kattints ide." @@ -5479,11 +5777,11 @@ msgstr "A visszaélések elkerülése érdekében a Bluesky 7 napig megtartja, m #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Súgó" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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!" @@ -5522,7 +5820,7 @@ msgstr "Rejtett lista" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Rejtett lista" msgid "Hide" msgstr "Elrejtés" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Elrejtés" @@ -5547,24 +5845,24 @@ msgstr "Testreszabási lehetőségek elrejtése" #: src/components/dms/SystemMessageGroup.tsx:57 msgid "Hide group chat updates" -msgstr "" +msgstr "Csoportbeszélgetéses események elrejtése" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:533 msgid "Hide lists" msgstr "Listák elrejtése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Bejegyzés elrejtése helyileg" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Válasz elrejtése mindenkinek" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Válasz elrejtése helyileg" @@ -5577,19 +5875,19 @@ msgstr "Kártya elrejtése" msgid "Hide this event" msgstr "Esemény elrejtése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Bejegyzés elrejtése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Válasz elrejtése" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Fordítás elrejtése" @@ -5606,7 +5904,7 @@ msgstr "Felkapott témakörök elrejtése" msgid "Hide trending videos?" msgstr "Felkapott videók elrejtése" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Felhasználólista elrejtése" @@ -5620,6 +5918,10 @@ msgstr "Hitelesítési jelvények elrejtése" msgid "Hides the content" msgstr "Tartalom elrejtése" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Az ismerős-felkutatási reklámcsík bezárása" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm… úgy tűnik, hogy jelenleg egy <0>alkalmazásjelszóval vagy bejelentkezve. Ahhoz, hogy megváltoztathasd a születési dátumodat, a valódi jelszavaddal kell bejelentkezned, vagy meg kell kérned a fiók kezelőjét, hogy tegye ezt meg helyetted." @@ -5652,19 +5954,15 @@ msgstr "Hmmmm… Az adatok betöltése meghiúsult. A részleteket alább látha msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm… Ez a moderálási szolgáltatás nem található." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Egy pillanat! A videófeltöltés lehetősége még nem mindenki számára elérhető. Próbáld újra később." -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Hátra az agarakkal! Ez a funkció Számodra még nem elérhető. Próbáld újra később." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Kezdőoldal" @@ -5721,7 +6019,7 @@ msgstr "Értettem" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "A Blueskyon {0} néven találhatsz meg. Csatlakozz Te is! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Hosszabb helyettesítő szövegek megjelenítése/levágása" @@ -5757,15 +6055,15 @@ msgstr "A lista törlése nem vonható vissza." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Ha rendelkezel saját tartománnyal, akkor az is lehet a felhasználóneved. Így magadtól is hitelesítheted a kiléted. <0>További információ." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Ha frissítened kell az e-mail-címedet, <0>kattints ide." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "A bejegyzés törlése nem vonható vissza." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Ha frissíted az e-mail-címedet, akkor a jelenleg beállított kétlépcsős azonosítás ki lesz kapcsolva." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "A saját fiókodra vonatkozó értesítési beállításokat a <0>Beállítások menü Adatvédelem és biztonság almenüjében szabhatod személyre." @@ -5786,23 +6083,23 @@ msgstr "Ha fejlesztő vagy, saját kiszolgálót is üzemeltethetsz." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Ha meg akarod változtatni a felhasználónevedet vagy az e-mail-címedet, azt még a deaktiválás előtt tedd meg!" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Kép" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "{0}. kép" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "{1}/{0}. kép" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "{imageCount}/{0}. kép" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Képgyorsítótár kiürítve. {0} hely felszabadult." #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Galéria – {0} kép" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "A kép a jelenlegi moderálási beállításaid miatt el van rejtve." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "A kép nem elérhető." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Képlehetőségek" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Megszemélyesítés" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Névjegyek importálása" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Névjegyek importálása" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Importáld a névjegyeidet vagy hívd meg a barátaidat!" + #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importáld a névjegyeidet és találd meg az ismerőseidet!" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importálás dátuma: {0}" @@ -5881,40 +6182,40 @@ msgstr "Importálás dátuma: {0}" 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 "Az életkorodnak megfelelő tartalmak megjelenítése érdekében tudnunk kell a születési dátumodat. Ezt az adatot csak egyszer fogjuk elkérni Tőled és bizalmasan kezeljük." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Alkalmazáson belüli" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Alkalmazáson belüli értesítések" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "Alkalmazáson belüli, mindenkitől" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "Alkalmazáson belüli, az Általad követett személyektől" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "Alkalmazáson belüli, leküldéses" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "Alkalmazáson belüli, leküldéses, mindenkitől" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +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:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Nincsenek beérkező üzenetek" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Elfogytak a beérkező üzenetek." @@ -5954,6 +6255,10 @@ msgstr "Piszkozatok" msgid "Introducing finding friends via contacts" msgstr "Mostantól a névjegyeid alapján is találhatsz ismerősöket!" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Bemutatjuk a csoportbeszélgetéseket" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "Bejegyzések mentése (más néven: könyvjelzők)" @@ -5963,11 +6268,15 @@ msgstr "Bejegyzések mentése (más néven: könyvjelzők)" msgid "Invalid 2FA confirmation code." msgstr "Érvénytelen kétlépcsős azonosítási kód." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Érvénytelen meghívó." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Érvénytelen felhasználónév. Adj meg egy másikat." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Érvénytelen kapcsolatbalépési beállítások." @@ -5977,10 +6286,15 @@ msgstr "Érvénytelen kapcsolatbalépési beállítások." msgid "Invalid phone number" msgstr "Ez a telefonszám érvénytelen" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Érvénytelen jelentési ok" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Érvénytelen visszavonási kérelem." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Érvénytelen ellenőrzőkód" @@ -6001,8 +6315,15 @@ msgstr "Meghívókód" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Ismerősök meghívása" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Ismerősök meghívása" @@ -6010,21 +6331,31 @@ msgstr "Ismerősök meghívása" msgid "Invite friends <0/>" msgstr "Ismerősök meghívása <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Meghívó" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Meghívó" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Meghívó kimásolva" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Meghívó létrehozva." #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Meghívó letiltva." @@ -6040,11 +6371,16 @@ msgstr "Meghívóhivatkozás engedélyezve." msgid "Invite people to this starter pack!" msgstr "Hívj meg másokat is ebbe a kezdőcsomagba!" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Hívd meg a barátaidat!" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Könnyen oszd meg ismerőseiddel a kedvenc hírfolyamaidat és személyeidet!" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Meghívás elküldve" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Állásazonosító: {0}" @@ -6083,6 +6419,11 @@ msgstr "Állásazonosító: {0}" msgid "Jobs" msgstr "Karrier" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Csatlakozás" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Karrier" msgid "Join Bluesky" msgstr "Csatlakozz a Blueskyhoz!" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Csatlakozás a csoportbeszélgetéshez" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Csatlakozási kérelem visszavonva." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Csatlakozz hozzánk!" msgid "Journalism" msgstr "Sajtó" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Szerkesztés folytatása" @@ -6109,6 +6460,11 @@ msgstr "Szerkesztés folytatása" msgid "Keep me posted" msgstr "Feliratkozás értesítésekre" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Tag kirúgása" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "A KWS honlapja" @@ -6143,7 +6499,7 @@ msgstr "A fiókodra helyezett feljegyzések" msgid "Labels on your content" msgstr "A tartalmadra helyezett feljegyzések" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Nyelvi beállítások" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Legújabb" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "További információ az ismerősmeghívásról" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "További információ a névjegyimportálásról" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "További információ erről a figyelmeztetésről" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "További információ a Blueskyos hitelesítésől" @@ -6239,7 +6595,7 @@ msgstr "További információ a Blueskyos hitelesítésől" msgid "Learn more about what is public on Bluesky." msgstr "További információ a Bluesky-tartalmak nyilvánosságáról." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "További információ a Germ DM-hivatkozásokról" @@ -6252,31 +6608,33 @@ msgstr "További információ a <0>fiókbeállításokban." msgid "Learn more." msgstr "További információ." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Elhagyás" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Csevegés elhagyása" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Beszélgetés elhagyása" @@ -6284,21 +6642,30 @@ msgstr "Beszélgetés elhagyása" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Beszélgetés elhagyása" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" -msgstr "Csevegőcsoport elhagyása" +msgstr "Csoportbeszélgetés elhagyása" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" -msgstr "Csevegőcsoport elhagyása" +msgstr "Csoportbeszélgetés elhagyása" #: src/components/dialogs/LinkWarning.tsx:83 #: src/components/dialogs/LinkWarning.tsx:91 msgid "Leaving Bluesky" msgstr "A Bluesky elhagyása" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Csoportbeszélgetés elhagyva." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "maradt." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Világos" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Tetszik" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Tetszik ({0, plural, one {# kedvelés} other {# kedvelés}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Értesítések kedvelésekről" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Hírfolyam kedvelése" @@ -6358,8 +6721,8 @@ msgstr "Hírfolyam kedvelése" msgid "Like this labeler" msgstr "Feljegyző kedvelése" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Kedvelők" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {#} other {#}} felhasználó kedveli" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {#} other {#}} felhasználó kedveli" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Kedvelések" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Megosztott bejegyzések kedvelése" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Értesítések megosztott bejegyzések kedveléséről" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "A bejegyzést kedvelők" @@ -6409,11 +6768,11 @@ msgstr "A bejegyzést kedvelők" msgid "Linear" msgstr "Egyszerű" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Vágólapra helyezve" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6424,7 +6783,7 @@ msgstr "Lista profilképe" #: src/screens/ProfileList/components/SubscribeMenu.tsx:48 msgctxt "toast" msgid "List blocked" -msgstr "Letiltottad a listán szereplő személyeket" +msgstr "A listán szereplő személyek letiltva" #. placeholder {0}: sanitizeHandle(creator.handle, '@') #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') @@ -6452,7 +6811,7 @@ msgstr "Listaszerző" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:93 msgctxt "toast" msgid "List deleted" -msgstr "Törölted a listát" +msgstr "Lista törölve" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:446 msgid "List description" @@ -6477,7 +6836,7 @@ msgstr "A listának címet kell adni." #: src/screens/ProfileList/components/SubscribeMenu.tsx:33 msgctxt "toast" msgid "List muted" -msgstr "Elnémítottad a listán szereplő személyeket" +msgstr "A listán szereplő személyek elnémítva" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:410 msgid "List name" @@ -6491,20 +6850,20 @@ msgstr "A lista címe túl hosszú. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other { #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 msgctxt "toast" msgid "List unblocked" -msgstr "Feloldottad a listán szereplő személyek tiltását" +msgstr "A listán szereplő személyek tiltása feloldva" #: src/screens/ProfileList/components/Header.tsx:101 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:116 msgctxt "toast" msgid "List unmuted" -msgstr "Feloldottad a listán szereplő személyek némítását" +msgstr "A listán szereplő személyek némítása feloldva" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listák" @@ -6545,7 +6904,7 @@ msgstr "Élő esemény ismét megjelenítve" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Időről-időre történhetnek olyan izgalmas élő események, amelyek itt jelennek meg. Ha szeretnéd, akkor lehetőséged van csak ezt vagy minden eseményt elrejteni innen." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Az élő adások kísérleti fázisban vannak" @@ -6595,27 +6954,27 @@ msgstr "Kapcsolatbalépési beállítások betöltése…" msgid "Loading..." msgstr "Betöltés…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Zárolás" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" -msgstr "Csevegőcsoport zárolása" +msgstr "Csoportbeszélgetés zárolása" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" -msgstr "Csevegőcsoport zárolása" +msgstr "Csoportbeszélgetés zárolása" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" -msgstr "A csevegőcsoport zárolása" +msgstr "A csoportbeszélgetés zárolása" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Zárolva" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Napló" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "A logó szerzője: @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "A logó szerzője: <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Úgy tűnik, hogy hiányzik a Követett hírfolyamod. <0>Kattints ide, h msgid "Love GIFs" msgstr "Szerelmes GIF-ek" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "A fiók e-mail-beállításainak testreszabása" @@ -6687,24 +7046,22 @@ msgstr "Hitelesítési beállítások" msgid "Manage your muted words and tags" msgstr "Elnémított szavak és címkék kezelése" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Összes megjelölése olvasottként" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Megjelölés olvasottként" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Összes üzenet megjelölve olvasottként" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Talán később" @@ -6726,26 +7083,26 @@ msgstr "A médiatartalmak 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ó médiatartalom." +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "Tag eltávolítva a csoportbeszélgetésből." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Tagok" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "A tagok továbbra is képesek lesznek az üzenetek elolvasására, de újakat nem tudnak küldeni." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Megemlítési értesítések" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "a megemlített felhasználók" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Említések" @@ -6761,7 +7118,7 @@ msgstr "Üzenet megadása" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Üzenet küldése" @@ -6771,26 +7128,26 @@ msgstr "Üzenet küldése" msgid "Message {0}" msgstr "Üzenetküldés neki: {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Üzenetküldés neki: {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Törölt üzenet" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Üzenet törölve" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Az üzenet elküldése meghiúsult." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "@{0} üzenete: {1}" @@ -6813,19 +7170,19 @@ msgstr "Az üzenet túl hosszú" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Az üzenet túl hosszú ({MAX_DM_GRAPHEME_LENGTH}/{graphemeCount})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Üzenetlehetőségek" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Üzenetek" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 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." @@ -6838,10 +7195,6 @@ msgstr "Éjfél" msgid "Minor harassment or bullying" msgstr "Kiskorúak zaklatása" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Egyéb értesítések" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Félrevezető tartalom" @@ -6850,7 +7203,7 @@ msgstr "Félrevezető tartalom" msgid "Missing media" msgstr "Hiányzó médiatartalmak" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderálás" @@ -6894,7 +7247,7 @@ msgstr "Moderálólista frissítve" msgid "Moderation lists" msgstr "Moderálólisták" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderálólisták" @@ -6903,7 +7256,7 @@ msgstr "Moderálólisták" msgid "moderation settings" msgstr "moderálási beállítások" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderálási állapotok" @@ -6928,8 +7281,8 @@ msgstr "További nyelvek…" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "További lehetőségek" @@ -6949,7 +7302,7 @@ msgstr "Filmek" msgid "Music" msgstr "Zene" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Elnémítás" @@ -6965,8 +7318,8 @@ msgstr "Elnémítás" msgid "Mute {0}" msgstr "A(z) {0} címke elnémítása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Fiók elnémítása" msgid "Mute accounts" msgstr "Fiókok elnémítása" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Beszélgetés elnémítása" @@ -6994,9 +7347,9 @@ msgstr "Lista elnémítása" msgid "Mute these accounts?" msgstr "Biztosan el akarod némítani az alábbi fiókokat?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" -msgstr "Csevegőcsoport elnémítása" +msgstr "Csoportbeszélgetés elnémítása" #: src/components/dialogs/MutedWords.tsx:194 msgid "Mute this word for 24 hours" @@ -7022,17 +7375,21 @@ msgstr "Szó elnémítása csak címkékben" msgid "Mute this word until you unmute it" msgstr "Szó elnémítása a némítás feloldásáig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Válaszlánc elnémítása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Szavak és címkék elnémítása" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Egy csoportot bármikor elnémíthatsz vagy elhagyhatsz." + +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Muted" msgstr "Elnémítva" @@ -7040,7 +7397,7 @@ msgstr "Elnémítva" msgid "Muted accounts" msgstr "Elnémított fiókok" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Elnémított fiókok" @@ -7062,6 +7419,10 @@ msgstr "Elnémított szavak és címkék" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Egy fiók elnémítása nem nyilvános. Egy elnémított felhasználó képes a fiókoddal kapcsolatba lépni, de ezekről a történésekről nem fogsz értesítéseket kapni és az összes bejegyzésük el lesz rejtve a számodra." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Közös csoportbeszélgetések" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Ugrás a kezdőcsomaghoz" msgid "Navigates to the next screen" msgstr "Ugrás a következő képernyőre" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Ugrás a profilodra" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Szerzői jogsértést, jogi követelést vagy szabályzatszegést jelentenél?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Új" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{firstAuthorLink} új {postsCount, plural, one {bejegyzést} other {bejegyzéseket}} tett közzé" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{firstAuthorName} új {postsCount, plural, one {bejegyzést} other {bejegyzéseket}} tett közzé" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Új csevegés" @@ -7163,7 +7525,7 @@ msgstr "Új csevegés velük: {0} és {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Új csevegés velük: {0}, {1} és {memberCount, plural, other {{memberCount}}} további személy." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Új e-mail-cím" @@ -7171,34 +7533,32 @@ msgstr "Új e-mail-cím" #: 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 "Új funkció" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Értesítések új követőkről" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Új követők" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" -msgstr "Csevegőcsoport létrehozása" +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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Csoportbeszélgetés létrehozása" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" -msgstr "Új csevegőcsoport az alábbi személyekkel:" +msgstr "Új csoportbeszélgetés az alábbi személyekkel:" #: src/screens/Settings/components/ChangeHandleDialog.tsx:228 #: src/screens/Settings/components/ChangeHandleDialog.tsx:236 @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Új bejegyzés" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Új bejegyzés" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "{firstAuthorLink} és <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy új bejegyzéseket tett közzé " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "{firstAuthorName} és {additionalAuthorsCount, plural, one {{formattedAuthorsCount}} other {{formattedAuthorsCount}}} további személy új bejegyzéseket tett közzé" @@ -7262,8 +7622,8 @@ msgstr "Hírek" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Tovább" msgid "Next image" msgstr "Következő kép" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Éjfél" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,7 @@ 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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Még nincsenek követők" @@ -7335,7 +7699,7 @@ msgstr "A(z) „{query}” kifejezésre nincs találat." msgid "No GIFs to show right now. Try again in a moment." msgstr "A GIF-ek megjelenítése meghiúsult. Próbáld újra később." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Nincs előnézet" @@ -7353,8 +7717,8 @@ msgstr "Még nincsenek listák" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Abbahagytad {0} követését" @@ -7362,9 +7726,9 @@ msgstr "Abbahagytad {0} követését" msgid "No media yet" msgstr "Még nincsenek médiatartalmak" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" -msgstr "Még nem rendelkezel üzenetekkel" +msgstr "Még nincsenek üzenetek" #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 msgid "No more doomscrolling junk-filled algorithms. Find feeds that work for you, not against you." @@ -7378,12 +7742,12 @@ msgstr "Névtelen" msgid "No notifications yet!" msgstr "Még nincsenek értesítéseid." -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Senkitől" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Senkitől" @@ -7399,7 +7763,7 @@ msgstr "Senkitől" msgid "No one but the author can quote this post." msgstr "Ezt a bejegyzést csak a szerző idézheti." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Jelenleg senki sem küldhet üzeneteket" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Nincs találat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nincs találat" @@ -7446,8 +7810,8 @@ msgstr "Nincs találat" msgid "No results for \"{0}\"." msgstr "A(z) „{0}” kifejezésre nincs találat." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Nincs találat" @@ -7509,12 +7873,12 @@ 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:223 -msgid "None" -msgstr "Nincs" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Ezen a platformon nem elérhető" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Ezen a platformon nem elérhető." @@ -7522,16 +7886,16 @@ msgstr "Ezen a platformon nem elérhető." msgid "Not followed by anyone you’re following" msgstr "Nincsenek ismert követők" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Ez a tartalom nem található" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Még nem állsz készen a közzétételre? Gyűjtsd össze a gondolataidat piszkozatok formájában és várd meg a tökéletes pillanatot!" -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Korlátozott láthatóság" @@ -7548,44 +7912,31 @@ msgstr "Megjegyzés: Ez a bejegyzés csak a bejelentkezett felhasználók szám msgid "Nothing saved yet" msgstr "Még semmit sem mentettél" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Értesítési beállítások" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Értesítési hangok" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Értesítések" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Értesítés egyéb történésekről; pl.: ha valaki az egyik kezdőcsomagoddal regisztrál." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "épp most" @@ -7601,7 +7952,7 @@ msgstr "Ennek a számnak telefonszámnak kell lennie" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Ki" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Rendben" @@ -7648,35 +8000,35 @@ msgstr "a <0><1/> Blueskyon" msgid "Onboarding reset" msgstr "Regisztrációs varázslót alaphelyzetbe állítva" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Az egyik címzett nem kíván részt venni csoportbeszélgetésekben." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Az egyik címzett letiltott Téged, ezért nem veheted fel vele a kapcsolatot." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Legalább egy képről hiányzik a helyettesítő szöveg." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "A kiválasztott fájlok közül legalább egy nem támogatott formátumú." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "A kiválasztott fájlok közül legalább egy túl nagy. A korlát 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg." @@ -7685,6 +8037,26 @@ msgstr "Legalább egy videóról hiányzik a helyettesítő szöveg." msgid "Only {0} can reply." msgstr "Csak {0} válaszolhatnak." +#. 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:234 +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." + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Csatlakozási kérelmeket csak adminisztrátorok hagyhatnak jóvá." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Csatlakozási kérelmeket csak adminisztrátorok hagyhatnak figyelmen kívül." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Ehhez a csoportbeszélgetéshez csak követők csatlakozhatnak." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Csak a kölcsönös követőktől" msgid "Only image files are supported" msgstr "Csak a képfájlok támogatottak" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Csak a(z) {0} által követett személyek csatlakozhatnak." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Csak a csoportbeszélgetés tulajdonosa által követett személyek csatlakozhatnak" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Csak a WebVTT (.vtt) formátum támogatott" @@ -7703,6 +8085,10 @@ msgstr "Csak a WebVTT (.vtt) formátum támogatott" msgid "Oops, something went wrong!" msgstr "Hoppá! Valami balul sült el!" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7712,7 +8098,7 @@ msgstr "Hoppá! Valami balul sült el!" msgid "Oops!" msgstr "Hoppá!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Profilképkészítő megnyitása" @@ -7720,12 +8106,17 @@ msgstr "Profilképkészítő megnyitása" msgid "Open camera" msgstr "Kamera megnyitása" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Csevegés megnyitása" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "{displayName} beállításainak megtekintése" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Beszélgetési beállítások megnyitása" @@ -7739,16 +8130,16 @@ msgstr "Oldalsó menü megnyitása" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Emojiválasztó megnyitása" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Hírfolyambeállítások megnyitása" @@ -7760,13 +8151,22 @@ msgstr "Teljes emojilista megnyitása" msgid "Open Germ DM" msgstr "A Germ DM megnyitása" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 -msgid "Open group chat settings" -msgstr "Csevegőcsoport beállításainak megnyitása" +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Csoportbeszélgetés megnyitása" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 +msgid "Open group chat settings" +msgstr "Csoportbeszélgetés beállításainak megnyitása" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Megnyitás a Google Fordítóban" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "A(z) {niceUrl} hivatkozás megnyitása" @@ -7790,11 +8190,15 @@ msgstr "Csomag megnyitása" msgid "Open post options menu" msgstr "Bejegyzéslehetőségek megnyitása" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Profil megnyitása" +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "QR-kódolvasó megnyitása" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "Mesekönyv-oldal megnyitása" msgid "Open system log" msgstr "Rendszernapló megnyitása" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Csoportbeszélgetés megnyitása" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "A tartalomfigyelmeztetések alkalmazására alkalmas párbeszédablak me msgid "Opens a dialog to choose who can interact with this post" msgstr "Párbeszédablak megnyitása, ahol megadhatod, hogy ki léphet kapcsolatba a bejegyzéssel" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "A QR-kódos kártya választható színsémáinak megtekintése" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "Hibakeresési bejegyzés részleteinek megnyitása" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Az eszköz kamerájának megnyitása" @@ -7858,22 +8270,24 @@ msgstr "Bejegyzésíró megnyitása" msgid "Opens device camera" msgstr "A készülék kamerájának megnyitása" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "A készülék galériájának megnyitása. A bejegyzéshez legfeljebb {MAX_IMAGES, plural, other {# kép}}, vagy egy videó vagy GIF csatolható." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "A készülék galériájának megnyitása. A bejegyzéshez legfeljebb {MAX_GALLERY_IMAGES, plural, other {# kép}}, vagy egy videó vagy GIF csatolható." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Regisztrációs varázsló indítása" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Bejelentkezési varázsló megnyitása" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Teljes kép megtekintése" @@ -7890,7 +8304,7 @@ msgstr "Fényképválasztó megnyitása" msgid "Opens link {0}" msgstr "A(z) „{0}” hivatkozás megnyitása" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Élőadásos állapoti párbeszédablak megnyitása" @@ -7902,15 +8316,23 @@ msgstr "Jelszóvisszaállítási űrlap megnyitása" msgid "Opens post language settings" msgstr "Bejegyzések nyelvi beállításainak megnyitása" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Profil megnyitása" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "A barátmeghívási beállítások megnyitása" + #. 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 "A GIF-választó párbeszédablak megnyitása" +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "A barátmeghívási panel megnyitása profilmegosztás céljából" + #: src/view/com/feeds/ComposerPrompt.tsx:148 msgid "Opens the post composer" msgstr "Bejegyzésíró felület megnyitása" @@ -7919,9 +8341,8 @@ msgstr "Bejegyzésíró felület megnyitása" msgid "Opens this draft in the composer" msgstr "Piszkozat szerkesztése a bejegyzésíró felületen" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Saját profil megnyitása" @@ -7997,12 +8418,12 @@ msgstr "Blogbejegyzés" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Megkaptuk a jelentésedet." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "A fiókod ellen jelentések érkeztek, és miután a moderátoraink felülvizsgálták őket, úgy döntöttek, hogy megfosztanak a csevegési jogosultságoktól a Blueskyon." @@ -8010,14 +8431,15 @@ msgstr "A fiókod ellen jelentések érkeztek, és miután a moderátoraink fel msgid "Owner" msgstr "Tulajdonos" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Az oldal nem található" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "A tulajdonosnak zárolnia kell a csoportot kilépés előtt." -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Az oldal nem található" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Videó szüneteltetése" msgid "People" msgstr "Személyek" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "A(z) {ownerName} által követett személyek csatlakozását nem kell jóváhagyni" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "A(z) @{0} által követett személyek" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Az őt követő személyek: @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Követett személyektől" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Az Általad követett személyek kézi jóváhagyás nélkül csatlakozhatnak" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Az Általad követett személyek kérelmezhetik a csatlakozást" @@ -8136,13 +8558,17 @@ msgstr "Telefonszám hitelesítve" msgid "Photography" msgstr "Fényképészet" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Színséma kiválasztása" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Felnőtteknek szánt képek." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Hírfolyam kitűzése" @@ -8152,12 +8578,12 @@ msgstr "Hírfolyam kitűzése" msgid "Pin to home" msgstr "Kitűzés a kezdőoldalra" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Kitűzés a kezdőoldalra" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Kitűzés a profilodra" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Kitűzve" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "A(z) {0} hírfolyam kitűzve" @@ -8236,7 +8662,7 @@ msgstr "Válassz egy felhasználónevet." msgid "Please choose your password." msgstr "Válassz egy jelszót." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Kérjük, kattints a tőlünk kapott e-mailben található hivatkozásra msgid "Please complete the verification captcha." msgstr "Végezd el a captchás ellenőrzést." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "A videófeltöltéshez először hitelesítened kell az e-mail-címedet." @@ -8265,14 +8691,14 @@ msgstr "Adj meg egy jelszót! A jelszónak legalább 8 karakter hosszúnak kell msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Nevezd el egyedien az alkalmazásjelszót vagy használd a véletlenszerűen létrehozottat." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "A megadott kód érvénytelen." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "A megadott e-mail-cím érvénytelen." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Kérjük, egy érvényes és nem átmeneti e-mail-címet adj meg. Lehetséges, hogy a jövőben is szükséged lesz rá." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Add meg a(z) <0>{0} címre küldött kódot." @@ -8293,7 +8719,7 @@ msgstr "Add meg a(z) <0>{0} címre küldött kódot." msgid "Please enter the code you received and the new password you would like to use." msgstr "Add meg a megerősítőkódot és az új jelszót." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Add meg az e-mail-címedet." msgid "Please enter your invite code." msgstr "Add meg a meghívókódodat." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Add meg az új e-mail-címedet." @@ -8323,7 +8749,7 @@ msgstr "Add meg a felhasználónevedet" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Magyarázd el, hogy miért gondolod úgy, hogy a(z) {0} helytelenül alkalmazta ezt a feljegyzést" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Magyarázd el, hogy miért gondolod úgy, hogy jogtalanul fosztottak meg a csevegési jogosultságodtól" @@ -8358,7 +8784,11 @@ msgstr "Add meg a jelentés okát." msgid "Please sign in as @{0}" msgstr "Jelentkezz be, mint @{0}." -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "A QR-kódolvasáshoz a mobiltelefonos Bluesky alkalmazás szükséges." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "Névjegyek importálásához a natív alkalmazást kell használnod." @@ -8366,7 +8796,7 @@ msgstr "Névjegyek importálásához a natív alkalmazást kell használnod." msgid "Please use the native app to sync your contacts." msgstr "Névjegyek szinkronizálásához a natív alkalmazást kell használnod." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "E-mail-cím visszaigazolása" @@ -8383,7 +8813,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornó" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Közzététel" @@ -8403,12 +8833,12 @@ msgstr "Fénykép közzététele" msgid "Post a video" msgstr "Videó közzététele" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Összes közzététele" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Közzététel mégis" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Letiltott bejegyzés" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} bejegyzése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" -msgstr "Törölted a bejegyzést" +msgstr "Bejegyzés törölve" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "A bejegyzés közzététele meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra." @@ -8454,18 +8884,22 @@ msgstr "Elrejtetted a bejegyzést" msgid "Post interaction settings" msgstr "Kapcsolatbalépési beállítások" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Kapcsolatbalépési beállítások" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Oszd meg a Blueskyon vagy bárhol máshol!" + #. 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 "Bejegyzés nyelvének megadása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Meghívó közzététele" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -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" @@ -8525,9 +8954,10 @@ msgstr "Előnyben részesített nyelv" msgid "Press to attempt reconnection" msgstr "Az újracsatlakozáshoz kattints ide." -#: src/components/Error.tsx:61 +#: 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 "Az újrapróbálkozáshoz kattints ide." @@ -8536,7 +8966,7 @@ msgstr "Az újrapróbálkozáshoz kattints ide." msgid "Press to view followers of this account that you also follow" msgstr "Kattints ide a fiók azon követőinek megjelenítéséhez, akiket Te is követsz." -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Előnézet" @@ -8559,26 +8989,25 @@ msgstr "Adatvédelem" msgid "Privacy and security" msgstr "Adatvédelem és biztonság" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Adatvédelmi irányelvek" @@ -8586,15 +9015,15 @@ 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:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "GIF feldolgozása folyamatban…" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Videó feldolgozása folyamatban…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Feldolgozás folyamatban…" @@ -8602,10 +9031,10 @@ msgstr "Feldolgozás folyamatban…" msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "Borítókép helyőrzője" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "A fiók nem található" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 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:1672 +#: src/view/com/composer/Composer.tsx:1787 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:1661 +#: src/view/com/composer/Composer.tsx:1776 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:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Válasz közzététele" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Leküldéses" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Leküldéses értesítések" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "Leküldéses, mindenkitől" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "Leküldéses, az Általad követett személyektől" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-kód vágólapra helyezve" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "A QR-kód letöltése megtörtént" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "A QR-kód fényképalbumba mentése megtörtént" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Értesítések idézésekről" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Értesítések idézésekről" msgid "Quote post" msgstr "Idézés" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Visszakapcsoltad az idézetet" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Leválasztottad az idézetet" @@ -8711,12 +9138,12 @@ msgstr "Idézés letiltva" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Idézések" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "A bejegyzés idézései" @@ -8728,16 +9155,16 @@ msgstr "Korlát átlépve – rövid időn belül túl sokszor próbáltad megv msgid "Rate limit exceeded. Please try again later." msgstr "Korlát átlépve. Próbáld újra később." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Idézet visszakapcsolása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Meghívó letiltásának feloldása" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Meghívó letiltásának feloldása" @@ -8745,8 +9172,8 @@ msgstr "Meghívó letiltásának feloldása" msgid "React with {emoji}" msgstr "Reagálás a(z) {emoji}-emojival" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reakciók" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "További információ a keresésszűrőkről (angol nyelven)" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blogbejegyzés megtekintése (angolul)" @@ -8812,11 +9239,11 @@ msgstr "Valódi emberek." msgid "Reason for appeal" msgstr "Fellebbezési ok" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Alkalmazáson belüli értesítések fogadása" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Leküldéses értesítések fogadása" @@ -8841,17 +9268,31 @@ msgstr "Javasolt" msgid "Reconnect" msgstr "Újracsatlakozás" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "A megtekintéshez frissítsd a lapot." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Elutasítás" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Elutasítás" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Csevegési kérelem elutasítása" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Csatlakozási kérelem elutasítása" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Beszélgetések újratöltése" @@ -8863,6 +9304,8 @@ msgstr "Beszélgetések újratöltése" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8872,15 +9315,20 @@ msgstr "Eltávolítás" #: src/components/dms/ChatProfileTabs.tsx:153 msgid "Remove {displayName} from group chat" -msgstr "{displayName} eltávolítása a csevegőcsoportból" +msgstr "{displayName} eltávolítása a csoportbeszélgetésből" #: src/components/StarterPack/Wizard/WizardListCard.tsx:62 msgid "Remove {displayName} from starter pack" msgstr "{displayName} eltávolítása a kezdőcsomagból" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" -msgstr "{displayName} eltávolítása a csevegőcsoportból" +msgstr "{displayName} eltávolítása a csoportbeszélgetésből" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Biztosan el akarod távolítani {displayName} felhasználót?" #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "{historyItem} törlése" msgid "Remove account" msgstr "Fiók eltávolítása" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Az összes névjegy eltávolítása" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Melléklet eltávolítása" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Profilkép eltávolítása" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Borítókép eltávolítása" @@ -8914,8 +9362,9 @@ msgstr "Borítókép eltávolítása" msgid "Remove caption file" msgstr "Feliratfájl eltávolítása" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Beágyazott tartalom eltávolítása" @@ -8929,12 +9378,12 @@ msgstr "Hírfolyam eltávolítása" msgid "Remove feed?" msgstr "Hírfolyam eltávolítása" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: 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:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Eltávolítás a mentett bejegyzések közül" msgid "Remove from your feeds?" msgstr "Eltávolítás a hírfolyamgyűjteményből" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Kép eltávolítása" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Megosztott bejegyzés eltávolítása" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Javaslat eltávolítása" @@ -9009,11 +9458,11 @@ msgstr "Hitelesítés eltávolítása" msgid "Remove your verification for this account?" msgstr "Biztosan el akarod távolítani a hitelesítésedet erről a fiókról?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Eltávolította a szerző" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Eltávolítottad ezt a tartalmat" @@ -9035,7 +9484,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:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Válasz a bejegyzésedre" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Válaszok" @@ -9104,14 +9552,14 @@ msgstr "Válaszadás letiltva" msgid "Replies to this post are disabled." msgstr "A bejegyzés alatti válaszadás le van tiltva." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Válasz közzététele" #. Accessibility label for the reply button, verb form followed by number of replies and noun form #. placeholder {0}: post.replyCount || 0 -#: src/components/PostControls/index.tsx:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Válasz írása ({0, plural, one {# válasz} other {# válasz}})" @@ -9125,10 +9573,6 @@ msgstr "Elrejtve a válaszlánc szerzője által" msgid "Reply Hidden by You" msgstr "Elrejtve Általad" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Értesítések válaszokról" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "A teljes válaszlánc beállításait az eredeti szerző kezeli" @@ -9137,18 +9581,18 @@ msgstr "A teljes válaszlánc beállításait az eredeti szerző kezeli" msgid "Reply sorting" msgstr "Válaszok rendezése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" -msgstr "Frissítetted a válasz láthatóságát" +msgstr "Válasz láthatósága frissítve" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Elrejtetted a választ" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Jelentés" @@ -9157,20 +9601,20 @@ msgstr "Jelentés" msgid "Report account" msgstr "Fiók jelentése" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Beszélgetés jelentése" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Párbeszédablak jelentése" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Hírfolyam jelentése" @@ -9179,12 +9623,12 @@ msgstr "Hírfolyam jelentése" msgid "Report list" msgstr "Lista jelentése" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Üzenet jelentése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Bejegyzés jelentése" @@ -9199,8 +9643,8 @@ msgstr "Kezdőcsomag jelentése" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "A jelentést megkaptuk" @@ -9213,16 +9657,16 @@ msgstr "Beszélgetés jelentése" msgid "Report this feed" msgstr "Hírfolyam jelentése" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" -msgstr "Csevegőcsoport jelentése" +msgstr "Csoportbeszélgetés jelentése" #: src/components/moderation/ReportDialog/copy.ts:31 msgid "Report this list" msgstr "Lista jelentése" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Élő adás jelentése" @@ -9256,10 +9700,6 @@ msgstr "Megosztás" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Megosztás ({0, plural, one {# megosztás} other {# megosztás}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Értesítések megosztásokról" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Megosztottad" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Megosztások" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "A bejegyzés megosztásai" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Megosztott bejegyzések megosztása" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Értesítések megosztott bejegyzések megosztásáról" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Csatlakozási kérelem küldése" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Kérelem jóváhagyva." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Kód kérelmezése" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Kérelem figyelmen kívül hagyva." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Csatlakozási kérelem" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Kérelem elküldve" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Kérelmek" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Csatlakozási kérelmek" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Helyettesítő szöveg hozzáadásának megkövetelése közzététel előtt" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "E-mailben kapott kód megkövetelése a bejelentkezéshez." @@ -9328,7 +9791,17 @@ msgstr "Szükséges a tárhelyszolgáltatóhoz" msgid "Required in your region" msgstr "Szükséges ebben a régióban" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Kérelem visszavonása" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Csatlakozási kérelem visszavonása" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Újraküldés" @@ -9373,8 +9846,8 @@ msgstr "Regisztrációs varázsló állapotának alaphelyzetbe állítása" msgid "Reset password" msgstr "Jelszó helyreállítása" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Névjegyek frissítése" @@ -9391,17 +9864,18 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "A legutóbb meghiúsult folyamat újrapróbálása" msgid "Retry" msgstr "Újra" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Jelentési lehetőségégek betöltésének újrapróbálása" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Vissza az előző oldalra" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Vissza a kezdőoldalra" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Vissza az előző oldalra" @@ -9451,10 +9925,10 @@ msgstr "Szomorú GIF-ek" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Változtatások mentése" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Változtatások mentése" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Mentés" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Piszkozat mentése" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Kép mentése" msgid "Save new handle" msgstr "Felhasználónév mentése" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR-kód mentése" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Mentés a hírfolyamgyűjteménybe" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Mentett" @@ -9534,25 +10010,25 @@ msgstr "Mentett" msgid "Saved Feeds" msgstr "Mentett hírfolyamok" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Mentett bejegyzések" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Hírfolyam elmentve" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Köszönj!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Írj valakinek!" @@ -9560,6 +10036,16 @@ msgstr "Írj valakinek!" msgid "Scam" msgstr "Átverés" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Beolvasás" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "QR-kód beolvasása" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Tudomány" @@ -9576,18 +10062,18 @@ msgstr "Görgetés jobbra" msgid "Scroll to top" msgstr "Vissza a tetejére" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Keresés" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Keresés @{0} bejegyzései között" @@ -9662,12 +10148,12 @@ msgstr "Keresés a nyelvek között" msgid "Search my posts" msgstr "Keresés a saját bejegyzések között" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Keresés a bejegyzések között" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Profilok keresése" msgid "Search..." msgstr "Keresés…" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Profilok keresése" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Biztonsági lépés szükséges" @@ -9759,7 +10245,7 @@ msgstr "{langName} kiválasztása" msgid "Select a color" msgstr "Szín kiválasztása" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Indok megadása" @@ -9828,9 +10314,9 @@ msgstr "GIF kiválasztása" msgid "Select GIF \"{0}\"" msgstr "„{0}” GIF kiválasztása" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" -msgstr "Csevegőcsoport tagjainak megadása" +msgstr "Csoportbeszélgetés tagjainak megadása" #: src/components/dialogs/MutedWords.tsx:151 msgid "Select how long to mute this word for." @@ -9850,7 +10336,7 @@ msgstr "Nyelv kiválasztása…" msgid "Select languages" msgstr "Nyelvek kiválasztása" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Moderálási szolgáltatás kiválasztása" @@ -9904,11 +10390,11 @@ msgstr "Válaszd ki az érdeklődési köreidet az alábbi lehetőségek közül msgid "Select your preferred language for translations in your feed." msgstr "Add meg, hogy milyen nyelvre szeretnéd lefordítani a bejegyzéseket." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Kívánt értesítési csatornák megadása" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Egy bejegyzéshez csak egyféle médiatartalom csatolható." @@ -9921,9 +10407,9 @@ msgstr "Önkárosítás vagy veszélyes viselkedés" msgid "Send code" msgstr "Kód küldése" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "E-mail küldése" @@ -9935,11 +10421,11 @@ msgstr "E-mail küldése" msgid "Send error report" msgstr "Hibajelentés küldése" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Visszajelzés küldése" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Üzenet küldése" @@ -9952,7 +10438,7 @@ msgstr "Bejegyzés küldése neki: {name}" msgid "Send post to..." msgstr "Címzett kiválasztása" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Jelentés küldése neki: {title}" @@ -9960,7 +10446,7 @@ msgstr "Jelentés küldése neki: {title}" msgid "Send the message from your phone" msgstr "Üzenet küldése a telefonról" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Továbbítás személyes üzenetben" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "Add meg a születési dátumodat és seperc alatt folytathatod a böngé msgid "Sets email for password reset" msgstr "E-mail cím beállítása jelszóvisszaállításhoz" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: 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:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Saját tevékenységértesítési beállítások" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Kedveléses értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Megemlítéses értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Új követős értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Egyéb értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Megosztott bejegyzések kedveléséses értesítéseinek beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Idézéses értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Válaszos értesítések beállításai" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Megosztásos értesítések beállításai" @@ -10079,16 +10565,19 @@ msgstr "Szexuális aktusok vagy erotikus meztelenség." msgid "Sexually Suggestive" msgstr "Szexuális tartalom" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Továbbítás" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Továbbítás mégis" @@ -10097,16 +10586,21 @@ msgstr "Továbbítás mégis" msgid "Share author DID" msgstr "Szerző DID-jének továbbítása" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Kép továbbítása" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Csoportmeghívó továbbítása" + #: 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 "Hivatkozás továbbítása" @@ -10114,6 +10608,11 @@ msgstr "Hivatkozás továbbítása" msgid "Share link dialog" msgstr "Hivatkozásmegosztási párbeszédablak" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Saját profil megosztása" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Bejegyzés „at://” URI-jének továbbítása" msgid "Share QR code" msgstr "QR-kód továbbítása" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Hírfolyam továbbítása" @@ -10142,8 +10641,8 @@ msgstr "Oszd meg ezt a kezdőcsomagot, hogy mások is csatlakozhassanak a Bluesk #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Továbbítás…" @@ -10151,7 +10650,7 @@ msgstr "Továbbítás…" msgid "Share your contacts to find friends" msgstr "Oszd meg velünk a névjegyeidet és kutatsd fel az ismerőseidet" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "„Megosztott beállítások” tesztelő" @@ -10167,16 +10666,16 @@ msgstr "Helyettesítő szöveg megjelenítése" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Megjelenítés mégis" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Automatizálási feljegyzés megjelenítése" @@ -10195,10 +10694,10 @@ msgstr "Testreszabási lehetőségek megjelenítése" #: src/components/dms/SystemMessageGroup.tsx:57 msgid "Show group chat updates" -msgstr "" +msgstr "Csoportbeszélgetéses események megjelenítése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Kevesebb ilyet mutasson" @@ -10219,8 +10718,8 @@ msgstr "Élő események megjelenítése a Felfedezés hírfolyamon" msgid "Show More" msgstr "Továbbiak" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Több ilyet mutasson" @@ -10246,8 +10745,8 @@ msgstr "Válaszok megjelenítése" msgid "Show replies as" msgstr "Válaszok megjelenése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Válasz megjelenítése mindenkinek" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Saját élő állapot megjelenítése" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "További információ a bejegyzés dátumáról" @@ -10297,15 +10796,17 @@ msgstr "Tartalom megjelenítése" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Jelentkezz be vagy regisztrálj" msgid "Sign in or create your account to join the conversation!" msgstr "Jelentkezz be vagy regisztrálj a csatlakozáshoz!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "A meghívó elfogadásához bejelentkezés szükséges." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Bejelentkezés egy másik felhasználói fiókba" @@ -10337,8 +10842,12 @@ msgstr "Bejelentkezés egy másik felhasználói fiókba" msgid "Sign in to Bluesky or create a new account" msgstr "Jelentkezz be vagy hozz létre egy Bluesky-fiókot." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "A csoportbeszélgetés megtekintéséhez bejelentkezés szükséges." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "A megtekintéshez bejelentkezés szükséges" @@ -10348,9 +10857,9 @@ msgstr "A megtekintéshez bejelentkezés szükséges" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Kijelentkezés" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Kijelentkezés" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Kijelentkezés" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Üres bejegyzések kihagyása" @@ -10405,7 +10914,7 @@ msgstr "Bevezető kihagyása és fiók használatának megkezdése" msgid "Skip to next step" msgstr "Lépés kihagyása" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "csúszka" @@ -10413,7 +10922,7 @@ msgstr "csúszka" msgid "Smaller" msgstr "Kisebb" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Emlékeztető elhalasztása" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Valaki elhagyta a csoportot." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Valaki {0} emojival reagált" @@ -10487,17 +10996,22 @@ msgstr "Valakit eltávolítottak a csoportból" msgid "Someone was removed from the group" msgstr "Valaki el lett távolítva a csoportból." -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Itt egy új funkció kapott helyet" + +#: 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 "Valami nem stimmel a beküldendő adatokkal. Vedd fel a kapcsolatot az ügyfélszolgálattal." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Valami balul sült el" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Valami balul sült el!" msgid "Something went wrong. Please try again in a moment." msgstr "Valami balul sült el. Próbáld újra." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Valami balul sült el. Próbáld újra." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Valami nem stimmel? Vedd fel velünk a kapcsolatot!" @@ -10564,11 +11078,16 @@ msgstr "Hamis/kéretlen tartalom vagy átverés" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "A megkezdett beszélgetések itt fognak megjelenni." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Csoportbeszélgetés indítása" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Új csevegés indítása" @@ -10582,17 +11101,17 @@ msgstr "Személyek felvétele" msgid "Start adding people!" msgstr "Vegyél fel személyeket!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Csevegés létrehozása" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Csevegés indítása vele: {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Kezdőcsomag" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Mesekönyv" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Szoktál a Twitchen közvetíteni? Ha igen, akkor lehetőséged van az élő állapotodat a blueskyos profilodon is megjeleníteni. A jelvényre koppintva egy felhasználó megnyithatja az élő adásodat." @@ -10671,8 +11190,8 @@ msgstr "Szoktál a Twitchen közvetíteni? Ha igen, akkor lehetőséged van az #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Küldés" @@ -10684,9 +11203,9 @@ msgstr "Fellebbezés beküldése" msgid "Submit Appeal" msgstr "Fellebbezés beküldése" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Jelentés küldése" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Feliratkozás" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Siker" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Siker!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Sikeres csatlakozás." + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Fiók hitelesítve" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Javasolt" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Szürkület" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Támogatás" msgid "Support for this feature in your country has not been enabled yet! Please check back later." 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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Egy felfüggesztett fiók nem vehet részt csoportbeszélgetésekben." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Egy felfüggesztett fiók nem vehet részt csevegésekben." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Fiókváltás" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Fiókváltás" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Váltás rá: {0}" @@ -10824,11 +11347,15 @@ msgstr "Rendszernapló" msgid "Tags only" msgstr "Csak címkék" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Társalogjatok sok szem közt." + #: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Részletek" @@ -10854,33 +11381,51 @@ msgstr "A Blueskyt érintő változtatások megértésének jelzéséhez és elf msgid "Tap to close context menu" msgstr "Koppints ide a helyi menü bezárásához" +#: src/components/dms/ChatInvite/Root.tsx:92 +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 msgid "Tap to dismiss" msgstr "Koppints ide a bezáráshoz" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Koppints ide az azonnali csatlakozáshoz" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Koppints ide a csoportbeszélgetés megnyitásához" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Koppints ide az eltávolításhoz" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Koppints ide a(z) „{0}” reakció eltávolításához" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Koppints ide az újrapróbálkozáshoz" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Koppints ide a(z) {0} reakció megtekintéséhez" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Koppints ide az összes reakció megtekintéséhez" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Koppints ide a reakciók megtekintéséhez" @@ -10926,12 +11471,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Felhasználási feltételek" @@ -10941,7 +11486,7 @@ msgstr "Szöveg és címkék" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Szövegbeviteli mező" @@ -10983,9 +11528,9 @@ msgstr "Ez van, srácok!" msgid "That's everything!" msgstr "Ez minden!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "A fiók ismét képes lesz kapcsolatba lépni veled, ha feloldod a letiltását." @@ -11051,6 +11596,11 @@ msgstr "Új bejegyzéseknél az alábbi beállítások lesznek az alapértelmeze msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "A régiódban érvényes törvények szerint bizonyos funkciók használatához igazolnod kell a felnőttlétedet. További információért koppints ide." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "A tagkorlát elérve." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Az eredeti bejegyzést a szerzője <0>{suggestedLanguageName} nyelvűnek jelölte meg. Szeretnél Te is ezen a nyelven válaszolni?" @@ -11059,10 +11609,10 @@ msgstr "Az eredeti bejegyzést a szerzője <0>{suggestedLanguageName} nyelv msgid "The Privacy Policy has been moved to <0/>" msgstr "Az adatvédelmi irányelvek elköltöztek: <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "" +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "A kiválasztott fájl meghaladja {VIDEO_MAX_SIZE_MB, selectordinal, one {az #} other {a #}} MB-os korlátot. Válassz ki egy kisebb videót." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11103,9 +11653,9 @@ msgstr "Téma" 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 "A születési dátum szerkesztésének gyakorisága korlátozott. Lehetséges, hogy várnod kell egy pár napot, mielőtt ismét szerkeszthetnéd." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." -msgstr "Ez a csevegőcsoport jelenleg nem rendelkezik meghívóval." +msgstr "Ez a csoportbeszélgetés jelenleg nem rendelkezik meghívóval." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." @@ -11117,10 +11667,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "A GIF-ek betöltése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11128,7 +11681,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11138,7 +11691,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11163,31 +11716,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "A hírfolyamok frissítése meghiúsult. Ellenőrizd az internetkapcsolatot, majd próbáld újra." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Hiba történt! {0}" @@ -11223,6 +11776,14 @@ msgstr "Ezek az alapértelmezett beállítások" msgid "These settings only apply to the Following feed." msgstr "Az alábbi beállítások csak a Követett hírfolyamra vonatkoznak." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "Csoporttulajdonos" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "Ez a(z) {screenDescription} feljegyzést kapott:" @@ -11256,7 +11817,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "A fellebbezés címzettje: <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Ez a fellebbezés a Bluesky moderálási szolgáltatásához lesz elküldve." @@ -11265,7 +11826,7 @@ msgstr "Ez a fellebbezés a Bluesky moderálási szolgáltatásához lesz elkül msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Ez a szerző csak a bejelentkezett felhasználók számára kívánja megtekinthetővé tenni a bejegyzéseit." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Ezzel a gombbal mások megnyithatják a Germ DM-profilodat üzenetküldés céljából. Az elérhetőség láthatósága a Germ DM-alkalmazásban kezelheő. Ha szét kívánod választani a Bluesky- és Germ DM-fiókjaidat, azt az alábbi gombbal teheted meg." @@ -11273,11 +11834,21 @@ msgstr "Ezzel a gombbal mások megnyithatják a Germ DM-profilodat üzenetküld msgid "This chat has ended" msgstr "A csevegés véget ért" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "A csoportbeszélgetés megtelt" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "A csevegés zárolva van" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "Ezt a csevegést egy adminisztrátor zárolta" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Megszakadt a kapcsolat a csevegéssel" @@ -11312,7 +11883,11 @@ msgstr "Ez a tartalom jelenleg nem elérhető, mert az egyik kapcsolódó felhas msgid "This content is not viewable without a Bluesky account." msgstr "Ezt a tartalmat bejelentkezés nélkül nem tekintheted meg." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "A csoportbeszélgetés zárolva van." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt. A lehetőségekhez kattints ide" @@ -11320,7 +11895,7 @@ msgstr "Ez a beszélgetés egy már törölt vagy deaktivált fiókkal történt msgid "This draft will be permanently deleted." msgstr "Ez a művelet nem vonható vissza." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Ez az e-mail-cím már hozzá van rendelve a fiókodhoz." @@ -11358,11 +11933,15 @@ msgstr "Ez a hírfolyam üres." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Ez a hírfolyam már nem elérhető. Helyette a <0>Felfedezés hírfolyamot jelenítjük meg." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "Ezt a csevegést a tulajdonos zárolta" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11370,6 +11949,14 @@ msgstr "A megadott kép nem használható. Javasolt formátumok: JPG és PNG." msgid "This information is private and not shared with other users." msgstr "Ez az információ privát és nem osztjuk meg más felhasználókkal." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "A meghívót letiltották." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "A meghívó érvénytelen" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Üres állapot" @@ -11379,7 +11966,7 @@ msgstr "Üres állapot" msgid "This is not a valid link" msgstr "Érvénytelen hivatkozás" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Ezzel a feljegyzéssel közölheted azt, hogy a fiók automatikusan működik. A feljegyzés a fiók profilján és minden bejegyzésén megjelenik, a neve mellett. Ezt a beállítást bármikor módosíthatod." @@ -11412,13 +11999,17 @@ msgstr "Ennek az Általad létrehozott listának a címe vagy leírása lehetsé msgid "This list is empty." msgstr "Ez a lista üres." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Rejtett üzenet" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Az üzenet el van rejtve, mivel letiltottad a másik felet." @@ -11436,7 +12027,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:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "A bejegyzés adatai szerint az eredeti létrehozási dátuma <0>{0} volt, de először ekkor jelent meg a Blueskyon: <1>{1}" @@ -11452,25 +12043,26 @@ msgstr "Ez a bejegyzés csak a bejelentkezett felhasználók számára látható msgid "This post was deleted by its author" msgstr "Ezt a bejegyzést törölte a szerző" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "A szerző letiltotta az idézést." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Ez a profil csak a bejelentkezett felhasználók számára látható; a kijelentkezett felhasználók számára nem." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Ez a válasz egy rejtett részlegbe lesz sorolva a válaszláncok legalján és se Te, sem pedig mások nem fognak értesítéseket kapni a jövőbeli válaszokról." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." -msgstr "Ez az oldal csak csevegőcsoportoknál elérhető." +msgstr "Ez az oldal csak csoportbeszélgetéseknél elérhető." #: src/screens/Signup/StepInfo/Policies.tsx:32 msgid "This service has not provided terms of service or a privacy policy." @@ -11492,22 +12084,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 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:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "A címzett letiltott Téged, ezért nem veheted fel vele a kapcsolatot." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "A címzett nem fogad üzeneteket, ezért nem veheted fel vele a kapcsolatot." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11553,7 +12145,7 @@ msgstr "Ez véglegesen törölni fogja a(z) <0>{currentHandle} Bluesky-fiók msgid "This will remove @{0} from the quick access list." msgstr "Ezzel @{0} el lesz távolítva a fióklistáról." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Ezzel el fogod távolítani a bejegyzést az idézésből mindenki számára, ami egy helyőrzővel lesz helyettesítve." @@ -11576,7 +12168,7 @@ msgstr "Válaszláncok" msgid "Threaded" msgstr "Egymásba ágyazott" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Válaszlánc-beállítások" @@ -11602,8 +12194,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az e-mail-címedet." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "A kétlépcsős azonosítás kikapcsolásához vissza kell igazolnod az e-mail-címedet: <0>{0}" @@ -11648,16 +12240,16 @@ msgstr "Felkapott" msgid "Top replies first" msgstr "A legjobbra értékelt válaszok elöl" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Témakör" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Fordítás" @@ -11669,8 +12261,8 @@ msgstr "Lefordítva" msgid "Translating" msgstr "Fordítás" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Fordítás…" @@ -11704,7 +12296,7 @@ msgstr "Felkapott videók" msgid "Trolling" msgstr "Provokálás („trollkodás”)" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A bizalom kapcsolatok, közösségek és egy megosztott környezet útján alakul ki, ezért bevezetjük a <0>megbízható hitelesítők rendszerét is – ezek olyan egyesületek, amelyek közvetlenül is képesek hitelesíteni másokat." @@ -11713,16 +12305,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Próbálkozz másmilyen kifejezésekkel. <0>További információ a keresésszűrőkről (angol nyelven)." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Újra" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Újra" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Próbáld újra később." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Újrapróbálkozás a Google Fordítóval" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Próbáld ki!" + #: src/lib/interests.ts:74 msgid "TV" msgstr "Televízió" @@ -11765,13 +12371,17 @@ msgstr "A szolgáltatással való kapcsolatfelvétel meghiúsult. Ellenőrizd az msgid "Unable to delete" msgstr "A törlés meghiúsult" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "A csatlakozási kérelmek lekérdezése meghiúsult." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Az egyik címzett nem található." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "A címzett nem található." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11793,38 +12403,43 @@ msgstr "Nem elérhető" msgid "Unavailable feed information" msgstr "Nincs elérhető hírfolyam-információ" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Tiltás feloldása" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Tiltás feloldása" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "{displayName} tiltásának feloldása" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Fiók tiltásának feloldása" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Fiók tiltásának feloldása" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Fiók tiltásának feloldása" @@ -11839,8 +12454,8 @@ msgstr "Lista tiltásának feloldása" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Visszavonás" @@ -11861,11 +12476,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Megosztás visszavonása ({0, plural, one {# megosztás} other {# megosztás}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} követésének megszüntetése" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Fiók követésének megszüntetése" @@ -11874,7 +12489,7 @@ msgstr "Fiók követésének megszüntetése" msgid "Unfollows the user" msgstr "Követés megszüntetése" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "A feljegyzőid közül egyik sem támogatja ezt a jelentési típust." @@ -11886,14 +12501,6 @@ msgstr "A megadott születési dátum szerint sajnos túl fiatal vagy a Bluesky msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "A saját állításod szerint ebben a régióban sajnos még túl fiatal vagy a Bluesky használatához." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Meghívás visszavonása" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "{displayName} meghívásának visszavonása" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Ismeretlen hitelesítő" @@ -11906,23 +12513,23 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Mégse tetszik" #. 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Kedvelés visszavonása ({0, plural, one {# kedvelés} other {# kedvelés}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Zárolás feloldása" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" -msgstr "A csevegőcsoport zárolásának feloldása" +msgstr "A csoportbeszélgetés zárolásának feloldása" #: src/screens/ProfileList/components/Header.tsx:180 #: src/screens/ProfileList/components/Header.tsx:187 @@ -11941,14 +12548,14 @@ msgstr "Némítás feloldása" msgid "Unmute {0}" msgstr "A(z) {0} némításának feloldása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Fiók némításának feloldása" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Beszélgetés némításának feloldása" @@ -11957,12 +12564,12 @@ msgstr "Beszélgetés némításának feloldása" msgid "Unmute list" msgstr "Lista némításának feloldása" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" -msgstr "Csevegőcsoport némításának feloldása" +msgstr "Csoportbeszélgetés némításának feloldása" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Válaszlánc némításának feloldása" @@ -11976,19 +12583,19 @@ msgid "Unpin" msgstr "Kitűzés feloldása" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Kitűzés feloldása" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Kitűzés feloldása a kezdőoldalról" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Kitűzés feloldása a profilodról" @@ -11998,7 +12605,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:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "A(z) {0} hírfolyam kitűzése feloldva" @@ -12032,14 +12639,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "A vágólap tartalma nem támogatott." -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Nem támogatott videóformátum: {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Akár 50 személy" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12049,16 +12660,20 @@ msgstr "Frissítés" msgid "Update <0>{displayName} in Lists" msgstr "<0>{displayName} listatagságának frissítése" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Alkalmazás frissítése" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "E-mail-cím frissítése" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Meghívó frissítése" @@ -12067,11 +12682,15 @@ msgstr "Meghívó frissítése" msgid "Update to {domain}" msgstr "Frissítés erre: {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "A csatlakozáshoz az alkalmazás frissítése szükséges." +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Frissítsd az alkalmazást" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "A megtekintéshez frissítsd az alkalmazást." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "E-mail-cím frissítése" @@ -12082,17 +12701,17 @@ msgstr "E-mail-cím frissítése" msgid "Update your location" msgstr "Tartózkodási hely frissítése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Az idézet leválasztása/visszakapcsolása meghiúsult" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 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:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Fénykép feltöltése" @@ -12100,39 +12719,40 @@ msgstr "Fénykép feltöltése" msgid "Upload a text file to:" msgstr "Tölts fel ide egy szöveges fájlt:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Feltöltés a kamerából" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Feltöltés a fájlkezelőből" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Feltöltés a galériából" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "GIF feltöltése folyamatban…" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Képek feltöltése folyamatban…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Hivatkozás indexképének feltöltése folyamatban…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Videó feltöltése folyamatban…" @@ -12176,10 +12796,10 @@ msgid "user" msgstr "felhasználó" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" -msgstr "Letiltottad a felhasználót" +msgstr "Felhasználó letiltva" #: src/components/moderation/ModerationDetailsDialog.tsx:75 #: src/lib/moderation/useModerationCauseDescription.ts:64 @@ -12213,7 +12833,7 @@ msgid "User list by {0}" msgstr "Felhasználólista – Szerző: {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Felhasználólista – Szerző: {0}" @@ -12257,12 +12877,12 @@ msgstr "a(z) <0>@{0} által követett felhasználók" msgid "users following <0>@{0}" msgstr "a(z) <0>@{0} személyt követett felhasználók" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Csak a követett személyektől" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Csak a követett személyektől" @@ -12279,7 +12899,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:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Hitelesítési beállítások" @@ -12306,8 +12926,8 @@ msgstr "Igazolás ismét" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Kód megerősítése" @@ -12318,7 +12938,7 @@ msgid "Verify DNS Record" msgstr "DNS-rekord ellenőrzése" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "E-mailes kód megerősítése" @@ -12351,7 +12971,7 @@ msgstr "Fiók hitelesítése" msgid "Verify your age" msgstr "Életkor igazolása" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12382,11 +13002,11 @@ msgstr "Verziószám: {0}" msgid "Video" msgstr "Videó" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "A videó feldolgozása meghiúsult" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Videófolyam" @@ -12421,7 +13041,7 @@ msgstr "A videó nem található." msgid "Video settings" msgstr "Videóbeállítások" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "A videó feltöltése sikeresen befejeződött" @@ -12434,18 +13054,18 @@ msgstr "Videó: {0}" msgid "Videos" msgstr "Videók" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Megtekintés" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "A(z) {0} megtekintése" @@ -12457,10 +13077,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "{0} profiljának megtekintése" @@ -12469,20 +13089,15 @@ msgstr "{0} profiljának megtekintése" msgid "View {0}’s profile" msgstr "{0} profiljának megtekintése" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "{displayName} profiljának megtekintése" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "A(z) {publicationTitle} megtekintése" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "@{0} profiljának megtekintése" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Letiltott felhasználó profiljának megtekintése" @@ -12505,9 +13120,17 @@ msgstr "Részletek" msgid "View full thread" msgstr "Teljes válaszlánc megtekintése" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" -msgstr "Bejövő csevegőcsoporti kérelmek megtekintése" +msgstr "Bejövő csoportbeszélgetéses kérelmek megtekintése" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Bejövő kérelmek megtekintése" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Bejövő csatlakozási kérelmek megtekintése" #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" @@ -12524,7 +13147,7 @@ msgstr "Továbbiak megtekintése" msgid "View more trending videos" msgstr "További felkapott videók megtekintése" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Bejegyzés megtekintése" @@ -12541,10 +13164,10 @@ msgstr "Profil megtekintése" msgid "View profile banner" msgstr "Borítókép megtekintése" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Kiadvány megtekintése" @@ -12552,9 +13175,9 @@ msgstr "Kiadvány megtekintése" msgid "View the avatar" msgstr "Profilkép megtekintése" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" -msgstr "A csevegőcsoport meghívójának megtekintése" +msgstr "A csoportbeszélgetések meghívójának megtekintése" #. placeholder {0}: labeler.creator.handle #: src/components/LabelingServiceCard/index.tsx:164 @@ -12565,7 +13188,7 @@ msgstr "A(z) {0} által kínált feljegyzési szolgáltatás megtekintése" msgid "View this user's verifications" msgstr "Felhasználó hitelesítéseinek megtekintése" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "A hírfolyamot kedvelő felhasználók megtekintése" @@ -12598,8 +13221,8 @@ msgstr "Elnémított fiókok megjelenítése" msgid "View your verifications" msgstr "Saját hitelesítések megtekintése" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Teljes kép megtekintése" @@ -12642,8 +13265,8 @@ msgstr "Figyelmeztetés" msgid "Warn content and filter from feeds" msgstr "Figyelmeztetés és kiszűrés a hírfolyamokból" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Élő adás megnyitása" @@ -12667,11 +13290,15 @@ msgstr "Erre a címkére nincs találat." msgid "We couldn't find any results for that topic." msgstr "Erre a témakörre nincs találat." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Ez a beszélgetés nem található" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "A beszélgetés csatlakozási kérelemeinek betöltése meghiúsult" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "A beszélgetés beállításainak betöltése meghiúsult" @@ -12717,11 +13344,11 @@ msgid "We recommend selecting at least two interests." msgstr "Legalább két érdeklődési kör megadása ajánlott." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Küldtünk egy e-mailt a(z) <0>{0} címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "A videófeltöltési jogosultságod ellenőrzése meghiúsult. Próbáld újra." @@ -12746,12 +13373,12 @@ msgstr "Egy kapcsolódási hiba miatt nem kaptuk meg a visszaigazolást. Lehets msgid "We will let you know when your account is ready." msgstr "Majd szólunk, ha a fiókod használatra kész." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Éresíteni fogunk, ha megtaláljuk az ismerőseidet." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Küldünk egy e-mailt a(z) <0>{0} címre. Kattints rá a benne található hivatkozásra a visszaigazoláshoz." @@ -12781,12 +13408,12 @@ msgstr "Hiba történt az életkor-igazolási folyamat elindítása közben. Ha 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:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Hálózati hiba történt. Próbáld újra." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12816,12 +13443,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sajnáljuk, de törölték a bejegyzést, amire válaszolnál." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Sajnáljuk, de a keresett oldal nem található." @@ -12867,12 +13494,12 @@ msgid "What do you want to call your starter pack?" msgstr "Milyen címet adnál a kezdőcsomagodnak?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Mi a helyzet?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Ha rákoppintasz a jelvényre, akkor megtekintheted egy fiók hitelesítőit." @@ -12880,7 +13507,7 @@ msgstr "Ha rákoppintasz a jelvényre, akkor megtekintheted egy fiók hitelesít msgid "Who can interact with this post?" msgstr "Kapcsolatbalépési információ" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "A csatlakozás körei és módja" @@ -12889,13 +13516,13 @@ msgstr "A csatlakozás körei és módja" msgid "Who can reply" msgstr "Ki válaszolhat?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Ki hitelesíthet?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Hoppá!" @@ -12941,19 +13568,19 @@ msgstr "Miért kell ezt a kezdőcsomagot átvizsgálni?" msgid "Why should this user be reviewed?" msgstr "Miért kell ezt a felhasználót átvizsgálni?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Szeretnéd letiltani ezt a felhasználót és/vagy törölni a beszélgetést?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Szeretnéd letiltani ezt a felhasználót és/vagy elhagyni a beszélgetést?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést?" @@ -12962,12 +13589,12 @@ msgstr "Szeretnéd piszkozatként menteni ezt a bejegyzést?" msgid "Write a post" msgstr "Bejegyzés írása" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Bejegyzés írása" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Válasz írása" @@ -12980,7 +13607,8 @@ msgstr "Írók" msgid "Wrong DID returned from server. Received: {0}" msgstr "A kiszolgáló helytelen DID-t adott vissza. Válasz: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Helytelen csevegéstípus" @@ -13007,11 +13635,11 @@ msgstr "Igen – fiók törlése" msgid "Yes, delete this starter pack" msgstr "Igen – kezdőcsomag törlése" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Igen – leválasztás" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Igen – elrejtés" @@ -13032,7 +13660,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "{0} le van tiltva" @@ -13070,7 +13698,7 @@ msgstr "Élő adásban vagy" msgid "You are no longer live" msgstr "Az élő adásod véget ért" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Nincs jogosultságod a videófeltöltésre." @@ -13119,21 +13747,30 @@ msgstr "Ezt az engedélyt bármikor visszavonhatod és törölheted az adataidat msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "A csevegési értesítések hangosítását/némítását az alkalmazáson belüli csevegési beállításokban szabhatod személyre" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "A már létező csevegéseket a fenti beállításoktól függetlenül folytathatod." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Mostantól feliratkozhatsz egyes személyek tevékenységeire. Ha van olyasvalaki, akinek a bejegyzéseiről szeretnél értesítéseket kapni, akkor nyisd meg a profilját és kattints a Követés gomb mellett található harang ikonra." +#: src/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 "Barátokat mostantól hivatkozással vagy QR-kóddal is meghívhatsz a Blueskyra. Oszd meg velük a hivatkozást vagy olvastasd be velük a QR-kódot!" + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Mostantól bejelentkezhetsz az új jelszóval." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Egy piszkozat legfeljebb 1000 karakter hosszú lehet." @@ -13141,11 +13778,11 @@ msgstr "Egy piszkozat legfeljebb 1000 karakter hosszú lehet." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Egy piszkozat legfeljebb 1000 karakter hosszú lehet. Szeretnéd elvetni ezt a bejegyzést, mielőtt megnyitod a további piszkozataidat?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Egy bejegyzéshez csak egy GIF csatolható." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Egy bejegyzéshez csak egy videó csatolható." @@ -13157,10 +13794,10 @@ msgstr "A bejelentkezés folytatásához újraaktiválhatod a fiókodat. Ezek ut msgid "You can read chat history but can’t send new messages." msgstr "Továbbra is képes leszel az üzenetek elolvasására, de újakat nem tudsz küldeni." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Egy bejegyzéshez csak {MAX_IMAGES, plural, other {# kép}} csatolható." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13168,9 +13805,14 @@ msgstr "Egy bejegyzéshez csak {MAX_IMAGES, plural, other {# kép}} csatolható. 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." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "Egy üzenethez legfeljebb {EMOJI_REACTION_LIMIT, plural, one {#} other {#}} reakciót lehet csatolni" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Még nem hozhatsz létre csoportbeszélgetést." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13199,6 +13841,10 @@ msgstr "Egy hírfolyamot se mentettél el." msgid "You got here first" msgstr "Te vagy az első!" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Korábban eltávolítottak a csoportbeszélgetésből, így ezzel a hivatkozással már nem csatlakozhatsz." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13268,7 +13914,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "A piszkozat tartalma megváltozott. Szeretnéd menteni?" @@ -13326,6 +13972,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "Tagokat csak a csoport tulajdonosa távolíthat el." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "A Bluesky használatához be kell töltened a 13. életévedet. További információért olvasd el a <0>felhasználási feltételeket." @@ -13334,11 +13984,12 @@ msgstr "A Bluesky használatához be kell töltened a 13. életévedet. További msgid "You must be following at least seven other people to generate a starter pack." msgstr "Egy kezdőcsomag létrehozásához legalább hét különböző személyt követned kell." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "A QR-kód mentéséhez először hozzáférést kell biztosítanod a fényképeidhez" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "A galériához hozzáférés szükséges." @@ -13346,6 +13997,10 @@ 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 +msgid "You own this chat" +msgstr "Saját csoport" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13356,7 +14011,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "{0} emojival reagáltál" @@ -13370,8 +14025,13 @@ 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" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Csatlakozási kérelem elküldve" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Ezzel az összes fiókból ki fogsz jelentkezni." @@ -13380,11 +14040,11 @@ msgstr "Ezzel az összes fiókból ki fogsz jelentkezni." msgid "You will no longer receive notifications for {0}" msgstr "Leiratkoztál {0} értesítéseiről" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Mostantól nem fogsz értesítéseket kapni erről a válaszláncról" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról" @@ -13392,12 +14052,12 @@ msgstr "Mostantól fogsz értesítéseket kapni erről a válaszláncról" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Kapni fogsz egy „helyreállítási kódot” tartalmazó e-mailt. Ezt a kódot itt kell megadnod a jelszó megváltoztatásához." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "A jövőben képtelen leszel ismét csatlakozni, hacsak meg nem hívnak." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Én: {message}" @@ -13431,6 +14091,10 @@ msgstr "Feliratkoztál {0} értesítéseire!" msgid "You'll stay updated with these feeds" msgstr "Ezek a hírfolyamok naprakészen tartanak." +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "Tiéd az irányítás" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Sorban állsz" @@ -13465,7 +14129,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "A piszkozattár megtelt." @@ -13477,11 +14141,11 @@ msgstr "Túllépted az egyidejűleg megengedett legtöbb lekérést. Próbáld msgid "You've reached the start of the active content." msgstr "Elérted az aktív tartalom elejét." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Elérted a napi videófeltöltési korlátot (bájthatár meghaladva)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Elérted a napi videófeltöltési korlátot (videómennyiség meghaladva)" @@ -13501,10 +14165,18 @@ msgstr "A fiókod törölve. Viszlát! ✌️" msgid "Your account has been suspended" msgstr "A fiókod felfüggesztésre került" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A fiókod még nem elég idős a videók feltöltéséhez. Próbáld újra később." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Új fiók" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "A fiókod adattára, ami az összes nyilvános adatodat tartalmazza, letölthető egy „CAR” fájlként. Ez a fájl nem tartalmazza a beágyazott médiatartalmakat (pl.: képeket), sem pedig a személyes adataidat, amit külön kell lekérned." @@ -13521,7 +14193,7 @@ msgstr "A fellebbezést megkaptuk. Pozitív elbírálás esetén fogsz kapni egy msgid "Your birth date" msgstr "Születési dátum" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Megfosztottak a csevegési jogosultságodtól" @@ -13529,11 +14201,11 @@ msgstr "Megfosztottak a csevegési jogosultságodtól" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Ez a választás tartós, de a jövőben bármikor megváltoztathatod az alkalmazás beállításaiban." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Megtaláltuk egy ismerősödet a Blueskyon: {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Megtaláltuk egy ismerősödet a Blueskyon: {firstAuthorName}" @@ -13563,7 +14235,7 @@ msgstr "Saját e-mail-cím" msgid "Your email appears to be invalid." msgstr "Az e-mail-címed érvénytelen." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "A Bluesky teljes funkcionalitásának kihasználásához az e-mail-címed visszaigazolása szükséges." @@ -13584,7 +14256,7 @@ msgstr "A Követett hírfolyamod üres. Kövess több felhasználót, hogy lásd msgid "Your full handle will be <0>@{0}" msgstr "A teljes felhasználóneved: <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13613,9 +14285,9 @@ msgstr "Tartózkodási hely frissítve." msgid "Your muted words" msgstr "Elnémított szavak" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "A felhasználóneved, profilképed és a csoport neve nyilvánosan megtekinthető lesz." +#: 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 "A felhasználóneved, profilképed, illetve a csoport neve és tagszáma nyilvánosan megtekinthető lesz." #: 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." @@ -13625,11 +14297,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Bejegyzés elküldve" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Bejegyzések elküldve" @@ -13637,7 +14309,7 @@ msgstr "Bejegyzések elküldve" msgid "Your preferred language" msgstr "Az előnyben részesített nyelved" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Saját profilkép" @@ -13650,12 +14322,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Válasz elküldve" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "A jelentés címzettje: <0>{0}." @@ -13663,7 +14335,7 @@ msgstr "A jelentés címzettje: <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Az érdeklődési köreid megadásával személyre szabhatod a javasolt tartalmakat." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 1ce66437ea..f0b64bf3f1 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Interlingua\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(include contento incorporate)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# appreciation} other {# appreciationes}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuta} other {# minutas}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mense} other {# menses}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# secunda} other {# secundas}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento non legite} other {# elementos non legite}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>texto e etiquettas" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} ha reagite con {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "{0}, un lista de {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento non legite} other {# elementos non legite}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuta} other {minutas}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} te ha sequite" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu message" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha removite lor verificationes de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha verificate tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} te ha sequite" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} te seque in retorno" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ha appreciate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} ha removite su verification de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} ha verificate tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} te seque" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha removite lor verificationes de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}} ha verificate tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} te seque" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} te seque in retorno" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ha appreciate tu canal personalisate" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ha appreciate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} ha appreciate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} ha removite su verification de tu conto" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha republicate tu publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} ha republicate tu republication" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} se ha inscribite con tu pacchetto de initio" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} ha verificate tu conto" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} ha verificate tu conto" msgid "{following} following" msgstr "{following} sequitos" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Non es possibile inviar messages a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesStri msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# hora} other {# horas}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# elemento non legite} other {# elementos non legite}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "{userName} es verificate" msgid "{userName}'s verifications" msgstr "Verificationes de {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altere} other {# alteres}} #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {sequitor} other {sequitores}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {sequito} other {sequitos}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} membros" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Un nove forma de verification" @@ -827,11 +907,11 @@ msgstr "Un captura de schermo de un pagina de profilo con un icone de campana pr 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Acceptar" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Acceptar" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Acceptar requesta de chat" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Acceptar requesta" @@ -860,17 +950,26 @@ msgstr "Acceptar requesta" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accessibilitate" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Parametros de accessibilitate" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Parametros de accessibilitate" msgid "Account" msgstr "Conto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Conto blocate" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Conto sequite" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Conto removite del accesso rapide" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Conto disblocate" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Conto non plus sequite" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Conto dissilentiate" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Contos con un marca de verification blau festonate <0><1/> pote verificar alteres. Iste verificatores de confidentia es seligite per Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Activitates de alteres" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notificationes de activitate" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Adder" @@ -999,8 +1094,8 @@ msgstr "Adder conto" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Adder texto alternative (optional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Adder altere conto" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Adder un altere publication" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Adder contrasigno de application" msgid "Add App Password" msgstr "Adder contrasigno de application" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Adder reaction con emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Adder plus detalios (optional)" @@ -1091,6 +1186,10 @@ msgstr "Adder personas" msgid "Add people to list" msgstr "Adder personas al lista" +#: 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 "Adder reaction" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Detalios additional (limite: 300 characteres)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@exemplo.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Toto" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Permitter accesso a tu messages directe" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Tu es ja in session como @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Texto alternative" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Le texto alternative describe imagines pro usatores cec o con problemas de vision, e adjuta a dar contexto a totes." @@ -1387,7 +1486,7 @@ msgstr "Un error ha occurrite" msgid "An error occurred" msgstr "Un error ha occurrite" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Un error ha occurrite durante le compression del video." @@ -1421,7 +1520,8 @@ msgstr "Un error ha occurrite durante le cargamento del video. Per favor tenta l msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Un error ha occurrite durante le salvamento del codice QR!" @@ -1432,11 +1532,11 @@ msgstr "Un error ha occurrite durante le salvamento del codice QR!" msgid "An error occurred while trying to follow all" msgstr "Un error ha occurrite durante le tentativa de sequer totes" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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 "Un illustration monstrante que Bluesky selige verificatores de confidentia qui, a su vice, verifica contos de usatores individual." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Un problema non includite in iste optiones" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Un problema ha occurrite durante le tentativa de aperir le chat" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Un problema ha occurrite, per favor tenta lo de novo." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Un simulation de un iPhone monstrante le application Bluesky aperte al profilo de un usator verificate con un marca de verification blau proxime a su nomine a monstrar." @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "Quicunque pote interager" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "Quicunque qui me seque" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Le nomines de contrasigno de application debe haber al minus 4 character msgid "App passwords" msgstr "Contrasignos de application" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Contrasignos de application" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Appello inviate" @@ -1632,14 +1740,14 @@ msgstr "Facer appello del suspension" msgid "Appeal Suspension" msgstr "Facer appello del suspension" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Facer appello de iste decision" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archivate desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Publication archivate" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Es tu secur de voler deler le contrasigno del application “{0}”?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Es tu secur de voler deler iste pacchetto de initio?" msgid "Are you sure you want to discard your changes?" msgstr "Es tu secur de voler discartar tu cambiamentos?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Es tu secur de voler partir de iste conversation?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Es tu secur de voler partir de iste conversation? Tu messages essera delite pro te, mais non pro le altere participante." +#: 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 "Es tu secur de voler remover isto de tu canales?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Es tu secur de voler discartar iste publication?" @@ -1724,8 +1838,8 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nuditate artistic o non erotic." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Assignar topico pro le algorithmo" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Reproducer automaticamente videos e GIFs" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Retornar" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Retornar al chats" @@ -1832,7 +1948,7 @@ msgstr "Ante crear un publication o responder, tu debe verificar tu e-mail." 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Ante que tu pote acceptar iste requesta de chat, tu debe verificar tu e-mail." @@ -1840,13 +1956,14 @@ msgstr "Ante que tu pote acceptar iste requesta de chat, tu debe verificar tu e- msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Ante que tu pote reciper notificationes pro le publicationes de {name}, tu debe verificar tu e-mail." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Ante que tu pote inviar messages a un altere usator, tu debe verificar tu e-mail." @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Data de nascentia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blocar" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blocar conto" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Blocar conto?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blocar contos" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Blocar lista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blocar o signalar" @@ -1936,9 +2047,9 @@ msgstr "Blocar iste contos?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blocar usator" @@ -1946,9 +2057,9 @@ msgstr "Blocar usator" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blocar usator" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blocate" @@ -1964,14 +2075,12 @@ msgstr "Blocate" msgid "Blocked accounts" msgstr "Contos blocate" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contos blocate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera." @@ -1987,7 +2096,7 @@ msgstr "Blocar non impedi que iste etiquettator applica etiquettas a tu conto." msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Le blocage es public. Contos blocate non pote responder in tu filos, mentionar te o interager con te de alcun altere maniera." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Le blocage non impedi le application de etiquettas a tu conto, mais iste conto non potera responder in tu filos o interager con te." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non pote confirmar le authenticitate del data declarate." @@ -2029,7 +2138,7 @@ msgstr "Bluesky es melior con amicos!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Conditiones de servicio de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky eligera un insimul de contos recommendate inter le personas in t msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky non monstrara tu profilo e publicationes al usatores sin session aperte. Altere applicationes pote non honorar iste requesta. Iste option non rende tu conto private." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verificara proactivemente contos notabile e authentic." @@ -2081,6 +2194,10 @@ msgstr "Libros" 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" @@ -2137,24 +2254,34 @@ msgstr "Negotios" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Per {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Per <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "In crear un conto, tu accepta le <0>conditiones de servicio." msgid "By you" msgstr "Per te" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Camera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Camera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Camera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Camera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancellar" @@ -2248,9 +2384,9 @@ msgstr "Cancellar le reactivation e clauder session" msgid "Cancel search" msgstr "Cancellar cerca" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Impossibile interager con un usator blocate" @@ -2264,7 +2400,7 @@ msgstr "Subtitulos (.vtt)" msgid "Captions & alt text" msgstr "Subtitulos e texto alternative" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "Cambiar le lingua del application" msgid "Change Handle" msgstr "Cambiar pseudonymo" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Cambiar de servicio de moderation" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Cambiar ration de signalamento" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chat delite" @@ -2361,6 +2497,12 @@ msgstr "Chat delite" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "Messages de chat - silentiose" msgid "Chat messages - sound" msgstr "Messages de chat - con sono" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat silentiate" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Cassa de entrata de requestas de chat" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Requestas de chat" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Configurationes de Chat" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Configurationes de Chat" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat dissilentiate" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Elige iste color como tu avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Clicca hic pro reinitiar le processo de verification." @@ -2567,7 +2718,7 @@ msgstr "Clicca hic pro reinitiar le processo de verification." msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Clicca hic pro actualisar tu e-mail" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Clicca pro tentar inviar le message de novo" @@ -2594,28 +2745,30 @@ msgstr "Clicca pro tentar inviar le message de novo" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Clicca pro tentar inviar le message de novo" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Clauder" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Clauder quadro de dialogo active" @@ -2647,6 +2800,10 @@ msgstr "Clauder quadro de dialogo active" msgid "Close alert" msgstr "Clauder alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Clauder le tiratorio inferior" @@ -2657,8 +2814,10 @@ msgstr "Clauder le tiratorio inferior" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Clauder quadro de dialogo" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Clauder imagine" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Clauder menu" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Clauder iste quadro de dialogo" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Claude le alerta de actualisation de contrasigno" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Claude le fenestra de redaction e discarta le minuta del publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Collaber lista de usatores" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Contrahe le lista de usatores pro un notification date" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Bandas designate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Directivas del communitate" @@ -2740,12 +2915,12 @@ msgstr "Completa le defia" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Scriber un nove publication" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}" @@ -2753,11 +2928,11 @@ msgstr "Redige publicationes de usque a {0, plural, other {# characteres}}" msgid "Compose reply" msgstr "Scriber un responsa" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Compression del video in curso..." @@ -2780,7 +2955,7 @@ msgstr "Configurate in le <0>parametros de moderation." msgid "Confirm" msgstr "Confirmar" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contactar supporto" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Contento e multimedia" msgid "Content and media" msgstr "Contento e multimedia" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Contento e multimedia" @@ -2889,7 +3064,7 @@ msgstr "Fundo de menu contextual. Clicca pro clauder le menu." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Continuar filo" msgid "Continue thread..." msgstr "Continuar filo..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Continuar al proxime passo" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversation delite" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversation delite" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Version de compilation copiate al area de transferentia" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiate!" msgid "Copies build version to clipboard" msgstr "Copia le version del compilation al area de transferentia" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiar" @@ -2997,6 +3184,11 @@ msgstr "Copiar DID" msgid "Copy host" msgstr "Copiar servitor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Copiar ligamine al lista" msgid "Copy link to post" msgstr "Copiar ligamine al publication" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copiar ligamine al profilo" @@ -3027,8 +3219,8 @@ msgstr "Copiar ligamine al profilo" msgid "Copy link to starter pack" msgstr "Copiar ligamine al pacchetto de initio" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiar message de texto" @@ -3037,12 +3229,12 @@ msgstr "Copiar message de texto" msgid "Copy post at:// URI" msgstr "Copiar URI at:// del publication" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiar texto de publication" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiar codice QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica de derectos de autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Non ha essite possibile connecter al canal personalisate" @@ -3065,7 +3261,15 @@ msgstr "Non ha essite possibile connecter al canal personalisate" msgid "Could not connect to feed service" msgstr "Non ha essite possibile connecter al servicio de canal" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "Non ha essite possibile trovar le profilo" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Non ha essite possibile partir del chat" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Non ha essite possibile cargar le canal" @@ -3100,7 +3308,11 @@ msgstr "Non ha essite possibile cargar le canal" msgid "Could not load list" msgstr "Non ha essite possibile cargar le lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Non ha essite possibile silentiar le chat" @@ -3108,11 +3320,19 @@ msgstr "Non ha essite possibile silentiar le chat" msgid "Could not process your video" msgstr "Non ha essite possibile processar tu video" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Non ha essite possibile salvar le cambiamentos: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Non ha essite possibile actualisar le parametros de notification" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Crear" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Crear un pacchetto de initio" @@ -3174,13 +3394,14 @@ msgstr "Crea un pacchetto de initio pro me" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "In vice, crear un avatar" @@ -3206,7 +3427,7 @@ msgstr "In vice, crear un avatar" msgid "Create another" msgstr "Crear un altere" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crear nove conto" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Crear un signalamento pro {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Create {0}" @@ -3270,6 +3492,10 @@ msgstr "Le creator ha essite blocate" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Thema obscur" msgid "Date of birth" msgstr "Data de nascentia" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Predefinite" msgid "Default icons" msgstr "Icones predefinite" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Deler le contrasigno de application" msgid "Delete app password?" msgstr "Deler le contrasigno de application?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Deler chat" @@ -3378,19 +3612,19 @@ msgstr "Deler chat" msgid "Delete chat declaration record" msgstr "Deler le registro de declaration de chat" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Deler conversation" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Deler pro me" @@ -3399,11 +3633,11 @@ msgstr "Deler pro me" msgid "Delete list" msgstr "Deler lista" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Deler message" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Deler message pro me" @@ -3411,9 +3645,9 @@ msgstr "Deler message pro me" msgid "Delete my account" msgstr "Deler mi conto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Deler publication" @@ -3430,17 +3664,17 @@ msgstr "Deler pacchetto de initio?" msgid "Delete this list?" msgstr "Deler iste lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Deler iste publication?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Delite" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Conto delite" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Texto alternative descriptive" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Disannexar citation" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Disannexar le citation?" @@ -3507,13 +3741,13 @@ msgstr "Dialogo: adjusta qui pote interager con iste publication" msgid "Dim" msgstr "Tenue" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Disactivar 2FA" @@ -3521,7 +3755,7 @@ msgstr "Disactivar 2FA" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Disactivar 2FA per e-mail" @@ -3534,8 +3768,8 @@ msgstr "Disactivar le 2FA per e-mail" msgid "Disable haptic feedback" msgstr "Disactivar le retroaction haptic" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Disactivate" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Discartar" msgid "Discard changes?" msgstr "Discartar cambiamentos?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Discartar publication?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Discoperir nove canales" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Clauder" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Clauder error" @@ -3642,6 +3877,10 @@ msgstr "Clauder iste section" 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" @@ -3673,7 +3912,7 @@ msgstr "Non include nuditate." msgid "Domain verified!" msgstr "Dominio verificate!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Tu non ha un codice o ha necessitate de un nove? <0>Clicca hic." @@ -3681,7 +3920,7 @@ msgstr "Tu non ha un codice o ha necessitate de un nove? <0>Clicca hic." msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Tu non trova le e-mail? <0>Clicca hic pro reinviar." @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Preste" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Tocca duo vices pro clauder le quadro de dialogo" @@ -3737,19 +3981,14 @@ msgstr "Tocca duo vices pro clauder le quadro de dialogo" msgid "Double tap to like" msgstr "Tocca duo vices pro appreciar" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Discargar Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Discargar file CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Discargar file CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Duration:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "p.ex. alice" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Modificar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Modificar avatar" @@ -3847,19 +4102,19 @@ msgstr "Modificar avatar" msgid "Edit Feeds" msgstr "Modificar canales" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Modificar imagine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Modificar parametros de interaction" @@ -3868,7 +4123,16 @@ msgstr "Modificar parametros de interaction" msgid "Edit interests" msgstr "Modificar interesses" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "Modificar stato in directo" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modificar mi canales" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Modificar notificationes de {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modificar personas" @@ -3912,12 +4171,12 @@ msgstr "Modificar le parametros de interaction del publication" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Modificar profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Modificar profilo" @@ -3925,7 +4184,8 @@ msgstr "Modificar profilo" msgid "Edit starter pack" msgstr "Modificar pacchetto de initio" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Modificar qui pote responder" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Modificar tu pacchetto de initio" @@ -3971,7 +4231,7 @@ msgstr "Adresse de e-mail" msgid "Email Resent" msgstr "E-mail reinviate" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-mail inviate!" @@ -4006,8 +4266,8 @@ msgstr "Incorporar iste publication in tu sito web. Basta copiar le sequente fra msgid "Embedded video player" msgstr "Reproductor de video incorporate" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Activar" @@ -4025,7 +4285,7 @@ msgstr "Activar contento pro adultos" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Activar 2FA per e-mail" @@ -4038,13 +4298,12 @@ msgstr "Activar contento multimedial externe" msgid "Enable media players for" msgstr "Activar reproductores multimedial pro" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activa le notificationes de un conto visitante su profilo e premente le <0>icone de campana <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Activar notificationes push" @@ -4091,8 +4350,8 @@ msgstr "Insere un contrasigno" msgid "Enter a word or tag" msgstr "Insere un parola o etiquetta" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Insere codice" @@ -4143,12 +4402,12 @@ msgstr "Passa a plen schermo" msgid "Entertainment" msgstr "Intertenimento" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Error" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Totes" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Totes" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Totes" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Tote le resto" @@ -4217,16 +4476,16 @@ msgstr "Exclude al usatores que tu seque" msgid "Exit fullscreen" msgstr "Exir del schermo plen" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expander texto alternative" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expander lista de usatores" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Expander o contraher le publication integre al qual tu responde" @@ -4238,7 +4497,7 @@ msgstr "Expander le texto del publication" msgid "Expands or collapses post text" msgstr "Expande o contrahe le texto del publication" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Esseva expectate que le URI se resolve a un registro" @@ -4277,10 +4536,10 @@ msgstr "Multimedia explicite o potentialmente perturbator." msgid "Explicit sexual images." msgstr "Imagines sexual explicite." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" @@ -4289,11 +4548,8 @@ msgstr "Explorar" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferentias de multimedia externe" @@ -4331,18 +4587,22 @@ msgstr "Preferentias de multimedia externe" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Non ha essite possibile acceptar le chat" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Non ha essite possibile adder reaction con emoji" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Non ha essite possibile cambiar le pseudonymo. Tenta de novo." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Non ha essite possibile crear le contrasigno del application. Tenta de novo." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Non ha essite possibile crear le conversation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Non ha essite possibile crear pacchetto de initio" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Non ha essite possibile deler le chat" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Non ha essite possibile deler le message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Non ha essite possibile deler le publication, tenta de novo" @@ -4394,24 +4655,24 @@ msgstr "Non ha essite possibile deler le publication, tenta de novo" msgid "Failed to delete starter pack" msgstr "Non ha essite possibile deler le pacchetto de initio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Non ha essite possibile cargar le conversationes" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Non ha essite possibile cargar le preferentias de canales" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Non ha essite possibile cargar le parametros de notification." @@ -4493,16 +4753,15 @@ msgstr "Non ha essite possibile cargar le canales suggerite" msgid "Failed to load suggested follows" msgstr "Non ha essite possibile cargar le suggestiones de usatores a sequer" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Non ha essite possibile marcar tote le requestas como legite" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Non ha essite possibile fixar le publication" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Non ha essite possibile remover reaction con emoji" @@ -4534,7 +4793,8 @@ msgstr "Non ha essite possibile remover reaction con emoji" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "Non ha essite possibile remover le verification" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Non ha essite possibile salvar tu interesses." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Non ha essite possibile inviar e-mail, tenta de novo." @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Non ha essite possibile inviar le appello, tenta de novo." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Non ha essite possibile commutar le silentiamento del filo, tenta de novo" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Non ha essite possibile actualisar le parametros de 2FA" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Non ha essite possibile actualisar le e-mail, tenta de novo." @@ -4614,7 +4879,7 @@ msgstr "Non ha essite possibile actualisar canales" msgid "Failed to update notification declaration" msgstr "Non ha essite possibile actualisar le declaration de notification" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Non ha essite possibile actualisar le parametros" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Canal" @@ -4649,7 +4914,7 @@ msgstr "Canal" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Canal de {0}" @@ -4662,7 +4927,7 @@ msgstr "Creator del canal" msgid "Feed identifier" msgstr "Identificator del canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu de canal" @@ -4676,25 +4941,25 @@ msgstr "Canal indisponibile" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Commentarios" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Canales" @@ -4739,7 +5004,7 @@ msgstr "Filtrar resultatos per lingua (actualmente: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtrar de qui tu recipe notificationes" @@ -4747,11 +5012,11 @@ msgstr "Filtrar de qui tu recipe notificationes" msgid "Finalizing" msgstr "Finalisante" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Trovar contos a sequer" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Trovar personas a sequer" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Trovar publicationes, usatores e canales super Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Sequer" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Sequer {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Sequer conto" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Sequer in retorno" @@ -4916,7 +5183,7 @@ msgstr "Sequer in retorno" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Sequite per <0>{0} e <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Sequite per <0>{0}, <1>{1} e {2, plural, one {# altere} other {# alteres}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Sequitores de @{0} que tu cognosce" @@ -4960,10 +5231,10 @@ msgstr "Sequitores que tu cognosce" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Sequente" @@ -4977,12 +5248,12 @@ msgstr "Sequente" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Sequente {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Sequente {handle}" msgid "Following feed preferences" msgstr "Preferentias del canal Sequente" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferentias del canal Sequente" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Te seque" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Te seque" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Typo de litteras" @@ -5065,11 +5333,16 @@ msgstr "Tu ha oblidate tu contrasigno?" msgid "Forgot?" msgstr "Tu lo ha oblidate?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "De" @@ -5086,82 +5359,86 @@ msgstr "De <0/>" msgid "Generate a starter pack" msgstr "Generar un pacchetto de initio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obtener adjuta" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "Reciper notificationes quando le personas te seque." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Reciper notificationes quando le personas apprecia publicationes que tu ha republicate." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Reciper notificationes quando le personas apprecia tu publicationes." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Reciper notificationes quando le personas te mentiona." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Reciper notificationes quando le personas cita tu publicationes." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Reciper notificationes quando le personas responde a tu publicationes." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Reciper notificationes quando le personas republica publicationes que tu ha republicate." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Reciper notificationes quando le personas republica tu publicationes." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Reciper notificationes de nove publicationes" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Reciper notificationes de publicationes e responsas de contos que tu elige." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Reciper notificationes de nove publicationes de {name}" @@ -5174,27 +5451,27 @@ msgstr "Reciper notificationes del activitate de iste conto" msgid "Get notified when {name} posts" msgstr "Reciper notificationes quando {name} publica" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Reciper notificationes quando alcuno publica" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Comenciar" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Da un facie a tu profilo" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Retornar" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Retornar" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Retornar al passo precedente" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ir al initio" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ir al initio" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ir al initio" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "Entrar in directo per" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Ir al profilo de {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ir a conversation con {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Ir al proxime" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ir al profilo" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ir al profilo del usator" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Pseudonymo troppo longe. Tenta un plus curte." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Tu ha un codice? <0>Clicca hic." @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Adjuta" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Lista occultate" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Lista occultate" msgid "Hide" msgstr "Occultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Occultar" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Occultar le publication pro me" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Occultar le responsa pro totes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ocultar le responsa pro me" @@ -5577,19 +5875,19 @@ msgstr "Occultar iste carta" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Occultar iste publication?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Occultar iste responsa?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Occultar tendentias?" msgid "Hide trending videos?" msgstr "Occultar videos in tendentia?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Occultar lista de usatores" @@ -5620,6 +5918,10 @@ msgstr "Occultar insignias de verification" msgid "Hides the content" msgstr "Occulta le contento" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Un problema ha occurrite durante le cargamento de iste datos. Vide infra msgid "Hmmmm, we couldn't load that moderation service." msgstr "Le systema non ha succedite a cargar iste servicio de moderation." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Un momento! Nos concede gradualmente le accesso al video, e tu attende ancora in le cauda. Reveni tosto!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Initio" @@ -5721,7 +6019,7 @@ msgstr "Io comprende" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Si le texto alternative es longe, commuta le stato expandite del texto alternative" @@ -5757,15 +6055,15 @@ msgstr "Si tu dele iste lista, tu non potera recuperar lo." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Si tu ha un dominio proprie, tu pote usar lo como pseudonymo. Isto te permitte autoverificar tu identitate. <0>Sape plus hic." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Si tu debe actualisar tu e-mail, <0>clicca hic." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Si tu remove iste publication, tu non potera recuperar lo." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Si tu actualisa tu adresse de e-mail, le 2FA per e-mail essera disactivate." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Si tu vole restringer qui pote reciper notificationes del activitates de tu conto, tu pote cambiar lo in <0>Parametros → Privatessa e securitate." @@ -5786,23 +6083,23 @@ msgstr "Si tu es un disveloppator, tu pote hospitar tu proprie servitor." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Si tu tenta cambiar de pseudonymo o de adresse de e-mail, face lo ante disactivar." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imagine" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Cache de imagines radite, {0} liberate" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Interne al application" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notificationes interne al application" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Interne al application, totes" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Interne al application, personas que tu seque" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Interne al application, push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Interne al application, push, totes" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Interne al application, push, personas que tu seque" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Cassa de entrata vacue!" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Codice de confirmation 2FA invalide." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Pseudonymo invalide. Tenta un differente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Thema de signalamento invalide" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Codice de verification invalide" @@ -6001,8 +6315,15 @@ msgstr "Codice de invitation" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Invita personas a iste pacchetto de initio!" +#: 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 "Invita tu amicos a sequer tu canales e personas favorite" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID del processo: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID del processo: {0}" msgid "Jobs" msgstr "Empleos" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Empleos" msgid "Join Bluesky" msgstr "Inscribe te a Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Participar al conversation" msgid "Journalism" msgstr "Journalismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "Tene me al currente" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Etiquettas super tu conto" msgid "Labels on your content" msgstr "Etiquettas super tu contento" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Configurationes de lingua" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Ultime" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Saper plus super iste advertimento" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Saper plus super lo que es public super Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Saper plus." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Partir" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Partir del chat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Partir del conversation" @@ -6284,13 +6642,14 @@ msgstr "Partir del conversation" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Partir del conversation" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Quitar Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "remane." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Clar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Appreciar" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Appreciar ({0, plural, one {# appreciation} other {# appreciationes}})" @@ -6346,11 +6713,7 @@ msgstr "Appreciar 10 publicationes" msgid "Like 10 posts to train the Discover feed" msgstr "Apprecia 10 publicationes pro trainar le canal Discoperir" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notificationes de appreciation" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Appreciar iste canal" @@ -6358,8 +6721,8 @@ msgstr "Appreciar iste canal" msgid "Like this labeler" msgstr "Appreciar iste etiquettator" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Appreciate per" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Appreciate per {0, plural, one {# usator} other {# usatores}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Appreciate per {likeCount, plural, one {# usator} other {# usatores}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Appreciationes" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Appreciationes de tu republicationes" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notificationes de appreciationes de tu republicationes" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Appreciationes de iste publication" @@ -6409,11 +6768,11 @@ msgstr "Appreciationes de iste publication" msgid "Linear" msgstr "Linear" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dissilentiate" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listas" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Cargante..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Registro" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo de <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Apparentemente te manca un canal de sequitos. <0>Clicca hic pro adder un msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Ajustar le parametros de e-mail pro tu conto" @@ -6687,24 +7046,22 @@ msgstr "Gerer parametros de verification" msgid "Manage your muted words and tags" msgstr "Gerer tu parolas e etiquettas silentiate" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Marcar toto como legite" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcar como legite" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Marcate toto como legite" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Forsan plus tarde" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notificationes de mentiones" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "usatores mentionate" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mentiones" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Message {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Message delite" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Message delite" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Message de @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Le message es troppo longe" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Optiones de messages" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Messages" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Medienocte" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notificationes diverse" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderation" @@ -6894,7 +7247,7 @@ msgstr "Lista de moderation actualisate" msgid "Moderation lists" msgstr "Listas de moderation" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de moderation" @@ -6903,7 +7256,7 @@ msgstr "Listas de moderation" msgid "moderation settings" msgstr "parametros de moderation" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Statos de moderation" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Plus optiones" @@ -6949,7 +7302,7 @@ msgstr "Cinema" msgid "Music" msgstr "Musica" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silentiar" @@ -6965,8 +7318,8 @@ msgstr "Silentiar" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Silentiar conto" msgid "Mute accounts" msgstr "Silentiar contos" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silentiar conversation" @@ -6994,7 +7347,7 @@ msgstr "Silentiar lista" msgid "Mute these accounts?" msgstr "Silentiar iste contos?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Silentiar iste parola solmente in etiquettas" msgid "Mute this word until you unmute it" msgstr "Silentiar iste parola usque tu lo dissilentia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silentiar discussion" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silentiar parolas e etiquettas" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Contos silentiate" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contos silentiate" @@ -7062,6 +7419,10 @@ msgstr "Parolas e etiquettas silentiate" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Le silentiamento es private. Le contos silentiate pote interager con te, mais tu non videra lor publicationes ni recipera notificationes de illos." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Navigar al pacchetto de initio" msgid "Navigates to the next screen" msgstr "Naviga al proxime schermo" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Naviga a tu profilo" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Non importa, crea un pseudonymo pro me" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nove" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "Nove {postsCount, plural, one {publication} other {publicationes}} de {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nove chat" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Nove adresse de e-mail" @@ -7171,32 +7533,30 @@ msgstr "Nove adresse de e-mail" #: 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 "Nove function" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notificationes de nove sequitor" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Nove sequitores" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nove publication" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nove publication" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Nove publicationes de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altere} other {{formattedAuthorsCount} alteres}}" @@ -7262,8 +7622,8 @@ msgstr "Novas" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Sequente" msgid "Next image" msgstr "Proxime imagine" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Necun imagine" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Non plus sequente {0}" @@ -7362,7 +7726,7 @@ msgstr "Non plus sequente {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Ancora sin messages" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Ancora sin notificationes!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Solmente le autor pote citar iste publication." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Necun resultato" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Necun resultato" @@ -7446,8 +7810,8 @@ msgstr "Necun resultato" msgid "No results for \"{0}\"." msgstr "Necun resultato pro \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Necun resultato trovate" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nuditate non sexual" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Necun" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Non trovate" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota super compartimento" @@ -7548,44 +7912,31 @@ msgstr "Nota: Iste publication solmente es visibile a usatores con session apert msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Parametros de notification" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sonos de notification" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificationes" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notificationes pro tote le resto, como quando alcuno se inscribe via un de tu pacchettos de initio." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ora" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Inactive" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "OK" @@ -7648,35 +8000,35 @@ msgstr "in<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Reinitialisation del apprentissage" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "Manca texto alternative a un o plus GIFs." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Manca texto alternative a un o plus imagines." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Manca texto alternative a un o plus videos." @@ -7685,6 +8037,26 @@ msgstr "Manca texto alternative a un o plus videos." msgid "Only {0} can reply." msgstr "Solmente {0} pote responder." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Solmente sequitores que io seque" msgid "Only image files are supported" msgstr "Solmente files de imagine es supportate" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solmente files WebVTT (.vtt) es supportate" @@ -7703,6 +8085,10 @@ msgstr "Solmente files WebVTT (.vtt) es supportate" msgid "Oops, something went wrong!" msgstr "Ops, alcun error ha occurrite!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ops, alcun error ha occurrite!" msgid "Oops!" msgstr "Ops!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Aperir creator de avatar" @@ -7720,12 +8106,17 @@ msgstr "Aperir creator de avatar" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Aperir optiones de conversation" @@ -7739,16 +8130,16 @@ msgstr "Aperir le menu lateral" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Aperir selector de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Aperir menu de optiones de canal" @@ -7760,13 +8151,22 @@ msgstr "Aperir le lista complete de emojis" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Aperir ligamine a {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Aperir pacchetto" msgid "Open post options menu" msgstr "Aperir menu de optiones de publication" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Aperir profilo" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "Aperir registro de systema" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Aperi un quadro de dialogo pro adder un advertimento de contento a tu pu msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Aperi detalios additional pro un entrata de depuration" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Aperi le camera super le dispositivo" @@ -7858,22 +8270,24 @@ msgstr "Aperi le fenestra de redaction" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Aperi le fluxo pro crear un nove conto Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Aperi le fluxo pro aperir session con tu conto Bluesky existente" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "Aperi le ligamine {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Aperi le quadro de dialogo de stato in directo" @@ -7902,15 +8316,23 @@ msgstr "Aperi le formulario de reinitialisation de contrasigno" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Aperi iste profilo" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Nostre equipa de moderation ha recipite tu signalamento." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nostre moderatores ha revidite signalationes e ha decidite disactivar tu accesso a chats super Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Nostre moderatores ha revidite signalationes e ha decidite disactivar tu msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Pagina non trovate" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Pagina non trovate" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Pausar video" msgid "People" msgstr "Personas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Personas sequite per @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Personas qui seque @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Personas que io seque" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Photographia" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imagines destinate a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar canal" @@ -8152,12 +8578,12 @@ msgstr "Fixar canal" msgid "Pin to home" msgstr "Fixar al initio" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fixar al initio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fixar in tu profilo" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fixate" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Fixate {0} al Initio" @@ -8236,7 +8662,7 @@ msgstr "Per favor elige tu pseudonymo." msgid "Please choose your password." msgstr "Per favor elige tu contrasigno." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Clicca super le ligamine que nos te ha inviate justo ora pro verificar t msgid "Please complete the verification captcha." msgstr "Per favor completa le captcha de verification." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "Insere un contrasigno. Illo debe haber al minus 8 characteres." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Insere un nomine unic pro iste contrasigno del application o usa illo que nos ha generate aleatorimente." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Insere un codice valide." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Insere un adresse de e-mail valide." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Insere le codice que nos ha inviate a <0>{0} hic infra." @@ -8293,7 +8719,7 @@ msgstr "Insere le codice que nos ha inviate a <0>{0} hic infra." msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Per favor insere tu adresse de e-mail." msgid "Please enter your invite code." msgstr "Per favor insere tu codice de invitation." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Insere tu nove adresse de e-mail." @@ -8323,7 +8749,7 @@ msgstr "Insere tu nomine de usator" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Explica proque tu pensa que iste etiquetta ha essite incorrectemente applicate a {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Explica proque tu pensa que tu chats ha essite disactivate incorrectemente" @@ -8358,7 +8784,11 @@ msgstr "Selige un motivo pro iste signalamento" msgid "Please sign in as @{0}" msgstr "Per favor aperi session como @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Verifica tu e-mail" @@ -8383,7 +8813,7 @@ msgstr "Politica" msgid "Porn" msgstr "Pornographia" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publicar toto" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Publication blocate" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Publication de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Publication delite" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Non ha essite possibile cargar le publication. Verifica tu connexion al Internet e tenta de novo." @@ -8454,18 +8884,22 @@ msgstr "Publication occultate per te" msgid "Post interaction settings" msgstr "Parametros de interaction del publication" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Parametros de interaction del publication" +#: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Publicationes pote esser silentiate secundo lor texto, lor etiquettas, o msgid "Posts hidden" msgstr "Publicationes occultate" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "Publicationes, responsas" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Ligamine potentialmente fallace" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Preme pro tentar reconnecter" -#: src/components/Error.tsx:61 +#: 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 "Pressa pro retentar" @@ -8536,7 +8966,7 @@ msgstr "Pressa pro retentar" msgid "Press to view followers of this account that you also follow" msgstr "Preme pro vider sequitores de iste conto que tu tamben seque" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Privatessa" msgid "Privacy and security" msgstr "Privatessa e securitate" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Politica de privatessa" @@ -8586,15 +9015,15 @@ msgstr "Politica de privatessa" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Processante video..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Processante..." @@ -8602,10 +9031,10 @@ msgstr "Processante..." msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profilo" @@ -8613,6 +9042,7 @@ msgstr "Profilo" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publicar" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publicar publicationes" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publicar responsas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publicar responsa" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notificationes push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, totes" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, personas que tu seque" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Codice QR copiate a tu area de transferentia!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Le codice QR ha essite discargate!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Codice QR salvate in tu rolo del camera!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notificationes de citation" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notificationes de citation" msgid "Quote post" msgstr "Citar publication" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Le citation ha essite reannexate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Le citation ha essite disannexate con successo" @@ -8711,12 +9138,12 @@ msgstr "Citationes disactivate" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citationes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citationes de iste publication" @@ -8728,16 +9155,16 @@ msgstr "Limite excedite – tu ha tentate cambiar tu pseudonymo troppo de vices msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Reannexar citation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "Reager con {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leger publication del blog" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Motivo del appello" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Reciper notificationes interne al application" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Reciper notificationes push" @@ -8841,17 +9268,31 @@ msgstr "Recommendate" msgid "Reconnect" msgstr "Reconnecter" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Rejectar" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Rejectar" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Rejectar requesta de chat" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Recargar conversationes" @@ -8863,6 +9304,8 @@ msgstr "Recargar conversationes" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Remover {displayName} del pacchetto de initio" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Remover {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Remover {historyItem}" msgid "Remove account" msgstr "Remover conto" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Remover annexo" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Remover avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Remover banner" @@ -8914,8 +9362,9 @@ msgstr "Remover banner" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Remover incorporation" @@ -8929,12 +9378,12 @@ msgstr "Remover canal" msgid "Remove feed?" msgstr "Remover canal?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "Remover de tu canales?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Remover imagine" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Remover republication" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "Remover verification" msgid "Remove your verification for this account?" msgstr "Remover tu verification de iste conto?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Removite per le autor" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Removite per te" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Responsas" @@ -9104,14 +9552,14 @@ msgstr "Responsas disactivate" msgid "Replies to this post are disabled." msgstr "Responsas a iste publication es disactivate." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Responsa" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responsa ({0, plural, one {# responsa} other {# responsas}})" @@ -9125,10 +9573,6 @@ msgstr "Responsa occultate per le autor del filo" msgid "Reply Hidden by You" msgstr "Responsa occultate per te" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notificationes de responsa" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Le parametros de responsa es eligite per le autor del filo" @@ -9137,18 +9581,18 @@ msgstr "Le parametros de responsa es eligite per le autor del filo" msgid "Reply sorting" msgstr "Ordinamento de responsas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilitate del responsa actualisate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Le responsa ha essite occultate con successo" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Signalar" @@ -9157,20 +9601,20 @@ msgstr "Signalar" msgid "Report account" msgstr "Signalar conto" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Signalar conversation" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Signalar dialogo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Signalar canal" @@ -9179,12 +9623,12 @@ msgstr "Signalar canal" msgid "Report list" msgstr "Signalar lista" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Signalar message" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Signalar publication" @@ -9199,8 +9643,8 @@ msgstr "Signalar pacchetto de initio" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Signalar inviate" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Signalar iste canal" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Signalar iste lista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Republication" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republication ({0, plural, one {# republication} other {# republicationes}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notificationes de republication" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Republicate per te" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Republicationes" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Republicationes de iste publication" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Republicationes de tu republicationes" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notificationes de republication de tu republicationes" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Require texto alternative ante le publication" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Require in codice de e-mail pro aperir session con tu conto." @@ -9328,7 +9791,17 @@ msgstr "Obligatori pro iste fornitor" msgid "Required in your region" msgstr "Requirite in tu region" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Reinviar" @@ -9373,8 +9846,8 @@ msgstr "Reinitialisar stato de apprentissage" msgid "Reset password" msgstr "Reinitialisar contrasigno" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Tenta de novo le ultime action, que ha generate un error" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Tenta de novo le ultime action, que ha generate un error" msgid "Retry" msgstr "Tentar de novo" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Tenta de novo cargar le optiones de signalamento" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Retornar al pagina precedente" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Retorna al pagina precedente" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvar cambiamentos" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Salvar imagine" msgid "Save new handle" msgstr "Salvar nove pseudonymo" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Salvar codice QR" @@ -9518,13 +9994,13 @@ msgstr "Salvar codice QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Salvar in mi canales" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Canales salvate" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvate in tu canales" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Dice hallo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Scientia" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Rolar al alto" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Cercar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cercar publicationes de @{0}" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "Cercar mi publicationes" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Cercar publicationes" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Cercar profilos" msgid "Search..." msgstr "Cercar..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Cercas per profilos" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Passo de securitate requirite" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Seliger un color" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Seliger GIF" msgid "Select GIF \"{0}\"" msgstr "Seliger GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Selectionar lingua..." msgid "Select languages" msgstr "Selectionar linguas" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Seliger servicio de moderation" @@ -9904,11 +10390,11 @@ msgstr "Selige tu interesses desde le optiones hic infra" msgid "Select your preferred language for translations in your feed." msgstr "Selectiona tu lingua preferite pro traductiones in tu canal." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Selige tu canales de notification preferite" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Inviar e-mail" @@ -9935,11 +10421,11 @@ msgstr "Inviar e-mail" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Inviar commentarios" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Inviar message" @@ -9952,7 +10438,7 @@ msgstr "Inviar le publication a {name}" msgid "Send post to..." msgstr "Inviar message a..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Inviar signalamento a {title}" @@ -9960,7 +10446,7 @@ msgstr "Inviar signalamento a {title}" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Inviar via message directe" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Defini email pro reinitialisation de contrasigno" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Parametros" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Parametros pro le activitate de alteres" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Parametros pro notificationes de appreciationes" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Parametros pro notificationes de mentiones" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Parametros pro notificationes de nove sequitor" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Parametros pro notificationes de tote le resto" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Parametros pro notificationes de appreciationes de tu republicationes" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Parametros pro notificationes de republicationes de tu republicationes" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Parametros pro notificationes de citationes" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Parametros pro notificationes de responsas" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Parametros pro notificationes de republicationes" @@ -10079,16 +10565,19 @@ msgstr "Activitate sexual o nuditate erotic." msgid "Sexually Suggestive" msgstr "Sexualmente suggestive" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Compartir" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Compartir nonobstante" @@ -10097,16 +10586,21 @@ msgstr "Compartir nonobstante" msgid "Share author DID" msgstr "Compartir le DID del autor" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Compartir ligamine" @@ -10114,6 +10608,11 @@ msgstr "Compartir ligamine" msgid "Share link dialog" msgstr "Quadro de dialogo pro compartir ligamine" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Compartir le URI at:// del publication" msgid "Share QR code" msgstr "Compartir codice QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Compartir iste canal" @@ -10142,8 +10641,8 @@ msgstr "Comparti iste pacchetto de initio e adjuta le gente a unir se a tu commu #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Compartir via..." @@ -10151,7 +10650,7 @@ msgstr "Compartir via..." msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Testator de preferentias compartite" @@ -10167,16 +10666,16 @@ msgstr "Monstrar texto alternative" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Mostrar nonobstante" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "Monstrar optiones de personalisation" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Monstrar minus como iste" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Monstrar plus" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Monstrar plus como isto" @@ -10246,8 +10745,8 @@ msgstr "Monstrar responsas" msgid "Show replies as" msgstr "Monstrar responsas como" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Monstrar responsa pro totes" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Monstrar advertimento e filtrar desde canales" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Monstra information super quando iste publication ha essite create" @@ -10297,15 +10796,17 @@ msgstr "Monstra le contento" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Aperi session o crea un conto" msgid "Sign in or create your account to join the conversation!" msgstr "Aperi session o crea tu conto pro participar al conversation!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Aperir session con un conto que non es listate" @@ -10337,8 +10842,12 @@ msgstr "Aperir session con un conto que non es listate" msgid "Sign in to Bluesky or create a new account" msgstr "Aperi session in Bluesky o crea un nove conto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Aperi session pro vider le publication" @@ -10348,9 +10857,9 @@ msgstr "Aperi session pro vider le publication" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Clauder session" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Clauder session" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Clauder session?" @@ -10391,7 +10900,7 @@ msgstr "Saltar" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Minor" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Proroga le recordatorio" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Alcuno ha reagite con {0}" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Le datos que tu tenta signalar ha alcun problema. Contacta le supporto." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Alcun error ha occurrite" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Alcun error ha occurrite!" msgid "Something went wrong. Please try again in a moment." msgstr "Alcun error ha occurrite. Tenta de novo in alcun instantes." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Alcun error ha occurrite. Tenta de novo." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Alcun problema? Informa nos." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Sports" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Comencia un conversation e illo apparera hic." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Comenciar un nove chat" @@ -10582,17 +11101,17 @@ msgstr "Comenciar a adder personas" msgid "Start adding people!" msgstr "Comencia a adder personas!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Initiar chat con {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacchetto de initio" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Inviar" @@ -10684,9 +11203,9 @@ msgstr "Inviar appello" msgid "Submit Appeal" msgstr "Inviar appello" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Inviar signalamento" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Subscriber" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Successo!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificate con successo" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Poner del sol" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Supporto" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Cambiar conto" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Cambiar contos" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Cambiar a {0}" @@ -10824,11 +11347,15 @@ msgstr "Registro de systema" msgid "Tags only" msgstr "Solmente etiquettas" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" msgid "Tap to close context menu" msgstr "Tocca pro clauder le menu contextual" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tocca pro clauder" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Conditiones de servicio" @@ -10939,7 +11484,7 @@ msgstr "Texto e etiquettas" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campo de insertion de texto" @@ -10981,9 +11526,9 @@ msgstr "Illo es toto, gente!" msgid "That's everything!" msgstr "Illo es toto!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Le conto potera interager con te post le disblocage." @@ -11049,6 +11594,11 @@ msgstr "Le parametros sequente essera usate como tu predefinition quando tu crea 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Le Politica de privatessa ha essite displaciate a <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Thema" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Il ha habite un problema durante le actualisation de tu canales, verifica tu connexion al internet e tenta de novo." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Il ha habite un problema! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Iste parametros se applica solmente al canal Sequente." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Iste {screenDescription} ha essite signalate:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Iste appello essera inviate a <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Iste appello essera inviate al servicio de moderation de Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Iste appello essera inviate al servicio de moderation de Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Iste chat ha essite disconnectite" @@ -11310,7 +11881,11 @@ msgstr "Iste contento non es disponibile proque un del usatores involvite ha blo msgid "This content is not viewable without a Bluesky account." msgstr "Le contento non se pote visualisar sin un conto de Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Iste conversation es con un conto delite o disactivate. Preme pro optiones" @@ -11318,7 +11893,7 @@ msgstr "Iste conversation es con un conto delite o disactivate. Preme pro option msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Iste e-mail ja es associate a tu conto." @@ -11356,11 +11931,15 @@ msgstr "Iste canal es vacue." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Iste canal non es plus in linea. Nos monstra <0>Discover in vice." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Iste pseudonymo es reservate. Tenta un altere." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "Iste non es un ligamine valide" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "Iste lista – create per te – contine possibile violationes al direct msgid "This list is empty." msgstr "Iste lista es vacue." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Iste publication affirma haber essite create in <0>{0}, mais illo ha essite vidite per Bluesky pro le prime vice in <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Iste publication es visibile solmente a usatores con session aperte." msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Le autor del publication ha disactivate le citationes." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Iste profilo solmente es visibile a usatores con session aperte. Illo non essera visibile a personas qui non ha aperite session." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Iste responsa essera placiate in un section occulte in basso de tu filo e silentiara notificationes pro responsas subsequente – pro te mesme e pro alteres." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Iste usator non ha sequitores." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Isto removera @{0} del lista de accesso rapide." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Isto removera tu publication de iste citation pro tote le usatores, e lo substituera per un marcator de position." @@ -11574,7 +12166,7 @@ msgstr "Preferentias de filos" msgid "Threaded" msgstr "Como filos" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferentias de filos" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Pro disactivar le methodo de 2FA per e-mail, verifica tu accesso al adresse de e-mail." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Pro disactivar tu methodo de 2FA per e-mail, verifica tu accesso a <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Populares" msgid "Top replies first" msgstr "Responsas popular primo" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Topico" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traducer" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Videos in tendentia" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Le confidentia emerge del relationes, del communitates e de un contexto compartite, consequentemente nos tamben habilita <0>verificatores de confidentia: organisationes qui pote emitter verificationes directemente." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Retenta" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Retenta" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Television" @@ -11763,11 +12369,15 @@ msgstr "Non ha essite possibile contactar tu servicio. Per favor verifica tu con msgid "Unable to delete" msgstr "Non ha essite possibile deler" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "Information super le canal indisponibile" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Disblocar" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Disblocar" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Disblocar conto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Disblocar le conto?" @@ -11837,8 +12452,8 @@ msgstr "Disblocar lista" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Disfacer republication ({0, plural, one {# republication} other {# republicationes}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Cessar de sequer {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Cessar de sequer conto" @@ -11872,7 +12487,7 @@ msgstr "Cessar de sequer conto" msgid "Unfollows the user" msgstr "Cessa de sequer le usator" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Infortunatemente, necun del etiquettatores al quales tu subscribe supporta iste typo de signalamento." @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Verificator incognite" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Disappreciar" #. 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Disappreciar ({0, plural, one {# appreciation} other {# appreciationes}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "Dissilentiar" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Dissilentiar conto" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Dissilentiar conversation" @@ -11955,12 +12562,12 @@ msgstr "Dissilentiar conversation" msgid "Unmute list" msgstr "Dissilentiar lista" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Dissilentiar filo" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Disfixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Disfixar canal" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Disfixar del initio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Disfixar del profilo" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Disfixar lista de moderation" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Disfixate {0} del Initio" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "Actualisar" msgid "Update <0>{displayName} in Lists" msgstr "Actualisar <0>{displayName} in Listas" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Actualisar e-mail" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Actualisar a {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Actualisa tu e-mail" @@ -12080,17 +12699,17 @@ msgstr "Actualisa tu e-mail" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Non ha essite possibile actualisar le annexo del citation" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Non ha essite possibile actualisar le visibilitate del responsa" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Incargar un photo in su loco" @@ -12098,39 +12717,40 @@ msgstr "Incargar un photo in su loco" msgid "Upload a text file to:" msgstr "Incargar un file de texto a:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Cargar desde le camera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Cargar desde files" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Cargar desde bibliotheca" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Incargante imagines..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Incargante miniatura de ligamine..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Incargante video..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Usator blocate" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Lista de usatores de {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "usatores sequite per <0>@{0}" msgid "users following <0>@{0}" msgstr "usatores sequente <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "Non ha essite possibile verificar, tenta de novo." msgid "Verification settings" msgstr "Parametros de verification" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Parametros de verification" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificar registro DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verificar codice de e-mail" @@ -12349,7 +12969,7 @@ msgstr "Verificar iste conto?" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Non ha essite possibile processar le video" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Canal de video" @@ -12419,7 +13039,7 @@ msgstr "Video non trovate." msgid "Video settings" msgstr "Configurationes de video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video cargate" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Visualisar profilo de {0}" @@ -12467,20 +13087,15 @@ msgstr "Visualisar profilo de {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Visualisar profilo de usator blocate" @@ -12503,10 +13118,18 @@ msgstr "Visualisar detalios" msgid "View full thread" msgstr "Vider filo complete" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Vider information super iste etiquettas" @@ -12522,7 +13145,7 @@ msgstr "Vider plus" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Visualisar profilo" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Vider le avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Vider le servicio de etiquettage fornite per @{0}" msgid "View this user's verifications" msgstr "Vider le notificationes de usator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Vider usatores qui apprecia iste canal" @@ -12596,8 +13219,8 @@ msgstr "Vider tu contos silentiate" msgid "View your verifications" msgstr "Vider tu verificationes" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Vide le imagine complete" @@ -12640,8 +13263,8 @@ msgstr "Advertir contento" msgid "Warn content and filter from feeds" msgstr "Advertir contento e filtrar desde canales" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Spectar ora" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Non ha essite possibile trovar alcun resultato pro ille topico." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Non ha essite possibile cargar iste conversation" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Nos recommenda seliger al minus duo interesses." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Nos ha inviate un e-mail a <0>{0} continente un ligamine. Clicca super illo pro completar le processo de verification de e-mail." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nos non ha potite determinar si tu ha permission pro cargar videos. Tenta de novo." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Nos te informara quando tu conto es preste." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Nos inviara un e-mail a <0>{0} continente un ligamine. Clicca super illo pro completar le processo de verification de e-mail." @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Nos ha problemas de rete, tenta de novo" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Nos regretta! Le publication que tu responde ha essite delite." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Pardono! Non ha essite possibile trovar le pagina que tu ha cercate." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Como tu vole nominar tu pacchetto de initio?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Qual es le novas?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Quando tu tocca super un marca de verification, tu videra qual organisationes ha concedite le verification." @@ -12878,7 +13505,7 @@ msgstr "Quando tu tocca super un marca de verification, tu videra qual organisat msgid "Who can interact with this post?" msgstr "Qui pote interager con iste publication?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Qui pote responder" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Qui pote verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ops!" @@ -12939,7 +13566,7 @@ msgstr "Proque iste pacchetto de initio deberea esser revidite?" msgid "Why should this user be reviewed?" msgstr "Proque iste usator deberea esser revidite?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Scriber message" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Scribe tu responsa" @@ -12978,7 +13605,8 @@ msgstr "Scriptores" msgid "Wrong DID returned from server. Received: {0}" msgstr "Le servitor ha retornate un DID incorrecte. Recipite: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Si, deler iste pacchetto de initio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Si, disannexar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Si, occultar" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "Tu es in directo" msgid "You are no longer live" msgstr "Tu non es plus in directo" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Tu non es permitte incargar videos." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Tu pote eliger si le notificationes de chat ha sono in le parametros de chat in le application" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Tu pote continuar le conversationes in curso, independentemente de qual parametro tu elige." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Ora tu pote eliger esser notificate quando personas specific publica. Si il ha alcuno de qui tu vole reciper actualisationes promptemente, vade a su profilo e trova le nove icone de campana proxime al button de sequer." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Tu pote ora aperir session con tu nove contrasigno." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Tu pote reactivar tu conto pro continuar a aperir session. Tu profilo e 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Tu pote actualisar iste plus tarde desde tu configurationes." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Tu ha necun canal salvate." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Tu debe sequer al minus septe altere personas pro generar un pacchetto de initio." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Tu debe conceder accesso a tu bibliotheca de photos pro salvar un codice QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Tu ha reagite con {0}" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Le session de tote tu contos se claudera." @@ -13378,11 +14038,11 @@ msgstr "Le session de tote tu contos se claudera." msgid "You will no longer receive notifications for {0}" msgstr "Tu non recipera plus notificationes de {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Tu non recipera plus notificationes de iste filo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Ora tu recipera notificationes de iste filo" @@ -13390,12 +14050,12 @@ msgstr "Ora tu recipera notificationes de iste filo" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Tu recipera un e-mail con un \"codice de reinitialisation\". Insere ille codice hic, alora insere tu nove contrasigno." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "Tu comenciara a reciper notificationes de {0}!" msgid "You'll stay updated with these feeds" msgstr "Tu remanera actualisate con iste canales" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Tu es in fila" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "Tu ha attingite le numero maxime de requestas permittite. Tenta de novo msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Tu ha attingite tu limite diari pro cargas de videos (troppo de bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 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)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "Tu conto ha essite suspendite" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tu conto ancora non ha etate sufficiente pro cargar videos. Tenta de novo plus tarde." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Le repositorio de tu conto, continente tote le registros de datos public, pote esser discargate como um file \"CAR\". Iste file non include contento multimedial incorporate, como imagines, o tu datos private, que debe esser recuperate separatemente." @@ -13519,7 +14191,7 @@ msgstr "Tu appello ha essite inviate. Si tu appello ha successo, tu recipera un msgid "Your birth date" msgstr "Tu data de nascentia" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Tu chats ha essite disactivate" @@ -13527,11 +14199,11 @@ msgstr "Tu chats ha essite disactivate" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Tu election essera rememorate pro ligamines futur. Tu pote cambiar lo a qualcunque momento in le parametros." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Tu adresse de e-mail pare esser invalide." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Tu e-mail ancora non ha essite verificate. Verifica tu e-mail a fin de fruer de tote le functiones de Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Tu canal de sequitos es vacue! Seque plus de usatores pro vider lo que o msgid "Your full handle will be <0>@{0}" msgstr "Tu pseudonymo complete essera <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Tu parolas silentiate" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Tu signalamento essera inviate a <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Tu signalamento essera inviate a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Le interesses que tu ha seligite nos adjuta a servir te contento que te importa." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 f3a9265372..dd5be8fbe0 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategori \"{interestsDisplayName}\" (aktif)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(berisi konten yang disisipkan)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, other {# menyukai}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, other {# menit}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, other {# bulan}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, other {# detik}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {# item belum dibaca}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>dalam <1>teks & tagar" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} mengikuti" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} dari 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} menanggapi {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "{0}, sebuah daftar oleh {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}d" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {# item belum dibaca}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, other {jam}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {menit}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} others}} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} dan <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memverifikasi Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} mengikuti Anda kembali" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} memverfikasi Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} dan {additionalAuthorsCount, plural, other {{formattedAuthorsCount} lainnya}} memverifikasi Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} mengikuti Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} mengikuti Anda kembali" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} menyukai feed kustom Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} menyukai postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} menyukai postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} menghapus verifikasi mereka dari akun Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} memposting ulang postingan Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} memposting ulang postingan ulang Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} mendaftar dengan paket pemula Anda" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} memverifikasi Anda" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} memverifikasi Anda" msgid "{following} following" msgstr "{following} mengikuti" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} tidak dapat dikirimi pesan" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "{hours, plural, other {# jam {minutesString}}}" msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, other {# jam}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "Feed dan orang-orang favorit {name} - bergabunglah dengan saya!" msgid "{name}'s starter pack" msgstr "Paket pemula {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {# item belum dibaca}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "{userName} telah diverifikasi" msgid "{userName}'s verifications" msgstr "Verifikasi {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah diserta #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {pengikut}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {mengikuti}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {suka}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {kutipan}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {posting ulang}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, other {simpanan}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "Anggota <0>{0}" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda." @@ -804,7 +884,7 @@ msgstr "Kesalahan jaringan terjadi. Silakan periksa koneksi internet Anda." msgid "A new code has been sent" msgstr "Kode baru telah dikirim" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Bentuk baru verifikasi" @@ -827,11 +907,11 @@ msgstr "Tangkapan layar dari halaman profil dengan ikon lonceng sebelah tombol i 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Perilaku kasar dan diskriminatif" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Terima" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Terima" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Terima permintaan obrolan" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Terima Permintaan" @@ -860,17 +950,26 @@ msgstr "Terima Permintaan" msgid "Accept this language suggestion" msgstr "Terima saran bahasa ini" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Aksesibilitas" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Pengaturan Aksesibilitas" msgid "Account" msgstr "Akun" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Akun diblokir" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Akun diikuti" @@ -899,7 +998,7 @@ msgstr "Akun telah ditangguhkan" msgid "Account is deactivated" msgstr "Akun telah dinonaktifkan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Penyedia akun" msgid "Account removed from quick access" msgstr "Akun dihapus dari akses cepat" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Akun batal diblokir" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Akun tidak diikuti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Akun tidak dibisukan" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Akun dengan tanda cek biru bergerigi <0><1/> dapat memverifikasi lainnya. Verifikator ini telah dipilih oleh Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Aktivitas dari yang lainnya" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Aktivitas notifikasi" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Tambah" @@ -999,8 +1094,8 @@ msgstr "Tambahkan akun" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Tambahkan teks alt (opsional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Tambahkan akun lain" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Tambahkan postingan lain" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Tambahkan sandi aplikasi" msgid "Add App Password" msgstr "Tambahkan Sandi Aplikasi" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Tambahkan emoji reaksi" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Tambahkan gambar" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Tambah media ke postingan" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Tambahkan rincian lengkap (optional)" @@ -1091,6 +1186,10 @@ msgstr "Tambahkan orang" msgid "Add people to list" msgstr "Tambahkan orang ke daftar" +#: 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 "Tambahkan Reaksi" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Tambahkan tanggal lahir Anda" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "Menambahkan anggota pada daftar..." msgid "Additional details (limit 1000 characters)" msgstr "Rincian tambahan (batas 1000 karakter)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Rincian tambahan (batas 300 karakter)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "kresna@contoh.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Semua" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Izinkan akses ke pesan langsung Anda" msgid "Allow anyone to reply" msgstr "Izinkan semua orang membalas" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "Sudah memiliki akun?" msgid "Already signed in as @{0}" msgstr "Sudah masuk sebagai @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Teks Alt" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Teks alt menjelaskan gambar untuk pengguna tunanetra dan pengguna dengan penglihatan rendah, serta membantu memberikan konteks kepada semua orang." @@ -1387,7 +1486,7 @@ msgstr "Telah terjadi kesalahan" msgid "An error occurred" msgstr "Terjadi kesalahan" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Terjadi kesalahan saat mengompresi video." @@ -1421,7 +1520,8 @@ msgstr "Terjadi kesalahan saat memuat video. Silakan coba lagi." msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Terjadi kesalahan saat menyimpan kode QR!" @@ -1432,11 +1532,11 @@ msgstr "Terjadi kesalahan saat menyimpan kode QR!" msgid "An error occurred while trying to follow all" msgstr "Terjadi kesalahan saat mencoba mengikuti semua" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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" +#: 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 "Sebuah ilustrasi menampilkan Bluesky memilih verifikator terpercaya, dan verifikator terpercaya pada waktunya memverifikasi akun pengguna individual." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Masalah lain yang tidak termasuk dalam pilihan" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Terjadi masalah saat mencoba membuka obrolan" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Terjadi masalah, silakan coba lagi." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Maket iPhone yang menampilkan aplikasi Bluesky terbuka profil pengguna terverifikasi dengan tanda centang biru di sebelah nama tampilan mereka." @@ -1539,13 +1643,17 @@ msgstr "Siapa saja" msgid "Anyone can interact" msgstr "Siapa saja dapat berinteraksi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "Siapapun yang mengikuti saya" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Nama sandi aplikasi harus terdiri dari minimal 4 karakter" msgid "App passwords" msgstr "Sandi aplikasi" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Kata Sandi Aplikasi" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Banding diajukan" @@ -1632,14 +1740,14 @@ msgstr "Banding penangguhan" msgid "Appeal Suspension" msgstr "Banding Penangguhan" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Ajukan banding atas keputusan ini" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arsip dari {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Arsip postingan" @@ -1675,7 +1783,7 @@ msgstr "Apakah anda sungguh-sungguh yakin?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Anda yakin ingin menghapus sandi aplikasi \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Anda yakin ingin menghapus paket pemula ini?" msgid "Are you sure you want to discard your changes?" msgstr "Anda yakin ingin membuang perubahan?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Anda yakin ingin meninggalkan percakapan ini?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya." +#: src/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 "Anda yakin ingin menghapus ini dari daftar feed Anda?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Anda yakin ingin membuang postingan ini?" @@ -1724,8 +1838,8 @@ msgstr "Seni" msgid "Artistic or non-erotic nudity." msgstr "Ketelanjangan artistik atau non-erotis." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Tetapkan topik untuk algoritma" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Putar otomatis video dan GIF" msgid "Available" msgstr "Tersedia" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Tersedia" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Tersedia" msgid "Back" msgstr "Kembali" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Kembali ke Obrolan" @@ -1832,7 +1948,7 @@ msgstr "Untuk membuat postingan atau membalas, harap verifikasi email Anda terle msgid "Before creating a starter pack, you must first verify your email." msgstr "Untuk membuat paket pemula, harap verifikasi email Anda terlebih dahulu." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Untuk dapat menerima permintaan obrolan ini, harap verifikasi email Anda terlebih dahulu." @@ -1840,13 +1956,14 @@ msgstr "Untuk dapat menerima permintaan obrolan ini, harap verifikasi email Anda msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Untuk dapat mengirim pesan ke pengguna lain, harap verifikasi email Anda terlebih dahulu." @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Tanggal lahir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blokir" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blokir akun" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Blokir Akun?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blokir akun" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Blokir daftar" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blokir atau lapor" @@ -1936,9 +2047,9 @@ msgstr "Blokir akun-akun ini?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blokir pengguna" @@ -1946,9 +2057,9 @@ msgstr "Blokir pengguna" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blokir pengguna" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Diblokir" @@ -1964,14 +2075,12 @@ msgstr "Diblokir" msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Akun yang Diblokir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda." @@ -1987,7 +2096,7 @@ msgstr "Pemblokiran tidak menghalangi pelabel ini menerapkan label pada akun And msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Pemblokiran bersifat publik. Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Memblokir tidak akan mencegah label diterapkan pada akun Anda, tetapi akan menghentikan akun ini untuk membalas atau berinteraksi dengan Anda." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky tidak dapat memastikan keaslian tanggal yang diklaim." @@ -2029,7 +2138,7 @@ msgstr "Bluesky lebih seru jika bersama teman!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Ketentuan Layanan Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-o msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak masuk. Aplikasi lain mungkin tidak akan mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky akan secara pro-aktif verifikasi akun-akun penting dan otentik." @@ -2081,6 +2194,10 @@ msgstr "Buku" 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" @@ -2137,24 +2254,34 @@ msgstr "Bisnis" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Oleh {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Oleh <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Dengan membuat akun, Anda menyatakan setuju dengan <0>Ketentuan Layanan< msgid "By you" msgstr "Oleh anda" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Batal" @@ -2248,9 +2384,9 @@ msgstr "Batalkan pengaktifan kembali dan keluar" msgid "Cancel search" msgstr "Batal mencari" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Tidak dapat berinteraksi dengan pengguna yang diblokir" @@ -2264,7 +2400,7 @@ msgstr "Subtitel (.vtt)" msgid "Captions & alt text" msgstr "Subtitel & teks alt" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "Ganti bahasa aplikasi" msgid "Change Handle" msgstr "Ubah Panggilan" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Ubah layanan moderasi" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Ubah alasan melapor" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Obrolan" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Obrolan dihapus" @@ -2361,6 +2497,12 @@ msgstr "Obrolan dihapus" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "Obrolan pesan - senyap" msgid "Chat messages - sound" msgstr "Obrolan pesan - suara" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Obrolan dibisukan" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Kotak masuk permintaan obrolan" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Permintaan obrolan" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Pengaturan obrolan" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Pengaturan Obrolan" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Obrolan dibunyikan" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Obrolan" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Pilih warna ini sebagai avatar Anda" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Klik di sini untuk mengulang proses verifikasi." @@ -2567,7 +2718,7 @@ msgstr "Klik di sini untuk mengulang proses verifikasi." msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Klik disini untuk memperbarui email Anda" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Ketuk untuk mengirim ulang pesan yang gagal" @@ -2594,28 +2745,30 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Ketuk untuk mengirim ulang pesan yang gagal" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Tutup" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Tutup dialog aktif" @@ -2647,6 +2800,10 @@ msgstr "Tutup dialog aktif" msgid "Close alert" msgstr "Tutup peringatan" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Tutup kotak bawah" @@ -2657,8 +2814,10 @@ msgstr "Tutup kotak bawah" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Tutup dialog" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Tutup gambar" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Tutup menu" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Tutup dialog ini" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Menutup peringatan pembaruan kata sandi" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Menutup komposer pos dan menghapus draf postingan" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Ciutkan daftar pengguna" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Komik" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Panduan Komunitas" @@ -2740,12 +2915,12 @@ msgstr "Selesaikan tantangan" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Tulis postingan baru" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya" @@ -2753,11 +2928,11 @@ msgstr "Tulis postingan hingga {0, plural, other {# karakter}} panjangnya" msgid "Compose reply" msgstr "Tulis balasan" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Mengompres video..." @@ -2780,7 +2955,7 @@ msgstr "Diatur pada <0>pengaturan moderasi." msgid "Confirm" msgstr "Konfirmasi" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Hubungi pusat dukungan" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "Hubungi kami" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Konten & Media" msgid "Content and media" msgstr "Konten dan media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Konten dan Media" @@ -2889,7 +3064,7 @@ msgstr "Latar menu konteks, klik untuk menutup menu." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Lanjutkan utasan" msgid "Continue thread..." msgstr "Lanjutkan utas..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Lanjutkan ke langkah berikutnya" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Percakapan" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Percakapan dihapus" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Percakapan dihapus" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Versi build disalin ke papan klip" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Tersalin!" msgid "Copies build version to clipboard" msgstr "Menyalin versi build ke papan klip" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Salin" @@ -2997,6 +3184,11 @@ msgstr "Salin DID" msgid "Copy host" msgstr "Salin host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Salin tautan daftar" msgid "Copy link to post" msgstr "Salin tautan postingan" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Salin tautan ke profil" @@ -3027,8 +3219,8 @@ msgstr "Salin tautan ke profil" msgid "Copy link to starter pack" msgstr "Salin tautan ke paket pemula" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Salin teks pesan" @@ -3037,12 +3229,12 @@ msgstr "Salin teks pesan" msgid "Copy post at:// URI" msgstr "Salin URI postingan at://" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Salin teks postingan" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Salin kode QR" @@ -3052,11 +3244,15 @@ msgstr "Salin nilai data TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Tidak dapat terhubung pada feed kustom" @@ -3065,7 +3261,15 @@ msgstr "Tidak dapat terhubung pada feed kustom" msgid "Could not connect to feed service" msgstr "Tidak dapat terhubung pada layanan feed" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "Tidak dapat mencari profil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Tidak dapat meninggalkan obrolan" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Tidak dapat memuat feed" @@ -3100,7 +3308,11 @@ msgstr "Tidak dapat memuat feed" msgid "Could not load list" msgstr "Tidak dapat memuat daftar" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Tidak dapat membisukan obrolan" @@ -3108,11 +3320,19 @@ msgstr "Tidak dapat membisukan obrolan" msgid "Could not process your video" msgstr "Tidak dapat memproses video" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Tidak dapat menyimpan perubahan: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Tidak dapat memperbarui pengaturan notifikasi" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Buat" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Buat paket pemula" @@ -3174,13 +3394,14 @@ msgstr "Buatkan paket pemula untuk saya" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Buat avatar saja" @@ -3206,7 +3427,7 @@ msgstr "Buat avatar saja" msgid "Create another" msgstr "Buat paket lain" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "Buat daftar moderasi" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Buat akun baru" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Buat laporan untuk {0}" @@ -3256,8 +3478,8 @@ msgstr "Buat daftar pengguna" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Dibuat pada {0}" @@ -3270,6 +3492,10 @@ msgstr "Pembuat telah diblokir" msgid "Culture" msgstr "Budaya" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tema gelap" msgid "Date of birth" msgstr "Tanggal lahir" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Standar" msgid "Default icons" msgstr "Ikon bawaan" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Hapus kata sandi aplikasi" msgid "Delete app password?" msgstr "Hapus kata sandi aplikasi?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Hapus obrolan" @@ -3378,19 +3612,19 @@ msgstr "Hapus obrolan" msgid "Delete chat declaration record" msgstr "Hapus catatan deklarasi obrolan" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Hapus percakapan" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Hapus untuk saya" @@ -3399,11 +3633,11 @@ msgstr "Hapus untuk saya" msgid "Delete list" msgstr "Hapus daftar" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Hapus pesan" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Hapus pesan untuk saya" @@ -3411,9 +3645,9 @@ msgstr "Hapus pesan untuk saya" msgid "Delete my account" msgstr "Hapus akun saya" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Hapus postingan" @@ -3430,17 +3664,17 @@ msgstr "Hapus paket pemula?" msgid "Delete this list?" msgstr "Hapus daftar ini?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Hapus postingan ini?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Dihapus" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Akun Telah Dihapus" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Teks alt deskriptif" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Lepaskan kutipan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Lepaskan kutipan ini?" @@ -3507,13 +3741,13 @@ msgstr "Dialog: sesuaikan siapa saja yang dapat berinteraksi dengan postingan in msgid "Dim" msgstr "Redup" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Nonaktifkan 2FA" @@ -3521,7 +3755,7 @@ msgstr "Nonaktifkan 2FA" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Nonaktifkan email 2FA" @@ -3534,8 +3768,8 @@ msgstr "Nonaktifkan Email 2FA" msgid "Disable haptic feedback" msgstr "Matikan respons haptik" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Dinonaktifkan" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Buang" msgid "Discard changes?" msgstr "Buang perubahan?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Buang postingan?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Temukan Feed Baru" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Tutup" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Abaikan spanduk" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Abaikan kesalahan" @@ -3642,6 +3877,10 @@ msgstr "Tutup bagian ini" msgid "Dismiss this suggestion" msgstr "Abaikan saran ini" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Tidak termasuk ketelanjangan." msgid "Domain verified!" msgstr "Domain terverifikasi!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Tidak memiliki kode atau perlu yang baru? <0>Klik di sini." @@ -3681,7 +3920,7 @@ msgstr "Tidak memiliki kode atau perlu yang baru? <0>Klik di sini." msgid "Don’t see a code? <0>Click here to resend." msgstr "Tidak dapat melihat kode? <0>Klik disini untuk mengirim ulang" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Tidak dapat melihat email? <0>Klik di sini untuk kirim ulang." @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Selesai" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Ketuk dua kali untuk menutup dialog" @@ -3737,19 +3981,14 @@ msgstr "Ketuk dua kali untuk menutup dialog" msgid "Double tap to like" msgstr "Ketuk dua kali untuk menyukai" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Unduh Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Unduh berkas CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Unduh berkas CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Unduh data obrolan" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Unduh data obrolan" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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 "Mengungkapkan informasi pribadi" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Durasi:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "contoh: kresna" @@ -3823,9 +4079,8 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang." msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Ubah" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Ubah avatar" @@ -3847,19 +4102,19 @@ msgstr "Ubah avatar" msgid "Edit Feeds" msgstr "Ubah Daftar Feed" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Edit gambar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Ubah pengaturan interaksi" @@ -3868,7 +4123,16 @@ msgstr "Ubah pengaturan interaksi" msgid "Edit interests" msgstr "Ubah minat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "Ubah status siaran langsung" msgid "Edit moderation list" msgstr "Ubah daftar moderasi" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Ubah Daftar Feed" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Ubah notifikasi dari {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Ubah Daftar Pengguna" @@ -3912,12 +4171,12 @@ msgstr "Ubah pengaturan interaksi postingan" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Edit profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Edit Profil" @@ -3925,7 +4184,8 @@ msgstr "Edit Profil" msgid "Edit starter pack" msgstr "Ubah paket pemula" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "Ubah daftar pengguna" msgid "Edit who can reply" msgstr "Ubah siapa yang dapat membalas" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Ubah paket pemula Anda" @@ -3971,7 +4231,7 @@ msgstr "Alamat email" msgid "Email Resent" msgstr "Email Dikirim Ulang" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Email terkirim!" @@ -4006,8 +4266,8 @@ msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut da msgid "Embedded video player" msgstr "Pemutar video tertanam" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Aktifkan" @@ -4025,7 +4285,7 @@ msgstr "Aktifkan konten dewasa" msgid "Enable captions" msgstr "Aktifkan teks keterangan" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Aktifkan email 2FA" @@ -4038,13 +4298,12 @@ msgstr "Aktifkan media eksternal" msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Nyalakan notifikasi untuk akun dengan mengunjungi akun mereka dan menekan tombol ikon <0>lonceng <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Aktifkan notifikasi push" @@ -4091,8 +4350,8 @@ msgstr "Masukkan kata sandi" msgid "Enter a word or tag" msgstr "Masukkan kata atau tagar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Masukkan kode" @@ -4143,12 +4402,12 @@ msgstr "Masuk ke mode layar penuh" msgid "Entertainment" msgstr "Hiburan" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Galat" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Kesalahan mengambil data terbaru." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Semua orang" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Semua orang" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Semua orang" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Yang lainnya" @@ -4217,16 +4476,16 @@ msgstr "Kecuali pengguna yang Anda ikuti" msgid "Exit fullscreen" msgstr "Keluar dari layar penuh" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Bentangkan teks alt" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Bentangkan daftar pengguna" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas" @@ -4238,7 +4497,7 @@ msgstr "Bentangkan teks posting" msgid "Expands or collapses post text" msgstr "Bentangkan atau ciutkan postingan" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "URI diharapkan mengarah ke suatu catatan data" @@ -4277,10 +4536,10 @@ msgstr "Media eksplisit atau berpotensi mengganggu." msgid "Explicit sexual images." msgstr "Gambar seksual eksplisit." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Jelajahi" @@ -4289,11 +4548,8 @@ msgstr "Jelajahi" msgid "Explore the app" msgstr "Jelajahi aplikasi" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" @@ -4331,18 +4587,22 @@ msgstr "Preferensi Media Eksternal" msgid "Extremist content" msgstr "Konten ekstremis" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Gagal menerima obrolan" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Gagal menambahkan emoji reaksi" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "Gagal menambahkan paket pemula" msgid "Failed to change handle. Please try again." msgstr "Gagal mengubah panggilan. Silakan coba lagi." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Gagal membuat sandi aplikasi. Silakan coba lagi." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Gagal membuat percakapan" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Gagal membuat paket pemula" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Gagal menghapus obrolan" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Gagal menghapus pesan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" @@ -4394,24 +4655,24 @@ msgstr "Gagal menghapus postingan, silakan coba lagi" msgid "Failed to delete starter pack" msgstr "Gagal menghapus paket pemula" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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 "Gagal meluncurkan aplikasi SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Gagal memuat percakapan" @@ -4456,17 +4725,8 @@ msgstr "Gagal memuat feed" msgid "Failed to load feeds preferences" msgstr "Gagal memuat preferensi feed" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Gagal memuat pengaturan notifikasi." @@ -4493,16 +4753,15 @@ msgstr "Gagal memuat daftar feed yang disarankan" msgid "Failed to load suggested follows" msgstr "Gagal memuat saran akun untuk diikuti" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Gagal menandai semua permintaan sebagai dibaca" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Gagal menyematkan postingan" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Gagal menghapus data. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Gagal menghapus emoji reaksi" @@ -4534,7 +4793,8 @@ msgstr "Gagal menghapus emoji reaksi" msgid "Failed to remove from starter pack" msgstr "Gagal menghapus dari paket pemula" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "Gagal menghapus verifikasi" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Gagal menyimpan draf" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Gagal untuk menyimpan minat Anda." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Gagal mengirim email, silakan coba lagi." @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Gagal mengajukan banding, silakan coba lagi." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Gagal membisukan utas, silakan coba lagi" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "Gagal lepaskan semat daftar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Gagal memperbarui pengaturan email 2FA" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Gagal memperbarui email, silakan coba lagi." @@ -4614,7 +4879,7 @@ msgstr "Gagal memperbarui daftar feed" msgid "Failed to update notification declaration" msgstr "Gagal memperbarui deklarasi notifikasi" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Gagal memperbarui pengaturan" @@ -4641,7 +4906,7 @@ msgstr "Akun palsu atau bot" msgid "False information about elections" msgstr "Informasi palsu tentang pemilihan umum" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed oleh {0}" @@ -4662,7 +4927,7 @@ msgstr "Pembuat feed" msgid "Feed identifier" msgstr "Tanda pengenal feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu feed" @@ -4676,25 +4941,25 @@ msgstr "Feed tidak tersedia" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Masukan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Masukkan dikirim ke operator feed" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feed" @@ -4739,7 +5004,7 @@ msgstr "Saring pencarian berdasarkan bahasa (saat ini: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Saring dari siapa saja Anda akan menerima notifikasi" @@ -4747,11 +5012,11 @@ msgstr "Saring dari siapa saja Anda akan menerima notifikasi" msgid "Finalizing" msgstr "Menyelesaikan" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Akhirnya!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Terakhir! Pantau postingan yang penting bagi Anda. Simpan postingan tersebut untuk dilihat kembali kapan saja." @@ -4768,19 +5033,17 @@ msgstr "Finansial" msgid "Find accounts to follow" msgstr "Temukan akun untuk diikuti" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Cari Kontak" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Cari Teman" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Cari teman dari kontak" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Cari Kontak" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Cari teman saya" msgid "Find people to follow" msgstr "Cari orang untuk diikuti" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Temukan postingan, pengguna dan feed di Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Cari teman Anda" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Ikuti" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Ikuti {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Ikuti akun" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Ikuti semua akun" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Ikuti Balik" @@ -4916,7 +5183,7 @@ msgstr "Ikuti Balik" msgid "Followed all accounts!" msgstr "Mengikuti semua akun!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Diikuti oleh <0>{0} dan <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Diikuti oleh <0>{0}, <1>{1}, dan {2, plural, other {# lainnya}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Pengikut @{0} yang Anda kenal" @@ -4960,10 +5231,10 @@ msgstr "Pengikut yang Anda kenal" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Mengikuti" @@ -4977,12 +5248,12 @@ msgstr "Mengikuti" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Mengikuti {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Mengikuti {handle}" msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferensi Feed Mengikuti" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Mengikuti Anda" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Mengikuti Anda" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Font" @@ -5065,11 +5333,16 @@ msgstr "Lupa kata sandi?" msgid "Forgot?" msgstr "Lupa?" +#. 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:12 msgid "Free your feed" msgstr "Bebaskan feed Anda" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Dari" @@ -5086,80 +5359,84 @@ msgstr "Dari <0/>" msgid "Generate a starter pack" msgstr "Buatkan paket pemula" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Dapatkan bantuan" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Dapatkan notifikasi ketika orang menyebutkan Anda." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Dapatkan notifikasi ketika orang mengutip postingan Anda." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Dapatkan notifikasi ketika orang membalas postingan Anda." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Dapatkan notifikasi ketika orang memposting ulang postingan yang Anda posting ulang." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Dapatkan notifikasi ketika orang memposting ulang postingan Anda." -#: src/components/activity-notifications/SubscribeProfileButton.tsx:94 -msgid "Get notified about new posts" +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:94 +msgid "Get notified about new posts" msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Dapatkan notifikasi ketika seseorang memposting" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Memulai" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Beri wajah pada profil Anda" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Kembali" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Kembali" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Kembali ke langkah sebelumnya" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Kembali ke beranda" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Kembali ke beranda" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ke Beranda" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "Siaran langsung untuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Buka profil {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Buka pengaturan akun" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Buka percakapan dengan {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Berikutnya" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Buka profil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Buka profil pengguna" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Mengerti" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Konten grafis mengandung kekerasan" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Panggilan terlalu panjang. Silakan coba yang lebih pendek." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Yang terjadi sekarang" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Tagar" @@ -5458,8 +5756,8 @@ msgstr "Tagar {tag}" msgid "Hate speech" msgstr "Ujaran kebencian" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Punya kode? <0>Klik di sini." @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Bantuan" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Daftar yang disembunyikan" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Daftar yang disembunyikan" msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Sembunyikan" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Sembunyikan postingan untuk saya" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Sembunyikan balasan untuk semua" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Sembunyikan balasan untuk saya" @@ -5577,19 +5875,19 @@ msgstr "Sembunyikan kartu ini" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Sembunyikan balasan ini?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Sembunyikan tren topik?" msgid "Hide trending videos?" msgstr "Sembunyikan tren video?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" @@ -5620,6 +5918,10 @@ msgstr "Sembunyikan lencana verifikasi" msgid "Hides the content" msgstr "Menyembunyikan konten" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk k msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, kami tidak dapat memuat layanan moderasi." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Harap tunggu! Kami secara bertahap memberikan akses video, dan Anda masih dalam antrian. Periksa kembali nanti!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Beranda" @@ -5721,7 +6019,7 @@ msgstr "Saya mengerti" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang" @@ -5757,15 +6055,15 @@ msgstr "Jika Anda menghapus daftar ini, Anda tidak dapat memulihkannya lagi." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Jika Anda memiliki domain sendiri, Anda dapat menggunakannya sebagai panggilan. Ini memungkinkan Anda untuk memverifikasi identitas secara mandiri. <0>Pelajari selengkapnya di sini." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Jika Anda perlu memperbarui email Anda, <0>Klik di sini." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Jika Anda menghapus postingan ini, Anda tidak dapat memulihkannya lagi." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Jika Anda memperbarui alamat email Anda, email 2FA akan dinonaktifkan." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Jika Anda ingin membatasi siapa saja yang dapat menerima notifikasi untuk aktivitas akun Anda, Anda dapat mengubahnya di <0>Pengaturan → Privasi dan Keamanan." @@ -5786,23 +6083,23 @@ msgstr "Jika Anda merupakan pengembang, Anda bisa menghosting peladen Anda sendi msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Jika ingin mengubah panggilan atau email, lakukanlah sebelum Anda menonaktifkan akun." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Gambar" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Tembolok gambar dibersihkan, sisa {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Dalam aplikasi" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notifikasi dalam aplikasi" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Dalam aplikasi, Semua orang" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Dalam aplikasi, Orang yang Anda ikuti" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Dalam aplikasi, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Dalam aplikasi, Push, Semua orang" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Dalam aplikasi, Push, Orang yang saya ikuti" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Kotak masuk kosong!" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Kode konfirmasi 2FA tidak valid." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Panggilan tidak valid. Silakan coba yang lain." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Subjek laporan tidak valid" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Kode Verifikasi Tidak Valid" @@ -6001,8 +6315,15 @@ msgstr "Kode Undangan" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Undang orang lain ke paket pemula ini!" +#: 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 "Undang teman untuk mengikuti feed dan akun favorit Anda" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID Kerja: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID Kerja: {0}" msgid "Jobs" msgstr "Karir" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Karir" msgid "Join Bluesky" msgstr "Bergabung di Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Bergabunglah dengan kami" msgid "Journalism" msgstr "Jurnalisme" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "Terus kabari saya" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Situs KWS" @@ -6143,7 +6499,7 @@ msgstr "Label pada akun Anda" msgid "Labels on your content" msgstr "Label pada konten Anda" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Pengaturan Bahasa" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Terbaru" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Pelajari lebih lanjut tentang peringatan ini" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Pelajari lebih lanjut tentang apa yang bersifat publik di Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Pelajari lebih lanjut." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Tinggalkan" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Tinggalkan obrolan" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Tinggalkan percakapan" @@ -6284,13 +6642,14 @@ msgstr "Tinggalkan percakapan" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Tinggalkan percakapan" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Meninggalkan Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "yang tersisa" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Terang" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Suka" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Suka ({0, plural, other {# suka}})" @@ -6346,11 +6713,7 @@ msgstr "Sukai 10 postingan" msgid "Like 10 posts to train the Discover feed" msgstr "Sukai 10 postingan untuk melatih feed Discover" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notifikasi suka" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Sukai feed ini" @@ -6358,8 +6721,8 @@ msgstr "Sukai feed ini" msgid "Like this labeler" msgstr "Sukai labeler ini" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Disukai oleh" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Disukai oleh {0, plural, other {# pengguna}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Disukai oleh {likeCount, plural, other {# pengguna}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Suka" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Suka pada postingan ulang Anda" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Suka pada notifikasi postingan ulang Anda" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Suka pada postingan ini" @@ -6409,11 +6768,11 @@ msgstr "Suka pada postingan ini" msgid "Linear" msgstr "Linier" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Daftar" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Daftar batal dibisukan" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Daftar" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Memuat..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Catatan" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo oleh @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo oleh <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Sepertinya Anda belum memiliki feed mengikuti. <0>Klik di sini untuk men msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Buat penyesuaian untuk pengaturan email akun Anda" @@ -6687,24 +7046,22 @@ msgstr "Kelola pengaturan verifikasi" msgid "Manage your muted words and tags" msgstr "Kelola kata dan tagar yang dibisukan" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Tandai semua sebagai dibaca" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Tandai telah dibaca" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Ditandai semua sebagai dibaca" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Mungkin nanti" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notifikasi sebutan" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "pengguna yang Anda sebut" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Sebutan" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Kirim pesan ke {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Pesan dihapus" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Pesan dihapus" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Pesan dari @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Pesan terlalu panjang" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Opsi pesan" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Pesan" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Tengah malam" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notifikasi lainnya" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderasi" @@ -6894,7 +7247,7 @@ msgstr "Daftar moderasi diperbarui" msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Daftar Moderasi" @@ -6903,7 +7256,7 @@ msgstr "Daftar Moderasi" msgid "moderation settings" msgstr "pengaturan moderasi" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Status moderasi" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Opsi lainnya" @@ -6949,7 +7302,7 @@ msgstr "Film" msgid "Music" msgstr "Musik" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Bisukan" @@ -6965,8 +7318,8 @@ msgstr "Bisukan" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Bisukan akun" msgid "Mute accounts" msgstr "Bisukan akun" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Bisukan percakapan" @@ -6994,7 +7347,7 @@ msgstr "Bisukan daftar" msgid "Mute these accounts?" msgstr "Bisukan akun-akun ini?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Bisukan kata ini hanya dalam tagar" msgid "Mute this word until you unmute it" msgstr "Bisukan kata ini sampai Anda membunyikannya" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Bisukan utas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Bisukan kata & tagar" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" @@ -7062,6 +7419,10 @@ msgstr "Kata & tagar yang dibisukan" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi dengan Anda, tetapi Anda tidak akan melihat postingan atau notifikasi dari mereka." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Menuju ke paket pemula" msgid "Navigates to the next screen" msgstr "Menuju ke layar berikutnya" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Menuju ke profil Anda" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Ingin melaporkan pelanggaran hak cipta, permintaan hukum, atau masalah kepatuhan terhadap peraturan?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Baru" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, other {Postingan}} baru dari {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Obrolan baru" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Alamat email baru" @@ -7171,32 +7533,30 @@ msgstr "Alamat email baru" #: 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 "Fitur Baru" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notifikasi pengikut baru" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Pengikut baru" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Postingan baru" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Postingan baru" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Berita" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Berikutnya" msgid "Next image" msgstr "Gambar berikutnya" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Tidak ada gambar" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" @@ -7362,7 +7726,7 @@ msgstr "Tidak lagi mengikuti {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Belum ada pesan" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Belum ada notifikasi!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Tak seorang pun dapat mengutip postingan ini selain pemosting." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Tidak ada hasil" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Tidak ada hasil" @@ -7446,8 +7810,8 @@ msgstr "Tidak ada hasil" msgid "No results for \"{0}\"." msgstr "Tidak ada hasil untuk \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Tidak ditemukan hasil" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Ketelanjangan Non-Seksual" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Tidak ada" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Tidak Ditemukan" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Catatan tentang berbagi" @@ -7548,44 +7912,31 @@ msgstr "Catatan: Postingan ini hanya dapat dilihat untuk pengguna yang masuk." msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Pengaturan notifikasi" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Suara notifikasi" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notifikasi" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Pemberitahuan untuk yang lainnya, seperti ketika seseorang bergabung melalui salah satu paket pemula Anda." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "sekarang" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Matikan" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Oke" @@ -7648,35 +8000,35 @@ msgstr "di<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Pengaturan ulang orientasi" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "Satu atau beberapa GIF belum memiliki teks alt." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Satu atau beberapa gambar belum memiliki teks alt." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Satu atau beberapa video belum memiliki teks alt." @@ -7685,6 +8037,26 @@ msgstr "Satu atau beberapa video belum memiliki teks alt." msgid "Only {0} can reply." msgstr "Hanya {0} yang dapat membalas." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "Hanya pengikut yang saya ikuti" msgid "Only image files are supported" msgstr "Hanya mendukung berkas gambar" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Hanya mendukung berkas WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Hanya mendukung berkas WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Ups, ada yang tidak beres!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ups, ada yang tidak beres!" msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Buka pembuat avatar" @@ -7720,12 +8106,17 @@ msgstr "Buka pembuat avatar" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Buka opsi percakapan" @@ -7739,16 +8130,16 @@ msgstr "Buka menu geser" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Buka pemilih emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Buka menu opsi feed" @@ -7760,13 +8151,22 @@ msgstr "Buka daftar emoji lengkap" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Buka tautan {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Buka paket" msgid "Open post options menu" msgstr "Buka menu opsi postingan" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Buka profil" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Buka halaman buku cerita" msgid "Open system log" msgstr "Buka log sistem" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Membuka dialog untuk menambahkan peringatan konten pada postingan Anda" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Membuka detail tambahan untuk entri debug" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Membuka kamera pada perangkat" @@ -7858,22 +8270,24 @@ msgstr "Membuka penyusun postingan" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Membuka alur untuk membuat akun baru Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "Membuka tautan {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Membuka dialog status siaran langsung" @@ -7902,15 +8316,23 @@ msgstr "Membuka formulir pengaturan ulang kata sandi" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Membuka profil ini" @@ -7997,12 +8418,12 @@ msgstr "Postingan blog kami" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Tim moderasi kami telah menerima laporan Anda." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderator kami telah meninjau laporan dan memutuskan untuk menonaktifkan akses Anda ke obrolan di Bluesky." @@ -8010,16 +8431,17 @@ msgstr "Moderator kami telah meninjau laporan dan memutuskan untuk menonaktifkan msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: 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 "Halaman tidak ditemukan" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Halaman Tidak Ditemukan" - #. 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" @@ -8068,34 +8490,34 @@ msgstr "Jeda video" msgid "People" msgstr "Profil" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Orang yang saya ikuti" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Fotografi" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Sematkan feed" @@ -8152,12 +8578,12 @@ msgstr "Sematkan feed" msgid "Pin to home" msgstr "Sematkan ke beranda" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Sematkan ke Beranda" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Sematkan ke profil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Disematkan" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} disematkan ke Beranda" @@ -8236,7 +8662,7 @@ msgstr "Silakan tentukan panggilan Anda." msgid "Please choose your password." msgstr "Masukkan kata sandi Anda." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Silakan klik pada tautan dalam email yang telah kami kirimkan untuk memv msgid "Please complete the verification captcha." msgstr "Mohon selesaikan verifikasi captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "Silakan masukkan kata sandi. Kata sandi harus memiliki setidaknya 8 kara msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Masukkan nama unik untuk sandi aplikasi ini atau gunakan nama yang kami buat secara acak." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Silakan masukkan kode yang valid." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Silakan masukkan alamat email yang valid." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Silakan masukkan kode yang kami kirimkan pada <0>{0} dibawah." @@ -8293,7 +8719,7 @@ msgstr "Silakan masukkan kode yang kami kirimkan pada <0>{0} dibawah." msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Masukkan email Anda." msgid "Please enter your invite code." msgstr "Silakan masukkan kode undangan Anda." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Silakan masukkan alamat email baru Anda." @@ -8323,7 +8749,7 @@ msgstr "Silakan masukkan nama pengguna Anda" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Jelaskan menurut Anda mengapa {0} salah dalam menerapkan label ini" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Mohon jelaskan mengapa menurut Anda obrolan Anda dinonaktifkan secara keliru" @@ -8358,7 +8784,11 @@ msgstr "Silakan pilih alasan untuk laporan ini" msgid "Please sign in as @{0}" msgstr "Silakan masuk sebagai @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Silakan verifikasi email Anda" @@ -8383,7 +8813,7 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Posting" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Posting Semua" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Postingan diblokir" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Postingan dihapus" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Postingan gagal diunggah. Silakan periksa koneksi internet Anda dan coba lagi." @@ -8454,18 +8884,22 @@ msgstr "Postingan yang Anda sembunyikan" msgid "Post interaction settings" msgstr "Pengaturan interaksi postingan" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Pengaturan Interaksi Postingan" +#: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Postingan dapat dibisukan berdasarkan teks, tagar, atau keduanya. Sebaik msgid "Posts hidden" msgstr "Postingan disembunyikan" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "Postingan, Balasan" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Tautan yang berpotensi menyesatkan" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Tekan untuk mencoba menghubungkan kembali" -#: src/components/Error.tsx:61 +#: 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 "Tekan untuk mengulangi" @@ -8536,7 +8966,7 @@ msgstr "Tekan untuk mengulangi" msgid "Press to view followers of this account that you also follow" msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Privasi" msgid "Privacy and security" msgstr "Privasi dan keamanan" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Kebijakan Privasi" @@ -8586,15 +9015,15 @@ msgstr "Kebijakan Privasi" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Memproses video..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Memproses..." @@ -8602,10 +9031,10 @@ msgstr "Memproses..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Kirim postingan" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Kirim balasan" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Kirim balasan" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notifikasi push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, Semua orang" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, Orang yang Anda ikuti" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Kode QR telah disalin ke papan klip!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Kode QR telah diunduh!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Kode QR disimpan ke rol kamera Anda!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notifikasi kutipan" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notifikasi kutipan" msgid "Quote post" msgstr "Kutip postingan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Kutipan kembali dilampirkan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Kutipan berhasil dilepaskan" @@ -8711,12 +9138,12 @@ msgstr "Kutipan dinonaktifkan" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Kutipan" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Kutipan postingan ini" @@ -8728,16 +9155,16 @@ msgstr "Melebihi batas perubahan – Anda terlalu sering mengubah panggilan dala msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Kembalikan kutipan" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "Reaksi dengan {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Baca blog postingan (dalam bahasa Inggris)" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Alasan banding" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Terima notifikasi dalam aplikasi" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Terima notifikasi push" @@ -8841,17 +9268,31 @@ msgstr "Direkomendasikan" msgid "Reconnect" msgstr "Hubungkan kembali" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Tolak" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Tolak" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Tolak permintaan obrolan" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Memuat ulang percakapan" @@ -8863,6 +9304,8 @@ msgstr "Memuat ulang percakapan" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Hapus {displayName} dari paket pemula" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Hapus {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Hapus {historyItem}" msgid "Remove account" msgstr "Hapus akun" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Hapus sisipan" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Hapus Avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Hapus Sampul" @@ -8914,8 +9362,9 @@ msgstr "Hapus Sampul" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Hapus sisipan" @@ -8929,12 +9378,12 @@ msgstr "Hapus feed" msgid "Remove feed?" msgstr "Hapus feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "Hapus dari feed Anda?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Hapus gambar" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Hapus postingan ulang" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "Hapus verifikasi" msgid "Remove your verification for this account?" msgstr "Hapus verifikasi Anda dari akun ini?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Dilepaskan oleh pemosting" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Dilepaskan oleh Anda" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Balasan" @@ -9104,14 +9552,14 @@ msgstr "Balasan dinonaktifkan" msgid "Replies to this post are disabled." msgstr "Balasan ke postingan ini dinonaktifkan." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Balas" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Balas ({0, plural, other {# balasan}})" @@ -9125,10 +9573,6 @@ msgstr "Balasan Disembunyikan oleh Pembuat Utas" msgid "Reply Hidden by You" msgstr "Balasan yang Anda Sembunyikan" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notifikasi balasan" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Pengaturan balasan dipilih oleh pembuat utas" @@ -9137,18 +9581,18 @@ msgstr "Pengaturan balasan dipilih oleh pembuat utas" msgid "Reply sorting" msgstr "Urutan balasan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilitas balasan diperbarui" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Balasan berhasil disembunyikan" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Laporkan" @@ -9157,20 +9601,20 @@ msgstr "Laporkan" msgid "Report account" msgstr "Laporkan akun" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Laporkan percakapan" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Dialog laporan" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Laporkan feed" @@ -9179,12 +9623,12 @@ msgstr "Laporkan feed" msgid "Report list" msgstr "Laporkan daftar" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Laporkan pesan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Laporkan postingan" @@ -9199,8 +9643,8 @@ msgstr "Laporkan paket pemula" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Laporan dikirim" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Laporkan feed ini" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Laporkan daftar ini" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Posting ulang" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Posting ulang ({0, plural, other {# postingan ulang}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notifikasi posting ulang" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Diposting ulang oleh Anda" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Postingan ulang" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Postingan ulang postingan ini" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Postingan ulang dari posting ulang Anda" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notifikasi posting ulang dari postingan ulang Anda" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Wajibkan teks alt sebelum memposting" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Gunakan kode email untuk masuk ke akun Anda." @@ -9328,7 +9791,17 @@ msgstr "Diwajibkan untuk provider ini" msgid "Required in your region" msgstr "Diperlukan di wilayah Anda" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Kirim ulang" @@ -9373,8 +9846,8 @@ msgstr "Reset status orientasi" msgid "Reset password" msgstr "Reset kata sandi" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal" msgid "Retry" msgstr "Ulangi" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Ulangi memuat opsi laporan" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Kembali ke halaman sebelumnya" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Kembali ke beranda" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Kembali ke halaman sebelumnya" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Simpan perubahan" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Simpan gambar" msgid "Save new handle" msgstr "Simpan panggilan baru" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Simpan kode QR" @@ -9518,13 +9994,13 @@ msgstr "Simpan kode QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Simpan ke daftar feed saya" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Feed Tersimpan" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Disimpan ke daftar feed Anda" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Katakan halo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Sains" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Gulir ke atas" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Cari" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cari postingan @{0}" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "Cari postingan saya" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Cari postingan" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Cari profil" msgid "Search..." msgstr "Cari..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Mencari profil" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Tahap keamanan diperlukan" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Pilih warna" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Pilih GIF" msgid "Select GIF \"{0}\"" msgstr "Pilih GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Pilih bahasa..." msgid "Select languages" msgstr "Pilih bahasa" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Pilih layanan moderasi" @@ -9904,11 +10390,11 @@ msgstr "Pilih minat Anda dari opsi di bawah ini" msgid "Select your preferred language for translations in your feed." msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Pilih saluran notifikasi pilihan Anda" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Kirim email" @@ -9935,11 +10421,11 @@ msgstr "Kirim email" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Kirim masukan" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Kirim pesan" @@ -9952,7 +10438,7 @@ msgstr "Kirim postingan ke {name}" msgid "Send post to..." msgstr "Kirim postingan ke..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Kirim laporan ke {title}" @@ -9960,7 +10446,7 @@ msgstr "Kirim laporan ke {title}" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Kirim melalui pesan" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Atur email untuk pengaturan ulang kata sandi" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Pengaturan" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Pengaturan untuk aktivitas dari yang lainnya" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Pengaturan untuk notifikasi suka" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Pengaturan untuk notifikasi sebutan" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Pengaturan untuk notifikasi pengikut baru" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Pengaturan untuk notifikasi kutipan" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Pengaturan untuk notifikasi balasan" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Aktivitas seksual atau ketelanjangan erotis." msgid "Sexually Suggestive" msgstr "Bermuatan Seksual" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Bagikan" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Tetap bagikan" @@ -10097,16 +10586,21 @@ msgstr "Tetap bagikan" msgid "Share author DID" msgstr "Bagikan DID pemosting" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Bagikan tautan" @@ -10114,6 +10608,11 @@ msgstr "Bagikan tautan" msgid "Share link dialog" msgstr "Dialog berbagi tautan" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Bagikan URI postingan at://" msgid "Share QR code" msgstr "Bagikan kode QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Bagikan feed ini" @@ -10142,8 +10641,8 @@ msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan ko #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Bagikan lewat..." @@ -10151,7 +10650,7 @@ msgstr "Bagikan lewat..." msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Penguji Preferensi Bersama" @@ -10167,16 +10666,16 @@ msgstr "Tampilkan teks alt" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Tetap tampilkan" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "Tampilkan opsi penyesuaian" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Kurangi postingan serupa" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Tampilkan Lebih Lanjut" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Perbanyak postingan serupa" @@ -10246,8 +10745,8 @@ msgstr "Tampilkan balasan" msgid "Show replies as" msgstr "Tampilkan balasan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Tampilkan balasan untuk semua" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Tampilkan peringatan dan saring dari feed" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Menampilkan informasi tentang kapan postingan ini dibuat" @@ -10297,15 +10796,17 @@ msgstr "Menampilkan konten" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Masuk atau buat akun" msgid "Sign in or create your account to join the conversation!" msgstr "Masuk atau buat akun Anda untuk bergabung dalam percakapan!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Masuk ke akun yang tidak tercantum dalam daftar" @@ -10337,8 +10842,12 @@ msgstr "Masuk ke akun yang tidak tercantum dalam daftar" msgid "Sign in to Bluesky or create a new account" msgstr "Masuk ke Bluesky atau buat akun baru" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "Masuk untuk melihat postingan" @@ -10348,9 +10857,9 @@ msgstr "Masuk untuk melihat postingan" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Keluar" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Keluar" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Keluar?" @@ -10391,7 +10900,7 @@ msgstr "Lewati" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Lebih kecil" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Menunda pengingat" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Seseorang menanggapi {0}" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Ada sesuatu yang kurang benar dengan data yang Anda laporkan. Silakan hubungi bantuan." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Ada yang tidak beres" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Ada yang tidak beres!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Ada yang tidak beres. Silakan coba lagi." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Ada masalah? Beri tahu kami." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Olahraga" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Mulai percakapan, dan percakapan akan muncul di sini." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Mulai obrolan baru" @@ -10582,17 +11101,17 @@ msgstr "Mulai tambahkan orang" msgid "Start adding people!" msgstr "Mulai tambahkan orang!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Mulai obrolan dengan {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Paket Pemula" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Kirim" @@ -10684,9 +11203,9 @@ msgstr "Ajukan banding" msgid "Submit Appeal" msgstr "Ajukan Banding" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Kirim laporan" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Berlangganan" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Sukses!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Berhasil diverifikasi" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Terbenam" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Dukungan" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Ganti akun" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Ganti akun" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Beralih ke {0}" @@ -10824,11 +11347,15 @@ msgstr "Log sistem" msgid "Tags only" msgstr "Hanya tagar" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" msgid "Tap to close context menu" msgstr "Ketuk untuk tutup menu konteks" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Ketuk untuk menutup" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Ketentuan Layanan" @@ -10939,7 +11484,7 @@ msgstr "Teks & tagar" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Area input teks" @@ -10981,9 +11526,9 @@ msgstr "Sekian!" msgid "That's everything!" msgstr "Itu saja!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka." @@ -11049,6 +11594,11 @@ msgstr "Pengaturan ini akan otomatis diterapkan ke postingan baru. Anda dapat me 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Ada masalah saat menghubungi server" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Ada masalah saat memperbarui feed Anda, silakan periksa koneksi internet dan coba lagi." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Ada masalah! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Pengaturan ini hanya berlaku untuk feed Mengikuti." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} ini telah ditandai:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Banding ini akan dikirim ke <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Banding ini akan dikirimkan ke layanan moderasi Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Banding ini akan dikirimkan ke layanan moderasi Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Obrolan ini telah terputus" @@ -11310,7 +11881,11 @@ msgstr "Konten ini tidak tersedia karena salah satu pengguna yang terlibat telah msgid "This content is not viewable without a Bluesky account." msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifkan. Tekan untuk opsi lain" @@ -11318,7 +11893,7 @@ msgstr "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifk msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Email ini sudah terhubung dengan akun Anda." @@ -11356,11 +11931,15 @@ msgstr "Feed ini kosong." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Feed ini tidak lagi online. Kami akan menampilkan <0>Discover sebagai gantinya." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Panggilan ini sudah digunakan. Silakan coba yang lain." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "Tautan ini tidak valid" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "Daftar ini – dibuat oleh Anda –mengandung kemungkinan pelanggaran pe msgid "This list is empty." msgstr "Daftar ini kosong." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Postingan ini mengklaim dibuat pada <0>{0}, tetapi baru terlihat di Bluesky pada <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Postingan ini hanya dapat dilihat untuk pengguna yang masuk." msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Pembuat postingan ini telah menonaktifkan kutipan." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Profil ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Balasan ini akan disortir ke bagian tersembunyi di bawah utas Anda dan akan membisukan notifikasi balasan selanjutnya - baik untuk Anda maupun orang lain." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Pengguna ini tidak memiliki pengikut." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Ini akan menghapus @{0} dari daftar akses cepat." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Ini akan menghapus postingan Anda dari kutipan ini untuk semua pengguna, dan menempatkan teks pengganti." @@ -11574,7 +12166,7 @@ msgstr "Preferensi Utas" msgid "Threaded" msgstr "Bersusun" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Untuk menonaktifkan metode 2FA melalui email, silakan verifikasi akses Anda ke alamat email tersebut." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Untuk menonaktifkan metode email 2FA Anda, silakan verifikasi akses Anda ke <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Teratas" msgid "Top replies first" msgstr "Balasan teratas lebih dulu" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Topik" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Terjemahkan" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Tren Video" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Percaya muncul dari hubungan, komunitas, dan konteks bersama, oleh karena itu kami juga aktifkan <0>verifikator terpecaya: organisasi yang bisa langsung terbitkan verifikasi." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Coba lagi" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Coba lagi" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "TV" @@ -11763,11 +12369,15 @@ msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." msgid "Unable to delete" msgstr "Tidak dapat menghapus" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "Tidak tersedia" msgid "Unavailable feed information" msgstr "Informasi feed tidak tersedia" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Buka blokir" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Buka blokir" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Buka blokir akun" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Buka Blokir Akun?" @@ -11837,8 +12452,8 @@ msgstr "Buka blokir daftar" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Batal posting ulang ({0, plural, other {# postingan ulang}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Berhenti ikuti {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Berhenti ikuti akun" @@ -11872,7 +12487,7 @@ msgstr "Berhenti ikuti akun" msgid "Unfollows the user" msgstr "Berhenti mengikuti pengguna" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Sayangnya, tidak ada dari labeler yang Anda langgani mendukung tipe laporan ini." @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Verifikator tidak diketahui" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Batal suka" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Batal suka ({0, plural, other {# suka}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "Bunyikan" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Bunyikan akun" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Bunyikan percakapan" @@ -11955,12 +12562,12 @@ msgstr "Bunyikan percakapan" msgid "Unmute list" msgstr "Bunyikan daftar" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Bunyikan utas" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Lepas sematan" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lepaskan feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Lepaskan sematan dari beranda" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Lepas sematan dari profil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Lepas sematan daftar moderasi" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} dilepaskan dari Beranda" @@ -12030,14 +12637,18 @@ msgstr "Berhenti langganan pelabel ini" msgid "Unsubscribed from list" msgstr "Telah berhenti berlangganan dari daftar" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "Perbarui" msgid "Update <0>{displayName} in Lists" msgstr "Perbarui <0>{displayName} dalam Daftar" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Perbarui email" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Perbarui ke {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Perbarui email Anda" @@ -12080,17 +12699,17 @@ msgstr "Perbarui email Anda" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Gagal memperbarui lampiran kutipan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Gagal memperbarui visibilitas balasan" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Unggah foto saja" @@ -12098,39 +12717,40 @@ msgstr "Unggah foto saja" msgid "Upload a text file to:" msgstr "Unggah berkas teks ke:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Unggah dari Kamera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Unggah dari Berkas" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Unggah dari Pustaka" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Mengunggah gambar..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Mengunggah keluku tautan..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Mengunggah video..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Pengguna diblokir" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Daftar pengguna {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "pengguna yang diikuti <0>@{0}" msgid "users following <0>@{0}" msgstr "pengguna yang mengikuti <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "Verifikasi gagal, silakan coba lagi." msgid "Verification settings" msgstr "Pengaturan verifikasi" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Pengaturan Verifikasi" @@ -12304,8 +12924,8 @@ msgstr "Verifikasi lagi" #. 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verifikasi DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verifikasi kode email" @@ -12349,7 +12969,7 @@ msgstr "Verifikasi akun ini?" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Versi {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Video gagal diproses" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Feed Video" @@ -12419,7 +13039,7 @@ msgstr "Video tidak ditemukan." msgid "Video settings" msgstr "Pengaturan video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video diunggah" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Video" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Lihat profil {0}" @@ -12467,20 +13087,15 @@ msgstr "Lihat profil {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Lihat profil pengguna yang diblokir" @@ -12503,10 +13118,18 @@ msgstr "Lihat detail" msgid "View full thread" msgstr "Lihat utas lengkap" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Lihat informasi tentang label ini" @@ -12522,7 +13145,7 @@ msgstr "Lihat lainnya" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Lihat profil" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Lihat avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}" msgid "View this user's verifications" msgstr "Lihat verifikasi pengguna ini" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" @@ -12596,8 +13219,8 @@ msgstr "Lihat daftar akun yang Anda bisukan" msgid "View your verifications" msgstr "Lihat verifikasi Anda" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Melihat gambar penuh" @@ -12640,8 +13263,8 @@ msgstr "Peringatkan konten" msgid "Warn content and filter from feeds" msgstr "Peringatkan konten dan saring dari feed" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Tonton sekarang" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Kami tidak menemukan hasil apa pun untuk topik tersebut." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Kami tidak dapat memuat percakapan ini" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Kami sarankan memilih setidaknya dua minat." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Kami telah mengirimkan email ke <0>{0} yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Kami tidak dapat memastikan apakah Anda diizinkan untuk mengunggah video. Silakan coba lagi." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Kami akan memberi tahu Anda ketika akun Anda siap." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Kami akan mengirimkan email ke <0>{0} yang berisi tautan. Silakan klik tautan tersebut untuk menyelesaikan proses verifikasi email." @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Kami mengalami masalah jaringan, coba lagi" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Apa nama paket pemula Anda?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Apa kabar?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Saat Anda ketuk pada tanda centang, Anda akan melihat organisasi mana yang telah memberikan verifikasi." @@ -12878,7 +13505,7 @@ msgstr "Saat Anda ketuk pada tanda centang, Anda akan melihat organisasi mana ya msgid "Who can interact with this post?" msgstr "Siapa yang dapat berinteraksi dengan postingan ini?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Siapa yang dapat membalas" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Siapa yang dapat memverifikasi?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Waduh!" @@ -12939,7 +13566,7 @@ msgstr "Mengapa paket pemula ini perlu ditinjau?" msgid "Why should this user be reviewed?" msgstr "Mengapa pengguna ini perlu ditinjau?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Tulis postingan" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Tulis balasan Anda" @@ -12978,7 +13605,8 @@ msgstr "Penulis" msgid "Wrong DID returned from server. Received: {0}" msgstr "DID yang dikembalikan dari server salah: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Ya, hapus paket pemula ini" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Ya, lepaskan" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Ya, sembunyikan" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "Anda sedang siaran langsung" msgid "You are no longer live" msgstr "Anda tidak lagi bersiaran langsung" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Anda tidak diizinkan untuk mengunggah video." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Anda dapat melanjutkan percakapan yang sedang berlangsung terlepas dari pengaturan mana yang Anda pilih." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Sekarang Anda dapat masuk dengan kata sandi baru." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Anda dapat mengaktifkan kembali akun Anda untuk melanjutkan masuk. Profi 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Anda bisa mengubahnya nanti melalui pengaturan." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Anda tidak memiliki feed yang disimpan." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Anda menanggapi {0}" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Anda akan keluar dari semua akun." @@ -13378,11 +14038,11 @@ msgstr "Anda akan keluar dari semua akun." msgid "You will no longer receive notifications for {0}" msgstr "Anda tidak akan lagi menerima notifikasi untuk {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Anda tidak akan lagi menerima notifikasi untuk utas ini" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" @@ -13390,12 +14050,12 @@ msgstr "Anda sekarang akan menerima notifikasi untuk utas ini" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Anda akan menerima email berisikan \"kode reset\". Masukkan kode tersebut di sini, lalu masukkan kata sandi baru." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "Anda akan mulai menerima notifikasi dari {0}!" msgid "You'll stay updated with these feeds" msgstr "Dapatkan informasi terbaru melalui feed berikut" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Anda sedang dalam antrian" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "Anda telah mencapai jumlah maksimum permintaan yang diizinkan. Silakan c msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak bita)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Anda telah mencapai batas harian unggahan video (terlalu banyak video)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "Akun Anda telah ditangguhkan" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Usia akun Anda belum cukup lama untuk menggungah video. Silakan coba lagi nanti." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Semua catatan data publik dalam repositori akun Anda dapat diunduh sebagai berkas \"CAR\". Tidak termasuk konten media seperti gambar dan data pribadi yang harus diunduh secara terpisah." @@ -13519,7 +14191,7 @@ msgstr "Banding Anda telah diajukan. Jika banding Anda berhasil, Anda akan mener msgid "Your birth date" msgstr "Tanggal lahir Anda" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Obrolan Anda telah dinonaktifkan" @@ -13527,11 +14199,11 @@ msgstr "Obrolan Anda telah dinonaktifkan" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Pilihan Anda akan diingat untuk tautan selanjutnya. Anda dapat mengubahnya kapan saja di pengaturan." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "Email Anda" msgid "Your email appears to be invalid." msgstr "Email Anda tidak valid." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Email Anda masih belum terverifikasi. Silakan verifikasi email Anda untuk dapat menikmati semua fitur dari Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat ap msgid "Your full handle will be <0>@{0}" msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Kata yang Anda bisukan" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "Preferensi bahasa Anda" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Laporan anda akan dikirimkan ke <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Laporan anda akan dikirimkan ke <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Minat yang anda pilih membantu kami menyajikan konten yang Anda inginkan." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 4efa957a32..a4387ff0fd 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:45\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (attiva)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(link invito alla chat)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(contiene allegati)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# mi piace} other {# mi piace}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membri}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuto} other {# minuti}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mese} other {# mesi}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# nuova richiesta di partecipazione} other {# nuove richieste di partecipazione}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# persona ha} other {# persone hanno}} reagito – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# secondo} other {# secondi}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# elemento non letto} other {# elementi non letti}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {#m} other {#m}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>testo e tag" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} aggiunto alla chat" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} e {1} aggiunti alla chat" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} seguiti" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} ti sta bloccando" @@ -264,7 +273,7 @@ msgstr "{0} di 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} ha reagito con {1}" @@ -290,7 +299,7 @@ msgstr "{0} è stato rimosso dal gruppo" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, una lista di {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Foto profilo di {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Avatar di {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {membro} other {membri}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} membri" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Nessuna richiesta di partecipazione} one {# richiesta di partecipazione} other {# richieste di partecipazione}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# aggiornamento chat} other {# aggiornamenti chat}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# nuova richiesta di partecipazione} other {# nuove richieste di partecipazione}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# richiesta} other {# richieste}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# elemento non letto} other {# elementi non letti}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Aggiorna la pagina per vederlo.} other {Aggiorna la pagina per vederli tutti.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Questo post ha # foto.} other {Questo post ha # foto.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Aggiorna l'app per vederlo.} other {Aggiorna l'app per vederli tutti.}}" + +#. 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 "{count, plural, other {#+ richieste di partecipazione}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ richieste" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {ora} other {ore}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minuti}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} ti hanno seguito" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "A {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno rimosso le loro verifiche dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} si sono iscritti al tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} ti hanno verificato" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} ha iniziato a seguirti" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} ha iniziato a seguirti a sua volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "A {firstAuthorLink} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "A {firstAuthorLink} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "A {firstAuthorLink} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} ha rimosso la propria verifica dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ha ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} ha ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} si è iscritto con il tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} ti ha verificato" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno iniziato a seguirti" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "A {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno rimosso le loro verifiche dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} hanno ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} si sono iscritti al tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} ti hanno verificato" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} ha iniziato a seguirti" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} ha iniziato a seguirti a sua volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "A {firstAuthorName} è piaciuto il tuo feed personalizzato" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "A {firstAuthorName} è piaciuto il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "A {firstAuthorName} è piaciuto il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} ha rimosso la propria verifica dal tuo account" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ha ripubblicato il tuo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} ha ripubblicato il tuo repost" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} si è iscritto al tuo starter pack" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} ti ha verificato" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} ti ha verificato" msgid "{following} following" msgstr "{following} seguiti" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "Non è possibile aggiungere {handle}" @@ -547,7 +606,7 @@ msgstr "Non è possibile aggiungere {handle}" msgid "{handle} can't be messaged" msgstr "{handle} non può ricevere messaggi" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} non può ricevere messaggi" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# ora {minutesString}} other {# ore {minutesString} msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# ora} other {# ore}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}+ nuove richieste di partecipazione" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ nuove richieste di partecipazione" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {La descrizione è troppo lunga. Il nume msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Il nome visualizzato è troppo lungo. Il numero massimo di caratteri è #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Puoi nascondere un massimo di # risposte.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} ha reagito con {0} a {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Feed e utenti preferiti di {name} - unisciti!" msgid "{name}'s starter pack" msgstr "Starter pack di {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# elemento non letto} other {# elementi non letti}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contatto trovato} other {# contatti trovati}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# richiesta} other {# richieste}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ richieste" @@ -656,6 +725,12 @@ msgstr "{userName} è verificato" msgid "{userName}'s verifications" msgstr "Verifiche di {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}} son #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {follower} other {follower}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguito} other {seguiti}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {mi piace} other {mi piace}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citazione} other {citazioni}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} other {repost}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {salvato} other {salvati}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} membri" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> ti ha aggiunto" @@ -795,8 +870,13 @@ msgstr "Si è verificato un errore di rete. Controlla la tua connessione a inter #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Si è verificato un errore di rete. Controlla la tua connessione a internet." @@ -804,7 +884,7 @@ msgstr "Si è verificato un errore di rete. Controlla la tua connessione a inter msgid "A new code has been sent" msgstr "È stato inviato un nuovo codice" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Una nuova forma di verifica" @@ -827,11 +907,11 @@ msgstr "Uno screenshot di una pagina del profilo con un'icona a forma di campane 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Uno dei destinatari selezionati non è seguito dal mittente." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Comportamento offensivo o discriminatorio" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Accetta" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Accetta" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Accetta richiesta" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Accetta richiesta di partecipazione" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Accetta richiesta" @@ -860,17 +950,26 @@ msgstr "Accetta richiesta" msgid "Accept this language suggestion" msgstr "Accetta questa lingua suggerita" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Conversazioni accettate" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Richiesta di adesione inoltrata: il proprietario del gruppo esaminerà la tua richiesta." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accessibilità" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Impostazioni di accessibilità" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Impostazioni di accessibilità" msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Account bloccato" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Account seguito" @@ -899,7 +998,7 @@ msgstr "L'account è stato sospeso" msgid "Account is deactivated" msgstr "L'account è disattivato" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Fornitore account" msgid "Account removed from quick access" msgstr "Account rimosso dall'accesso rapido" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Account sbloccato" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Non segui più questo account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Account riattivato" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Gli account con una spunta blu dentellata <0><1/> possono verificare l'identità di altri account. I certificatori attendibili sono selezionati da Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Attività da altri" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notifiche attività" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Aggiungi" @@ -999,8 +1094,8 @@ msgstr "Aggiungi account" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Aggiungi testo alternativo (opzionale)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Aggiungi un altro account" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Aggiungi un altro post" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Aggiungi un altro post al thread" @@ -1035,7 +1130,7 @@ msgstr "Aggiungi password per app" msgid "Add App Password" msgstr "Aggiungi password per app" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Aggiungi etichetta automazione all'account" @@ -1043,7 +1138,7 @@ msgstr "Aggiungi etichetta automazione all'account" msgid "Add emoji reaction" msgstr "Aggiungi reazione con emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Aggiungi membri della chat di gruppo" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Aggiungi immagine" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Aggiungi media al post" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Aggiungi membri" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Aggiungi ulteriori dettagli (facoltativo)" @@ -1091,6 +1186,10 @@ msgstr "Aggiungi persone" msgid "Add people to list" msgstr "Aggiungi persone alla lista" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Aggiungi persone con un link" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Aggiungi reazione" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Aggiungi la tua data di nascita" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Aggiunto da {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Aggiunto tramite link di invito" @@ -1165,12 +1264,12 @@ msgstr "Aggiunta membri alla lista..." msgid "Additional details (limit 1000 characters)" msgstr "Dettagli aggiuntivi (massimo 1000 caratteri)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Ulteriori dettagli (massimo 300 caratteri)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "Verifica dell’età inviata con successo" msgid "Age assurance only takes a few minutes" msgstr "La verifica dell’età richiede solo pochi minuti" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Tutte" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Tutti e {0}" @@ -1278,13 +1377,13 @@ msgstr "Consenti l'accesso ai tuoi messaggi" msgid "Allow anyone to reply" msgstr "Permetti a chiunque di rispondere" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Consenti messaggi diretti da" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Consenti inviti a chat di gruppo da" @@ -1338,12 +1437,12 @@ msgstr "Hai già un account?" msgid "Already signed in as @{0}" msgstr "Hai effettuato l'accesso come @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Testo alternativo" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Il testo alternativo descrive le immagini per gli utenti non vedenti ed ipovedenti, fornendo un contesto a tutti." @@ -1387,7 +1486,7 @@ msgstr "Si è verificato un errore" msgid "An error occurred" msgstr "Si è verificato un errore" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Si è verificato un errore durante la compressione del video." @@ -1421,7 +1520,8 @@ msgstr "Si è verificato un errore durante il caricamento del video. Riprova." msgid "An error occurred while loading your lists :/" msgstr "Si è verificato un errore caricando le tue liste :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Si è verificato un errore nel salvare il codice QR!" @@ -1432,11 +1532,11 @@ msgstr "Si è verificato un errore nel salvare il codice QR!" msgid "An error occurred while trying to follow all" msgstr "Si è verificato un errore nel seguire tutti" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Si è verificato un errore durante il caricamento del video. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Si è verificato errore durante il caricamento del video. Verifica la tua connessione a internet e riprova." @@ -1456,26 +1556,30 @@ msgstr "Un'illustrazione che raffigura avatar utente che passano da una rubrica 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" +#: 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 "Un'illustrazione dell'app Bluesky con un aeroplanino di carta che vola fuori da essa, a rappresentare l'invito agli amici" + #: 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 "Un'illustrazione che mostra che Bluesky seleziona certificatori attendibili e questi a loro volta verificano gli account dei singoli utenti." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Un link di invito consente ad altri di unirsi a questa chat di gruppo senza essere aggiunti direttamente. Sei tu a decidere chi può utilizzare il link e se è necessaria la tua approvazione. Puoi disattivare il link in qualsiasi momento." +#: 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 "Un link di invito consente ad altri di partecipare a questa chat di gruppo senza essere aggiunti direttamente. Sei tu a decidere chi può partecipare alla chat. Puoi disattivare il link in qualsiasi momento." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "Un problema non incluso in queste opzioni" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Si è verificato un problema durante la creazione della chat di gruppo, riprova." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Si è verificato un problema nell'aprire la chat" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Si è verificato un problema, riprova." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Un'immagine di un iPhone che mostra l'app Bluesky aperta sul profilo di un utente verificato, con un segno di spunta blu accanto al suo nome." @@ -1539,15 +1643,19 @@ msgstr "Chiunque" msgid "Anyone can interact" msgstr "Tutti possono interagire" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Chiunque può partecipare" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Chiunque può partecipare istantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" -msgstr "Chiunque può richiedere di partecipare" +msgstr "Chiunque può chiedere di partecipare" #: src/screens/Settings/ActivityPrivacySettings.tsx:112 #: src/screens/Settings/ActivityPrivacySettings.tsx:117 @@ -1555,11 +1663,11 @@ msgstr "Chiunque può richiedere di partecipare" msgid "Anyone who follows me" msgstr "Chiunque mi segua" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "Chiunque lo abbia non potrà più iscriversi o richiedere l'iscrizione. Puoi sempre crearne uno nuovo." +msgstr "Chiunque lo abbia non potrà più iscriversi o chiedere di partecipare. Puoi sempre crearne uno nuovo." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "I nomi delle password per app devono essere lunghi almeno 4 caratteri" msgid "App passwords" msgstr "Password per app" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Password per app" @@ -1618,7 +1726,7 @@ msgstr "Contesta la sospensione della diretta" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Appello inviato" @@ -1632,14 +1740,14 @@ msgstr "Revisione sospensione" msgid "Appeal Suspension" msgstr "Revisione sospensione" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Fai ricorso contro questa decisione" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Applica pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archiviato da {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Post archiviato" @@ -1675,7 +1783,7 @@ msgstr "Sei davvero sicuro?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Eliminare la password per app \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Eliminare questo messaggio? Il messaggio verrà eliminato per te, ma non per gli altri partecipanti." @@ -1688,23 +1796,29 @@ msgstr "Eliminare questo starter pack?" msgid "Are you sure you want to discard your changes?" msgstr "Annullare le modifiche?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" -msgstr "Lasciare {groupName}?" +msgstr "Abbandonare {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Vuoi abbandonare questa conversazione?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Abbandonare questa conversazione? I messaggi verranno eliminati per te, ma non per gli altri partecipanti." +#: src/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 "Abbandonare questa conversazione? I tuoi messaggi verranno eliminati per te, ma non per gli altri partecipanti." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Vuoi rimuoverlo dai tuoi feed?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Scartare questo post?" @@ -1724,8 +1838,8 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudità artistica o non erotica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Assegna argomento per l'algoritmo" @@ -1752,7 +1866,7 @@ msgstr "Account automatizzato" msgid "Automation label" msgstr "Etichetta automazione" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etichetta automazione" @@ -1767,12 +1881,12 @@ msgstr "Riproduci automaticamente video e GIF" msgid "Available" msgstr "Disponibile" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Disponibile" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Disponibile" msgid "Back" msgstr "Indietro" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Vai ai messaggi" @@ -1832,7 +1948,7 @@ msgstr "Devi verificare il tuo indirizzo email prima di creare un post o rispond msgid "Before creating a starter pack, you must first verify your email." msgstr "Prima di creare uno starter pack, devi verificare la tua email." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Devi verificare il tuo indirizzo email, prima di poter accettare questa richiesta di messaggio." @@ -1840,13 +1956,14 @@ msgstr "Devi verificare il tuo indirizzo email, prima di poter accettare questa msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Devi verificare il tuo indirizzo email prima di poter ricevere notifiche relative ai post di {name}." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Devi verificare il tuo indirizzo email prima di poter inviare un messaggio a un altro utente." @@ -1874,59 +1991,53 @@ msgstr "Data di nascita" msgid "Birthday" msgstr "Compleanno" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blocca" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Blocca {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blocca account" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Bloccare l'account?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Bloccare account?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blocca gli account" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Blocca ed elimina" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Blocca e abbandona" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Lista di account bloccati" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blocca o segnala" @@ -1936,9 +2047,9 @@ msgstr "Vuoi bloccare questi account?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blocca utente" @@ -1946,17 +2057,17 @@ msgstr "Blocca utente" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blocca utente" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" -msgstr "Blocca e/o elimina questa conversazione" +msgstr "Blocca utente e/o elimina questa conversazione" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Blocca utente e/o abbandona questa conversazione" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloccato" @@ -1964,14 +2075,12 @@ msgstr "Bloccato" msgid "Blocked accounts" msgstr "Account bloccati" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Account bloccati" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Gli account bloccati non possono rispondere alle tue discussioni, menzionarti o interagire in nessun altro modo con te." @@ -1987,7 +2096,7 @@ msgstr "Il blocco non impedisce all'etichettatore di inserire etichette sul tuo msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Il blocco è pubblico. Gli account bloccati non possono rispondere alle tue discussioni, menzionarti, o interagire con te in nessun altro modo." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Il blocco non impedirà l'applicazione delle etichette al tuo account, ma impedirà a questo account di rispondere alle tue discussioni o di interagire con te." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky non può confermare l'autenticità della data dichiarata." @@ -2029,7 +2138,7 @@ msgstr "Bluesky è meglio con gli amici!" msgid "Bluesky is more fun with friends" msgstr "Bluesky è più divertente con gli amici" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky è più divertente con gli amici! Importa i tuoi contatti per vedere chi è già qui." @@ -2037,11 +2146,15 @@ msgstr "Bluesky è più divertente con gli amici! Importa i tuoi contatti per ve msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky è più divertente con gli amici. Vuoi invitarne qualcuno? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "Bluesky ha bisogno dell'accesso alla fotocamera per scansionare i codici QR di altri profili." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Termini di servizio di Bluesky" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky sceglierà un set di account consigliati dal tuo network." msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky non mostrerà il tuo profilo e i tuoi post agli utenti che non hanno effettuato l'accesso. Altre applicazioni potrebbero non rispettare questa istruzione. Questo non rende il tuo account privato." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verificherà in modo proattivo gli account notevoli e autentici." @@ -2081,6 +2194,10 @@ msgstr "Libri" msgid "Breaking site rules" msgstr "Violazione regole del sito" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Riunisci fino a 50 amici in un'unica chat." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "Attività commerciale" msgid "Button to go back to the home timeline" msgstr "Pulsante per tornare alla timeline principale" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Di {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Di <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "di <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Di <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Iscrivendoti accetti i <0>Termini di servizio." msgid "By you" msgstr "Da te" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Fotocamera" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Accesso alla fotocamera necessario" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2192,15 +2323,18 @@ msgstr "Fotocamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Fotocamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Fotocamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Annulla" @@ -2248,9 +2384,9 @@ msgstr "Annulla la riattivazione e disconnettiti" msgid "Cancel search" msgstr "Annulla la ricerca" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Non puoi interagire con un utente bloccato" @@ -2264,7 +2400,7 @@ msgstr "Sottotitoli (.vtt)" msgid "Captions & alt text" msgstr "Sottotitoli e testo alternativo" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "galleria a scorrimento" @@ -2297,7 +2433,7 @@ msgstr "Cambia lingua app" msgid "Change Handle" msgstr "Modifica il nome utente" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Modifica servizio di moderazione" @@ -2310,11 +2446,11 @@ msgstr "Cambia password" msgid "Change password dialog" msgstr "Finestra di modifica password" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Cambia categoria segnalazione" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Modifica motivo della segnalazione" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Messaggi" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Conversazione eliminata" @@ -2361,6 +2497,12 @@ msgstr "Conversazione eliminata" msgid "Chat ended" msgstr "Chat terminata" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Link di invito alla chat non più disponibile" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Chat bloccata" @@ -2373,35 +2515,44 @@ msgstr "Messaggi chat - silenzioso" msgid "Chat messages - sound" msgstr "Messaggi chat - suono" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Conversazione silenziata" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Chat non trovata." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +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 +msgid "Chat recipient is not followed by the sender." +msgstr "Destinatario della chat non seguito dal mittente." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Richieste" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Richieste di messaggi" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Impostazioni chat" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Impostazioni chat" @@ -2418,14 +2569,14 @@ msgstr "Titolo della chat cambiato in {0}" msgid "Chat unlocked" msgstr "Chat sbloccata" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Conversazione riattivata" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Messaggi" @@ -2479,7 +2630,7 @@ msgstr "Seleziona lingue del post" msgid "Choose this color as your avatar" msgstr "Scegli questo colore per il tuo avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Scegli chi e come può partecipare a questa chat di gruppo." @@ -2558,7 +2709,7 @@ msgstr "Fai clic qui per uscire" msgid "Click here to resend the email" msgstr "Fai cli qui per inviare nuovamente l'email" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Fai clic qui per riavviare il processo di verifica." @@ -2567,7 +2718,7 @@ msgstr "Fai clic qui per riavviare il processo di verifica." msgid "Click here to update your birthdate" msgstr "Fai clic qui per aggiornare la tua data di nascita" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Fai clic qui per aggiornare il tuo indirizzo email" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Clicca per riprovare l'invio" @@ -2594,28 +2745,30 @@ msgstr "Clicca per riprovare l'invio" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Clicca per riprovare l'invio" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Chiudi" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Chiudi la finestra attiva" @@ -2647,6 +2800,10 @@ msgstr "Chiudi la finestra attiva" msgid "Close alert" msgstr "Chiudi l'avviso" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Chiudi banner" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Chiudi menu a scomparsa inferiore" @@ -2657,8 +2814,10 @@ msgstr "Chiudi menu a scomparsa inferiore" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Chiudi la finestra di dialogo" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Chiudi l'immagine" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Chiudi menu" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Chiudi scanner" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Chiudi il banner delle richieste in arrivo" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Chiudi la finestra" @@ -2695,18 +2866,22 @@ msgstr "Chiudi finestra di benvenuto" msgid "Closes password update alert" msgstr "Chiude l'avviso di aggiornamento della password" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Annulla la creazione del post ed elimina la bozza" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Comprimi la lista di utenti" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Comprime l'elenco degli utenti per una determinata notifica" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Colore" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Fumetti" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Linee guida della community" @@ -2740,12 +2915,12 @@ msgstr "Completa la challenge" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Scrivi un nuovo post" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Scrivi post fino a {0, plural, other {# caratteri}}" @@ -2753,11 +2928,11 @@ msgstr "Scrivi post fino a {0, plural, other {# caratteri}}" msgid "Compose reply" msgstr "Scrivi la risposta" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Compressione GIF in corso..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Compressione del video..." @@ -2780,7 +2955,7 @@ msgstr "Configurato nelle <0>impostazioni di moderazione." msgid "Confirm" msgstr "Conferma" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contatta il supporto" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "La sincronizzazione dei contatti non è disponibile su questo dispositivo, in quanto l'app non è in grado di accedere ai tuoi contatti." @@ -2825,11 +3000,11 @@ msgstr "La sincronizzazione dei contatti non è disponibile su questo dispositiv msgid "Contact us" msgstr "Contattaci" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Contatti importati" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Contatti rimossi" @@ -2842,7 +3017,7 @@ msgstr "Contenuti e media" msgid "Content and media" msgstr "Contenuti e media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Contenuti e media" @@ -2889,7 +3064,7 @@ msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Continua thread" msgid "Continue thread..." msgstr "Continua thread..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Continua al nome del gruppo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Vai al passaggio successivo" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Conversazione" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversazione eliminata" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversazione eliminata" @@ -2939,15 +3114,22 @@ msgstr "Conversazione eliminata" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Conversazione abbandonata" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Conversazione non trovata." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Versione della build copiata negli appunti" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiato!" msgid "Copies build version to clipboard" msgstr "Copia la versione negli appunti" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Copia l'URL canonico del profilo negli appunti" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copia" @@ -2997,6 +3184,11 @@ msgstr "Copia DID" msgid "Copy host" msgstr "Copia host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Copia link di invito" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Copia link della lista" msgid "Copy link to post" msgstr "Copia link del post" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copia link al profilo" @@ -3027,8 +3219,8 @@ msgstr "Copia link al profilo" msgid "Copy link to starter pack" msgstr "Copia link allo starter pack" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copia testo del messaggio" @@ -3037,12 +3229,12 @@ msgstr "Copia testo del messaggio" msgid "Copy post at:// URI" msgstr "Copia URL at:// del post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copia testo del post" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copia codice QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Impossibile catturare il codice QR" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Impossibile connettersi al feed personalizzato" @@ -3065,7 +3261,15 @@ msgstr "Impossibile connettersi al feed personalizzato" msgid "Could not connect to feed service" msgstr "Impossibile connettersi al servizio feed" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "Impossibile copiare – riprova" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "Impossibile scaricare – riprova" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Impossibile recuperare il post" @@ -3073,22 +3277,26 @@ msgstr "Impossibile recuperare il post" msgid "Could not find profile" msgstr "Impossibile trovare il profilo" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Impossibile seguire tutte le corrispondenze: controlla la connessione di rete." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Impossibile seguire tutte le corrispondenze. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" -msgstr "Errore nell'abbandonare la conversazione" +msgstr "Impossibile abbandonare la chat" + +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "Impossibile abbandonare la chat." #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" @@ -3100,7 +3308,11 @@ msgstr "Non è stato possibile caricare il feed" msgid "Could not load list" msgstr "Non è stato possibile caricare la lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "Impossibile caricare il profilo" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Errore nel silenziare la conversazione" @@ -3108,11 +3320,19 @@ msgstr "Errore nel silenziare la conversazione" msgid "Could not process your video" msgstr "Impossibile processare il tuo video" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "Impossibile rimuovere il membro." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Impossibile salvare le modifiche: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "Impossibile condividere – riprova" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Non è stato possibile aggiornare le impostazioni di notifica" @@ -3139,7 +3359,7 @@ msgstr "Codice nazione" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Crea" @@ -3153,13 +3373,13 @@ msgstr "Crea una lista" msgid "Create a list from this starter pack" msgstr "Crea una lista da questo starter pack" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Crea uno starter pack" @@ -3174,13 +3394,14 @@ msgstr "Crea uno starter pack per me" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "In alternativa crea un avatar" @@ -3206,7 +3427,7 @@ msgstr "In alternativa crea un avatar" msgid "Create another" msgstr "Creane un altro" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Crea chat di gruppo" @@ -3228,19 +3449,20 @@ msgstr "Crea lista da starter pack" msgid "Create moderation list" msgstr "Crea lista di moderazione" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Crea un nuovo account" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Crea o modifica un link di invito per questa chat di gruppo" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Crea un report per {0}" @@ -3256,8 +3478,8 @@ msgstr "Crea lista di utenti" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Creato {0}" @@ -3270,6 +3492,10 @@ msgstr "L'autore è stato bloccato" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Chat corrente" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tema scuro" msgid "Date of birth" msgstr "Data di nascita" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Alba" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Giorno" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Predefinito" msgid "Default icons" msgstr "Icone predefinite" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Elimina la password per app" msgid "Delete app password?" msgstr "Eliminare la password per app?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Elimina conversazione" @@ -3378,19 +3612,19 @@ msgstr "Elimina conversazione" msgid "Delete chat declaration record" msgstr "Elimina il record della dichiarazione della chat" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Elimina contatti" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Elimina conversazione" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Elimina per me" @@ -3399,11 +3633,11 @@ msgstr "Elimina per me" msgid "Delete list" msgstr "Elimina lista" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Elimina messaggio" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Elimina messaggio per me" @@ -3411,9 +3645,9 @@ msgstr "Elimina messaggio per me" msgid "Delete my account" msgstr "Elimina il mio account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Elimina il post" @@ -3430,17 +3664,17 @@ msgstr "Eliminare lo starter pack?" msgid "Delete this list?" msgstr "Eliminare questa lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Eliminare questo post?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Eliminato" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Account eliminato" @@ -3471,12 +3705,12 @@ msgstr "Descrizione (massimo 1000 caratteri)" msgid "Descriptive alt text" msgstr "Testo descrittivo alternativo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Scollega citazione" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Scollegare la citazione del post?" @@ -3507,13 +3741,13 @@ msgstr "Dialog: configura chi può interagire con questo post" msgid "Dim" msgstr "Soffuso" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Disabilita" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Disabilita 2FA" @@ -3521,7 +3755,7 @@ msgstr "Disabilita 2FA" msgid "Disable captions" msgstr "Disabilita sottotitoli" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Disabilita 2FA via email" @@ -3534,8 +3768,8 @@ msgstr "Disattiva 2FA via email" msgid "Disable haptic feedback" msgstr "Disattiva il feedback tattile" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Disabilita link" @@ -3547,7 +3781,7 @@ msgstr "Disabilita le citazioni di questo post" msgid "Disable replies entirely" msgstr "Disabilita tutte le risposte" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Disabilitare questo link di invito?" @@ -3560,9 +3794,9 @@ msgstr "Disabilitato" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Scarta" msgid "Discard changes?" msgstr "Scartare le modifiche?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Scartare il post?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Disconnetti Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Scopri nuovi feed" msgid "Discover New Feeds" msgstr "Scopri nuovi feed" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignora" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Chiudi banner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Ignora errore" @@ -3642,6 +3877,10 @@ msgstr "Ignora questa sezione" msgid "Dismiss this suggestion" msgstr "Ignora questo suggerimento" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Chiude lo scanner QR" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "Non include nudità." msgid "Domain verified!" msgstr "Dominio verificato!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Non hai un codice o ne hai bisogno di uno nuovo? <0>Fai clic qui." @@ -3681,7 +3920,7 @@ msgstr "Non hai un codice o ne hai bisogno di uno nuovo? <0>Fai clic qui." msgid "Don’t see a code? <0>Click here to resend." msgstr "Non vedere un codice? <0>Fai clic qui per inviarlo di nuovo." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Non trovi l'email? <0>Fai clic qui per inviarla di nuovo." @@ -3700,16 +3939,21 @@ msgstr "Non preoccuparti! Tutti i messaggi e le impostazioni esistenti sono stat #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Fatto" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Tocca due volte per chiudere la finestra" @@ -3737,19 +3981,14 @@ msgstr "Tocca due volte per chiudere la finestra" msgid "Double tap to like" msgstr "Tocca due volte per mettere mi piace" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Scarica" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Scarica Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Scarica il file CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Scarica il file CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Scarica dati delle chat" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Scarica dati delle chat" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Scarica immagine" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Scarica il codice QR dell'invito" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Scarica dati del profilo" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Scarica dati del profilo" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Diffusione di dati personali" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "A causa delle leggi vigenti nella tua regione, alcune funzionalità di B msgid "Duration:" msgstr "Durata:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Tramonto" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "es. alice" @@ -3823,9 +4079,8 @@ msgstr "es. Utenti che rispondono ripetutamente con annunci." msgid "Eating disorders" msgstr "Disturbi alimentari" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Modifica" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Modifica avatar" @@ -3847,19 +4102,19 @@ msgstr "Modifica avatar" msgid "Edit Feeds" msgstr "Modifica i feed" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Modifica nome del gruppo" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Modifica immagine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Modifica impostazioni di interazione" @@ -3868,7 +4123,16 @@ msgstr "Modifica impostazioni di interazione" msgid "Edit interests" msgstr "Modifica interessi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Modifica link di invito" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Modifica link di invito" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Modifica impostazioni link" @@ -3886,20 +4150,15 @@ msgstr "Modifica stato in diretta" msgid "Edit moderation list" msgstr "Modifica lista di moderazione" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Modifica i miei feed" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Modifica nome" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Modifica notifiche da {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Modifica utenti" @@ -3912,12 +4171,12 @@ msgstr "Modifica impostazioni di interazione del post" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Modifica profilo" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Modifica profilo" @@ -3925,7 +4184,8 @@ msgstr "Modifica profilo" msgid "Edit starter pack" msgstr "Modifica starter pack" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Modifica il nome di questa chat di gruppo" @@ -3937,7 +4197,7 @@ msgstr "Modifica lista di utenti" msgid "Edit who can reply" msgstr "Modifica chi può rispondere" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Modifica il tuo starter pack" @@ -3971,7 +4231,7 @@ msgstr "Indirizzo email" msgid "Email Resent" msgstr "Email inviata nuovamente" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Email inviata!" @@ -4006,8 +4266,8 @@ msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e inc msgid "Embedded video player" msgstr "Lettore video incorporato" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Abilita" @@ -4025,7 +4285,7 @@ msgstr "Attiva il contenuto per adulti" msgid "Enable captions" msgstr "Abilita sottotitoli" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Abilita 2FA via email" @@ -4038,13 +4298,12 @@ msgstr "Abilita i media esterni" msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Abilita le notifiche per un account visitandone il profilo e premendo l'<0>icona a forma di campanella <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Abilita notifiche push" @@ -4091,8 +4350,8 @@ msgstr "Inserisci una password" msgid "Enter a word or tag" msgstr "Inserisci una parola o tag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Inserisci codice" @@ -4143,12 +4402,12 @@ msgstr "Passa a schermo intero" msgid "Entertainment" msgstr "Intrattenimento" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Errore" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Errore nel recupero dei dati più recenti." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tutti" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Tutti" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Tutti" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Tutto il resto" @@ -4217,16 +4476,16 @@ msgstr "Esclude gli utenti che segui" msgid "Exit fullscreen" msgstr "Esci da schermo intero" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Espandi il testo alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Espandi la lista di utenti" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Espandi o comprimi il post a cui stai rispondendo" @@ -4238,7 +4497,7 @@ msgstr "Espandi testo del post" msgid "Expands or collapses post text" msgstr "Espande o comprime il testo del post" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "L'URI dovrebbe risolvere in un record" @@ -4277,10 +4536,10 @@ msgstr "Media espliciti o potenzialmente inquietanti." msgid "Explicit sexual images." msgstr "Immagini sessuali esplicite." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Esplora" @@ -4289,11 +4548,8 @@ msgstr "Esplora" msgid "Explore the app" msgstr "Esplora l'app" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Esporta dati chat" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Esporta i miei dati della chat" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferenze media esterni" @@ -4331,18 +4587,22 @@ msgstr "Preferenze media esterni" msgid "Extremist content" msgstr "Contenuti estremisti" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Impossibile accettare la richiesta" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Impossibile accettare la richiesta di partecipazione" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Non è stato possibile aggiungere la reazione" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Impossibile aggiungere membri" @@ -4354,7 +4614,8 @@ msgstr "Non è stato possibile aggiungere allo starter pack" msgid "Failed to change handle. Please try again." msgstr "Non è stato possibile cambiare il nome utente. Riprovare." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Impossibile copiare il link" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Errore durante la creazione della password per app. Riprovare." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Impossibile creare la conversazione" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Impossibile creare il link di invito" @@ -4376,17 +4637,17 @@ msgstr "Impossibile creare il link di invito" msgid "Failed to create starter pack" msgstr "Impossibile creare starter pack" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Impossibile eliminare la conversazione" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Errore nell'eliminazione del messaggio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Non è stato possibile eliminare il post, riprovare" @@ -4394,24 +4655,24 @@ msgstr "Non è stato possibile eliminare il post, riprovare" msgid "Failed to delete starter pack" msgstr "Impossibile eliminare lo starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Impossibile disattivare il link di invito" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Impossibile disconnettere Germ DM. Errore: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Modifica del nome della chat di gruppo non riuscita" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Impossibile modificare il link di invito" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Impossibile abilitare il link di invito" @@ -4427,19 +4688,27 @@ msgstr "Non è stato possibile seguire tutti i tuoi amici, riprova" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Impossibile nascondere il suggerimento, controlla la tua connessione a internet" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Impossibile ignorare la richiesta di partecipazione" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Impossibile partecipare alla chat di gruppo. Riprova." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Impossibile avviare l'app per gli SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" -msgstr "Impossibile lasciare la chat di gruppo" +msgstr "Impossibile abbandonare la chat di gruppo" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Impossibile caricare le conversazioni" @@ -4456,17 +4725,8 @@ msgstr "Impossibile caricare i feed" msgid "Failed to load feeds preferences" msgstr "Impossibile caricare preferenze feed" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Non è stato possibile caricare le impostazioni delle notifiche." @@ -4493,16 +4753,15 @@ msgstr "Impossibile caricare feed consigliati" msgid "Failed to load suggested follows" msgstr "Impossibile caricare follow consigliati" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Impossibile bloccare la chat di gruppo" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Impossibile segnare le richieste come lette" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Impossibile silenziare la chat di gruppo" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Errore nel fissare il post" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Impossibile riconnettere Germ DM. Errore: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Impossibile rimuovere i dati a causa di un errore di rete, controlla la tua connessione a internet." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Impossibile rimuovere i dati. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Non è stato possibile rimuovere la reazione" @@ -4534,7 +4793,8 @@ msgstr "Non è stato possibile rimuovere la reazione" msgid "Failed to remove from starter pack" msgstr "Non è stato possibile rimuovere dallo starter pack" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Impossibile rimuovere il membro dalla chat di gruppo" @@ -4542,15 +4802,20 @@ msgstr "Impossibile rimuovere il membro dalla chat di gruppo" msgid "Failed to remove verification" msgstr "Non è stato possibile rimuovere la verifica" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Impossibile annullare la richiesta. Riprova." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Impossibile determinare la posizione. Riprova." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Impossibile salvare la bozza" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Impossibile salvare l'immagine" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Non è stato possibile salvare i tuoi interessi." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Non è stato possibile inviare l'email. Riprova." @@ -4580,16 +4845,16 @@ msgstr "Impossibile inviare il report" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Errore nell'invio dell'appello, riprovare." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Impossibile abilitare silenziamento thread, riprovare" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Impossibile sbloccare la chat di gruppo" @@ -4597,12 +4862,12 @@ msgstr "Impossibile sbloccare la chat di gruppo" msgid "Failed to unpin list" msgstr "Impossibile rimuovere la lista dai fissati" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Non è stato possibile aggiornare le impostazioni della 2FA via email" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Non è stato possibile aggiornare l'email. Riprova." @@ -4614,7 +4879,7 @@ msgstr "Impossibile aggiornare i feed" msgid "Failed to update notification declaration" msgstr "Impossibile aggiornare la dichiarazione delle notifiche" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Errore nell'aggiornamento delle impostazioni" @@ -4641,7 +4906,7 @@ msgstr "Account falso o bot" msgid "False information about elections" msgstr "False informazioni sulle elezioni" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed creato da {0}" @@ -4662,7 +4927,7 @@ msgstr "Autore del feed" msgid "Feed identifier" msgstr "Identificativo del feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu del feed" @@ -4676,25 +4941,25 @@ msgstr "Feed non disponibile" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Commenti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback inviato" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feed" @@ -4739,7 +5004,7 @@ msgstr "Filtra la ricerca per lingua (attualmente: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtra da chi ricevi le notifiche" @@ -4747,11 +5012,11 @@ msgstr "Filtra da chi ricevi le notifiche" msgid "Finalizing" msgstr "Finalizzando" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Era ora!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Finalmente! Tieni traccia dei post che ti interessano. Salvali per rivederli in qualsiasi momento." @@ -4768,19 +5033,17 @@ msgstr "Finanza" msgid "Find accounts to follow" msgstr "Scopri account da seguire" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Trova contatti" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Trova amici" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Trova amici dai contatti" +msgid "Find and invite friends" +msgstr "Trova e invita amici" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Trova contatti" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Trova i miei amici" msgid "Find people to follow" msgstr "Trova persone da seguire" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Trova persone che conosci" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Cerca post, utenti, e feed su Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Trova i tuoi amici" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "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>Ulteriori informazioni" @@ -4847,22 +5114,22 @@ msgstr "Attiva il campo di ricerca" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Segui" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Segui {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Segui {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Segui account" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Segui tutti gli account" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Ricambia follow" @@ -4916,7 +5183,7 @@ msgstr "Ricambia follow" msgid "Followed all accounts!" msgstr "Tutti gli account seguiti!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Tutte le corrispondenze sono state seguite" @@ -4944,8 +5211,12 @@ msgstr "Seguito da <0>{0} e <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguito da <0>{0}, <1>{1}, e {2, plural, one {# altro} other {# altri}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Chi segue può partecipare" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Follower di @{0} che conosci" @@ -4960,10 +5231,10 @@ msgstr "Follower che conosci" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Seguito" @@ -4977,12 +5248,12 @@ msgstr "Seguito" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Stai seguendo {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Seguendo {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Stai seguendo {handle}" msgid "Following feed preferences" msgstr "Preferenze del feed Seguiti" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferenze del feed Seguiti" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Ti segue" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Ti segue" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Carattere" @@ -5065,11 +5333,16 @@ msgstr "Password dimenticata?" msgid "Forgot?" msgstr "Password dimenticata?" +#. 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 "Quattro fumetti che rappresentano una chat di gruppo. Primo messaggio: \"Hai sentito la novità? Bluesky ora ha le chat di gruppo!\" Secondo messaggio: \"omg, 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 msgid "Free your feed" msgstr "Libera il tuo feed" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Da" @@ -5086,82 +5359,86 @@ msgstr "Da <0/>" msgid "Generate a starter pack" msgstr "Genera uno starter pack" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Genera link di invito" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Genera nuovo link di invito" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Genera nuovo link" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM disconnesso" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Collegamento a Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM riconnesso" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Ottieni aiuto" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Ricevi notifiche quando le persone ti seguono." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Ricevi notifiche quando le persone mettono mi piace ai post che hai ripostato." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Ricevi notifiche quando le persone mettono mi piace ai tuoi post." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +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:285 msgid "Get notifications when people mention you." msgstr "Ricevi notifiche quando le persone ti menzionano." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Ricevi notifiche quando le persone citano i tuoi post." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Ricevi notifiche quando le persone rispondono ai tuoi post." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Ricevi notifiche quando le persone ripostano i post che hai ripostato." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Ricevi notifiche quando le persone ripostano i tuoi post." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Ricevi notifiche quando le persone ripostano i tuoi repost." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Ricevi notifiche di nuovi post" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Ricevi notifiche dei post e delle risposte dagli account che scegli." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Ricevi notifiche di nuovi post di {name}" @@ -5174,27 +5451,27 @@ msgstr "Ricevi notifiche sull'attività di questo account" msgid "Get notified when {name} posts" msgstr "Ricevi notifiche dei post di {name}" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Ricevi notifiche quando qualcuno pubblica un post" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Per cominciare" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF caricata" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Dai un volto al tuo profilo" @@ -5213,20 +5490,20 @@ msgstr "Glorificazione della violenza" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Torna indietro" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Torna indietro" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Torna al passaggio precedente" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Vai alla home" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Vai alla home" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Vai alla home" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Vai in diretta (disabilitato)" msgid "Go live for" msgstr "Vai in diretta per" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Vai al profilo di {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Vai alle impostazioni dell'account" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Vai alla conversazione con {0}" @@ -5296,23 +5571,23 @@ msgstr "Vai al feed" msgid "Go to next" msgstr "Prosegui" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Vai al profilo" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Vai alla chat di gruppo chiamata \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Vai al profilo dell'utente" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Vai al profilo dell'utente" @@ -5320,11 +5595,18 @@ msgstr "Vai al profilo dell'utente" msgid "Going live is currently disabled for your account" msgstr "La diretta è attualmente disabilitata per il tuo account" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Capito" +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Concedi l'accesso" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5340,59 +5622,75 @@ msgstr "Contenuti violenti espliciti" msgid "Grooming or predatory behavior" msgstr "Adescamento o comportamento predatorio" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Chat di gruppo" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Finestra di dialogo link di invito alla chat di gruppo" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Chat di gruppo bloccata" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Chat di gruppo silenziata" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Nome chat di gruppo aggiornato" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Impostazioni chat di gruppo" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Chat di gruppo sbloccata" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Chat di gruppo riattivata" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Le chat di gruppo non sono ancora disponibili" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Chat di gruppo" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Le chat di gruppo sono ora disponibili" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Le chat di gruppo sono disponibili solo per gli utenti di età pari o superiore a 18 anni." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Le chat di gruppo possono avere un massimo di {0, plural, other {# persone}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Il gruppo è bloccato" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Nome del gruppo" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 è #.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Hacking o attacchi di sistema" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Nome utente troppo lungo. Provarne uno più breve." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "In corso" @@ -5446,7 +5744,7 @@ msgstr "Attività nocive o a rischio elevato" msgid "Harming or endangering minors" msgstr "Danni o pericoli per i minori" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "Incitamento all'odio" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Hai un codice? <0>Fai clic qui." @@ -5479,11 +5777,11 @@ msgstr "Conservato da Bluesky per 7 giorni per prevenire abusi, poi eliminato" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Aiuto" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Lista nascosta" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Lista nascosta" msgid "Hide" msgstr "Nascondi" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Nascondi" @@ -5553,18 +5851,18 @@ msgstr "Nascondi aggiornamenti chat di gruppo" msgid "Hide lists" msgstr "Nascondi liste" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Nascondi post per me" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Nascondi risposta per tutti" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Nascondi risposta per me" @@ -5577,19 +5875,19 @@ msgstr "Nascondi" msgid "Hide this event" msgstr "Nascondi questo evento" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Nascondere questo post?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Nascondere questa risposta?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Nascondi traduzione" @@ -5606,7 +5904,7 @@ msgstr "Nascondere gli argomenti di tendenza?" msgid "Hide trending videos?" msgstr "Nascondere i video di tendenza?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Nascondi elenco utenti" @@ -5620,6 +5918,10 @@ msgstr "Nascondi spunta di verifica" msgid "Hides the content" msgstr "Nasconde il contenuto" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Nasconde il banner promozionale per invitare amici" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Sembra che tu abbia effettuato l'accesso con una <0>password per app. Per impostare la tua data di nascita devi accedere con la password principale del tuo account oppure chiedere di farlo a chi controlla questo account." @@ -5652,19 +5954,15 @@ msgstr "Stiamo riscontrando problemi a caricare questi dati. Vedi sotto per magg msgid "Hmmmm, we couldn't load that moderation service." msgstr "Non siamo riusciti a caricare il servizio di moderazione." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Un po' di pazienza: stiamo gradualmente dando accesso al video e tu sei ancora in coda. Ricontrolla presto!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Con calma! Questa funzione non è ancora disponibile. Riprova più tardi." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Home" @@ -5721,7 +6019,7 @@ msgstr "Ho capito" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Sono su Bluesky come {0}: vieni a trovarmi! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Se il testo alternativo è lungo, attiva l'opzione Espandi testo alternativo" @@ -5757,15 +6055,15 @@ msgstr "Se elimini questa lista, non potrai recuperarla." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se hai un tuo dominio, puoi usarlo come nome utente. Questo consente di auto-verificare la tua identità. <0>Ulteriori informazioni." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "<0>Fai clic qui per aggiornare la tua email." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Se rimuovi questo post, non potrai recuperarlo." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Se aggiorni il tuo indirizzo email, la 2FA via email verrà disabilitata." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Per limitare chi può ricevere notifiche sull'attività del tuo account vai in <0>Impostazioni → Privacy e sicurezza." @@ -5786,23 +6083,23 @@ msgstr "Se sei uno sviluppatore, puoi utilizzare il tuo server." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Se stai cercando di cambiare nome utente o email, puoi farlo prima di disattivare l'account." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Immagine" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Immagine {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Immagine {0} di {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Immagine {0} di {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Cache delle immagini svuotata, liberati {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Galleria immagini, {0} immagini" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Immagine nascosta a causa delle impostazioni di moderazione." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Immagine non disponibile." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Opzioni immagine" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Impersonificazione" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importa contatti" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importa contatti" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Importa contatti o invita i tuoi amici" + #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importa contatti per trovare i tuoi amici" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importati il {0}" @@ -5881,40 +6182,40 @@ msgstr "Importati il {0}" 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 "Abbiamo bisogno di conoscere la tua data di nascita per fornirti un'esperienza adeguata alla tua età. Questa operazione va fatta una volta sola e i tuoi dati rimarranno privati." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Nell'app" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notifiche nell'app" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Nell'app, Tutti" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "Nell'app, tutti" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Nell'app, Persone che segui" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "Nell'app, persone che segui" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Nell'app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "Nell'app, push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Nell'app, Push, Tutti" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "Nell'app, push, tutti" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Nell'app, Push, Persone che segui" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "Nell'app, push, persone che segui" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Posta in arrivo vuota" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Nessuna richiesta!" @@ -5954,6 +6255,10 @@ msgstr "Introduzione alle bozze" msgid "Introducing finding friends via contacts" msgstr "Introduzione alla ricerca di amici tramite contatti" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Arrivano le chat di gruppo" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "Presentazione dei post salvati, noti anche come segnalibri" @@ -5963,11 +6268,15 @@ msgstr "Presentazione dei post salvati, noti anche come segnalibri" msgid "Invalid 2FA confirmation code." msgstr "Codice di conferma 2FA non valido." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Codice chat di gruppo non valido." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Nome utente non valido. Provarne un altro." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Impostazioni di interazione non valide." @@ -5977,10 +6286,15 @@ msgstr "Impostazioni di interazione non valide." msgid "Invalid phone number" msgstr "Numero di telefono non valido" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Oggetto segnalazione non valido" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Richiesta di annullamento non valida." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Codice di verifica non valido" @@ -6001,8 +6315,15 @@ msgstr "Codice d'invito" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Invita amici" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Invita amici" @@ -6010,21 +6331,31 @@ msgstr "Invita amici" msgid "Invite friends <0/>" msgstr "Invita amici <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Link di invito" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Link di invito" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Link di invito copiato" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Link di invito creato" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Link di invito disabilitato" @@ -6040,11 +6371,16 @@ msgstr "Link di invito abilitato" msgid "Invite people to this starter pack!" msgstr "Invita persone nel tuo starter pack!" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Invita i tuoi amici" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Invita i tuoi amici per seguire persone e feed preferiti" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Invitato" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID processo: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID processo: {0}" msgid "Jobs" msgstr "Opportunità di lavoro" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Partecipa" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Opportunità di lavoro" msgid "Join Bluesky" msgstr "Entra in Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Partecipa alla chat di gruppo" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Richiesta di partecipazione annullata." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Partecipa alla conversazione" msgid "Journalism" msgstr "Giornalismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continua a modificare" @@ -6109,6 +6460,11 @@ msgstr "Continua a modificare" msgid "Keep me posted" msgstr "Tienimi aggiornato" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Espelli membro" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Sito web di KWS" @@ -6143,7 +6499,7 @@ msgstr "Etichette sul tuo account" msgid "Labels on your content" msgstr "Etichette sul tuo contenuto" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Impostazione delle lingue" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Recenti" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Ulteriori informazioni su come funziona l'invito agli amici" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Ulteriori informazioni sull'importazione dei contatti" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Ulteriori informazioni su questo avviso" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Scopri di più sulla verifica su Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Scopri di più sulla verifica su Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Scopri cosa è pubblico su Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Ulteriori informazioni sul tuo collegamento a Germ DM" @@ -6252,31 +6608,33 @@ msgstr "Scopri di più nelle <0>impostazioni dell'account." msgid "Learn more." msgstr "Saperne di più." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Abbandona" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Abbandona la chat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Abbandona conversazione" @@ -6284,21 +6642,30 @@ msgstr "Abbandona conversazione" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Abbandona conversazione" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" -msgstr "Lascia chat di gruppo" +msgstr "Abbandona chat di gruppo" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" -msgstr "Lascia questa chat di gruppo" +msgstr "Abbandona questa chat di gruppo" #: src/components/dialogs/LinkWarning.tsx:83 #: src/components/dialogs/LinkWarning.tsx:91 msgid "Leaving Bluesky" msgstr "Stai lasciando Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Chat di gruppo abbandonata." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "mancanti." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Chiaro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Mi piace" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Mi piace ({0, plural, one {# mi piace} other {# mi piace}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notifiche dei mi piace" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Metti mi piace a questo feed" @@ -6358,8 +6721,8 @@ msgstr "Metti mi piace a questo feed" msgid "Like this labeler" msgstr "Mi piace" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Piace a" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Piace a {0, plural, one {# utente} other {# utenti}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Piace a {likeCount, plural, one {# utente} other {# utenti}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Mi piace" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Mi piace dei tuoi repost" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notifiche dei mi piace dei tuoi repost" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Mi piace in questo post" @@ -6409,11 +6768,11 @@ msgstr "Mi piace in questo post" msgid "Linear" msgstr "Classico" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Link copiato negli appunti" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista riattivata" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Liste" @@ -6545,7 +6904,7 @@ msgstr "Evento in diretta non nascosto" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Gli eventi in diretta vengono visualizzati occasionalmente quando accade qualcosa di entusiasmante. ​Se lo desideri, puoi nascondere questo evento specifico o tutti gli eventi in questa sezione dell'interfaccia dell'app." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "La funzionalità In diretta è in beta" @@ -6595,27 +6954,27 @@ msgstr "Caricamento impostazioni di interazione del post..." msgid "Loading..." msgstr "Caricamento..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Blocca" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Blocca chat di gruppo" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Bloccare la chat di gruppo?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Blocca questa chat di gruppo" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Bloccato" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Log" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo di @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo di <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Sembra che ti manchi un feed di chi segui. <0>Clicca qui per aggiungere msgid "Love GIFs" msgstr "GIF d’amore" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Modifica le impostazioni dell'email del tuo account" @@ -6687,24 +7046,22 @@ msgstr "Gestisci impostazioni di verifica" msgid "Manage your muted words and tags" msgstr "Gestisci parole e tag silenziati" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Segna tutto come letto" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Segna come letto" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Segnato tutto come letto" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Forse più tardi" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "Membro rimosso dalla chat di gruppo." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Membri" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "I membri possono ancora leggere la cronologia della chat ma non possono inviare nuovi messaggi." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notifiche delle menzioni" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "utenti menzionati" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menzioni" @@ -6761,7 +7118,7 @@ msgstr "Messaggio" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Messaggio" @@ -6771,26 +7128,26 @@ msgstr "Messaggio" msgid "Message {0}" msgstr "Messaggio {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Invia messaggio a {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Messaggio eliminato" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Messaggio eliminato" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Impossibile inviare il messaggio." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Messaggio da @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Il messaggio è troppo lungo" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Il messaggio è troppo lungo ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Opzioni messaggio" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Messaggi" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "I messaggi di questa persona sono nascosti mentre la stai bloccando." @@ -6838,10 +7195,6 @@ msgstr "Mezzanotte" msgid "Minor harassment or bullying" msgstr "Molestie sui minori o bullismo" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notifiche varie" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Ingannevole" @@ -6850,7 +7203,7 @@ msgstr "Ingannevole" msgid "Missing media" msgstr "File multimediale mancante" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderazione" @@ -6894,7 +7247,7 @@ msgstr "Lista di moderazione aggiornata" msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liste di moderazione" @@ -6903,7 +7256,7 @@ msgstr "Liste di moderazione" msgid "moderation settings" msgstr "impostazioni di moderazione" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Stato di moderazione" @@ -6928,8 +7281,8 @@ msgstr "Altre lingue..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Altre opzioni" @@ -6949,7 +7302,7 @@ msgstr "Film" msgid "Music" msgstr "Musica" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silenzia" @@ -6965,8 +7318,8 @@ msgstr "Silenzia" msgid "Mute {0}" msgstr "Silenzia {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Silenzia account" msgid "Mute accounts" msgstr "Silenzia account" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silenzia conversazione" @@ -6994,7 +7347,7 @@ msgstr "Silenzia lista" msgid "Mute these accounts?" msgstr "Silenziare questi account?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Silenzia questa chat di gruppo" @@ -7022,17 +7375,21 @@ msgstr "Silenzia questa parola solo nei tag" msgid "Mute this word until you unmute it" msgstr "Silenzia questa parola finchè non la riattivi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silenzia questa discussione" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silenzia parole e tag" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Silenzia, abbandona o rimuovi persone in qualsiasi momento. È la tua chat." + +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Muted" msgstr "Silenziato" @@ -7040,7 +7397,7 @@ msgstr "Silenziato" msgid "Muted accounts" msgstr "Account silenziati" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Account silenziati" @@ -7062,6 +7419,10 @@ msgstr "Parole e tag silenziati" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenziare un account è privato. Gli account silenziati possono interagire con te, ma non vedrai i loro post né riceverai notifiche da loro." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Chat di gruppo reciproche" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Vai allo starter pack" msgid "Navigates to the next screen" msgstr "Vai alla schermata successiva" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Vai al tuo profilo" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Vuoi segnalare una violazione del diritto d'autore, una richiesta legale o un problema di conformità alle normative?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nuova" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Nuovo} other {Nuovi}} post di {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Nuovo} other {Nuovi}} post di {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nuova chat" @@ -7163,7 +7525,7 @@ msgstr "Nuova chat con {0} e {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Nuova chat con {0}, {1} e {memberCount, plural, one {{memberCount} altro} other {{memberCount} altri}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Nuovo indirizzo email" @@ -7171,32 +7533,30 @@ msgstr "Nuovo indirizzo email" #: 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 "Nuova funzionalità" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notifiche di nuovi follower" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Nuovi follower" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Nuova chat di gruppo" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Nuova chat di gruppo con:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nuovo post" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nuovo post" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Nuovi post di {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Nuovi post di {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} altro} other {{formattedAuthorsCount} altri}}" @@ -7262,8 +7622,8 @@ msgstr "Notizie" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Avanti" msgid "Next image" msgstr "Immagine successiva" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Notte" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Ancora nessun follower" @@ -7335,7 +7699,7 @@ msgstr "Nessuna GIF trovata con \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "Nessuna GIF da mostrare in questo momento. Riprova tra un istante." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Nessuna immagine" @@ -7353,8 +7717,8 @@ msgstr "Nessuna lista" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Non segui più {0}" @@ -7362,7 +7726,7 @@ msgstr "Non segui più {0}" msgid "No media yet" msgstr "Ancora nessun media" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Ancora nessun messaggio" @@ -7378,12 +7742,12 @@ msgstr "Nessun nome" msgid "No notifications yet!" msgstr "Ancora nessuna notifica!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Nessuno" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Nessuno" @@ -7399,7 +7763,7 @@ msgstr "Nessuno" msgid "No one but the author can quote this post." msgstr "Solo l'autore può citare questo post." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Nessuno può inviare messaggi" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Nessun risultato" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nessun risultato" @@ -7446,8 +7810,8 @@ msgstr "Nessun risultato" msgid "No results for \"{0}\"." msgstr "Nessun risultato per \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Nessun risultato trovato" @@ -7509,12 +7873,12 @@ msgstr "Immagini intime non consensuali" msgid "Non-sexual Nudity" msgstr "Nudità non sessuale" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Nessuno" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Non disponibile su questa piattaforma" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Non disponibile su questa piattaforma." @@ -7522,16 +7886,16 @@ msgstr "Non disponibile su questa piattaforma." msgid "Not followed by anyone you’re following" msgstr "Non seguito da nessuno che segui" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Non trovato" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Non sei pronto a pubblicare? Conserva le tue idee migliori nelle Bozze fino al momento giusto." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sulla condivisione" @@ -7548,44 +7912,31 @@ msgstr "Nota: questo post è visibile solo agli utenti che hanno effettuato l'ac msgid "Nothing saved yet" msgstr "Non è stato ancora salvato nulla" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Impostazioni notifiche" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notifiche" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notifiche per tutto il resto, ad esempio quando qualcuno si iscrive usando uno dei tuoi starter pack." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "adesso" @@ -7601,7 +7952,7 @@ msgstr "Il numero dovrebbe essere un numero di cellulare" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Disattivato" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Va bene" @@ -7648,35 +8000,35 @@ msgstr "su<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Reimposta account" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Uno dei destinatari selezionati non consente le chat di gruppo." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Uno dei destinatari selezionati ti ha bloccato e non puoi inviargli messaggi." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "A una o più immagini manca il testo alternativo." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Uno o più file selezionati non sono supportati." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Uno o più dei file selezionati è troppo grande. La dimensione massima è 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "In uno o più video manca il testo alternativo." @@ -7685,6 +8037,26 @@ msgstr "In uno o più video manca il testo alternativo." msgid "Only {0} can reply." msgstr "Solo gli {0} possono rispondere." +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Solo gli amministratori possono accettare le richieste di partecipazione." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Solo gli amministratori possono ignorare le richieste di partecipazione." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Solo i follower possono partecipare a questa chat di gruppo." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Solo i follower che seguo" msgid "Only image files are supported" msgstr "Sono supportati solo i file immagine" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Solo le persone che seguono {0} possono partecipare." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Solo le persone seguite dal proprietario della chat possono partecipare" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Solo i file WebVTT (.vtt) sono supportati" @@ -7703,6 +8085,10 @@ msgstr "Solo i file WebVTT (.vtt) sono supportati" msgid "Oops, something went wrong!" msgstr "Ops, c'è stato qualche problema!" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7712,7 +8098,7 @@ msgstr "Ops, c'è stato qualche problema!" msgid "Oops!" msgstr "Ops!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Apri il creatore di avatar" @@ -7720,12 +8106,17 @@ msgstr "Apri il creatore di avatar" msgid "Open camera" msgstr "Apri fotocamera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Apri chat" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Apri le opzioni dei membri della chat per {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Apri opzioni conversazione" @@ -7739,16 +8130,16 @@ msgstr "Apri il menu a scomparsa" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Apri il selettore emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Apri il menu delle opzioni del feed" @@ -7760,13 +8151,22 @@ msgstr "Apri elenco completo di emoji" msgid "Open Germ DM" msgstr "Apri Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Apri chat di gruppo" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Apri impostazioni chat di gruppo" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Apri in Google Translate" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "Apri link verso {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Apri pack" msgid "Open post options menu" msgstr "Apri il menu delle opzioni del post" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Apri profilo" +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "Apri scanner di codici QR" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "Apri la pagina della cronologia" msgid "Open system log" msgstr "Apri il registro di sistema" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Apri questa chat di gruppo" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Apre una finestra di dialogo per aggiungere un avviso sul contenuto al t msgid "Opens a dialog to choose who can interact with this post" msgstr "Apre una finestra di dialogo per scegliere chi può interagire con questo post" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "Apre una lista di temi colore per la card QR" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "Apre dettagli aggiuntivi per una debug entry" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Apre la fotocamera sul dispositivo" @@ -7858,22 +8270,24 @@ msgstr "Apre il compositore" msgid "Opens device camera" msgstr "Apre la fotocamera del dispositivo" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Apre la galleria del dispositivo per selezionare fino a {MAX_IMAGES, plural, other {# immagini}} o un singolo video o GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Apre la galleria del dispositivo per selezionare fino a {MAX_GALLERY_IMAGES, plural, other {# immagini}} o un singolo video o una GIF." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Apre il procedimento per creare un nuovo account Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Apre la procedura per accedere al tuo account esistente di Bluesky" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Apre l'immagine completa" @@ -7890,7 +8304,7 @@ msgstr "Apre selettore immagini" msgid "Opens link {0}" msgstr "Apre il link {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Apre la finestra di dialogo dello stato in diretta" @@ -7902,15 +8316,23 @@ msgstr "Apre il modulo di reimpostazione della password" msgid "Opens post language settings" msgstr "Apre le impostazioni sulla lingua dei post" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Apre profilo" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "Apre le impostazioni per trovare e invitare amici" + #. 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 "Apre la finestra di selezione GIF" +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "Apre il pannello per invitare amici e condividere il tuo profilo" + #: src/view/com/feeds/ComposerPrompt.tsx:148 msgid "Opens the post composer" msgstr "Apre l'editor dei post" @@ -7919,9 +8341,8 @@ msgstr "Apre l'editor dei post" msgid "Opens this draft in the composer" msgstr "Apre questa bozza nell’editor" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Apre questo profilo" @@ -7997,12 +8418,12 @@ msgstr "Il post sul blog" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Il team di moderazione ha ricevuto la tua segnalazione." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "I nostri moderatori hanno esaminato le segnalazioni e deciso di disabilitare il tuo accesso ai messaggi su Bluesky." @@ -8010,14 +8431,15 @@ msgstr "I nostri moderatori hanno esaminato le segnalazioni e deciso di disabili msgid "Owner" msgstr "Proprietario" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Pagina non trovata" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Il proprietario deve bloccare il gruppo prima di abbandonarlo." -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Pagina non trovata" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,36 +8490,36 @@ msgstr "Metti video in pausa" msgid "People" msgstr "Utenti" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Le persone seguite da {ownerName} possono unirsi istantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" -msgstr "Le persone seguite da {ownerName} possono richiedere di unirsi" +msgstr "Le persone seguite da {ownerName} possono chiedere di partecipare" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Persone che seguono @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Persone che seguo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Le persone che seguo possono unirsi istantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" -msgstr "Le persone che seguo possono richiedere di unirsi" +msgstr "Le persone che seguo possono chiedere di partecipare" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 msgid "People you follow" @@ -8136,13 +8558,17 @@ msgstr "Numero di telefono verificato" msgid "Photography" msgstr "Foto" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Scegli un tema colore" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Immagini consigliate ad un pubblico adulto." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fissa feed" @@ -8152,12 +8578,12 @@ msgstr "Fissa feed" msgid "Pin to home" msgstr "Fissa su home" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fissa su home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fissa sul profilo" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fissato" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} fissato su home" @@ -8236,7 +8662,7 @@ msgstr "Scegli il tuo nome utente." msgid "Please choose your password." msgstr "Scegli la tua password." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Fai clic sul link presente nell'email che ti abbiamo appena inviato per msgid "Please complete the verification captcha." msgstr "Si prega di completare il captcha di verifica." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Conferma il tuo indirizzo email per caricare i video." @@ -8265,14 +8691,14 @@ msgstr "Inserisci una password. Deve essere lunga almeno 8 caratteri." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Inserisci un nome univoco per questa password per app o usa quello generato casualmente." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Inserisci un codice valido." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Inserisci un indirizzo email valido." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Inserisci un indirizzo email valido e non temporaneo. Potresti dover accedere a questa email in futuro." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Inserisci qui sotto il codice che abbiamo inviato a <0>{0}." @@ -8293,7 +8719,7 @@ msgstr "Inserisci qui sotto il codice che abbiamo inviato a <0>{0}." msgid "Please enter the code you received and the new password you would like to use." msgstr "Inserisci il codice che hai ricevuto e la nuova password che vuoi usare." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Inserisci la tua email." msgid "Please enter your invite code." msgstr "Inserisci il tuo codice d'invito." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Inserisci il tuo nuovo indirizzo email." @@ -8323,7 +8749,7 @@ msgstr "Inserisci il tuo nome utente" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Spiega perché ritieni che questa etichetta sia stata applicata in modo errato da {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Spiega perché ritieni che i tuoi messaggi siano stati disabilitati per errore" @@ -8358,7 +8784,11 @@ msgstr "Seleziona il motivo della segnalazione" msgid "Please sign in as @{0}" msgstr "Accedi come @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "Usa l'app mobile di Bluesky per scansionare un codice QR." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "Usa l'app nativa per importare i tuoi contatti." @@ -8366,7 +8796,7 @@ msgstr "Usa l'app nativa per importare i tuoi contatti." msgid "Please use the native app to sync your contacts." msgstr "Usa l'app nativa per sincronizzare i tuoi contatti." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Verifica la tua email" @@ -8383,7 +8813,7 @@ msgstr "Politica" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Post" @@ -8403,12 +8833,12 @@ msgstr "Pubblica una foto" msgid "Post a video" msgstr "Pubblica un video" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Posta tutti" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Pubblica comunque" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Post bloccato" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Post eliminato" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Non è stato possibile inviare il post. Verifica la tua connessione a internet e riprova." @@ -8454,18 +8884,22 @@ msgstr "Post nascosto da te" msgid "Post interaction settings" msgstr "Gestisci interazioni post" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Impostazioni interazioni" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Pubblicalo su Bluesky o condividilo ovunque." + #. 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 "Selezione lingua del post" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Pubblica link" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Post, risposte" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potenzialmente ingannevole" @@ -8525,9 +8954,10 @@ msgstr "Lingua preferita" msgid "Press to attempt reconnection" msgstr "Premere per tentare di riconnetterti" -#: src/components/Error.tsx:61 +#: 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 "Premere per riprovare" @@ -8536,7 +8966,7 @@ msgstr "Premere per riprovare" msgid "Press to view followers of this account that you also follow" msgstr "Clicca per vedere i follower di questo account che condividete" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Anteprima" @@ -8559,26 +8989,25 @@ msgstr "Privacy" msgid "Privacy and security" msgstr "Privacy e sicurezza" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Informativa sulla privacy" @@ -8586,15 +9015,15 @@ msgstr "Informativa sulla privacy" msgid "Privacy violation of a minor" msgstr "Violazione della privacy di un minore" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Elaborazione GIF in corso..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Elaborazione video in corso..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Elaborazione in corso…" @@ -8602,10 +9031,10 @@ msgstr "Elaborazione in corso…" msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profilo" @@ -8613,6 +9042,7 @@ msgstr "Profilo" msgid "Profile banner placeholder" msgstr "Segnaposto banner del profilo" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profilo non trovato" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Pubblica post" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Pubblica i post" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Pubblica risposte" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Pubblica risposta" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notifiche push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, Tutti" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "Push, tutti" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, Persone che segui" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "Push, persone che segui" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Codice QR copiato!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Codice QR scaricato!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Codice QR salvato nella galleria!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notifiche delle citazioni" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notifiche delle citazioni" msgid "Quote post" msgstr "Cita post" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Citazione post riattaccata" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Citazione scollegata con successo" @@ -8711,12 +9138,12 @@ msgstr "Citazioni disattivate" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citazioni" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citazioni post" @@ -8728,16 +9155,16 @@ msgstr "Limite di richieste superato: hai provato a cambiare il nome utente trop msgid "Rate limit exceeded. Please try again later." msgstr "Limite di richieste superato. Riprova più tardi." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Riattacca citazione" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Riattiva link di invito" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Riattiva link" @@ -8745,8 +9172,8 @@ msgstr "Riattiva link" msgid "React with {emoji}" msgstr "Reagisci con {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reazioni" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "scopri come utilizzare i filtri di ricerca" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Leggi post del blog" @@ -8812,11 +9239,11 @@ msgstr "Persone vere." msgid "Reason for appeal" msgstr "Motivo del ricorso" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Ricevi notifiche nell'app" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Ricevi notifiche push" @@ -8841,17 +9268,31 @@ msgstr "Consigliati" msgid "Reconnect" msgstr "Riconnetti" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Aggiorna la pagina per vederlo." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Rifiuta" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Rifiuta" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Rifiuta richiesta" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Rifiuta richiesta di partecipazione" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Ricarica conversazioni" @@ -8863,6 +9304,8 @@ msgstr "Ricarica conversazioni" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Rimuovi {displayName} dalla chat di gruppo" msgid "Remove {displayName} from starter pack" msgstr "Rimuovi {displayName} dallo starter pack" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Rimuovi {displayName} da questa chat di gruppo" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Rimuovere {displayName}?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Rimuovi {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Rimuovi {historyItem}" msgid "Remove account" msgstr "Rimuovi account" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Rimuovi tutti i contatti" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Rimuovi allegato" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Rimuovi avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Rimuovi banner" @@ -8914,8 +9362,9 @@ msgstr "Rimuovi banner" msgid "Remove caption file" msgstr "Rimuovi file dei sottotitoli" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Rimuovi allegato" @@ -8929,12 +9378,12 @@ msgstr "Rimuovi feed" msgid "Remove feed?" msgstr "Rimuovere il feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Rimuovi dalla chat" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Rimuovi dai post salvati" msgid "Remove from your feeds?" msgstr "Rimuovere dai tuoi feed?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Rimuovi immagine" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Rimuovi repost" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Rimuovi suggerimento" @@ -9009,11 +9458,11 @@ msgstr "Rimuovi verifica" msgid "Remove your verification for this account?" msgstr "Rimuovere la tua verifica per questo account?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Rimosso dall'autore" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Rimosso da te" @@ -9035,7 +9484,7 @@ msgstr "Rimosso dai post salvati" msgid "Removed from starter pack" msgstr "Rimosso dallo starter pack" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Ti ha risposto" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Risposte" @@ -9104,14 +9552,14 @@ msgstr "Risposte disattivate" msgid "Replies to this post are disabled." msgstr "Le risposte a questo post sono disattivate." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Rispondi" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Rispondi ({0, plural, one {# risposta} other {# risposte}})" @@ -9125,10 +9573,6 @@ msgstr "Risposta nascosta dall'autore del thread" msgid "Reply Hidden by You" msgstr "Risposta nascosta da te" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notifiche delle risposte" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Le impostazioni delle risposte sono scelte dall'autore del thread" @@ -9137,18 +9581,18 @@ msgstr "Le impostazioni delle risposte sono scelte dall'autore del thread" msgid "Reply sorting" msgstr "Ordine delle risposte" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilità risposta aggiornata" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Risposta nascosta con successo" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Segnala" @@ -9157,20 +9601,20 @@ msgstr "Segnala" msgid "Report account" msgstr "Segnala account" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Segnala conversazione" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Segnala dialogo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Segnala feed" @@ -9179,12 +9623,12 @@ msgstr "Segnala feed" msgid "Report list" msgstr "Segnala lista" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Segnala messaggio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Segnala post" @@ -9199,8 +9643,8 @@ msgstr "Segnala starter pack" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Segnalazione inviata" @@ -9213,7 +9657,7 @@ msgstr "Segnala questa conversazione" msgid "Report this feed" msgstr "Segnala questo feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Segnala questa chat di gruppo" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Segnala questa lista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Segnala questa diretta" @@ -9256,10 +9700,6 @@ msgstr "Repost" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ripubblica ({0, plural, one {# ripubblicazione} other {# ripubblicazioni}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notifiche dei repost" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Ripubblicato da te" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Repost" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Ripubblicazioni di questo post" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Repost dei tuoi repost" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notifiche dei repost dei tuoi repost" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Richiedi l'accesso alla chat di gruppo" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Richiesta approvata." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Richiedi codice" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Richiesta ignorata." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Chiedi di partecipare" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Richiesto" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Richieste" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Richieste di partecipazione" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Richiedi il testo alternativo prima di pubblicare" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Richiedi un codice inviato via email per accedere al tuo account." @@ -9328,7 +9791,17 @@ msgstr "Obbligatorio per questo fornitore" msgid "Required in your region" msgstr "Richiesto nel tuo paese" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Annulla richiesta" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Annulla la richiesta di partecipare alla chat di gruppo" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Invia di nuovo" @@ -9373,8 +9846,8 @@ msgstr "Ripristina lo stato di registrazione" msgid "Reset password" msgstr "Reimposta la password" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Ri-sincronizza i contatti" @@ -9391,17 +9864,18 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" msgid "Retry" msgstr "Riprova" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Ricarica opzioni" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Ritorna alla pagina precedente" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Ritorna alla home" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" @@ -9451,10 +9925,10 @@ msgstr "GIF tristi" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salva modifiche" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvare le modifiche?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salva bozza" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvare la bozza?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Salva immagine" msgid "Save new handle" msgstr "Salva nuovo nome utente" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Salva codice QR" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Salva nei miei feed" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Salvato" @@ -9534,25 +10010,25 @@ msgstr "Salvato" msgid "Saved Feeds" msgstr "Feed salvati" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Post salvati" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvato nei tuoi feed" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Di' ciao!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Saluta qualcuno" @@ -9560,6 +10036,16 @@ msgstr "Saluta qualcuno" msgid "Scam" msgstr "Truffa" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Scansiona" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Scansiona codice QR" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Scienza" @@ -9576,18 +10062,18 @@ msgstr "Scorri a destra" msgid "Scroll to top" msgstr "Scorri verso l'alto" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Cerca" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Cerca post di @{0}" @@ -9662,12 +10148,12 @@ msgstr "Cerca lingue" msgid "Search my posts" msgstr "Cerca nei miei post" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Cerca post" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Cerca profili" msgid "Search..." msgstr "Cerca..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Cerca profili" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Passaggio di sicurezza richiesto" @@ -9759,7 +10245,7 @@ msgstr "Seleziona {langName}" msgid "Select a color" msgstr "Scegli un colore" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Seleziona un motivo" @@ -9828,7 +10314,7 @@ msgstr "Seleziona GIF" msgid "Select GIF \"{0}\"" msgstr "Seleziona GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Seleziona membri della chat di gruppo" @@ -9850,7 +10336,7 @@ msgstr "Seleziona lingua..." msgid "Select languages" msgstr "Seleziona lingue" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Seleziona il servizio di moderazione" @@ -9904,11 +10390,11 @@ msgstr "Seleziona i tuoi interessi dalle seguenti opzioni" msgid "Select your preferred language for translations in your feed." msgstr "Seleziona la tua lingua preferita per le traduzioni nel tuo feed." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Seleziona i tuoi canali di notifica preferiti" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "La selezione di più tipi di media non è supportata." @@ -9921,9 +10407,9 @@ msgstr "Comportamenti autolesionistici o pericolosi" msgid "Send code" msgstr "Invia codice" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Invia email" @@ -9935,11 +10421,11 @@ msgstr "Invia email" msgid "Send error report" msgstr "Invia segnalazione di errore" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Invia feedback" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Invia messaggio" @@ -9952,7 +10438,7 @@ msgstr "Invia post a {name}" msgid "Send post to..." msgstr "Invia post a..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Invia la segnalazione a {title}" @@ -9960,7 +10446,7 @@ msgstr "Invia la segnalazione a {title}" msgid "Send the message from your phone" msgstr "Invia il messaggio dal tuo telefono" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Invia tramite messaggi" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Inviato alle {0}" @@ -10015,14 +10501,14 @@ msgstr "Imposta la tua data di nascita qui sotto e potrai tornare a pubblicare e msgid "Sets email for password reset" msgstr "Imposta l'email per la reimpostazione della password" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Impostazioni" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Impostazioni per attività degli altri" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Impostazioni per notifiche di mi piace" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Impostazioni per notifiche di menzioni" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Impostazioni per notifiche di nuovi follower" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Impostazioni per notifiche di tutto il resto" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Impostazioni per notifiche di mi piace ai tuoi repost" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Impostazioni per notifiche di repost dei tuoi repost" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Impostazioni per notifiche di citazioni" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Impostazioni per notifiche di risposte" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Impostazioni per notifiche di repost" @@ -10079,16 +10565,19 @@ msgstr "Attività sessuale o nudità erotica." msgid "Sexually Suggestive" msgstr "Sessualmente allusivo" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Condividi" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Condividi comunque" @@ -10097,16 +10586,21 @@ msgstr "Condividi comunque" msgid "Share author DID" msgstr "Condividi DID autore" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Condividi immagine" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Condividi link di invito" + #: 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 "Condividi link" @@ -10114,6 +10608,11 @@ msgstr "Condividi link" msgid "Share link dialog" msgstr "Finestra link di condivisione" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Condividi il mio profilo" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Condividi URL at:// del post" msgid "Share QR code" msgstr "Condividi codice QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Condividi questo feed" @@ -10142,8 +10641,8 @@ msgstr "Condividi questo starter pack e invita le persone a far parte della tua #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Condividi tramite..." @@ -10151,7 +10650,7 @@ msgstr "Condividi tramite..." msgid "Share your contacts to find friends" msgstr "Condividi i tuoi contatti per trovare amici" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Test preferenze condivise" @@ -10167,16 +10666,16 @@ msgstr "Mostra testo alternativo" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Mostra comunque" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Mostra etichetta automazione" @@ -10197,8 +10696,8 @@ msgstr "Mostra opzioni di personalizzazione" msgid "Show group chat updates" msgstr "Mostra aggiornamenti chat di gruppo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Mostra meno come questo" @@ -10219,8 +10718,8 @@ msgstr "Mostra le dirette nel tuo feed Discover" msgid "Show More" msgstr "Mostra di più" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mostra altri come questo" @@ -10246,8 +10745,8 @@ msgstr "Mostra risposte" msgid "Show replies as" msgstr "Mostra risposte come" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Mostra risposta per tutti" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Mostra avviso e filtra dai feed" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Mostra quando sei in diretta" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Mostra informazioni sulla data di creazione del post" @@ -10297,15 +10796,17 @@ msgstr "Mostra il contenuto" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Accedi o crea un account" msgid "Sign in or create your account to join the conversation!" msgstr "Accedi o crea il tuo account per partecipare alla conversazione!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Accedi per accettare l'invito." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Accedi a un account non in elenco" @@ -10337,8 +10842,12 @@ msgstr "Accedi a un account non in elenco" msgid "Sign in to Bluesky or create a new account" msgstr "Accedi a Bluesky o crea un nuovo account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Accedi per richiedere l'accesso a questa chat di gruppo." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Accedi per visualizzare il post" @@ -10348,9 +10857,9 @@ msgstr "Accedi per visualizzare il post" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Esci" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Esci" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Vuoi uscire?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Saltare i post vuoti?" @@ -10405,7 +10914,7 @@ msgstr "Salta l'introduzione e inizia a usare il tuo account" msgid "Skip to next step" msgstr "Vai al passo successivo" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "slide" @@ -10413,7 +10922,7 @@ msgstr "slide" msgid "Smaller" msgstr "Più piccolo" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Posticipa il promemoria" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Qualcuno ha lasciato il gruppo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Qualcuno ha reagito con {0}" @@ -10487,17 +10996,22 @@ msgstr "Qualcuno è stato rimosso" msgid "Someone was removed from the group" msgstr "Qualcuno è stato rimosso dal gruppo" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "C'è qualcosa di nuovo" + +#: 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 "C'è stato qualche problema con i dati che stai provando a segnalare. Contatta l'assistenza." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Qualcosa è andato storto" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Qualcosa è andato storto!" msgid "Something went wrong. Please try again in a moment." msgstr "Qualcosa è andato storto, riprova tra qualche istante." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "C'è stato qualche problema. Riprovare." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Qualcosa non va? Faccelo sapere." @@ -10564,11 +11078,16 @@ msgstr "Spam o altri comportamenti non autentici o ingannevoli" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Inizia una conversazione, e comparirà qui." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Avvia una chat di gruppo" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Avvia una nuova conversazione" @@ -10582,17 +11101,17 @@ msgstr "Inizia ad aggiungere persone" msgid "Start adding people!" msgstr "Inizia ad aggiungere persone!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Avvia chat" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Avvia conversazione con {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Starter Pack" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Cronologia" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Stai trasmettendo su Twitch? Imposta in Bluesky il tuo stato in diretta per aggiungere un badge al tuo avatar. ​Toccandolo, le persone verranno indirizzate direttamente alla tua diretta." @@ -10671,8 +11190,8 @@ msgstr "Stai trasmettendo su Twitch? Imposta in Bluesky il tuo stato in diretta #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Invia" @@ -10684,9 +11203,9 @@ msgstr "Invia richiesta" msgid "Submit Appeal" msgstr "Invia richiesta" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Invia segnalazione" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Iscriviti" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "Iscriviti a {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "Iscriviti a {publicationTitle} su {0}" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Successo" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Successo!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Adesione alla chat di gruppo completata!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificato con successo" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Suggeriti" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Tramonto" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Supporto" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Il supporto per questa funzionalità non è ancora attivo nella tua nazione! Riprova in seguito." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Gli account sospesi non possono partecipare alle chat di gruppo." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Gli account sospesi non possono partecipare alle chat." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Cambia account" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Cambia account" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Passa a {0}" @@ -10824,11 +11347,15 @@ msgstr "Registro di sistema" msgid "Tags only" msgstr "Solo tag" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Porta la conversazione in privato." + #: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Tocca per dettagli" @@ -10854,33 +11381,51 @@ msgstr "Tocca per confermare di aver compreso e accettato questi aggiornamenti e msgid "Tap to close context menu" msgstr "Tocca per chiudere il menu" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Tocca per copiare questo link di invito" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tocca per ignorare" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Tocca per partecipare subito a questa chat di gruppo" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Tocca per aprire questa chat di gruppo" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Tocca per rimuovere" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Tocca per rimuovere la tua reazione {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Tocca per riprovare" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Tocca per mostrare le reazioni {0}" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tocca per mostrare tutte le reazioni" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tocca per vedere le reazioni" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Termini di servizio" @@ -10939,7 +11484,7 @@ msgstr "Testo e tag" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campo di testo" @@ -10981,9 +11526,9 @@ msgstr "Questo è tutto, gente!" msgid "That's everything!" msgstr "È tutto!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "L'account sarà in grado di interagire con te dopo lo sblocco." @@ -11049,6 +11594,11 @@ msgstr "Queste impostazioni saranno utilizzate come predefinite quando si crea u msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Le leggi vigenti nella tua regione richiedono di verificare che tu sia un adulto prima di accedere a determinate funzionalità. Tocca per ulteriori informazioni." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "È stato raggiunto il limite dei membri." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Il post a cui stai rispondendo è stato contrassegnato dall'autore come scritto in {suggestedLanguageName}. Vuoi rispondere in <0>{suggestedLanguageName}?" @@ -11057,10 +11607,10 @@ msgstr "Il post a cui stai rispondendo è stato contrassegnato dall'autore come msgid "The Privacy Policy has been moved to <0/>" msgstr "L'informativa sulla privacy è stata spostata a <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "Il video selezionato è più grande di {videoSize} MB. Riprova con un file più piccolo." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "Il video selezionato è più grande di {VIDEO_MAX_SIZE_MB} MB. Riprova con un file più piccolo." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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 "C'è un limite alla frequenza con cui puoi cambiare la tua data di nascita. Potresti dover aspettare un giorno o due prima di porterla aggiornare di nuovo." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Non c'è alcun link di invito per questa chat di gruppo." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Si è verificato un problema durante il caricamento delle GIF. Controlla la connessione e riprova." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Si è verificato un problema durante l'aggiornamento dei tuoi feed. Verifica la tua connessione a internet e riprova." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Si è verificato un problema! {0}" @@ -11221,6 +11774,14 @@ msgstr "Queste sono le tue impostazioni predefinite" msgid "These settings only apply to the Following feed." msgstr "Queste impostazioni si applicano solo al feed Seguiti." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "È il proprietario di questa chat" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "Questa {screenDescription} è stata segnalata:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Questo ricorso verrà inviato a <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Questo appello verrà inviato al servizio di moderazione Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Questo appello verrà inviato al servizio di moderazione Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Questo autore ha scelto di rendere i propri post visibili solo a chi ha effettuato l'accesso." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Questo pulsante consente agli altri di aprire l'app Germ DM per inviarti un messaggio. Puoi gestire la sua visibilità dall'app Germ DM, oppure puoi disconnettere il tuo account Bluesky da Germ DM facendo clic sul pulsante qui sotto." @@ -11271,11 +11832,21 @@ msgstr "Questo pulsante consente agli altri di aprire l'app Germ DM per inviarti msgid "This chat has ended" msgstr "Questa chat è terminata" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Questa chat è al completo" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Questa chat è bloccata" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "Questa chat è bloccata da un'azione di moderazione" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Questa chat è stata disconnessa" @@ -11310,7 +11881,11 @@ msgstr "Questo contenuto non è disponibile perché uno degli utenti coinvolti h msgid "This content is not viewable without a Bluesky account." msgstr "Questo contenuto non è visualizzabile senza un account Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Questa conversazione è bloccata." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "L'utente di questa conversazione ha disattivato o eliminato l'account. Premi per le opzioni" @@ -11318,7 +11893,7 @@ msgstr "L'utente di questa conversazione ha disattivato o eliminato l'account. P msgid "This draft will be permanently deleted." msgstr "Questa bozza sarà eliminata definitivamente." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Questa email è già associata al tuo account." @@ -11356,11 +11931,15 @@ msgstr "Questo feed è vuoto." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Questo feed non è più online. Stiamo mostrando <0>Discover al suo posto." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "Questo gruppo è bloccato da un'azione di moderazione sul proprietario" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Questa immagine non può essere usata. Prova un altro formato come .jpg msgid "This information is private and not shared with other users." msgstr "Queste informazioni sono private e non vengono condivise con altri utenti." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Questo link di invito è stato disabilitato." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Questo link di invito non è valido" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Questo è uno stato vuoto" @@ -11377,7 +11964,7 @@ msgstr "Questo è uno stato vuoto" msgid "This is not a valid link" msgstr "Non è un link valido" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Questa etichetta permette al chiunque di sapere che questo account è automatizzato. Quanto è attivata, l'etichetta appare accanto al nome dell'account sul suo profilo e nei suoi post. Può essere attivata o disattivata in qualsiasi momento." @@ -11410,13 +11997,17 @@ msgstr "Questa lista, creata da te, contiene possibili violazioni delle linee gu msgid "This list is empty." msgstr "Questa lista è vuota." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Questo messaggio è nascosto" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Questo messaggio è nascosto perché stai bloccando questo utente." @@ -11434,7 +12025,7 @@ msgstr "Questa persona ti sta bloccando" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Questo post dichiara di essere stato creato il <0>{0}, ma è stato visto per la prima volta da Bluesky il <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Questo post è visibile solo agli utenti che hanno effettuato l'accesso. msgid "This post was deleted by its author" msgstr "Questo post è stato eliminato dal suo autore" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "L'autore del post ha disattivato le citazioni." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Questo profilo è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Questa risposta verrà spostata in una sezione nascosta in fondo al thread e le notifiche delle risposte saranno disattivate - sia per te che per gli altri." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Questa schermata è disponibile solo per le conversazioni di gruppo." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Questo utente non ha follower." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Questo utente ti ha bloccato e non puoi inviargli messaggi." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Questo utente ha disabilitato la chat e è possibile inviargli messaggi." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Il tuo account Bluesky <0>{currentHandle} e tutti i dati associati v msgid "This will remove @{0} from the quick access list." msgstr "Questo rimuoverà @{0} dalla lista d'accesso rapido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Il tuo post verrà rimosso da questa citazione per tutti gli utenti, ed al suo posto verrà mostrato un avviso." @@ -11574,7 +12166,7 @@ msgstr "Preferenze delle discussioni" msgid "Threaded" msgstr "Thread" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Per disabilitare il metodo 2FA via email, verifica il tuo accesso all'indirizzo email." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Per disabilitare il metodo 2FA via email, verifica il tuo accesso a <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Popolari" msgid "Top replies first" msgstr "Prima le risposte più popolari" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Argomento" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traduci" @@ -11667,8 +12259,8 @@ msgstr "Tradotto" msgid "Translating" msgstr "Traduzione" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Traduzione…" @@ -11702,7 +12294,7 @@ msgstr "Video di tendenza" msgid "Trolling" msgstr "Comportamento provocatorio / trolling" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "La fiducia nasce dalle relazioni, dalle comunità e dal contesto condiviso, quindi stiamo anche introducendo i <0>certificatori attendibili: organizzazioni che possono rilasciare direttamente la verifica." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Prova con un altro termine di ricerca oppure <0>scopri come utilizzare i filtri di ricerca." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Riprova" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Riprova" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Riprova tra un momento." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Prova con Google Translate" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Provalo" + #: src/lib/interests.ts:74 msgid "TV" msgstr "TV" @@ -11763,13 +12369,17 @@ msgstr "Impossibile contattare il servizio. Verifica la tua connessione a intern msgid "Unable to delete" msgstr "Impossibile eliminare" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Impossibile recuperare le richieste di partecipazione." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Impossibile trovare uno dei destinatari selezionati." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Impossibile trovare il destinatario selezionato." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Non disponibile" msgid "Unavailable feed information" msgstr "Informazioni sui feed non disponibili" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Sblocca" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Sblocca" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Sblocca {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Sblocca account" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Sbloccare l'account?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Sblocca account?" @@ -11837,8 +12452,8 @@ msgstr "Sblocca lista" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Annulla" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Annulla repost ({0, plural, one {# repost} other {# repost}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Smetti di seguire {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Smetti di seguire" @@ -11872,7 +12487,7 @@ msgstr "Smetti di seguire" msgid "Unfollows the user" msgstr "Smetti di seguire" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Purtroppo, nessuna delle etichette a cui sei iscritto supporta questo tipo di segnalazione." @@ -11884,14 +12499,6 @@ msgstr "Purtroppo, la data di nascita che hai salvato nel tuo profilo indica che msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Purtroppo l'età che hai dichiarato indica che non hai l'età minima necessaria per accedere a Bluesky nella tua regione." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Annulla invito" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Annulla invito a {displayName} per questa chat di gruppo" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Certificatore sconosciuto" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Non mi piace più" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Non mi piace più ({0, plural, one {# mi piace} other {# mi piace}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Sblocca chat" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Sblocca questa chat di gruppo" @@ -11939,14 +12546,14 @@ msgstr "Riattiva audio" msgid "Unmute {0}" msgstr "Riattiva {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Riattiva account" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Riattiva conversazione" @@ -11955,12 +12562,12 @@ msgstr "Riattiva conversazione" msgid "Unmute list" msgstr "Riattiva lista" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Riattiva questa chat di gruppo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Riattiva questa discussione" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Non fissare più" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Non fissare più il feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Non fissare più su home" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Non fissare più sul profilo" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Non fissare più la lista di moderazione" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} non più fissato su home" @@ -12030,14 +12637,18 @@ msgstr "Disiscriviti da etichetta" msgid "Unsubscribed from list" msgstr "Disiscritto dalla lista" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Contenuto degli appunti non supportato" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Tipo di video non supportato: {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Fino a 50 persone" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,16 +12658,20 @@ msgstr "Aggiorna" msgid "Update <0>{displayName} in Lists" msgstr "Aggiorna <0>{displayName} nelle liste" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Aggiorna app" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Aggiorna email" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Aggiorna link di invito" @@ -12065,11 +12680,15 @@ msgstr "Aggiorna link di invito" msgid "Update to {domain}" msgstr "Aggiorna a {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Aggiorna la tua app all'ultima versione per partecipare!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Aggiorna la tua app" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Aggiorna la tua app per vederlo." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Aggiorna la tua email" @@ -12080,17 +12699,17 @@ msgstr "Aggiorna la tua email" msgid "Update your location" msgstr "Aggiorna la tua posizione" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Impossibile aggiornare allegato" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Impossibile aggiornare visibilità risposte" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "In alternativa carica una foto" @@ -12098,39 +12717,40 @@ msgstr "In alternativa carica una foto" msgid "Upload a text file to:" msgstr "Carica un file di testo su:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Carica dalla fotocamera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Carica dai file" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Carica dalla galleria" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Caricamento GIF in corso..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Caricamento immagini..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Caricamento miniatura del link..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Caricamento del video..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "utente" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Utente bloccato" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Lista di {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Elenco utenti di {0}" @@ -12255,12 +12875,12 @@ msgstr "utenti seguiti da <0>@{0}" msgid "users following <0>@{0}" msgstr "utenti che seguono <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Utenti che seguo" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Utenti che seguo" @@ -12277,7 +12897,7 @@ msgstr "Verifica non riuscita, riprovare." msgid "Verification settings" msgstr "Impostazioni di verifica" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Impostazioni di verifica" @@ -12304,8 +12924,8 @@ msgstr "Verifica di nuovo" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Verifica codice" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verifica record DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verifica codice email" @@ -12349,7 +12969,7 @@ msgstr "Verificare questo account?" msgid "Verify your age" msgstr "Verifica la tua età" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Versione {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Elaborazione video fallita" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Feed dei video" @@ -12419,7 +13039,7 @@ msgstr "Video non trovato." msgid "Video settings" msgstr "Impostazioni video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video caricato" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Video" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "I video devono durare meno di 3 minuti." -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vedi" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "Vedi {0}" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Vedi il profilo di {0}" @@ -12467,20 +13087,15 @@ msgstr "Vedi il profilo di {0}" msgid "View {0}’s profile" msgstr "Vedi il profilo di {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Vedi il profilo di {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "Vedi {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "Vedi il profilo di @{0}" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Vedi questo profilo bloccato" @@ -12503,10 +13118,18 @@ msgstr "Vedi dettagli" msgid "View full thread" msgstr "Vedi la discussione completa" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Vedi le richieste di chat di gruppo in arrivo" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Vedi richieste in arrivo" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Visualizza le richieste di partecipazione a questa chat di gruppo" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "Visualizza le informazioni su queste etichette" @@ -12522,7 +13145,7 @@ msgstr "Mostra di più" msgid "View more trending videos" msgstr "Vedi altri video di tendenza" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Vedi post" @@ -12539,10 +13162,10 @@ msgstr "Vedi il profilo" msgid "View profile banner" msgstr "Vedi banner del profilo" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Vedi pubblicazione" @@ -12550,7 +13173,7 @@ msgstr "Vedi pubblicazione" msgid "View the avatar" msgstr "Vedi l'avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Vedi il link di invito per questa chat di gruppo" @@ -12563,7 +13186,7 @@ msgstr "Visualizza il servizio di etichettatura fornito da @{0}" msgid "View this user's verifications" msgstr "Vedi le verifiche di questo utente" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" @@ -12596,8 +13219,8 @@ msgstr "Vedi i tuoi account silenziati" msgid "View your verifications" msgstr "Vedi le tue verifiche" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Vedi l'immagine completa" @@ -12640,8 +13263,8 @@ msgstr "Mostra avviso" msgid "Warn content and filter from feeds" msgstr "Avvisa i contenuti e filtra dai feed" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Guarda ora" @@ -12665,11 +13288,15 @@ msgstr "Nessun risultato per questo tag." msgid "We couldn't find any results for that topic." msgstr "Nessun risultato per questo argomento." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Non riusciamo a caricare questa conversazione" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Non è stato possibile caricare le richieste di partecipare a questa conversazione" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Non è stato possibile caricare le impostazioni di questa conversazione" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Consigliamo di selezionare almeno due interessi." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Abbiamo inviato un'email a <0>{0} contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Non è stato possibile verificare se puoi caricare video. Riprova." @@ -12744,12 +13371,12 @@ msgstr "Non siamo riusciti a ricevere la verifica a causa di un problema di conn msgid "We will let you know when your account is ready." msgstr "Ti faremo sapere quando il tuo account sarà pronto." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Ti avviseremo quando troveremo i tuoi amici." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Manderemo un'email a <0>{0} contenente un link. Fai clic su di esso per completare la procedura di verifica dell'email." @@ -12779,12 +13406,12 @@ msgstr "Stiamo riscontrando problemi nell'inizializzazione del processo di verif msgid "We're having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Ci dispiace! Il post a cui cerchi di rispondere è stato eliminato." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Come vuoi chiamare il tuo starter pack?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Come va?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Quando tocchi un segno di spunta, vedrai quali organizzazioni hanno rilasciato la verifica." @@ -12878,7 +13505,7 @@ msgstr "Quando tocchi un segno di spunta, vedrai quali organizzazioni hanno rila msgid "Who can interact with this post?" msgstr "Chi può interagire con questo post?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Chi e come può partecipare a questa chat di gruppo" @@ -12887,13 +13514,13 @@ msgstr "Chi e come può partecipare a questa chat di gruppo" msgid "Who can reply" msgstr "Chi può rispondere" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Chi può verificare?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ops!" @@ -12939,19 +13566,19 @@ msgstr "Perché questo starter pack dovrebbe essere esaminato?" msgid "Why should this user be reviewed?" msgstr "Perché questo utente dovrebbe essere esaminato?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Vuoi bloccare questo utente e/o eliminare questa conversazione?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Bloccare questo utente e/o abbandonare questa conversazione?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "Salvare come bozza da modificare più tardi?" @@ -12960,12 +13587,12 @@ msgstr "Salvare come bozza da modificare più tardi?" msgid "Write a post" msgstr "Scrivi un post" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Scrivi un post" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Scrivi la tua risposta" @@ -12978,7 +13605,8 @@ msgstr "Scrittori" msgid "Wrong DID returned from server. Received: {0}" msgstr "Il server ha restituito un DID errato. Ricevuto: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Tipo di conversazione errato" @@ -13005,11 +13633,11 @@ msgstr "Sì, elimina il mio account" msgid "Yes, delete this starter pack" msgstr "Sì, elimina questo starter pack" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Sì, scollega" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Sì" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "Stai bloccando {0}" @@ -13068,7 +13696,7 @@ msgstr "Sei in diretta" msgid "You are no longer live" msgstr "Non sei più in diretta" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Non sei autorizzato a caricare video." @@ -13117,21 +13745,30 @@ msgstr "Puoi sempre scegliere di disattivare la funzionalità e cancellare i tuo msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Puoi scegliere se attivare il suono delle notifiche di nuovi Messaggi nelle impostazioni all’interno dell’app" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puoi proseguire le conversazioni in corso indipendentemente dall'impostazione scelta." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Ora puoi scegliere di ricevere una notifica quando determinate persone pubblicano qualcosa. Se vuoi aggiornamenti tempestivi da qualcuno, vai sul suo profilo e cerca la nuova icona a forma di campanella vicino al pulsante Segui." +#: 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 "Ora puoi invitare amici con un link o un codice QR. Condividi il link ovunque, oppure lascia che scansionino il codice per unirsi a te su Bluesky." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Adesso puoi accedere con la tua nuova password." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri." @@ -13139,11 +13776,11 @@ msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Puoi salvare le bozze solo se hanno fino a 1000 caratteri. Vuoi eliminare questo post prima di visualizzare le bozze?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Puoi selezionare una sola GIF alla volta." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Puoi selezionare un solo video alla volta." @@ -13155,10 +13792,10 @@ msgstr "Puoi riattivare il tuo account per accedere. Il tuo profilo e i tuoi pos msgid "You can read chat history but can’t send new messages." msgstr "Puoi leggere la cronologia della chat ma non puoi inviare nuovi messaggi." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "È possibile selezionare fino a {MAX_IMAGES, plural, other {# immagini}} in totale." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "È possibile selezionare fino a {MAX_IMAGES, plural, other {# immagini}} msgid "You can update this later from your settings." msgstr "Puoi modificare questa preferenza dalle impostazioni." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "Non puoi aggiungere più di {EMOJI_REACTION_LIMIT, plural, one {# reazione emoji} other {# reazioni emoji}}" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Non puoi ancora creare una chat di gruppo." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "Non hai salvato nessun feed." msgid "You got here first" msgstr "Sei arrivato qui per primo" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Sei stato precedentemente rimosso da questo gruppo e non puoi partecipare usando questo link." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "Devi essere un proprietario della chat per rimuovere un membro." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Devi avere almeno 13 anni per usare Bluesky. Leggi i <0>Termini di Servizio per maggiori informazioni." @@ -13332,11 +13982,12 @@ msgstr "Devi avere almeno 13 anni per usare Bluesky. Leggi i <0>Termini di Servi msgid "You must be following at least seven other people to generate a starter pack." msgstr "Devi seguire almeno altri 7 utenti per creare uno starter pack." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Devi concedere il permesso alla galleria per salvare il codice QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "È necessario consentire l'accesso alla tua libreria multimediale." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "Sei il proprietario di questa chat" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Hai reagito con {0}" @@ -13368,8 +14023,13 @@ msgstr "Hai reagito con {0} a {target}" msgid "You recently changed your birthdate" msgstr "Hai cambiato di recente la tua data di nascita" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Hai richiesto di partecipare" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Verrai disconnesso da tutti i tuoi account." @@ -13378,11 +14038,11 @@ msgstr "Verrai disconnesso da tutti i tuoi account." msgid "You will no longer receive notifications for {0}" msgstr "Non riceverai più notifiche su {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Non riceverai più notifiche relative a questo thread" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Riceverai le notifiche per questo thread" @@ -13390,12 +14050,12 @@ msgstr "Riceverai le notifiche per questo thread" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Riceverai un'email con un codice di recupero. Inserisci il codice qui, poi inserisci la tua nuova password." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Non sarai in grado di rientrare finché non sarai invitato a farlo." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Tu: {message}" @@ -13429,6 +14089,10 @@ msgstr "Riceverai notifiche su {0}!" msgid "You'll stay updated with these feeds" msgstr "Resterai aggiornato su questi feed" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "Hai il controllo" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Sei in fila" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Hai raggiunto il numero massimo di bozze" @@ -13475,11 +14139,11 @@ msgstr "Hai raggiunto il numero massimo di richieste consentite. Riprova più ta msgid "You've reached the start of the active content." msgstr "Hai raggiunto l'inizio del contenuto attivo." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi byte)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Hai raggiunto il limite giornaliero di video caricati (troppi video)" @@ -13499,10 +14163,18 @@ msgstr "Il tuo account è stato eliminato, addio! ✌️" msgid "Your account has been suspended" msgstr "Il tuo account è stato sospeso" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Il tuo account è troppo recente per caricare video. Riprova più tardi." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Il tuo account è troppo recente" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "L'archivio del tuo account, che contiene tutti i record di dati pubblici, può essere scaricato come file \"CAR\". Questo file non include elementi multimediali incorporati, come immagini o dati privati, che devono essere recuperati separatamente." @@ -13519,7 +14191,7 @@ msgstr "La richiesta di revisione è stata inviata. Se il ricorso ha esito posit msgid "Your birth date" msgstr "Data di nascita" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Le tue conversazioni sono state disabilitate" @@ -13527,11 +14199,11 @@ msgstr "Le tue conversazioni sono state disabilitate" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "La tua scelta sarà ricordata per i link futuri. Puoi cambiarla in qualsiasi momento nelle impostazioni." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Il tuo contatto {firstAuthorLink} è su Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Il tuo contatto {firstAuthorName} è su Bluesky" @@ -13561,7 +14233,7 @@ msgstr "La tua email" msgid "Your email appears to be invalid." msgstr "Sembra che il tuo indirizzo email non sia corretto." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "La tua email non è stata ancora verificata. Verifica la tua email per poter usare tutte le funzionalità di Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Il tuo feed Seguiti è vuoto! Segui più utenti per vedere cosa sta succ msgid "Your full handle will be <0>@{0}" msgstr "Il tuo nome utente completo sarà <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "La tua posizione è stata aggiornata." msgid "Your muted words" msgstr "Le tue parole silenziate" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Il tuo nome, il tuo avatar e il nome della chat di gruppo saranno visibili a chiunque." +#: 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 "Il tuo nome, il tuo avatar, il nome della chat di gruppo e il numero di membri saranno visibili a chiunque." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Il tuo post è stato inviato" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "I tuoi post sono stati inviati" @@ -13635,7 +14307,7 @@ msgstr "I tuoi post sono stati inviati" msgid "Your preferred language" msgstr "La tua lingua preferita" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Immagine del tuo profilo" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Risposta inviata" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "La segnalazione sarà inviata a <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "La segnalazione sarà inviata a <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Gli interessi che selezioni ci permettono di mostrare i contenuti più pertinenti." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 3b82f5018b..1929f44109 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:45\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" カテゴリー (アクティブ)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(チャット招待リンク)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(埋め込みコンテンツあり)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, other {# いいね}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {メンバー#人}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, other {#分}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, other {#ヶ月}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, other {#個の新規参加リクエスト}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {#人}}がリアクションしました – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, other {#秒}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {#件の未読}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, other {#分}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "<0><1>テキストとタグ中の{0}" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0}がチャットに追加されました" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0}と{1}がチャットに追加されました" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} フォロー中" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0}はあなたをブロックしています" @@ -264,7 +273,7 @@ msgstr "{0} / 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0}が{1}とリアクションしました" @@ -290,7 +299,7 @@ msgstr "{0}はグループから外されました" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}、{1}そして{memberCount, plural, other {他#人}}がチャットに追加されました" @@ -309,15 +318,40 @@ msgstr "{0}、{1}によるリスト" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0}のアバター" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}のアバター" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1}{2, plural, other {人}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1}メンバー" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}分" msgid "{0}s" msgstr "{0}秒" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {参加リクエストはありません} other {#件の参加リクエスト}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, other {チャットの更新#件}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, other {#件の新規参加リクエスト}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, other {リクエスト#件}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {#件の未読}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, other {ページを更新して、すべて表示。}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, other {この投稿には#枚の写真。}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, other {アプリを更新して、すべて表示。}}" + +#. 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 "{count, plural, other {#件以上の新規参加リクエスト}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+件のリクエスト" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, other {時間}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {分}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} と <0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} と <0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたを認証しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink}があなたをフォローバックしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink}があなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} があなたを認証しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} と {additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人が}}あなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} と {additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}} があなたを認証しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName}があなたをフォローしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName}があなたをフォローバックしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName}があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName}があなたの投稿をいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName}があなたのリポストをいいねしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} があなたのアカウントから認証を削除しました" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName}があなたの投稿をリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName}があなたのリポストをリポストしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName}があなたのスターターパックでサインアップしました" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} があなたを認証しました" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} があなたを認証しました" msgid "{following} following" msgstr "{following} フォロー" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle}は追加できません" @@ -547,7 +606,7 @@ msgstr "{handle}は追加できません" msgid "{handle} can't be messaged" msgstr "{handle}にメッセージを送れません" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle}にメッセージを送れません" @@ -559,6 +618,16 @@ msgstr "{hours, plural, other {#時間{minutesString}}}" msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, other {#時間}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}件以上の新規参加リクエスト" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}件以上の新規参加リクエスト" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {説明が長すぎます。最大で# msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {表示名が長すぎます。最大で#文字です。}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {返信は最大#件まで非表示にできます。}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name}が{target}に{0}とリアクションしました" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name}のお気に入りのフィードとユーザーです - 参加し msgid "{name}'s starter pack" msgstr "{name}のスターターパック" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {#件の未読}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {連絡先が#個見つかりました}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, other {#リクエスト}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+リクエスト" @@ -656,6 +725,12 @@ msgstr "{userName} は認証されています" msgid "{userName}'s verifications" msgstr "{userName}の認証情報" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}、<1>{1}、そして{2, plural, other {他#人}}があな #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {フォロワー}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {フォロー}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {いいね}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {リポスト}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, other {保存}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0}のメンバー" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2>があなたを追加しました" @@ -795,8 +870,13 @@ msgstr "ネットワークエラーが発生しました。インターネット #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "ネットワークエラーが発生しました。インターネット接続を確認してください。" @@ -804,7 +884,7 @@ msgstr "ネットワークエラーが発生しました。インターネット msgid "A new code has been sent" msgstr "新しいコードが送信されました" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "認証の新しい形" @@ -827,11 +907,11 @@ msgstr "プロフィールページのスクリーンショットには、フォ 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 "投稿ボタンの隣に虹色の花火のエフェクトで飾られた「下書き」と書かれた新しいボタンがある投稿作成画面のスクリーンショット。下には「ねえ、ニュースを聞いた?Blueskyに下書きが出来たって!!!」と投稿画面に書かれている。" -#: src/components/dms/dialogs/NewChatDialog.tsx:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "選択された受信者は送信者がフォローしていません。" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "虐待または差別的な行動" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "承認" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "リクエストを承認" @@ -860,17 +950,26 @@ msgstr "リクエストを承認" msgid "Accept this language suggestion" msgstr "この言語の提案を受け入れる" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "承認された会話" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "アクセスをリクエストしました!グループのオーナーがリクエストをレビューします。" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "アクセシビリティ" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "アクセシビリティの設定" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "アクセシビリティの設定" msgid "Account" msgstr "アカウント" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "アカウントをブロックしました" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "アカウントをフォローしました" @@ -899,7 +998,7 @@ msgstr "アカウントは停止されています" msgid "Account is deactivated" msgstr "アカウントが無効です" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "アカウントプロバイダー" msgid "Account removed from quick access" msgstr "クイックアクセスからアカウントを解除" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "アカウントのブロックを解除しました" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "アカウントのフォローを解除しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "アカウントのミュートを解除しました" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "スカラップ状(帆立貝の形状)の青色のチェックマーク <0><1/> のあるアカウントは他のユーザを認証できます。これらの信頼できる認証者はBlueskyによって選択されています。" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "他のユーザーからのアクティビティ" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "アクティビティの通知" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "追加" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "ALTテキストを追加(オプション)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "他の投稿を追加" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "スレッドに他の投稿を追加" @@ -1035,7 +1130,7 @@ msgstr "アプリパスワードを追加" msgid "Add App Password" msgstr "アプリパスワードを追加" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "アカウントに自動化ラベルを追加" @@ -1043,7 +1138,7 @@ msgstr "アカウントに自動化ラベルを追加" msgid "Add emoji reaction" msgstr "絵文字リアクションを追加" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "グループチャットメンバーを追加" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "投稿にメディアを追加する" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "詳細を追加(オプション)" @@ -1091,6 +1186,10 @@ msgstr "ユーザーを追加" 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 "リアクションを追加" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "{0} が追加" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "招待リンクにより追加" @@ -1165,12 +1264,12 @@ msgstr "リストにメンバーを追加しています…" msgid "Additional details (limit 1000 characters)" msgstr "追加の詳細(1000文字まで)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "追加の詳細(300文字まで)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "管理者" @@ -1228,12 +1327,12 @@ msgstr "年齢保証の問い合わせが送られました" msgid "Age assurance only takes a few minutes" msgstr "年齢保証には数分かかります" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "すべて" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "全{0}" @@ -1278,13 +1377,13 @@ msgstr "ダイレクトメッセージへのアクセスを許可" msgid "Allow anyone to reply" msgstr "誰でも返信を許可" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "ダイレクトメッセージを誰から受け取れるか:" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "グループチャットの招待を誰から受け取れるか:" @@ -1338,12 +1437,12 @@ msgstr "既にアカウントを持ってますか?" msgid "Already signed in as @{0}" msgstr "@{0}としてすでにサインイン済み" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "ALTテキスト" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "ALTテキストは、すべての人が文脈を理解できるようにするために、視覚障害者や低視力者向けに提供する画像の説明文です。" @@ -1387,7 +1486,7 @@ msgstr "エラーが発生しました" msgid "An error occurred" msgstr "エラーが発生しました" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "ビデオの圧縮中にエラーが発生しました。" @@ -1421,7 +1520,8 @@ msgstr "ビデオの読み込み時にエラーが発生しました。もう一 msgid "An error occurred while loading your lists :/" msgstr "リストの読み込み中にエラーが発生しました :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "QRコードの保存中にエラーが発生しました!" @@ -1432,11 +1532,11 @@ msgstr "QRコードの保存中にエラーが発生しました!" msgid "An error occurred while trying to follow all" msgstr "すべてフォローしようとしたらエラーが発生しました" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "ビデオのアップロード中にエラーが発生しました。 {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "ビデオのアップロード中にエラーが発生しました。インターネット接続を確認して、もう一度お試しください。" @@ -1456,26 +1556,30 @@ msgstr "連絡帳からBlueskyアプリに流れるユーザーのアバター msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "リポスト、いいね、そしてコメントのアイコンと一緒に並んだいくつかのBlueskyの投稿のイラスト" +#: 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 "友達招待を表現する、紙飛行機が飛び出すBlueskyアプリのイラスト" + #: 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 "Blueskyが信頼された認証者を選択し、信頼された認証者が個々のユーザアカウントを認証することを示す図。" -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "グループ チャットの作成中に問題が発生しました。もう一度やり直してください。" -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +msgstr "チャット開始時に問題が発生しました。もう一度やり直してください。" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 msgid "An issue occurred while trying to open the chat" @@ -1485,12 +1589,12 @@ msgstr "チャットを開始しようとした時に問題が発生しました #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "問題が発生しました。もう一度お試しください。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Blueskyアプリが表示されているiPhoneのモックアップで、認証されたユーザーのプロフィールを開くと、表示名の横に青色のチェックマークが表示されています。" @@ -1539,13 +1643,17 @@ msgstr "誰でも" msgid "Anyone can interact" msgstr "誰でも反応可能" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "誰でも参加リクエスト可能" @@ -1555,11 +1663,11 @@ msgstr "誰でも参加リクエスト可能" msgid "Anyone who follows me" msgstr "フォローしている人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "アプリパスワードの名前は長さが4文字以上である必 msgid "App passwords" msgstr "アプリパスワード" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "アプリパスワード" @@ -1618,7 +1726,7 @@ msgstr "ライブ配信の停止に異議申し立て" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "異議申し立てを送信しました" @@ -1632,14 +1740,14 @@ msgstr "アカウント停止に異議申し立て" msgid "Appeal Suspension" msgstr "アカウント停止に異議申し立て" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "プルリクエストを適用" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "{0}のアーカイブ" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "アーカイブ投稿" @@ -1675,7 +1783,7 @@ msgstr "本当に、本当によろしいですか?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "アプリパスワード「{0}」を本当に削除しますか?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "このメッセージを本当に削除しますか?このメッセージはあなたからは削除したように見えますが、他の参加者にとっては削除されません。" @@ -1688,23 +1796,29 @@ msgstr "本当にこのスターターパックを削除したいですか?" msgid "Are you sure you want to discard your changes?" msgstr "本当に変更を破棄したいですか?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "{groupName} から退出しますか?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "本当にこの会話を終了しますか?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "この会話から退出しますか?あなたのメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。" +#: src/components/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 "本当にこのフィードをあなたのフィードから削除したいですか?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "本当に{0}に参加するリクエストを取り消しますか?" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "本当にこの投稿を削除しますか?" @@ -1724,8 +1838,8 @@ msgstr "アート" msgid "Artistic or non-erotic nudity." msgstr "芸術的または性的ではないヌード。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "アルゴリズム用にトピックを割り当て" @@ -1752,7 +1866,7 @@ msgstr "自動化アカウント" msgid "Automation label" msgstr "自動化ラベル" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "自動化ラベル" @@ -1767,12 +1881,12 @@ msgstr "ビデオとGIFの自動再生" msgid "Available" msgstr "利用可能" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "利用可能" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "利用可能" msgid "Back" msgstr "戻る" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "チャットへ戻る" @@ -1832,7 +1948,7 @@ msgstr "投稿や返信には、まずメールアドレスの確認が必要で msgid "Before creating a starter pack, you must first verify your email." msgstr "スターターパックを作る前に、まずメールアドレスを確認しなければなりません。" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "このチャットのリクエストを受け付けるには、まずメールアドレスの確認が必要です。" @@ -1840,13 +1956,14 @@ msgstr "このチャットのリクエストを受け付けるには、まずメ msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "{name}の投稿の通知を受け取る前に、まずメールアドレスを確認してください。" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "他のユーザーにメッセージを送るには、まずメールアドレスの確認が必要です。" @@ -1874,59 +1991,53 @@ msgstr "生年月日" msgid "Birthday" msgstr "生年月日" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "ブロック" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "{displayName}をブロック" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "アカウントをブロック" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "アカウントをブロックしますか?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "ブロックして削除" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "ブロックして退出" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "リストをブロック" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "ブロックまたは報告" @@ -1936,9 +2047,9 @@ msgstr "これらのアカウントをブロックしますか?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "ユーザーをブロック" @@ -1946,17 +2057,17 @@ msgstr "ユーザーをブロック" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "ユーザーをブロック" -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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 "" +msgstr "ユーザーをブロックするかこの会話から退出(あるいは両方)" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "ブロックされています" @@ -1964,14 +2075,12 @@ msgstr "ブロックされています" msgid "Blocked accounts" msgstr "ブロック中のアカウント" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ブロック中のアカウント" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。" @@ -1987,7 +2096,7 @@ msgstr "ブロックしてもこのラベラーがあなたのアカウントに msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ブロックしたことは公開されます。ブロック中のアカウントは、あなたのスレッドでの返信、あなたへのメンション、その他の方法であなたとやり取りすることはできません。" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "ブロックしてもこのラベラーがあなたのアカウントにラベルを適用することができますが、このアカウントがあなたのスレッドに返信したり、やりとりをしたりといったことはできなくなります。" @@ -2000,7 +2109,7 @@ msgstr "ブログ" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Blueskyでは、この投稿日時の信憑性を確認できません。" @@ -2029,7 +2138,7 @@ msgstr "Blueskyは友達と一緒のほうが楽しい!" msgid "Bluesky is more fun with friends" msgstr "Blueskyは友達と一緒のほうが楽しい" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Blueskyは友達と一緒だともっと楽しくなります!連絡先をインポートして、すでにここにいる人を確認してください。" @@ -2037,11 +2146,15 @@ msgstr "Blueskyは友達と一緒だともっと楽しくなります!連絡 msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Blueskyは友達ともっと楽しいです。あなたの友達を招待しますか?<0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "他のプロフィールからQRコードをスキャンするには、Blueskyにカメラへのアクセス許可が必要です。" + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Bluesky Social利用規約" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Blueskyは連絡先を符号化したデータとして保存します。連絡先を削除するとすぐにこのデータが削除されます。" @@ -2053,7 +2166,7 @@ msgstr "Blueskyはあなたのつながっているユーザーからおすす msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Blueskyはログアウトしたユーザーにあなたのプロフィールや投稿を表示しません。他のアプリはこのリクエストに応じない場合があります。この設定はあなたのアカウントを非公開にするものではありません。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Blueskyは著名な本物のアカウントを積極的に認証します。" @@ -2081,6 +2194,10 @@ msgstr "書籍" msgid "Breaking site rules" msgstr "サイト規約違反" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "最大50人の友達を一つのチャットに集めましょう。" + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "ビジネス" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "作成者:{0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "作成者:<0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "著者:<0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "By <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "アカウントを作成することで、<0>利用規約に同意 msgid "By you" msgstr "作成者:あなた" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "カメラ" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "カメラ" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "カメラ" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "キャンセル" @@ -2248,9 +2384,9 @@ msgstr "再有効化をキャンセルしてサインアウト" msgid "Cancel search" msgstr "検索をキャンセル" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "ブロックしたユーザーとはやりとりできません" @@ -2264,7 +2400,7 @@ msgstr "キャプション(.vtt)" msgid "Captions & alt text" msgstr "キャプション&ALTテキスト" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "カルーセル" @@ -2297,7 +2433,7 @@ msgstr "アプリの言語を変更" msgid "Change Handle" msgstr "ハンドルを変更" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "モデレーションサービスを変更" @@ -2310,11 +2446,11 @@ msgstr "パスワードの変更" msgid "Change password dialog" msgstr "パスワード変更ダイアログ" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "レポートカテゴリの変更" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "報告の理由を変更" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "チャット" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "チャットを削除しました" @@ -2361,6 +2497,12 @@ msgstr "チャットを削除しました" msgid "Chat ended" msgstr "チャットが終了しました" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "チャットの招待リンクはもう利用できません" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "チャットがロックされました" @@ -2373,35 +2515,44 @@ msgstr "チャットメッセージ - 無音" msgid "Chat messages - sound" msgstr "チャットメッセージ - 音あり" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "チャットをミュートしました" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "チャットが見つかりませんでした。" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "チャットオーナーはグループチャットを退出できません。" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "チャットの受信者は送信者がフォローしていません。" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "チャット要求の受信トレイ" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "チャットの要求" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "チャットの設定" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "チャットの設定" @@ -2418,14 +2569,14 @@ msgstr "チャットのタイトルが{0}に変更されました" msgid "Chat unlocked" msgstr "チャットのロックが解除されました" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "チャットのミュートを解除しました" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "チャット" @@ -2479,7 +2630,7 @@ msgstr "投稿の言語を選択" msgid "Choose this color as your avatar" msgstr "この色をアバターとして選択" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "このグループチャットに誰がどのように参加可能かを選択してください。" @@ -2558,7 +2709,7 @@ msgstr "ここをクリックしてログアウト" msgid "Click here to resend the email" msgstr "ここをクリックしてメールを再送信" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "確認プロセスを再開するには、ここをクリックしてください。" @@ -2567,7 +2718,7 @@ msgstr "確認プロセスを再開するには、ここをクリックしてく msgid "Click here to update your birthdate" msgstr "ここをクリックして生年月日を更新" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "メールアドレスの更新は、ここをクリック" @@ -2580,7 +2731,7 @@ msgstr "ここをクリックしてこのグループチャットの招待リン msgid "Click to open tag menu for {0}" msgstr "クリックして {0} のタグメニューを開く" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "送信失敗したメッセージを再送信" @@ -2594,28 +2745,30 @@ msgstr "送信失敗したメッセージを再送信" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "送信失敗したメッセージを再送信" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "閉じる" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "アクティブなダイアログを閉じる" @@ -2647,6 +2800,10 @@ msgstr "アクティブなダイアログを閉じる" msgid "Close alert" msgstr "アラートを閉じる" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "バナーを閉じる" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "一番下の引き出しを閉じる" @@ -2657,8 +2814,10 @@ msgstr "一番下の引き出しを閉じる" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "ダイアログを閉じる" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "画像を閉じる" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "このダイアログを閉じる" @@ -2695,18 +2866,22 @@ msgstr "ウェルカムモーダルを閉じる" msgid "Closes password update alert" msgstr "パスワード更新アラートを閉じる" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "投稿の編集画面を閉じて下書きを破棄" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "ユーザーリストを折りたたむ" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "指定した通知のユーザーリストを折りたたむ" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "カラー" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "漫画" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "コミュニティガイドライン" @@ -2740,12 +2915,12 @@ msgstr "テストをクリアしてください" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "新しい投稿を作成" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "最大{0, plural, other {#文字}}まで投稿を編集" @@ -2753,11 +2928,11 @@ msgstr "最大{0, plural, other {#文字}}まで投稿を編集" msgid "Compose reply" msgstr "返信を作成" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "GIFを圧縮中…" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "ビデオを圧縮中…" @@ -2780,7 +2955,7 @@ msgstr "<0>モデレーションの設定で設定されています。" msgid "Confirm" msgstr "確認" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "サポートに連絡" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "アプリが連絡先にアクセスできないため、このデバイスでは連絡先の同期ができません。" @@ -2825,11 +3000,11 @@ msgstr "アプリが連絡先にアクセスできないため、このデバイ msgid "Contact us" msgstr "お問い合わせ" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "連絡先を読み込みました" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "連絡先を削除しました" @@ -2842,7 +3017,7 @@ msgstr "コンテンツ&メディア" msgid "Content and media" msgstr "コンテンツとメディア" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "コンテンツとメディア" @@ -2889,7 +3064,7 @@ msgstr "コンテキストメニューの背景をクリックし、メニュー #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "スレッドの続き" msgid "Continue thread..." msgstr "スレッドの続き…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "グループ名に進む" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "会話" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "会話が削除されました" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "会話が削除されました" @@ -2939,15 +3114,22 @@ msgstr "会話が削除されました" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +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:162 msgid "Copied build version to clipboard" msgstr "ビルドバージョンをクリップボードにコピーしました" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "コピーしました!" msgid "Copies build version to clipboard" msgstr "ビルドバージョンをクリップボードへコピー" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "プロフィールの正規URLをクリップボードにコピーします" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "コピー" @@ -2997,6 +3184,11 @@ msgstr "DIDをコピー" msgid "Copy host" msgstr "ホストをコピー" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "リストへのリンクをコピー" msgid "Copy link to post" msgstr "投稿へのリンクをコピー" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "プロフィールへのリンクをコピー" @@ -3027,8 +3219,8 @@ msgstr "プロフィールへのリンクをコピー" msgid "Copy link to starter pack" msgstr "スターターパックへのリンクをコピー" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "メッセージのテキストをコピー" @@ -3037,12 +3229,12 @@ msgstr "メッセージのテキストをコピー" msgid "Copy post at:// URI" msgstr "投稿のat:// URIをコピー" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "投稿のテキストをコピー" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QRコードをコピー" @@ -3052,11 +3244,15 @@ msgstr "TXTレコードの値をコピー" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "著作権ポリシー" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "QRコードを取得できませんでした" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "カスタムフィードへ接続できませんでした" @@ -3065,7 +3261,15 @@ msgstr "カスタムフィードへ接続できませんでした" msgid "Could not connect to feed service" msgstr "フィードサービスへ接続できませんでした" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "コピーできませんでした – もう一度お試しください" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "ダウンロードできませんでした – もう一度お試しください" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "投稿を取得できませんでした" @@ -3073,23 +3277,27 @@ msgstr "投稿を取得できませんでした" msgid "Could not find profile" msgstr "プロフィールを見つけることができませんでした" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "マッチした全員をフォローできませんでした。{0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "チャットからの退出に失敗しました" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "チャットを退出できませんでした。" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "フィードの読み込みに失敗しました" @@ -3100,7 +3308,11 @@ msgstr "フィードの読み込みに失敗しました" msgid "Could not load list" msgstr "リストの読み込みに失敗しました" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "プロフィールを読み込めませんでした" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "チャットのミュートに失敗しました" @@ -3108,11 +3320,19 @@ msgstr "チャットのミュートに失敗しました" msgid "Could not process your video" msgstr "ビデオを処理できませんでした" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "メンバーを外せませんでした。" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "変更を保存できませんでした:{0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "共有できませんでした – もう一度お試しください" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "通知の設定を更新できませんでした" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "作成" @@ -3153,13 +3373,13 @@ msgstr "リストを作成" msgid "Create a list from this starter pack" msgstr "このスターターパックからリストを作成する" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "スターターパックを作成" @@ -3174,13 +3394,14 @@ msgstr "私向けのスターターパックを作成" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "アカウントを作成" msgid "Create an account without using this starter pack" msgstr "このスターターパックを使用せずにアカウントを作成する" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "代わりにアバターを作成" @@ -3206,7 +3427,7 @@ msgstr "代わりにアバターを作成" msgid "Create another" msgstr "別のものを作成" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "グループ チャットを作成" @@ -3228,19 +3449,20 @@ msgstr "スターターパックからリストを作成" msgid "Create moderation list" msgstr "モデレーションリストを作成" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "新しいアカウントを作成" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "{0}の報告を作成" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "{0}に作成" @@ -3270,6 +3492,10 @@ msgstr "作者はブロック中です" msgid "Culture" msgstr "文化" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "現在のチャット" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "ダークテーマ" msgid "Date of birth" msgstr "生年月日" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "夜明け" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "昼" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "デフォルト" msgid "Default icons" msgstr "デフォルトアイコン" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "アプリパスワードを削除" msgid "Delete app password?" msgstr "アプリパスワードを削除しますか?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "チャットを削除" @@ -3378,19 +3612,19 @@ msgstr "チャットを削除" msgid "Delete chat declaration record" msgstr "チャットの宣言レコードを削除" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "連絡先を削除" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "自分宛を削除" @@ -3399,11 +3633,11 @@ msgstr "自分宛を削除" msgid "Delete list" msgstr "リストを削除" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "メッセージを削除" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "メッセージの宛先から自分を削除" @@ -3411,9 +3645,9 @@ msgstr "メッセージの宛先から自分を削除" msgid "Delete my account" msgstr "アカウントを削除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "投稿を削除" @@ -3430,17 +3664,17 @@ msgstr "スターターパックを削除しますか?" msgid "Delete this list?" msgstr "このリストを削除しますか?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "この投稿を削除しますか?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "削除されています" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "削除されたアカウント" @@ -3471,12 +3705,12 @@ msgstr "説明(最大1000 文字)" msgid "Descriptive alt text" msgstr "説明的なALTテキスト" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "引用を切り離す" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "引用投稿を切り離しますか?" @@ -3507,13 +3741,13 @@ msgstr "ダイアログ:この投稿に誰が反応できるか調整" msgid "Dim" msgstr "グレー" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "2要素認証を無効に" @@ -3521,7 +3755,7 @@ msgstr "2要素認証を無効に" msgid "Disable captions" msgstr "キャプションを無効化" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "メールでの2要素認証を無効にする" @@ -3534,8 +3768,8 @@ msgstr "メールでの2要素認証を無効にする" msgid "Disable haptic feedback" msgstr "触覚フィードバックを無効化" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "リンクを無効化" @@ -3547,7 +3781,7 @@ msgstr "この投稿の引用投稿を無効にする" msgid "Disable replies entirely" msgstr "返信を完全に無効にする" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "この招待リンクを無効にしますか?" @@ -3560,9 +3794,9 @@ msgstr "無効" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "破棄" msgid "Discard changes?" msgstr "変更を破棄しますか?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "投稿を削除しますか?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Germ DMを切断" @@ -3609,15 +3843,16 @@ msgstr "新しいフィードを探す" msgid "Discover New Feeds" msgstr "新しいフィードを探す" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "消す" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "バナーを閉じる" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "エラーを消す" @@ -3642,6 +3877,10 @@ msgstr "このセクションを消す" msgid "Dismiss this suggestion" msgstr "提案を消す" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "QRスキャナーを閉じます" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "ヌードは含まれません。" msgid "Domain verified!" msgstr "ドメインを確認しました!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "コードを持っていないか、新しいコードが必要ですか?<0>ここをクリックしてください。" @@ -3681,7 +3920,7 @@ msgstr "コードを持っていないか、新しいコードが必要ですか msgid "Don’t see a code? <0>Click here to resend." msgstr "コードが届いていませんか?<0>ここをクリックすれば再送信します。" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "メールが届いていませんか?<0>ここをクリックすれば再送信します。" @@ -3700,16 +3939,21 @@ msgstr "心配しないでください!すべての既存のメッセージと #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "完了" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "メッセージをダブルタップか長押しでリアクションを追加" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "ダブルタップでダイアログを閉じる" @@ -3737,19 +3981,14 @@ msgstr "ダブルタップでダイアログを閉じる" 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 "Blueskyをダウンロード" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CARファイルをダウンロード" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CARファイルをダウンロード" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "チャットのデータをダウンロード" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "チャットのデータをダウンロード" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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 "招待QRコードをダウンロード" + +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "お住まいの地域の法律により、現在Blueskyの一部の機 msgid "Duration:" msgstr "期間:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "夕暮れ" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "例:太郎" @@ -3823,9 +4079,8 @@ msgstr "例: 繰り返し広告付きで返信するユーザー。" msgid "Eating disorders" msgstr "摂食障害" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "編集" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "アバターを編集" @@ -3847,19 +4102,19 @@ msgstr "アバターを編集" msgid "Edit Feeds" msgstr "フィードを編集" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "画像を編集" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "反応関連の設定を編集" @@ -3868,7 +4123,16 @@ msgstr "反応関連の設定を編集" msgid "Edit interests" msgstr "「気になること」を編集" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "リンクの設定を編集" @@ -3886,20 +4150,15 @@ msgstr "ライブステータスを編集" msgid "Edit moderation list" msgstr "モデレーションリストを編集" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "マイフィードを編集" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "名前を編集" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "{0}からの通知を編集" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "ユーザーを編集" @@ -3912,12 +4171,12 @@ msgstr "投稿への反応の設定を編集" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "プロフィールを編集" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "プロフィールを編集" @@ -3925,7 +4184,8 @@ msgstr "プロフィールを編集" msgid "Edit starter pack" msgstr "スターターパックを編集" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "このグループチャットの名前を編集" @@ -3937,7 +4197,7 @@ msgstr "ユーザーリストを編集" msgid "Edit who can reply" msgstr "誰が返信できるのかを編集" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "スターターパックを編集" @@ -3971,7 +4231,7 @@ msgstr "メールアドレス" msgid "Email Resent" msgstr "メール再送済" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "メールを送りました!" @@ -4006,8 +4266,8 @@ msgstr "この投稿をあなたのウェブサイトに埋め込みます。以 msgid "Embedded video player" msgstr "埋め込みビデオプレーヤー" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "有効にする" @@ -4025,7 +4285,7 @@ msgstr "成人向けコンテンツを有効にする" msgid "Enable captions" msgstr "キャプションを有効化" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "メールでの2要素認証を有効にする" @@ -4038,13 +4298,12 @@ msgstr "外部メディアを有効にする" msgid "Enable media players for" msgstr "有効にするメディアプレーヤー" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "プロフィールにアクセスして<0>ベルのアイコン<1/>を押すことでアカウントの通知を有効にします。" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "プッシュ通知を有効にする" @@ -4091,8 +4350,8 @@ msgstr "パスワードを入力" msgid "Enter a word or tag" msgstr "ワードまたはタグを入力" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "コードを入力" @@ -4143,12 +4402,12 @@ msgstr "フルスクリーンで表示" msgid "Entertainment" msgstr "エンターテインメント" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "エラー" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "最新のデータの取得に失敗しました。" @@ -4185,23 +4444,23 @@ msgstr "誰でも返信可能" msgid "Everybody can reply to this post." msgstr "この投稿に全員が返信できる。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "全員" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "全員" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "全員" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "他すべて" @@ -4217,16 +4476,16 @@ msgstr "フォローしているユーザーは除外" msgid "Exit fullscreen" msgstr "全画面表示を終了" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "ALTテキストを展開" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "ユーザーリストを展開" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "返信する投稿全体を展開または折りたたむ" @@ -4238,7 +4497,7 @@ msgstr "投稿のテキストを展開" msgid "Expands or collapses post text" msgstr "テキストを展開または折りたたむ" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "レコードを指すURIではありません" @@ -4277,10 +4536,10 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。 msgid "Explicit sexual images." msgstr "露骨な性的画像。" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "検索" @@ -4289,11 +4548,8 @@ msgstr "検索" msgid "Explore the app" msgstr "アプリを探索" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "チャットデータをエクスポート" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "自分のチャットデータをエクスポート" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部メディアの設定" @@ -4331,18 +4587,22 @@ msgstr "外部メディアの設定" msgid "Extremist content" msgstr "過激主義的コンテンツ" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "チャットの受け入れに失敗しました" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "参加リクエストを承認できませんでした" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "絵文字リアクションを追加できませんでした" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "メンバーを追加できませんでした" @@ -4354,7 +4614,8 @@ msgstr "スターターパックへの追加に失敗しました" msgid "Failed to change handle. Please try again." msgstr "ハンドルの変更に失敗しました。もう一度試してください。" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "リンクのコピーに失敗しました" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "アプリパスワードの作成に失敗しました。もう一度試してください。" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "会話の作成に失敗しました" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "招待リンクを作成できませんでした" @@ -4376,17 +4637,17 @@ msgstr "招待リンクを作成できませんでした" msgid "Failed to create starter pack" msgstr "スターターパックの作成に失敗しました" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "メッセージの削除に失敗しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "投稿の削除に失敗しました。もう一度お試しください。" @@ -4394,24 +4655,24 @@ msgstr "投稿の削除に失敗しました。もう一度お試しください msgid "Failed to delete starter pack" msgstr "スターターパックの削除に失敗しました" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "招待リンクを無効にできませんでした" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Germ DMの切断に失敗しました。エラー: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "グループチャット名の編集に失敗" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "招待リンクを編集できませんでした" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "招待リンクを有効にできませんでした" @@ -4427,19 +4688,27 @@ msgstr "すべての友達をフォローできませんでした。もう一度 msgid "Failed to hide suggestion, please check your internet connection" msgstr "提案を非表示にできませんでした。インターネット接続を確認してください" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "参加リクエストの無視に失敗しました" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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 "SMSアプリの起動に失敗しました" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "グループチャットからの退出に失敗" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "会話の読み込みに失敗しました" @@ -4456,17 +4725,8 @@ msgstr "フィードの読み込みに失敗しました" msgid "Failed to load feeds preferences" msgstr "フィードの設定の読み込みに失敗しました" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "通知設定の読み込みに失敗しました。" @@ -4493,16 +4753,15 @@ msgstr "おすすめのフィードの読み込みに失敗しました" msgid "Failed to load suggested follows" msgstr "おすすめのフォローの読み込みに失敗しました" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "グループチャットのロックに失敗しました" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "すべての要求を既読としてマークできませんでした" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "グループチャットのミュートに失敗" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "投稿の固定に失敗しました" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Germ DMの再接続に失敗しました。エラー: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "データの削除に失敗しました。 {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "絵文字リアクションの削除に失敗しました" @@ -4534,7 +4793,8 @@ msgstr "絵文字リアクションの削除に失敗しました" msgid "Failed to remove from starter pack" msgstr "スターターパックからの削除に失敗しました" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "グループチャットからメンバーを外せませんでした" @@ -4542,15 +4802,20 @@ msgstr "グループチャットからメンバーを外せませんでした" msgid "Failed to remove verification" msgstr "認証の削除に失敗しました" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "下書きの保存に失敗しました" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "画像の保存に失敗しました" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "「気になること」の保存に失敗しました。" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "メールの送信に失敗しました。後でもう一度お試しください。" @@ -4580,16 +4845,16 @@ msgstr "レポートの送信に失敗しました" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "異議申し立ての送信に失敗しました。もう一度お試しください。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "スレッドのミュートの切り替えに失敗しました。もう一度お試しください" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "グループチャットのロックを解除できませんでした" @@ -4597,12 +4862,12 @@ msgstr "グループチャットのロックを解除できませんでした" msgid "Failed to unpin list" msgstr "リストのピン留めの解除に失敗しました" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "メールでの2要素認証の設定の更新に失敗しました" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "メールの更新に失敗しました。後でもう一度お試しください。" @@ -4614,7 +4879,7 @@ msgstr "フィードの更新に失敗しました" msgid "Failed to update notification declaration" msgstr "通知受信制限の更新に失敗しました" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "設定の更新に失敗しました" @@ -4641,7 +4906,7 @@ msgstr "偽のアカウントまたはボット" msgid "False information about elections" msgstr "選挙に関する誤った情報" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "フィード" @@ -4649,7 +4914,7 @@ msgstr "フィード" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "{0}によるフィード" @@ -4662,7 +4927,7 @@ msgstr "フィードの作者" msgid "Feed identifier" msgstr "フィードの識別子" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "フィードメニュー" @@ -4676,25 +4941,25 @@ msgstr "フィードを利用できません" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "フィードバック" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "フィード" @@ -4739,7 +5004,7 @@ msgstr "言語で検索をフィルター(現在の設定:{currentLanguageLa 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:166 msgid "Filter who you receive notifications from" msgstr "通知を受け取るユーザーをフィルターする" @@ -4747,11 +5012,11 @@ msgstr "通知を受け取るユーザーをフィルターする" msgid "Finalizing" msgstr "最後に" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "ついに!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "ついに!気になる投稿を追いかけましょう。いつでも見返せるように保存。" @@ -4768,19 +5033,17 @@ msgstr "ファイナンス" msgid "Find accounts to follow" msgstr "フォローするアカウントを探す" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "連絡先を見つける" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "友達を見つける" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "連絡先から友達を見つける" +msgid "Find and invite friends" +msgstr "友達を探して招待する" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "連絡先を見つける" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "友達を見つける" msgid "Find people to follow" msgstr "フォローするユーザーを探す" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "知り合いを探す" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Blueskyの投稿、ユーザー、フィードを検索" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "友達を見つける" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "電話番号を照合し、連絡先とマッチングすることであなたの友達を見つけます。私達はあなたの情報を保護し、あなたは次に何が起こるのかをコントロールできます。<0>詳細はこちら" @@ -4847,22 +5114,22 @@ msgstr "検索フィールドにフォーカスする" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "フォロー" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0}をフォロー" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "{displayName}をフォロー" @@ -4892,8 +5159,8 @@ msgstr "アカウントをフォロー" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "すべてのアカウントをフォロー" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "フォローバック" @@ -4916,7 +5183,7 @@ msgstr "フォローバック" msgid "Followed all accounts!" msgstr "すべてのアカウントをフォローしました!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "マッチしたすべてをフォローしました" @@ -4944,8 +5211,12 @@ msgstr "<0>{0}と<1>{1}がフォロー中" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}、<1>{1}および{2, plural, other {他#人}}がフォロー中" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "フォロワーは参加できます" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "あなたが知っている@{0}のフォロワー" @@ -4960,10 +5231,10 @@ msgstr "あなたが知っているフォロワー" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "フォロー中" @@ -4977,12 +5248,12 @@ msgstr "フォロー中" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "{0}をフォローしました" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "{displayName}をフォロー中" @@ -4995,19 +5266,16 @@ msgstr "{handle}をフォローしています" msgid "Following feed preferences" msgstr "Followingフィードの設定" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Followingフィードの設定" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "あなたをフォロー" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "あなたをフォロー" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "フォント" @@ -5065,11 +5333,16 @@ msgstr "パスワードを忘れた?" msgid "Forgot?" 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 "グループチャットを表現する四つのメッセージバブル。一つ目のメッセージ:「ニュース聞いた?Blueskyにグループチャットができたよ!」二つ目のメッセージ:「えっ、まじで」三つ目のメッセージ:「すごい、一つのチャットに50人!」四つ目のメッセージ:「招待リンクも送れるよ!」" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 msgid "Free your feed" msgstr "フィードを解放しよう" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "通知対象" @@ -5086,82 +5359,86 @@ msgstr "<0/>から" msgid "Generate a starter pack" msgstr "スターターパックを生成" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "新しい招待リンクを生成" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DMは切断されています" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DMのリンク" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DMに再接続" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "ヘルプを表示" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "スターターパックでの参加、認証、その他のアクティビティの通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "フォローされたときに通知を受け取る。" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "リポストした投稿をいいねされたら通知を受け取る。" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "投稿をいいねされたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "リポストがいいねされたら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "メンションされたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "投稿を引用されたら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "投稿に返信があったら通知を受け取る。" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "リポストした投稿をリポストされたら通知を受け取る。" - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "投稿をリポストされたら通知を受け取る。" +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "リポストがリポストされたら通知を受け取る。" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "購読している投稿にアクティビティがあれば通知を受け取る。" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "新しい投稿の通知を受け取る" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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} の新しい投稿の通知を受け取る" @@ -5174,27 +5451,27 @@ msgstr "このアカウントのアクティビティの通知を受け取る" msgid "Get notified when {name} posts" msgstr "{name} が投稿した時に通知を受け取る" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "誰かが投稿したときに通知を受け取る" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIFをアップロードしました" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "プロフィールに顔をつける" @@ -5213,20 +5490,20 @@ msgstr "暴力の賛美" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "戻る" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "前のステップに戻る" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "ホームへ" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "ホームへ" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "ホームへ" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "ライブ開始(無効)" msgid "Go live for" msgstr "ライブ予定時間" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "{firstAuthorName}のプロフィールに移動" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "アカウント設定へ移動" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "{0}との会話へ" @@ -5296,23 +5571,23 @@ msgstr "フィードへ移動" msgid "Go to next" msgstr "次へ" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "\"{chatName} \"という名前のグループチャットに移動" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "ユーザーのプロフィールへ移動" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "ユーザーのプロフィールへ移動" @@ -5320,11 +5595,18 @@ msgstr "ユーザーのプロフィールへ移動" msgid "Going live is currently disabled for your account" msgstr "ライブの開始はあなたのアカウントでは現在無効です" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "露骨な暴力的コンテンツ" msgid "Grooming or predatory behavior" msgstr "グルーミングまたは捕食的行為(性的搾取目的の接近)" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "グループチャット" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "グループチャット招待リンクのダイアログ" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "グループチャットをロックしました" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "グループチャットをミュートしました" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "グループチャット名が更新されました" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "グループチャットの設定" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "グループチャットのロックを解除しました" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "グループチャットのミュートを解除しました" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "グループチャットはまだ利用できません" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "グループチャット" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "グループチャットが利用可能になりました" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "グループチャットは18歳以上のユーザーのみが利用できます。" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "グループチャットの最大人数は{0, plural, other {#人}}です。" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "グループはロックされています" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "グループ名" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 {最大で#文字です。}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "ハッキングまたはシステム攻撃" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "ハンドルが長すぎます。短いものをお試しください。" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "現在ライブ中" @@ -5446,7 +5744,7 @@ msgstr "有害または高リスクの活動" msgid "Harming or endangering minors" msgstr "未成年者への危害または危険行為" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "ハッシュタグ" @@ -5458,8 +5756,8 @@ msgstr "ハッシュタグ {tag}" msgid "Hate speech" msgstr "ヘイトスピーチ" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "コードがありませんか?<0>ここをクリックしてください。" @@ -5479,11 +5777,11 @@ msgstr "不正利用防止のため、Bluesky が7日間保持した後に削除 #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "ヘルプ" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "画像をアップロードするかアバターを作ってあなたがbotではないことをみんなに知らせましょう。" @@ -5522,7 +5820,7 @@ msgstr "非表示のリスト" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "非表示のリスト" msgid "Hide" msgstr "非表示" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "非表示" @@ -5553,18 +5851,18 @@ msgstr "グループチャットの更新を非表示" msgid "Hide lists" msgstr "リストを非表示にする" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "返信を自分には非表示" @@ -5577,19 +5875,19 @@ msgstr "このカードを非表示" msgid "Hide this event" msgstr "このイベントを非表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "この投稿を非表示にしますか?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "翻訳を非表示" @@ -5606,7 +5904,7 @@ msgstr "トレンド・トピックを非表示にしますか?" msgid "Hide trending videos?" msgstr "トレンド・ビデオを非表示にしますか?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "ユーザーリストを非表示" @@ -5620,6 +5918,10 @@ msgstr "認証バッジを非表示" msgid "Hides the content" msgstr "コンテンツを非表示" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "友達招待のプロモーションバナーを非表示にする" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "うーん、<0>アプリパスワードでサインインしているようです。 生年月日を設定するには、メインのアカウントのパスワードでサインインするか、このアカウントを管理している人に尋ねる必要があります。" @@ -5652,19 +5954,15 @@ msgstr "このデータの読み込みに問題があるようです。詳細は msgid "Hmmmm, we couldn't load that moderation service." msgstr "そのモデレーションサービスを読み込めませんでした。" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "待って!徐々にビデオへのアクセスを許可していますが、あなたの順番はまだです。しばらくしてもう一度確認を!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "ちょっとお待ちください!この機能はまだご利用いただけません。あとでお試しください。" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "ホーム" @@ -5721,7 +6019,7 @@ msgstr "理解した" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "私は {0} としてBlueskyにいます。私を見つけて! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "ALTテキストが長い場合、ALTテキストの展開状態を切り替える" @@ -5757,15 +6055,15 @@ msgstr "このリストを削除すると、復元できなくなります。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "自分のドメインを持っていれば、ハンドルとして利用できます。これによりあなたのアイデンティティを自己証明できます。<0>詳しくはこちら。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "メールを更新する必要がある場合は、<0>ここをクリックしてください。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "メールアドレスを更新すると、メールでの2要素認証は無効になります。" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "あなたのアクティビティの通知を受信できるユーザーを制限したい場合は、<0>設定 → プライバシーとセキュリティで変更できます。" @@ -5786,23 +6083,23 @@ msgstr "あなたが開発者ならば、自分でサーバーをホストでき msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "ハンドルやメールアドレスを変えるのであれば、無効化の前に変更してください。" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "画像" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "画像 {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "画像 {0} / {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "画像 {0} / {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "画像のキャッシュをクリアし、 {0} が解放されました" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "画像ギャラリー、 {0}枚の画像" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "画像は利用できません。" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "なりすまし" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "連絡先をインポート" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "{0}に読み込みました" @@ -5881,40 +6182,40 @@ msgstr "{0}に読み込みました" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "アプリ内" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "アプリ内通知" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "アプリ内、全員" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "アプリ内、フォロー中の人" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "アプリ内、プッシュ" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "アプリ内、プッシュ、全員" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "アプリ内、プッシュ、フォロー中の人" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "受信トレイが空です" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "受信トレイが空です!" @@ -5954,6 +6255,10 @@ msgstr "下書きのご紹介" 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 "保存済投稿、いわゆるブックマークを紹介します" @@ -5963,11 +6268,15 @@ msgstr "保存済投稿、いわゆるブックマークを紹介します" msgid "Invalid 2FA confirmation code." msgstr "無効な2要素認証の確認コードです。" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "無効な反応関連の設定。" @@ -5977,10 +6286,15 @@ msgstr "無効な反応関連の設定。" msgid "Invalid phone number" msgstr "無効な電話番号" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "報告の件名が無効です" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "無効な取消リクエストです。" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "無効な確認コード" @@ -6001,8 +6315,15 @@ msgstr "招待コード" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "招待コードが確認できません。正しく入力されていることを確認し、もう一度試してください。" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "友達を招待" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "友達を招待" @@ -6010,21 +6331,31 @@ msgstr "友達を招待" msgid "Invite friends <0/>" msgstr "友達を招待 <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "招待リンク" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "招待リンク" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "招待リンクが無効になりました" @@ -6040,11 +6371,16 @@ msgstr "招待リンクを有効にしました" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "招待済み" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ジョブID:{0}" @@ -6083,6 +6419,11 @@ msgstr "ジョブID:{0}" msgid "Jobs" msgstr "仕事" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "参加" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "仕事" msgid "Join Bluesky" msgstr "Blueskyに参加" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "グループチャットに参加" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "会話に参加" msgid "Journalism" msgstr "報道" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "編集を続ける" @@ -6109,6 +6460,11 @@ msgstr "編集を続ける" msgid "Keep me posted" msgstr "投稿を逃さない" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "メンバーをキックする" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS のウェブサイト" @@ -6143,7 +6499,7 @@ msgstr "あなたのアカウントのラベル" msgid "Labels on your content" msgstr "あなたのコンテンツのラベル" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "言語の設定" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "最新" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "友達の招待はどのように動作するのかの詳細を見る" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "連絡先の読み込みについて詳細を見る" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "この警告の詳細" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Blueskyの認証についてもっと詳しく(英語)" @@ -6239,7 +6595,7 @@ msgstr "Blueskyの認証についてもっと詳しく(英語)" msgid "Learn more about what is public on Bluesky." msgstr "Blueskyで公開されている内容はこちらを参照してください。" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Germ DMのリンクについての詳細" @@ -6252,31 +6608,33 @@ msgstr "<0>アカウント設定で詳細を確認する。" msgid "Learn more." msgstr "詳細。" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "退出" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "チャットを退出" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "会話を退出" @@ -6284,13 +6642,14 @@ msgstr "会話を退出" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "会話を退出" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "グループチャットを退出" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "このグループチャットから退出する" @@ -6299,6 +6658,14 @@ msgstr "このグループチャットから退出する" msgid "Leaving Bluesky" msgstr "Blueskyから離れる" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "このチャットから退出すると完全にロックされ、再び参加することはできません。" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "グループチャットを退出しました。" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "あと少しです。" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ライト" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "いいねする({0, plural, other {#件のいいね}})" @@ -6346,11 +6713,7 @@ msgstr "10投稿をいいね" msgid "Like 10 posts to train the Discover feed" msgstr "Discoverフィードを訓練するために10投稿をいいねする" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "いいねの通知" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "このフィードをいいね" @@ -6358,8 +6721,8 @@ msgstr "このフィードをいいね" msgid "Like this labeler" msgstr "このラベラーをいいね" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "いいねしたユーザー" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {#人のユーザー}}がいいね" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {#人のユーザー}}がいいね" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "いいね" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "リポストへのいいね" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "リポストへのいいねの通知" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "この投稿をいいねする" @@ -6409,11 +6768,11 @@ msgstr "この投稿をいいねする" msgid "Linear" msgstr "リニア" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "リンクをクリップボードにコピーしました" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "リスト" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "リストのミュートを解除しました" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "リスト" @@ -6545,7 +6904,7 @@ msgstr "ライブイベントの非表示を解除" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "何かエキサイティングなことが起こっている時、ライブイベントが時々表示されます。 必要に応じて、この特定のイベント、またはすべてのイベントをアプリのインターフェースのこの場所で非表示にすることができます。" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "ライブ機能はベータ版です" @@ -6595,27 +6954,27 @@ msgstr "投稿への反応の設定を読み込み中…" msgid "Loading..." msgstr "読み込み中…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "ロック" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "グループチャットをロック" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "グループチャットをロックしますか?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "このグループチャットをロック" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "ロック中" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "ログ" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.socialによるロゴ" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.socialによるロゴ" @@ -6662,7 +7021,7 @@ msgstr "Followingフィードを消したようです。<0>ここをクリック msgid "Love GIFs" msgstr "愛のGIF" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "アカウントのメール設定を調整する" @@ -6687,24 +7046,22 @@ msgstr "認証設定の管理" msgid "Manage your muted words and tags" msgstr "ミュートしたワードとタグの管理" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "すべて既読にする" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "既読にする" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "すべて既読にしました" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "後で" @@ -6726,26 +7083,26 @@ msgstr "他のデバイスに保存されているメディア" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "一部の閲覧者にとっては困惑する、あるいは不適切なメディアです。" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "メンバーがグループチャットから外されました。" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "メンバー" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "メンバーはまだチャット履歴を読むことができますが、新しいメッセージを送信することはできません。" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "メンションの通知" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "メンションされたユーザー" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "メンション" @@ -6761,7 +7118,7 @@ msgstr "メッセージ" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "メッセージ" @@ -6771,26 +7128,26 @@ msgstr "メッセージ" msgid "Message {0}" msgstr "{0}へメッセージを送る" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "{displayName}にメッセージ" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "メッセージは削除されました" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "メッセージは削除されました" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "メッセージを送信できませんでした。" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "@{0}からのメッセージ:{1}" @@ -6813,19 +7170,19 @@ msgstr "メッセージが長すぎます" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "メッセージが長すぎます({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "メッセージのオプション" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "メッセージ" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "このユーザーからのメッセージはあなたをブロック中は非表示です。" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "このユーザーからのメッセージはあなたがブロック中は非表示です。" @@ -6838,10 +7195,6 @@ msgstr "ミッドナイト" msgid "Minor harassment or bullying" msgstr "未成年者への嫌がらせまたはいじめ" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "その他の通知" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "誤解を招くこと" @@ -6850,7 +7203,7 @@ msgstr "誤解を招くこと" msgid "Missing media" msgstr "メディアが見つかりません" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "モデレーション" @@ -6894,7 +7247,7 @@ msgstr "モデレーションリストを更新しました" msgid "Moderation lists" msgstr "モデレーションリスト" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "モデレーションリスト" @@ -6903,7 +7256,7 @@ msgstr "モデレーションリスト" msgid "moderation settings" msgstr "モデレーションの設定" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "モデレーションのステータス" @@ -6928,8 +7281,8 @@ msgstr "その他の言語…" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "その他のオプション" @@ -6949,7 +7302,7 @@ msgstr "映画" msgid "Music" msgstr "音楽" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "ミュート" @@ -6965,8 +7318,8 @@ msgstr "ミュート" msgid "Mute {0}" msgstr "{0} をミュート" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "アカウントをミュート" msgid "Mute accounts" msgstr "アカウントをミュート" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "会話をミュート" @@ -6994,7 +7347,7 @@ msgstr "リストをミュート" msgid "Mute these accounts?" msgstr "これらのアカウントをミュートしますか?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "このグループチャットをミュート" @@ -7022,17 +7375,21 @@ msgstr "タグのみでこのワードをミュート" msgid "Mute this word until you unmute it" msgstr "このワードをミュート解除するまでミュート" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "スレッドをミュート" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "ワードとタグをミュート" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "ミュート済み" @@ -7040,7 +7397,7 @@ msgstr "ミュート済み" msgid "Muted accounts" msgstr "ミュート中のアカウント" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ミュート中のアカウント" @@ -7062,6 +7419,10 @@ msgstr "ミュートしたワードとタグ" 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" @@ -7104,12 +7465,12 @@ msgstr "スターターパックに移動" msgid "Navigates to the next screen" msgstr "次の画面に移動します" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "あなたのプロフィールに移動します" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "著作権侵害、法的要求、または規制遵守の問題を報告する必要がありますか?" @@ -7117,6 +7478,7 @@ msgstr "著作権侵害、法的要求、または規制遵守の問題を報告 msgid "Nevermind, create a handle for me" msgstr "気にせずにハンドルを作成" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "新規" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{firstAuthorLink}からの新しい{postsCount, plural, other {投稿}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{firstAuthorName}からの新しい{postsCount, plural, other {投稿}}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "新しいチャット" @@ -7163,7 +7525,7 @@ msgstr "{0}や{1}との新しいチャット" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "{0}、{1}、そして{memberCount, plural, other {さらに{memberCount}人}}との新しいチャット。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "新しいメールアドレス" @@ -7171,32 +7533,30 @@ msgstr "新しいメールアドレス" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "新しいフォロワーの通知" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "新しいフォロワー" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "新しいグループチャット" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "新しいグループチャット:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "新しい投稿" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "新しい投稿" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "{firstAuthorLink}および<0>{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}からの新しい投稿" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "{firstAuthorName}および{additionalAuthorsCount, plural, other {他{formattedAuthorsCount}人}}からの新しい投稿" @@ -7262,8 +7622,8 @@ msgstr "ニュース" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "次へ" msgid "Next image" msgstr "次の画像" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "夜" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "広告ゼロ。しつこい追跡なし。使い続けさせるために手放せなくする罠、エンゲージメントトラップもなし。Blueskyは、あなたの時間と集中を大切にします。" @@ -7321,7 +7685,7 @@ msgstr "終了時間未定" msgid "No feeds found. Try searching for something else." msgstr "フィードが見つかりませんでした。他を探してみて。" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "まだフォロワーがいません" @@ -7335,7 +7699,7 @@ msgstr "「{query}」のGIFが見つかりません。" msgid "No GIFs to show right now. Try again in a moment." msgstr "現在表示するGIFがありません。しばらくしてからもう一度お試しください。" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "画像なし" @@ -7353,8 +7717,8 @@ msgstr "リストなし" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "{0}のフォローを解除しました" @@ -7362,7 +7726,7 @@ msgstr "{0}のフォローを解除しました" msgid "No media yet" msgstr "まだメディアがありません" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "メッセージはありません" @@ -7378,12 +7742,12 @@ msgstr "名前なし" msgid "No notifications yet!" msgstr "お知らせはありません!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "誰からも受け取らない" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "誰からも受け取らない" @@ -7399,7 +7763,7 @@ msgstr "誰も" msgid "No one but the author can quote this post." msgstr "投稿者だけがこの投稿を引用できます。" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "誰もメッセージを送信できません" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "結果はありません" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "結果はありません" @@ -7446,8 +7810,8 @@ msgstr "結果はありません" msgid "No results for \"{0}\"." msgstr "「{0}」に該当するものは見つかりませんでした。" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "結果は見つかりません" @@ -7509,12 +7873,12 @@ msgstr "同意のない親密画像(NCII)" msgid "Non-sexual Nudity" msgstr "性的ではないヌード" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -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:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "このプラットフォームでは利用できません。" @@ -7522,16 +7886,16 @@ msgstr "このプラットフォームでは利用できません。" msgid "Not followed by anyone you’re following" msgstr "あなたがフォローしている誰からもフォローされていません" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "見つかりません" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "共有についての注意事項" @@ -7548,44 +7912,31 @@ msgstr "注:この投稿はログイン中のユーザーにのみ表示され msgid "Nothing saved yet" msgstr "まだ何も保存されていません" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知設定" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "通知音" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "通知" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "誰かがあなたのスターターパックを経由して参加した等、その他のすべての通知。" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "今" @@ -7601,7 +7952,7 @@ msgstr "電話番号は携帯の電話番号でなければなりません" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "オフ" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "OK" @@ -7648,35 +8000,35 @@ msgstr "<0><1/><2><3/>" msgid "Onboarding reset" msgstr "オンボーディングのリセット" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "選択した受信者のいずれかがグループチャットを許可していません。" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "選択した受信者のいずれかがあなたをブロックしていてメッセージを送れません。" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "1つもしくは複数のGIFにALTテキストがありません。" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "1つもしくは複数の画像にALTテキストがありません。" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "選択したファイルの 1つ以上がサポートされていません。" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "選択したファイルのうちの1つ以上が大きすぎます。最大で100MBです。" +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "1つもしくは複数のビデオにALTテキストがありません。" @@ -7685,6 +8037,26 @@ msgstr "1つもしくは複数のビデオにALTテキストがありません msgid "Only {0} can reply." msgstr "{0}のみ返信可能。" +#. 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:234 +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}枚です" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "管理者のみが参加リクエストを受け付けることができます。" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "管理者のみが参加リクエストを無視できます。" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "フォロー中のフォロワーのみ" msgid "Only image files are supported" msgstr "画像ファイルのみに対応しています" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "{0}がフォローしているユーザーだけが参加できます。" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "チャットのオーナーがフォローしているユーザーだけが参加できます" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt)ファイルのみに対応しています" @@ -7703,6 +8085,10 @@ msgstr "WebVTT(.vtt)ファイルのみに対応しています" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "おっと、何らかの問題が発生したようです!" msgid "Oops!" msgstr "おっと!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "アバター・クリエイターを開く" @@ -7720,12 +8106,17 @@ msgstr "アバター・クリエイターを開く" msgid "Open camera" msgstr "カメラを起動" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "チャットを開く" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "{displayName}のチャットメンバーオプションを開く" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "会話のオプションを開く" @@ -7739,16 +8130,16 @@ msgstr "引き出しメニューを開く" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "絵文字を入力" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "フィードの設定メニューを開く" @@ -7760,13 +8151,22 @@ msgstr "全絵文字リストを開く" msgid "Open Germ DM" msgstr "Germ DMを開く" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Google翻訳で開く" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "{niceUrl}へのリンクを開く" @@ -7790,11 +8190,15 @@ msgstr "パックを開く" msgid "Open post options menu" msgstr "投稿のオプションを開く" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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 "QRコードスキャナーを開く" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "絵本のページを開く" msgid "Open system log" msgstr "システムのログを開く" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "このグループチャットを開く" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "自分の投稿にコンテンツの警告を追加するダイアログ msgid "Opens a dialog to choose who can interact with this post" msgstr "この投稿に誰が反応できるかを選択するダイアログを開く" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "QRカードのカラーテーマ一覧を開きます" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "デバッグエントリーの追加詳細を開く" @@ -7838,7 +8250,7 @@ msgstr "デバッグエントリーの追加詳細を開く" msgid "Opens alt text dialog" msgstr "ALTテキストのダイアログを開く" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "デバイスのカメラを開く" @@ -7858,22 +8270,24 @@ msgstr "編集画面を開く" msgid "Opens device camera" msgstr "デバイスのカメラを起動" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "デバイスのギャラリーを開いて最大{MAX_IMAGES, plural, other {#枚の画像}}、あるいは動画またはGIFを1つを選択します。" +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "デバイスのギャラリーを開いて最大{MAX_GALLERY_IMAGES, plural, other {#枚の画像}}、あるいは動画またはGIFを1つを選択します。" +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "新しいBlueskyのアカウントを作成するフローを開く" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "既存のBlueskyアカウントにサインインする画面を開きます" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "画像全体を表示" @@ -7890,7 +8304,7 @@ msgstr "画像選択を開く" msgid "Opens link {0}" msgstr "リンク{0}を開く" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "ライブステータスのダイアログを開く" @@ -7902,15 +8316,23 @@ msgstr "パスワードリセットのフォームを開く" msgid "Opens post language settings" msgstr "投稿言語の設定を開く" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "GIF選択ダイアログを開く" +#: 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 "投稿作成画面を開く" @@ -7919,9 +8341,8 @@ msgstr "投稿作成画面を開く" msgid "Opens this draft in the composer" msgstr "この下書きを編集画面で開く" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "プロフィールを開く" @@ -7997,12 +8418,12 @@ msgstr "私たちのブログの記事" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "モデレーターが報告をレビューし、Blueskyであなたがチャットにアクセスできないようにしました。" @@ -8010,14 +8431,15 @@ msgstr "モデレーターが報告をレビューし、Blueskyであなたが msgid "Owner" msgstr "オーナー" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "ページが見つかりません" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "オーナーは退出する前にグループをロックしなければなりません。" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "ビデオを一時停止" msgid "People" msgstr "ユーザー" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "{ownerName}がフォロー中の人は即座に参加できます" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "{ownerName}がフォロー中の人は参加をリクエストできます" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "@{0}がフォロー中のユーザー" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "@{0}をフォロー中のユーザー" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "フォロー中の人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "フォロー中の人はすぐに参加できます" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "フォロー中の人は参加をリクエストできます" @@ -8136,13 +8558,17 @@ msgstr "電話番号を確認しました" msgid "Photography" msgstr "写真" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "フィードをピン留め" @@ -8152,12 +8578,12 @@ msgstr "フィードをピン留め" msgid "Pin to home" msgstr "ホームにピン留め" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "ホームにピン留め" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "プロフィールに固定" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "固定" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0}をホームにピン留めしました" @@ -8236,7 +8662,7 @@ msgstr "ハンドルをお選びください。" msgid "Please choose your password." msgstr "パスワードを選択してください。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "新しいメールアドレスを確認するために送信したメールのリンクをクリックしてください。 これは、Blueskyのすべての機能を楽しみ続けるための重要なステップです。" @@ -8244,7 +8670,7 @@ msgstr "新しいメールアドレスを確認するために送信したメー msgid "Please complete the verification captcha." msgstr "CAPTCHA認証を完了してください。" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "動画をアップロードするにはメールアドレスの確認をしてください。" @@ -8265,14 +8691,14 @@ msgstr "パスワードを入力してください。8 文字以上である必 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "有効な形式のメールアドレスを入力してください。" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "一時的ではない有効なメールアドレスを入力してください。今後このメールアドレスにアクセスする必要があるかもしれません。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "以下の<0>{0}に送信したコードを入力してください。" @@ -8293,7 +8719,7 @@ msgstr "以下の<0>{0}に送信したコードを入力してください msgid "Please enter the code you received and the new password you would like to use." msgstr "受け取ったコードと、使用したい新しいパスワードを入力してください。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "前のメールアドレスに送ったセキュリティコードを入力してください。" @@ -8306,7 +8732,7 @@ msgstr "メールアドレスを入力してください。" msgid "Please enter your invite code." msgstr "招待コードを入力してください。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "新しいメールアドレスを入力してください。" @@ -8323,7 +8749,7 @@ msgstr "ユーザー名を入力してください" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "{0}によって適用されたこのラベルが誤りであると思われる理由を説明してください" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "チャットが間違って無効化されたと考える理由を説明してください" @@ -8358,7 +8784,11 @@ msgstr "この報告の理由を選択してください" msgid "Please sign in as @{0}" msgstr "@{0}としてサインインしてください" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "QRコードをスキャンするには、Blueskyモバイルアプリをご利用ください。" + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "連絡先を読み込むには、ネイティブアプリを使用してください。" @@ -8366,7 +8796,7 @@ msgstr "連絡先を読み込むには、ネイティブアプリを使用して msgid "Please use the native app to sync your contacts." msgstr "連絡先を同期するためにネイティブアプリを使用してください。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "メールアドレスを確認してください" @@ -8383,7 +8813,7 @@ msgstr "政治" msgid "Porn" msgstr "ポルノ" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "投稿" @@ -8403,12 +8833,12 @@ msgstr "写真を投稿" msgid "Post a video" msgstr "ビデオを投稿" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "すべてポスト" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "とにかく投稿する" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "ブロックされた投稿" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0}による投稿" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "投稿を削除しました" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "投稿のアップロードに失敗しました。インターネット接続を確認し、再度試してください。" @@ -8454,18 +8884,22 @@ msgstr "あなたが非表示にした投稿" msgid "Post interaction settings" msgstr "投稿への反応の設定" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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 "Blueskyに投稿したり、どこにでも共有できます。" + #. 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "リンクを投稿" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "投稿はテキスト、タグ、またはその両方に基づいてミ msgid "Posts hidden" msgstr "非表示の投稿" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "投稿、返信" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "誤解を招く可能性のあるリンク" @@ -8525,9 +8954,10 @@ msgstr "優先言語" msgid "Press to attempt reconnection" msgstr "再接続してみる" -#: src/components/Error.tsx:61 +#: 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 "再実行する" @@ -8536,7 +8966,7 @@ msgstr "再実行する" msgid "Press to view followers of this account that you also follow" msgstr "あなたもフォローしているこのアカウントのフォロワーを見る" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "プレビュー" @@ -8559,26 +8989,25 @@ msgstr "プライバシー" msgid "Privacy and security" msgstr "プライバシーとセキュリティ" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "プライバシーとセキュリティ" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "プライバシーポリシー" @@ -8586,15 +9015,15 @@ msgstr "プライバシーポリシー" msgid "Privacy violation of a minor" msgstr "未成年者のプライバシー侵害" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "GIFを処理しています…" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "ビデオを処理中…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "処理中…" @@ -8602,10 +9031,10 @@ msgstr "処理中…" msgid "profile" msgstr "プロフィール" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "プロフィール" @@ -8613,6 +9042,7 @@ msgstr "プロフィール" msgid "Profile banner placeholder" msgstr "プロファイルバナーのプレースホルダー" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "プロフィールが見つかりません" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "投稿を公開" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "投稿を公開" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "返信を公開" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "返信を公開" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "プッシュ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "プッシュ通知" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "プッシュ、全員" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "プッシュ、フォロー中の人" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QRコードをクリップボードにコピーしました" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QRコードをダウンロードしました!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QRコードをカメラロールに保存しました!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "引用の通知" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "引用の通知" msgid "Quote post" msgstr "引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "引用投稿が再び関連付けられました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "引用投稿を切り離すことができました" @@ -8711,12 +9138,12 @@ msgstr "引用投稿は無効です" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "この投稿を引用する" @@ -8728,16 +9155,16 @@ msgstr "レート制限を超えました - 短い時間でハンドルを何度 msgid "Rate limit exceeded. Please try again later." msgstr "レート制限を超えました。後でもう一度お試しください。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "招待リンクを再度有効化" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "リンクを再度有効化" @@ -8745,8 +9172,8 @@ msgstr "リンクを再度有効化" msgid "React with {emoji}" msgstr "{emoji}でリアクションする" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "反応" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "検索フィルタの使い方を読む" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "ブログ記事を読む" @@ -8812,11 +9239,11 @@ msgstr "リアルな人々。" msgid "Reason for appeal" msgstr "異議申し立ての理由" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "アプリ内通知を受け取る" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "プッシュ通知を受け取る" @@ -8841,17 +9268,31 @@ msgstr "おすすめ" msgid "Reconnect" msgstr "再接続" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "表示するいはページを更新してください。" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "拒否" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "参加リクエストを拒否" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "会話を再読み込み" @@ -8863,6 +9304,8 @@ msgstr "会話を再読み込み" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "グループ チャットから{displayName}を削除" msgid "Remove {displayName} from starter pack" msgstr "{displayName}をスターターパックから削除" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "このグループ チャットから{displayName}を削除" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "{displayName}を外しますか?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "{historyItem}を削除" @@ -8891,22 +9339,22 @@ msgstr "{historyItem}を削除" msgid "Remove account" msgstr "アカウント切替リストから取り除く" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "すべての連絡先を削除" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "添付を削除" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "アバターを削除" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "バナーを削除" @@ -8914,8 +9362,9 @@ msgstr "バナーを削除" msgid "Remove caption file" msgstr "キャプションファイルを削除" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "埋め込みを削除" @@ -8929,12 +9378,12 @@ msgstr "フィードを削除" msgid "Remove feed?" msgstr "フィードを削除しますか?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "チャットから削除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "保存済投稿から削除" msgid "Remove from your feeds?" msgstr "フィードから削除しますか?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "イメージを削除" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "リポストを削除" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "提案を削除" @@ -9009,11 +9458,11 @@ msgstr "認証を削除" msgid "Remove your verification for this account?" msgstr "このアカウントの認証を削除しますか?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "投稿者が削除しました" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "あなたが削除しました" @@ -9035,7 +9484,7 @@ msgstr "保存済投稿から削除しました" msgid "Removed from starter pack" msgstr "スターターパックから削除しました" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "あなたへの返信" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "返信" @@ -9104,14 +9552,14 @@ msgstr "返信できません" msgid "Replies to this post are disabled." msgstr "この投稿への返信は無効化されています。" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "返信する({0, plural, other {#件の返信}})" @@ -9125,10 +9573,6 @@ msgstr "返信はスレッドの投稿者によって非表示に" msgid "Reply Hidden by You" msgstr "返信はあなたによって非表示に" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "返信の通知" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "返信の設定はスレッドの投稿者によって選択されています" @@ -9137,18 +9581,18 @@ msgstr "返信の設定はスレッドの投稿者によって選択されてい msgid "Reply sorting" msgstr "返信を並び替え" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "返信の表示設定を更新しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "返信を非表示にすることができました" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "報告" @@ -9157,20 +9601,20 @@ msgstr "報告" msgid "Report account" msgstr "アカウントを報告" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "報告ダイアログ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "フィードを報告" @@ -9179,12 +9623,12 @@ msgstr "フィードを報告" msgid "Report list" msgstr "リストを報告" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "メッセージを報告" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "投稿を報告" @@ -9199,8 +9643,8 @@ msgstr "スターターパックを報告" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "報告を送信しました" @@ -9213,7 +9657,7 @@ msgstr "この会話を報告" msgid "Report this feed" msgstr "このフィードを報告" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "このグループチャットを報告" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "このリストを報告" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "このライブ配信を報告する" @@ -9256,10 +9700,6 @@ msgstr "リポスト" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "リポストする({0, plural, other {#件のリポスト}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "リポストの通知" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "あなたのリポスト" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "リポスト" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "この投稿をリポストする" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "リポストのリポスト" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "リポストのリポストの通知" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "リクエストは無視されました。" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "参加リクエスト" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "リクエスト済" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "リクエスト" +#: src/Navigation.tsx:501 +#: 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 "画像投稿時にALTテキストを必須とする" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "アカウントにサインインするにはメールの確認コードが必要です。" @@ -9328,7 +9791,17 @@ msgstr "このプロバイダーに必要" msgid "Required in your region" msgstr "あなたの地域では必要" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "再送する" @@ -9373,8 +9846,8 @@ msgstr "オンボーディングの状態をリセット" msgid "Reset password" msgstr "パスワードをリセット" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "連絡先を再同期" @@ -9391,17 +9864,18 @@ msgstr "エラーになった最後のアクションをやり直す" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "エラーになった最後のアクションをやり直す" msgid "Retry" msgstr "再試行" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "報告オプションの読み込みを再試行する" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "前のページに戻る" @@ -9451,10 +9925,10 @@ msgstr "悲しいGIF" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "生年月日を保存" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "変更を保存" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "変更を保存しますか?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "下書きを保存" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "下書きを保存しますか?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "画像を保存" msgid "Save new handle" msgstr "新しいハンドルを保存" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QRコードを保存" @@ -9518,13 +9994,13 @@ msgstr "QRコードを保存" msgid "Save these options for next time" msgstr "これらのオプションを次回のために保存する" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "マイフィードに保存" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "保存済" @@ -9534,25 +10010,25 @@ msgstr "保存済" msgid "Saved Feeds" msgstr "保存されたフィード" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "保存済投稿" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "フィードを保存しました" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "よろしく!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "誰かに挨拶してみよう" @@ -9560,6 +10036,16 @@ msgstr "誰かに挨拶してみよう" 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:316 +msgid "Scan QR code" +msgstr "QRコードをスキャン" + #: src/lib/interests.ts:71 msgid "Science" msgstr "科学" @@ -9576,18 +10062,18 @@ msgstr "右にスクロール" msgid "Scroll to top" msgstr "一番上までスクロール" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "検索" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0}の投稿を検索" @@ -9662,12 +10148,12 @@ msgstr "言語を選択" msgid "Search my posts" msgstr "自分の投稿を検索" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "投稿を検索" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "プロフィールを検索" msgid "Search..." msgstr "検索…" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "セキュリティのステップが必要" @@ -9759,7 +10245,7 @@ msgstr "{langName}を選択" msgid "Select a color" msgstr "色を選択" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "理由を選択" @@ -9828,7 +10314,7 @@ msgstr "GIFを選ぶ" msgid "Select GIF \"{0}\"" msgstr "GIF「{0}」を選ぶ" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "グループチャットのメンバーを選択" @@ -9850,7 +10336,7 @@ msgstr "言語を選択…" msgid "Select languages" msgstr "言語を選択" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "モデレーションサービスを選択" @@ -9904,11 +10390,11 @@ msgstr "次のオプションから興味のあるものを選択してくださ msgid "Select your preferred language for translations in your feed." msgstr "フィード内の翻訳に使用する言語を選択します。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "お好みの通知チャンネルを選択してください" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "複数のメディアタイプの選択はサポートされていません。" @@ -9921,9 +10407,9 @@ msgstr "自傷または危険行為" msgid "Send code" msgstr "コードを送信" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "メールを送信" @@ -9935,11 +10421,11 @@ msgstr "メールを送信" msgid "Send error report" msgstr "エラーレポートを送信" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "フィードバックを送信" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "メッセージを送信" @@ -9952,7 +10438,7 @@ msgstr "投稿を {name} に送る" msgid "Send post to..." msgstr "投稿を送る…" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "{title}に報告を送信" @@ -9960,7 +10446,7 @@ msgstr "{title}に報告を送信" msgid "Send the message from your phone" msgstr "携帯電話からメッセージを送信する" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "ダイレクトメッセージで送信" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "{0}に送信しました" @@ -10015,14 +10501,14 @@ msgstr "下記に生年月日を設定すると、すぐに投稿や閲覧に戻 msgid "Sets email for password reset" msgstr "パスワードをリセットするためのメールアドレスを入力" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "設定" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "他のユーザーのアクティビティの通知の設定" @@ -10030,39 +10516,39 @@ msgstr "他のユーザーのアクティビティの通知の設定" msgid "Settings for allowing others to be notified of your posts" msgstr "あなたの投稿の通知を他のユーザーが受け取るのを許可する設定" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "いいねの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "メンションの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "新しいフォロワーの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "その他すべての通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "リポストへのいいねの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "リポストのリポストの通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "引用の通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "返信の通知の設定" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "リポストの通知の設定" @@ -10079,16 +10565,19 @@ msgstr "性的行為または性的なヌード。" msgid "Sexually Suggestive" msgstr "性的にきわどい" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "共有" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "とにかく共有" @@ -10097,16 +10586,21 @@ msgstr "とにかく共有" msgid "Share author DID" msgstr "著者DIDを共有" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "リンクを共有" @@ -10114,6 +10608,11 @@ msgstr "リンクを共有" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "投稿のat:// URIをコピー" msgid "Share QR code" msgstr "QRコードを共有" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "このフィードを共有" @@ -10142,8 +10641,8 @@ msgstr "このスターターパックを共有して、他のユーザーがBlu #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "共有…" @@ -10151,7 +10650,7 @@ msgstr "共有…" msgid "Share your contacts to find friends" msgstr "連絡先を共有して友達を見つける" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Shared Preferencesのテスター" @@ -10167,16 +10666,16 @@ msgstr "ALTテキストを表示" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "とにかく表示" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "自動化ラベルを表示" @@ -10197,8 +10696,8 @@ msgstr "カスタマイズオプションを表示" msgid "Show group chat updates" msgstr "グループチャットの更新を表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "このような投稿の表示を減らす" @@ -10219,8 +10718,8 @@ msgstr "Discoverフィードでライブイベントを表示" msgid "Show More" msgstr "さらに表示" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "このような投稿の表示を増やす" @@ -10246,8 +10745,8 @@ msgstr "返信を表示" msgid "Show replies as" msgstr "返信の表示方法" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "返信を全員に見せる" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "警告の表示とフィードからのフィルタリング" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "ライブ状態を表示" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "この投稿がいつ作成されたかについての情報を表示する" @@ -10297,15 +10796,17 @@ msgstr "コンテンツを表示" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "サインインまたはアカウントを作成" msgid "Sign in or create your account to join the conversation!" msgstr "会話に参加するにはサインインするか新しくアカウントを登録してください!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "サインインして招待を受け入れる。" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "リストにないアカウントにサインイン" @@ -10337,8 +10842,12 @@ msgstr "リストにないアカウントにサインイン" msgid "Sign in to Bluesky or create a new account" msgstr "Blueskyにサインイン または 新規アカウントの登録" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "サインインして投稿を表示" @@ -10348,9 +10857,9 @@ msgstr "サインインして投稿を表示" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "サインアウト" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "サインアウト" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "サインアウトしますか?" @@ -10391,7 +10900,7 @@ msgstr "スキップ" msgid "Skip contact sharing and continue to the app" msgstr "連絡先の共有をスキップしてアプリに進む" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "空の投稿をスキップしますか?" @@ -10405,7 +10914,7 @@ msgstr "チュートリアルをスキップしてアカウントの使用を開 msgid "Skip to next step" msgstr "次のステップへスキップ" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "スライド" @@ -10413,7 +10922,7 @@ msgstr "スライド" msgid "Smaller" msgstr "小さい" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "リマインダーをスヌーズ" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "誰かがグループから退出しました" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "誰かが{0}とリアクションしました" @@ -10487,17 +10996,22 @@ msgstr "誰かが削除されました" msgid "Someone was removed from the group" msgstr "誰かがグループから外されました" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "何らかの問題が発生したようです!" msgid "Something went wrong. Please try again in a moment." msgstr "問題が発生しました。しばらくしてからもう一度お試しください。" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "問題が発生しました。もう一度お試しください。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "何か問題がありますか?お知らせください。" @@ -10564,11 +11078,16 @@ msgstr "スパム、その他の不正・欺瞞的行為" msgid "Sports" msgstr "スポーツ" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "会話を開始すると、ここに表示されます。" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "新しいチャットを開始" @@ -10582,17 +11101,17 @@ msgstr "ユーザーを追加する" msgid "Start adding people!" msgstr "ユーザーを追加して!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "チャットを開始" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "{displayName}とのチャットを開始" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "スターターパック" @@ -10654,12 +11173,12 @@ msgstr "ストレージがクリアされたため、今すぐアプリを再起 msgid "Stored as part of a secure code for matching with others" msgstr "他のユーザーとのマッチングのため、セキュアなコードの一部として保存されます" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "ストーリーブック" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Twitchで配信中ですか?Blueskyのライブステータスを設定して、アバターにバッジを追加しましょう。タップすると、あなたのストリームに直接ユーザーがアクセスできます。" @@ -10671,8 +11190,8 @@ msgstr "Twitchで配信中ですか?Blueskyのライブステータスを設 #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "送信" @@ -10684,9 +11203,9 @@ msgstr "異議申し立てを送信" msgid "Submit Appeal" msgstr "異議申し立てを送信" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "報告を送信" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "登録" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "{0}を購読" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0}の{publicationTitle}を購読" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "成功" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "成功!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "グループチャットに参加できました!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "正常に認証されました" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "おすすめ" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "サンセット" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "サポート" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "お住まいの国ではこの機能がサポートされていません!後でもう一度確認してください。" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "停止中のアカウントはグループチャットに参加できません。" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "停止中のアカウントはチャットに参加できません。" #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "アカウントを切り替える" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "アカウントを切り替える" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "{0}へ切り替える" @@ -10824,11 +11347,15 @@ msgstr "システムログ" 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 "下をタップするとBlueskyがGPSの位置情報にアクセスできるようになります。 その後、そのデータを使用して、お住まいの地域で利用可能なコンテンツと機能をより正確に決定します。" -#: src/components/dms/MessageItem.tsx:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "タップして詳細を表示" @@ -10854,33 +11381,51 @@ msgstr "タップして、これらの更新を理解して同意し、Bluesky 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:163 msgid "Tap to dismiss" msgstr "タップして消す" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "タップして削除" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "タップしてリアクション{0}を削除" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "タップしてこのグループチャットへの参加をリクエストします" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "タップして再試行" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "タップして{0}のリアクションを表示" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "タップしてすべてのリアクションを表示" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "タップしてリアクションを表示" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "利用規約" @@ -10939,7 +11484,7 @@ msgstr "テキストとタグ" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "テキストの入力フィールド" @@ -10981,9 +11526,9 @@ msgstr "以上です、皆さん!" msgid "That's everything!" msgstr "これで全部です!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "このアカウントは、ブロック解除後にあなたとやり取りすることができます。" @@ -11049,6 +11594,11 @@ msgstr "新しい投稿を作成する場合、以下の設定がデフォルト 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "メンバーの上限に達しました。" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "返信した投稿は、作成者によって {suggestedLanguageName}で書かれていると設定されています。<0>{suggestedLanguageName}で返信しますか?" @@ -11057,10 +11607,10 @@ msgstr "返信した投稿は、作成者によって {suggestedLanguageName}で msgid "The Privacy Policy has been moved to <0/>" msgstr "プライバシーポリシーは<0/>に移動しました" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "選択したビデオが {videoSize} MBより大きいです。小さいファイルでもう一度やり直してください。" +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "選択したビデオが{VIDEO_MAX_SIZE_MB} MBより大きいです。小さいファイルでもう一度やり直してください。" #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "テーマ" 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 "生年月日を変更できる頻度に制限があります。再度更新する前に1日か2日待つ必要があるかもしれません。" -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "このグループチャットの招待リンクはありません。" @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "GIF の読み込み中に問題が発生しました。接続を確認して、もう一度やり直してください。" #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "インターネット接続に問題が発生しました。もう一度 msgid "There was an issue contacting the server" msgstr "サーバーへの問い合わせ中に問題が発生しました" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "サーバーへの問い合わせ中に問題が発生したので、インターネットへの接続を確認の上、もう一度試してください。" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" @@ -11161,31 +11714,31 @@ msgstr "サービス情報の取得中に問題が発生しました" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "フィードの削除中に問題が発生しました。インターネットへの接続を確認の上、もう一度試してください。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "問題が発生しました! {0}" @@ -11221,6 +11774,14 @@ msgstr "これらはデフォルトの設定です" msgid "These settings only apply to the Following feed." msgstr "これらの設定はFollowingフィードにのみ適用されます。" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "彼らはこのチャットのオーナーです" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "再度招待しないと再び参加することはできません。" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "この{screenDescription}にはフラグが設定されています:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "この申し立ては<0>{sourceName}に送られます。" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "この異議申し立てはBlueskyのモデレーション・サービスに送られます。" @@ -11263,7 +11824,7 @@ msgstr "この異議申し立てはBlueskyのモデレーション・サービ msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "この投稿者は、サインインしている人にのみ投稿を表示するように設定しています。" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "このボタンを他のユーザーがクリックすると、Germ DMアプリを開いてあなたにメッセージを送信できます。 Germ DMアプリから見えるかどうかを管理できます。 また、下のボタンをクリックすることでBlueskyアカウントをGerm DMから完全に切断することもできます。" @@ -11271,11 +11832,21 @@ msgstr "このボタンを他のユーザーがクリックすると、Germ DM msgid "This chat has ended" msgstr "このチャットは終了しました" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "このチャットは満員です" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "このチャットはロックされています" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "このチャットはモデレーション処置によりロックされています" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "このチャットは切断されました" @@ -11310,7 +11881,11 @@ msgstr "このコンテンツは関係するユーザーの一方が他方をブ msgid "This content is not viewable without a Bluesky account." msgstr "このコンテンツはBlueskyのアカウントがないと閲覧できません。" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "削除あるいは無効化されたアカウントとの会話です。押すと選択肢が表示されます" @@ -11318,7 +11893,7 @@ msgstr "削除あるいは無効化されたアカウントとの会話です。 msgid "This draft will be permanently deleted." msgstr "この下書きは完全に削除されます。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "このメールアドレスはすでにあなたのアカウントと関連付けられています。" @@ -11356,11 +11931,15 @@ msgstr "このフィードは空です。" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "このフィードはもはやオンラインではありません。代わりに<0>Discoverを表示しています。" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "この画像は使用できませんでした。.jpgまたは.pngのような別の形式で試してください。" @@ -11368,6 +11947,14 @@ msgstr "この画像は使用できませんでした。.jpgまたは.pngのよ msgid "This information is private and not shared with other users." msgstr "この情報はプライベートで他のユーザーと共有されません。" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "この招待リンクは無効化されました。" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "この招待リンクは無効です" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "これは空の状態です" @@ -11377,7 +11964,7 @@ msgstr "これは空の状態です" msgid "This is not a valid link" msgstr "有効なリンクではありません" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "このラベルは、このアカウントが自動化されていることを示します。有効化すると、ラベルがアカウントのプロフィールと投稿でアカウント名の横に表示されます。いつでも有効化や無効化できます。" @@ -11410,13 +11997,17 @@ msgstr "あなたが作成したこのリストは名前または説明がBluesk msgid "This list is empty." msgstr "このリストは空です。" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "このメッセージは非表示です" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "このユーザーがあなたをブロックしているため、このメッセージは非表示です。" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "このユーザーをブロックしているため、このメッセージは非表示です。" @@ -11434,7 +12025,7 @@ msgstr "このユーザーはあなたをブロックしています" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "<0>{0}に投稿されたと表示されていますが、Blueskyに初めて登場したのは<1>{1}です。" @@ -11450,23 +12041,24 @@ msgstr "この投稿はログイン中のユーザーにのみ表示されます msgid "This post was deleted by its author" msgstr "この投稿は投稿者によって削除されました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "この投稿の投稿者は引用投稿を無効にしています。" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "この画面はグループ会話でのみ利用できます。" @@ -11490,22 +12082,22 @@ msgstr "これには数分かかるはずです。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "このユーザーには表示名がないため認証できません。" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "このユーザーにはフォロワーがいません。" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "このユーザーはあなたをブロックしているため、メッセージを送信できません。" #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 msgid "This user has blocked you. You cannot view their content." msgstr "このユーザーはあなたをブロックしているため、あなたはこのユーザーのコンテンツを閲覧できません。" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "このユーザーはチャットを無効にしているため、メッセージできません。" #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "あなたのBlueskyアカウント <0>{currentHandle}と関連する msgid "This will remove @{0} from the quick access list." msgstr "クイックアクセスのリストから@{0}を削除します。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "これによってあなたの投稿が全員に見える引用投稿からは削除され、プレースホルダーに置き換えられます。" @@ -11574,7 +12166,7 @@ msgstr "スレッドの設定" msgid "Threaded" msgstr "スレッド" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "スレッドの設定" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "メールでの2要素認証を無効にするには、メールアドレスにアクセスできるか確認してください。" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "メールでの2要素認証を無効にするには、<0>{0}にアクセスできるか確認してください" @@ -11646,16 +12238,16 @@ msgstr "トップ" msgid "Top replies first" msgstr "トップの返信を最初に" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "トピック" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "翻訳" @@ -11667,8 +12259,8 @@ msgstr "翻訳" msgid "Translating" msgstr "翻訳中" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "翻訳中…" @@ -11702,7 +12294,7 @@ msgstr "話題のビデオ" msgid "Trolling" msgstr "トローリング(荒らし)" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信頼は人間関係、コミュニティ、共有されている文脈から得られるため、<0>信頼できる認証者(認証を直接発行できる組織)を有効にしています。" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "他の単語で検索を試してください。または、<0>検索フィルタの使い方を読んでください。" +#: 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:170 +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 "Google翻訳を試す" +#: 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 "テレビ" @@ -11763,13 +12369,17 @@ msgstr "あなたのサービスに接続できません。インターネット msgid "Unable to delete" msgstr "削除できません" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "参加リクエストを取得できませんでした。" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "選択した受信者を見つけられません。" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "選択した受信者が見つけられません。" #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "利用不可" msgid "Unavailable feed information" msgstr "フィードの情報が利用できません" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "ブロックを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "ブロックを解除" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "{displayName}のブロックを解除" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "アカウントのブロックを解除" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "アカウントのブロックを解除しますか?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "アカウントのブロックを解除しますか?" @@ -11837,8 +12452,8 @@ msgstr "リストのブロックを解除" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "元に戻す" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "リポストを元に戻す({0, plural, other {#件のリポスト}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0}のフォローを解除" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "アカウントのフォローを解除" @@ -11872,7 +12487,7 @@ msgstr "アカウントのフォローを解除" msgid "Unfollows the user" msgstr "ユーザーのフォローを解除" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "残念ながら、登録しているラベラーはどれもこのタイプの報告をサポートしていません。" @@ -11884,14 +12499,6 @@ msgstr "残念ながら、あなたがプロフィールに設定した生年月 msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "残念ながら、宣言された年齢は、お住まいの地域でBlueskyにアクセスできる年齢に達していないことを示しています。" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "招待を取消" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "このグループチャットの{displayName}への招待を取消" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "不明な認証" @@ -11904,21 +12511,21 @@ msgstr "ラベルのない成人向けコンテンツ" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "ラベルなし、虐待的、または合意のない成人向けコンテンツ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "いいねを外す({0, plural, other {#件のいいね}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "チャットのロックを解除" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "このグループチャットのロックを解除" @@ -11939,14 +12546,14 @@ msgstr "ミュートを解除" msgid "Unmute {0}" msgstr "{0} のミュートを解除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "アカウントのミュートを解除" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "会話のミュートを解除" @@ -11955,12 +12562,12 @@ msgstr "会話のミュートを解除" msgid "Unmute list" msgstr "リストのミュートを解除" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "このグループチャットのミュートを解除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "スレッドのミュートを解除" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "ピン留めを解除" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "フィードのピン留めを外す" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "ホームからピン留めを解除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "プロフィールから固定を解除" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "モデレーションリストのピン留めを解除" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0}のピン留めを解除しました" @@ -12030,14 +12637,18 @@ msgstr "このラベラーの登録を解除" msgid "Unsubscribed from list" msgstr "リストの登録を解除しました" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "サポートされていなクリップボードのコンテンツ" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "サポートしていないビデオ形式:{mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "最大50人" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,16 +12658,20 @@ msgstr "更新する" msgid "Update <0>{displayName} in Lists" msgstr "リストの<0>{displayName}を更新" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "アプリを更新" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "メールアドレスの更新" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "招待リンクを更新" @@ -12065,11 +12680,15 @@ msgstr "招待リンクを更新" msgid "Update to {domain}" msgstr "{domain}に更新" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "アプリを最新バージョンに更新して参加しましょう!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "アプリを更新してください" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "表示するにはアプリを更新してください。" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "メールアドレスの更新" @@ -12080,17 +12699,17 @@ msgstr "メールアドレスの更新" msgid "Update your location" msgstr "位置情報を更新" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "引用の添付の更新に失敗しました" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "返信の表示設定の更新に失敗しました" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "代わりに写真をアップロード" @@ -12098,39 +12717,40 @@ msgstr "代わりに写真をアップロード" msgid "Upload a text file to:" msgstr "テキストファイルのアップロード先:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "GIFをアップロード中…" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "画像をアップロード中…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "リンクのサムネイルをアップロード中…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "ビデオをアップロード中…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "ユーザー" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "ユーザーをブロックしました" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "<0/>の作成したユーザーリスト" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "{0} によるユーザーリスト" @@ -12255,12 +12875,12 @@ msgstr "<0>@{0}にフォローされているユーザー" msgid "users following <0>@{0}" msgstr "<0>@{0}をフォローしているユーザー" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "フォローしているユーザー" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "フォローしているユーザー" @@ -12277,7 +12897,7 @@ msgstr "認証に失敗しました。再度試してください。" msgid "Verification settings" msgstr "認証設定" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "認証設定" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "コードを確認する" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNSレコードを確認" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "メールのコードを確認" @@ -12349,7 +12969,7 @@ msgstr "このアカウントを認証しますか?" msgid "Verify your age" msgstr "年齢を認証する" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "バージョン {0}" msgid "Video" msgstr "ビデオ" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "ビデオの処理に失敗" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "ビデオフィード" @@ -12419,7 +13039,7 @@ msgstr "ビデオが見つかりません。" msgid "Video settings" msgstr "ビデオの設定" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "ビデオをアップロードしました" @@ -12432,18 +13052,18 @@ msgstr "ビデオ:{0}" msgid "Videos" msgstr "ビデオ" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "ビデオは3分未満でなければなりません。" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "{0}を表示" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "{0}のプロフィールを表示" @@ -12467,20 +13087,15 @@ msgstr "{0}のプロフィールを表示" msgid "View {0}’s profile" msgstr "{0}のプロフィールを見る" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "{displayName}のプロフィールを見る" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "{publicationTitle}を表示" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "@{0}のプロフィールを表示" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "ブロック中のユーザーのプロフィールを表示" @@ -12503,10 +13118,18 @@ msgstr "詳細を表示" msgid "View full thread" msgstr "スレッドをすべて表示" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "これらのラベルに関する情報を見る" @@ -12522,7 +13145,7 @@ msgstr "もっと表示" msgid "View more trending videos" msgstr "話題のビデオをもっと見る" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "投稿を表示" @@ -12539,10 +13162,10 @@ msgstr "プロフィールを表示" msgid "View profile banner" msgstr "プロフィールのバナーを見る" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "媒体を表示" @@ -12550,7 +13173,7 @@ msgstr "媒体を表示" msgid "View the avatar" msgstr "アバターを表示" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "このグループチャットの招待リンクを表示" @@ -12563,7 +13186,7 @@ msgstr "@{0}によって提供されるラベリングサービスを見る" msgid "View this user's verifications" msgstr "このユーザーの認証情報を表示" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "このフィードにいいねしたユーザーを見る" @@ -12596,8 +13219,8 @@ msgstr "ミュートしたアカウントを見る" msgid "View your verifications" msgstr "あなたの認証情報を表示" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "画像全体を表示" @@ -12640,8 +13263,8 @@ msgstr "コンテンツの警告" msgid "Warn content and filter from feeds" msgstr "コンテンツの警告とフィードからのフィルタリング" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "今すぐ見る" @@ -12665,11 +13288,15 @@ msgstr "そのタグの検索結果は見つかりませんでした。" msgid "We couldn't find any results for that topic." msgstr "そのトピックについての検索結果は見つかりませんでした。" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "この会話を読み込めませんでした" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "この会話の設定を読み込めませんでした" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "すくなくとも2つの「気になること」を選択するのをお勧めします。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0}にリンクが含まれているメールを送信しました。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "あなたがビデオのアップロードを許可されているかどうか判断できません。もう一度お試しください。" @@ -12744,12 +13371,12 @@ msgstr "接続に問題が発生したため、認証を受け取ることがで msgid "We will let you know when your account is ready." msgstr "アカウントの準備ができたらお知らせします。" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "お友達を見つけたらお知らせします。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0}にリンクが含まれているメールを送信します。メールアドレスの確認プロセスを完了するために、そのリンクをクリックしてください。" @@ -12779,12 +13406,12 @@ msgstr "あなたのアカウントの年齢保証手順の初期化に問題が msgid "We're having network issues, try again" msgstr "ネットワークで問題が発生しています。もう一度試してください" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "ネットワークで問題が発生しています。もう一度試してください" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Blueskyに新しい認証方式を導入しました。見やすいチェックマークです。" @@ -12814,12 +13441,12 @@ msgstr "大変申し訳ありませんが、検索を完了できませんでし msgid "We're sorry, you cannot access this screen at this time." msgstr "申し訳ありませんが、現時点ではこの画面にアクセスできません。" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "大変申し訳ありません!お探しのページは見つかりません。" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "あなたのスターターパックを何と呼びたいですか?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "最近どう?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "チェックをタップすると、どの組織が認証を与えているかが表示されます。" @@ -12878,7 +13505,7 @@ msgstr "チェックをタップすると、どの組織が認証を与えてい msgid "Who can interact with this post?" msgstr "誰がこの投稿に反応できますか?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "誰がどのようにこのグループチャットに参加できるか" @@ -12887,13 +13514,13 @@ msgstr "誰がどのようにこのグループチャットに参加できるか msgid "Who can reply" msgstr "返信できるユーザー" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "誰が認証できますか?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "おっと!" @@ -12939,19 +13566,19 @@ msgstr "なぜこのスターターパックをレビューする必要があり msgid "Why should this user be reviewed?" msgstr "なぜこのユーザーをレビューする必要がありますか?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: 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 "" +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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "後で編集するためにこれを下書きとして保存しますか?" @@ -12960,12 +13587,12 @@ msgstr "後で編集するためにこれを下書きとして保存しますか msgid "Write a post" msgstr "投稿を書く" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "投稿を書く" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "返信を書く" @@ -12978,7 +13605,8 @@ msgstr "ライター" msgid "Wrong DID returned from server. Received: {0}" msgstr "サーバーから間違ったDIDが送られてきました。受信したもの:{0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "会話の種類が正しくありません" @@ -13005,11 +13633,11 @@ msgstr "はい、アカウントを削除します" msgid "Yes, delete this starter pack" msgstr "はい、このスターターパックを削除します" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "はい、切り離します" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "はい、非表示にします" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "{0}をブロックしています" @@ -13068,7 +13696,7 @@ msgstr "ライブ中" msgid "You are no longer live" msgstr "もうライブ中ではありません" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "あなたはビデオのアップロードを許可されていません。" @@ -13117,21 +13745,30 @@ msgstr "いつでもオプトアウトしてデータを削除することがで msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "アプリ内のチャット設定でチャット通知の音の有無を選択できます" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "どの設定を選択しても進行中の会話は続けることができます。" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "リンクやQRコードで友達を招待できるようになりました。リンクをどこにでも共有したり、コードをスキャンしてもらってBlueskyに参加してもらいましょう。" + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "新しいパスワードでサインインできるようになりました。" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "下書きは最大で1000文字です。" @@ -13139,11 +13776,11 @@ msgstr "下書きは最大で1000文字です。" msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "下書きは最大で1000文字です。下書きを表示する前にこの投稿を履きしますか?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "一度に1つのGIFしか選択できません。" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "一度に1つのビデオしか選択できません。" @@ -13155,10 +13792,10 @@ msgstr "アカウントを再有効化してログインし続けることがで 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "合計で{MAX_IMAGES, plural, other {#枚の画像}}まで選択できます。" +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "合計で{MAX_IMAGES, plural, other {#枚の画像}}まで選択でき msgid "You can update this later from your settings." msgstr "これは設定画面から後で変更できます。" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "最大で{EMOJI_REACTION_LIMIT, plural, other {#文字の絵文字リアクション}}までしか追加できません" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "あなたはまだグループチャットを作成できません。" #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "保存されたフィードがありません。" msgid "You got here first" msgstr "あなたが最初にここにやって来ました" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "あなたは以前このグループから外されており、このリンクを使用して参加できません。" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "メールアドレスの確認に成功しました。このダイアロ msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "ビデオのアップロードの制限に一時的に到達しました。時間をおいてもう一度お試しください。" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "この下書きに未保存の変更があります。保存しますか?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "メンバーを外すには、チャットのオーナーでなければなりません。" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Blueskyを使用するには、13歳以上である必要があります。詳細については、<0>利用規約をご覧ください。" @@ -13332,11 +13982,12 @@ msgstr "Blueskyを使用するには、13歳以上である必要があります msgid "You must be following at least seven other people to generate a starter pack." msgstr "スターターパックを作成するには、少なくとも7人をフォローしなければなりません。" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "メディアライブラリへのアクセスを許可する必要があります。" @@ -13344,6 +13995,10 @@ msgstr "メディアライブラリへのアクセスを許可する必要があ msgid "You need to verify your email address before you can enable email 2FA." msgstr "2要素認証メールを有効にする前に、メールアドレスを確認する必要があります。" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "あなたはこのチャットのオーナーです" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "今すぐアプリを再起動したほうが良いでしょう。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "あなたは{0}とリアクションしました" @@ -13368,8 +14023,13 @@ msgstr "あなたは{target}に{0}とリアクションしました" msgid "You recently changed your birthdate" msgstr "最近、生年月日を変更しました" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "参加をリクエストしました" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "すべてのアカウントからサインアウトします。" @@ -13378,11 +14038,11 @@ msgstr "すべてのアカウントからサインアウトします。" msgid "You will no longer receive notifications for {0}" msgstr "{0}の通知を受信しなくなります" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "これ以降、このスレッドに関する通知を受け取ることはできなくなります" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "これ以降、このスレッドに関する通知を受け取ることができます" @@ -13390,12 +14050,12 @@ msgstr "これ以降、このスレッドに関する通知を受け取ること 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "あなた: {message}" @@ -13429,6 +14089,10 @@ msgstr "{0}の通知を受信し始めます!" msgid "You'll stay updated with these feeds" 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 "あなたは並んでいます。" @@ -13463,7 +14127,7 @@ msgstr "アクティブなコンテンツの最後に到達しました。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "下書きの数の上限に達しました" @@ -13475,11 +14139,11 @@ msgstr "リクエスト数の上限に達しました。後でもう一度お試 msgid "You've reached the start of the active content." msgstr "アクティブなコンテンツの先頭に移動しました。" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "ビデオのアップロードの一日の上限に到達しました(容量が大きすぎます)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "ビデオのアップロードの一日の上限に到達しました(ビデオの数が多すぎます)" @@ -13499,10 +14163,18 @@ msgstr "あなたのアカウントは削除されました。またね! ✌ msgid "Your account has been suspended" msgstr "あなたのアカウントは停止されています" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "あなたのアカウントは作成して間もないため動画をアップロードできません。もう一度お試しください。" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "あなたのアカウントは新しすぎます" + +#: src/components/dms/InitiateChatFlow.tsx:732 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "新しいグループチャットを作るにはアカウントを作って少なくとも7日経ってなくてはなりません。" + #: 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 "あなたのアカウントの公開データの全記録を含むリポジトリは、「CAR」ファイルとしてダウンロードできます。このファイルには、画像などのメディア埋め込み、また非公開のデータは含まれていないため、それらは個別に取得する必要があります。" @@ -13519,7 +14191,7 @@ msgstr "あなたの異議申し立てが送信されました。異議申し立 msgid "Your birth date" msgstr "生年月日" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "あなたのチャットは無効化されています" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "あなたの連絡先 {firstAuthorLink} はBlueskyにいます" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "あなたの連絡先 {firstAuthorName} はBlueskyにいます" @@ -13561,7 +14233,7 @@ msgstr "あなたのメールアドレス" msgid "Your email appears to be invalid." msgstr "メールアドレスが無効なようです。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "あなたのメールアドレスはまだ確認されていません。Blueskyのすべての機能を楽しむためにあなたのメールアドレスを確認してください。" @@ -13582,7 +14254,7 @@ msgstr "Followingフィードは空です!もっと多くのユーザーをフ msgid "Your full handle will be <0>@{0}" msgstr "フルハンドルは<0>@{0}になります" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "位置情報が更新されました。" msgid "Your muted words" msgstr "ミュートしたワード" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -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." @@ -13623,11 +14295,11 @@ msgstr "パスワードが正常に変更されました!これからBluesky msgid "Your password must be at least 8 characters long." msgstr "パスワードは 8 文字以上である必要があります。" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "投稿が送信されました" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "投稿が送信されました" @@ -13635,7 +14307,7 @@ msgstr "投稿が送信されました" msgid "Your preferred language" msgstr "あなたの主要言語" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "あなたのプロフィール画像" @@ -13648,12 +14320,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 "あなたのプロフィール、投稿、フィード、そしてリストは他のBlueskyユーザーに見えなくなります。ログインすることでいつでもアカウントを再有効化できます。" -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "返信が送信されました" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "報告は <0>{0}に送信されます。" @@ -13661,7 +14333,7 @@ msgstr "報告は <0>{0}に送信されます。" msgid "Your selected interests help us serve you content you care about." msgstr "「気になること」は興味を引くコンテンツを提供するために役立てます。" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 6222504579..c24d6c9f64 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Kabyle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:203 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:639 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" msgid "{0}s" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:427 +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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:811 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,13 +645,13 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:33 -msgid "{memberCount}/{MEMBER_LIMIT}" +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" msgstr "" #: src/features/liveNow/utils.ts:10 @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,6 +870,13 @@ 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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -802,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -825,7 +907,11 @@ msgstr "" 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/Navigation.tsx:547 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -837,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:452 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -854,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -872,15 +977,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -893,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -993,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1006,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1505 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2168 msgid "Add another post to thread" msgstr "" @@ -1029,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1037,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1046,7 +1147,7 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" @@ -1056,8 +1157,8 @@ msgstr "" msgid "Add members" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:528 #: src/components/moderation/ReportDialog/index.tsx:532 -#: src/components/moderation/ReportDialog/index.tsx:536 msgid "Add more details (optional)" msgstr "" @@ -1074,8 +1175,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 #: src/screens/ProfileList/AboutSection.tsx:72 #: src/screens/ProfileList/AboutSection.tsx:90 msgid "Add people" @@ -1085,6 +1186,10 @@ msgstr "" 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 "" @@ -1133,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1159,11 +1264,11 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:550 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 msgid "Admin" msgstr "" @@ -1222,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1235,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1272,13 +1377,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1332,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1356,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1381,7 +1486,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "" @@ -1416,6 +1521,7 @@ msgid "An error occurred while loading your lists :/" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1426,11 +1532,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1450,25 +1556,29 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: src/screens/Messages/components/InviteLinkDialog.tsx:190 +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:56 -msgid "An issue occurred creating the group chat, please try again" +#: 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:42 -msgid "An issue occurred starting the chat, please try again" +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +msgid "An issue occurred starting the chat, please try again." msgstr "" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 @@ -1479,12 +1589,12 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1533,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 msgid "Anyone can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 msgid "Anyone can request to join" msgstr "" @@ -1549,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: src/screens/Messages/components/InviteLinkDialog.tsx:458 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1591,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1612,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "" @@ -1626,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1651,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1669,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1682,23 +1796,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1718,8 +1838,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1746,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1761,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1777,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1790,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1826,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1834,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 msgid "Before you can message another user, you must first verify your email." msgstr "" @@ -1868,53 +1991,53 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:147 -msgid "Block and Delete" +#: 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:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1922,20 +2045,29 @@ msgstr "" msgid "Block these accounts?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:188 -#: src/components/dms/AfterReportDialog.tsx:191 +#: 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 "" -#: src/components/dms/AfterReportDialog.tsx:153 -msgid "Block User" +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:184 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:196 +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -1943,14 +2075,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1966,7 +2096,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -1979,7 +2109,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2008,7 +2138,7 @@ msgstr "" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2016,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2032,7 +2166,7 @@ msgstr "" 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2060,6 +2194,10 @@ msgstr "" 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" @@ -2116,24 +2254,34 @@ msgstr "" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:853 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:174 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2160,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2171,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2191,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2207,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2227,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "" @@ -2243,7 +2400,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2276,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:449 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2289,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:314 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:394 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2323,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2340,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2352,31 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:199 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:82 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2393,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:201 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2454,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 msgid "Choose who can join this group chat and how." msgstr "" @@ -2508,7 +2684,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:126 msgid "Click here to add people to this group chat" msgstr "" @@ -2516,7 +2692,7 @@ msgstr "" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 msgid "Click here to create or manage an invite link for this group chat" msgstr "" @@ -2533,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2542,11 +2718,11 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:141 msgid "Click here to view the invite link for this group chat" msgstr "" @@ -2555,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "" @@ -2569,24 +2745,30 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 -#: src/components/dms/AfterReportDialog.tsx:93 -#: src/components/dms/AfterReportDialog.tsx:98 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2594,14 +2776,14 @@ msgstr "" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 #: src/screens/Settings/components/ChangePasswordDialog.tsx:288 #: src/screens/Settings/components/ChangePasswordDialog.tsx:293 #: src/view/com/feeds/MissingFeed.tsx:211 @@ -2610,7 +2792,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2618,6 +2800,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2628,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "" @@ -2643,17 +2831,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "" @@ -2666,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1727 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2696,7 +2900,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2711,12 +2915,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1603 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2724,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2565 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2567 msgid "Compressing video..." msgstr "" @@ -2751,7 +2955,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2788,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2796,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2813,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2860,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2879,40 +3083,53 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:148 -#: src/components/dms/AfterReportDialog.tsx:151 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2929,7 +3146,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 msgid "Copy" msgstr "" @@ -2962,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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" @@ -2983,8 +3210,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -2992,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "" @@ -3002,8 +3229,8 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" @@ -3017,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3030,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3038,22 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:138 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: 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:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3064,7 +3308,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:205 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3072,11 +3320,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3103,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3123,7 +3379,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:207 #: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3138,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3162,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3170,7 +3427,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3192,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:301 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:547 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:713 -#: src/components/moderation/ReportDialog/index.tsx:759 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3220,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:461 +#: src/screens/Messages/components/InviteLinkDialog.tsx:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3234,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3275,6 +3537,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3305,8 +3575,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3333,8 +3603,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3342,22 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:194 -#: src/components/dms/AfterReportDialog.tsx:197 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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/AfterReportDialog.tsx:150 -msgid "Delete Conversation" -msgstr "" - -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3366,11 +3633,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3378,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1615 msgid "Delete post" msgstr "" @@ -3397,17 +3664,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:189 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3438,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3474,13 +3741,13 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 msgid "Disable" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3488,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3501,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 msgid "Disable link" msgstr "" @@ -3514,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:455 msgid "Disable this invite link?" msgstr "" @@ -3527,9 +3794,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3540,19 +3807,19 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1396 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1640 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3576,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2486 msgid "Dismiss error" msgstr "" @@ -3609,6 +3877,10 @@ msgstr "" 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" @@ -3640,7 +3912,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3648,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3667,15 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 -#: src/components/dms/AfterReportDialog.tsx:144 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3691,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3703,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3725,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3753,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3789,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3804,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3813,19 +4102,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3834,7 +4123,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 msgid "Edit link settings" msgstr "" @@ -3852,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:495 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -3878,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -3891,7 +4184,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:494 +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Edit this group chat’s name" msgstr "" @@ -3903,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3937,7 +4231,7 @@ msgstr "" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -3972,8 +4266,8 @@ msgstr "" msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -3991,7 +4285,7 @@ msgstr "" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4004,13 +4298,12 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4057,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4109,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2585 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4151,23 +4444,23 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4183,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4204,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4243,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4255,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4288,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4297,13 +4587,17 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" @@ -4320,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 msgid "Failed to copy link" msgstr "" @@ -4329,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:101 msgid "Failed to create invite link" msgstr "" @@ -4342,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4360,24 +4655,24 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:124 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:343 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 msgid "Failed to enable invite link" msgstr "" @@ -4393,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:370 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4422,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4459,16 +4753,15 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:391 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:357 +#: src/screens/Messages/ConversationSettings/index.tsx:383 msgid "Failed to mute group chat" msgstr "" @@ -4477,22 +4770,22 @@ msgid "Failed to pin post" msgstr "" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4500,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:73 msgid "Failed to remove group chat member" msgstr "" @@ -4508,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:158 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4535,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4546,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:394 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:429 msgid "Failed to unlock group chat" msgstr "" @@ -4563,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4580,7 +4879,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4607,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4615,7 +4914,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4628,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4642,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4705,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4713,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4734,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4761,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4813,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4858,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4872,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -4882,7 +5183,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4910,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -4926,10 +5231,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -4943,12 +5248,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4961,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5031,11 +5333,16 @@ msgstr "" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5052,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 msgid "Generate invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 msgid "Generate new link" msgstr "" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5140,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2590 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5179,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "" @@ -5203,7 +5514,9 @@ msgid "Go back to previous step" msgstr "" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5213,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5238,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5250,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5262,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:255 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:251 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5286,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5306,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:383 +#: src/screens/Messages/ConversationSettings/index.tsx:412 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:350 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:338 +#: src/screens/Messages/ConversationSettings/index.tsx:364 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:89 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:378 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5387,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5412,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5424,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5445,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5488,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5497,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5519,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5543,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5572,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5586,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5618,19 +5954,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5679,7 +6011,6 @@ msgid "I have my own domain" msgstr "" #: src/components/dms/BlockedByListDialog.tsx:55 -#: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" msgstr "" @@ -5688,7 +6019,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5724,15 +6055,15 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5740,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5753,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5784,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5824,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5848,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5921,6 +6255,10 @@ msgstr "" 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 "" @@ -5930,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5948,6 +6290,11 @@ msgstr "" msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -5968,8 +6315,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 msgid "Invite Friends" msgstr "" @@ -5977,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 -#: src/screens/Messages/ConversationSettings/index.tsx:508 +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 msgid "Invite link disabled" msgstr "" @@ -6007,6 +6371,11 @@ msgstr "" 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 "" @@ -6041,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2505 msgid "Job ID: {0}" msgstr "" @@ -6050,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6057,6 +6431,16 @@ msgstr "" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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" @@ -6066,8 +6450,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1446 +#: src/view/com/composer/Composer.tsx:1456 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6076,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6110,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6141,7 +6530,7 @@ msgid "Latest" msgstr "" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6168,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6196,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6206,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6219,37 +6608,48 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:542 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 msgid "Leave" msgstr "" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" -#: src/components/dms/ConvoMenu.tsx:229 -#: src/components/dms/ConvoMenu.tsx:233 -#: src/components/dms/ConvoMenu.tsx:299 -#: src/components/dms/ConvoMenu.tsx:303 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:541 +#: src/screens/Messages/ConversationSettings/index.tsx:584 msgid "Leave this group chat" msgstr "" @@ -6258,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6286,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6305,11 +6713,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6317,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6336,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6368,11 +6768,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6458,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6504,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6554,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:520 +#: src/screens/Messages/ConversationSettings/index.tsx:562 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6591,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6621,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6646,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:241 -#: src/components/dms/ConvoMenu.tsx:245 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6685,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6720,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 msgctxt "action" msgid "Message" msgstr "" @@ -6730,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6772,19 +7170,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:651 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6797,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6809,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -6853,7 +7247,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -6862,7 +7256,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6887,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "" @@ -6908,7 +7302,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:526 msgid "Mute" msgstr "" @@ -6924,8 +7318,8 @@ msgstr "" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6936,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:260 #: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -6953,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:485 +#: src/screens/Messages/ConversationSettings/index.tsx:524 msgid "Mute this group chat" msgstr "" @@ -6981,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: 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:526 msgid "Muted" msgstr "" @@ -6999,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7021,6 +7419,10 @@ msgstr "" 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" @@ -7063,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:345 -#: src/components/moderation/ReportDialog/index.tsx:362 +#: 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 "" @@ -7076,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7087,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:107 -#: src/components/dms/dialogs/NewChatDialog.tsx:117 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 msgid "New chat with {0}" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 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 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7130,26 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 -#: src/components/dms/InitiateChatFlow.tsx:715 -#: src/components/dms/InitiateChatFlow.tsx:743 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#. 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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7180,16 +7587,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7215,8 +7622,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7237,6 +7644,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7274,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7288,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7306,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7315,7 +7726,7 @@ msgstr "" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "" @@ -7331,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7352,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7388,8 +7799,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7399,8 +7810,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7462,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7475,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "" @@ -7501,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "" @@ -7554,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "" @@ -7576,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:658 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7601,27 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7630,6 +8037,26 @@ msgstr "" 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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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 @@ -7640,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -7648,6 +8085,10 @@ msgstr "" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7657,7 +8098,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7665,12 +8106,17 @@ msgstr "" msgid "Open camera" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 msgid "Open chat member options for {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7684,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2145 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7705,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:408 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7735,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7762,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:409 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7775,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "" @@ -7783,7 +8250,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7803,22 +8270,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:302 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:288 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7835,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7847,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7864,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -7940,12 +8416,14 @@ msgstr "" msgid "Our blog post" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:88 -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" @@ -7953,14 +8431,15 @@ msgstr "" msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8011,34 +8490,34 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 msgid "People I follow can request to join" msgstr "" @@ -8079,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8095,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8109,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8179,7 +8662,7 @@ msgstr "" msgid "Please choose your password." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8187,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8208,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8228,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8236,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8249,7 +8732,7 @@ msgstr "" msgid "Please enter your invite code." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8266,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" @@ -8301,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8309,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8326,7 +8813,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1793 msgctxt "action" msgid "Post" msgstr "" @@ -8346,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1791 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1455 msgid "Post anyway" msgstr "" @@ -8360,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8397,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 msgid "Post link" msgstr "" @@ -8434,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8448,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8468,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:349 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8479,7 +8966,7 @@ msgstr "" msgid "Press to view followers of this account that you also follow" msgstr "" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8502,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8529,15 +9015,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2579 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2581 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8545,10 +9031,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8556,6 +9042,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8578,39 +9065,39 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1777 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1772 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1761 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1766 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:140 @@ -8622,13 +9109,10 @@ msgid "QR code has been downloaded!" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8637,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8654,12 +9138,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8671,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:413 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 msgid "Re-enable link" msgstr "" @@ -8688,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8707,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8755,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8784,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8806,6 +9304,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8821,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:231 msgid "Remove {displayName} from this group chat" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8834,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8857,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8872,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8902,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8925,7 +9431,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -8952,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:224 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:222 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -8978,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9032,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "" @@ -9047,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1789 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9068,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9080,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:533 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 msgid "Report" msgstr "" @@ -9100,21 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:287 -#: src/components/dms/ConvoMenu.tsx:291 -#: src/components/dms/ReportConversationPrompt.tsx:17 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:265 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9123,12 +9623,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9141,12 +9641,15 @@ msgstr "" msgid "Report starter pack" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:85 -#: src/components/dms/AfterReportDialog.tsx:177 +#: 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 "" @@ -9154,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:532 +#: src/screens/Messages/ConversationSettings/index.tsx:576 msgid "Report this group chat" msgstr "" @@ -9163,7 +9666,7 @@ msgid "Report this list" msgstr "" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9197,10 +9700,6 @@ msgstr "" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9223,23 +9722,27 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9247,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9269,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9314,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9332,17 +9864,18 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:299 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 @@ -9356,25 +9889,25 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:296 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9395,7 +9928,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:207 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9420,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1408 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1410 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9459,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9475,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9501,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9517,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9603,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9618,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9700,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9769,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9791,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:434 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9845,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9862,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9876,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9893,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:824 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9901,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9915,7 +10460,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -9956,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -9971,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10020,16 +10565,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 #: src/components/StarterPack/QrCodeDialog.tsx:195 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "" @@ -10038,16 +10586,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10055,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10065,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10083,8 +10641,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10092,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10108,16 +10666,16 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10138,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10160,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10187,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10211,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10238,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10270,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:213 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10278,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:212 +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 "" @@ -10289,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10300,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10332,7 +10900,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1453 msgid "Skip empty posts?" msgstr "" @@ -10346,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10354,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10403,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10428,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:110 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/JoinRequests.tsx:87 msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:291 +#: 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 @@ -10458,11 +11031,11 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:239 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10505,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:123 +#: 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:191 msgid "Start a new chat" msgstr "" @@ -10523,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:779 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10595,12 +11173,12 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10612,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "" @@ -10625,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:512 -#: src/components/moderation/ReportDialog/index.tsx:573 -#: src/components/moderation/ReportDialog/index.tsx:580 +#: 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 "" @@ -10636,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10673,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:108 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10711,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10721,12 +11303,20 @@ msgstr "" 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10735,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10757,11 +11347,15 @@ msgstr "" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10787,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10857,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -10872,7 +11484,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "" @@ -10914,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -10982,6 +11594,11 @@ msgstr "" 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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -10990,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11034,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:499 msgid "There is no invite link for this group chat." msgstr "" @@ -11048,10 +11665,13 @@ 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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11059,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11069,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11094,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11154,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11187,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" @@ -11196,7 +11824,7 @@ msgstr "" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11204,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11243,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:128 +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 "" @@ -11251,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11289,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11301,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11310,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11343,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:624 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:620 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11367,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11383,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:130 +#: src/screens/Messages/ConversationSettings/index.tsx:151 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "This screen is only available for group conversations." msgstr "" @@ -11407,7 +12066,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/features/liveNow/index.tsx:200 +#: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." msgstr "" @@ -11423,15 +12082,23 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: 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 +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 "" @@ -11476,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11499,7 +12166,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11525,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11534,10 +12201,6 @@ msgstr "" msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." msgstr "" -#: src/components/dms/ReportConversationPrompt.tsx:19 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" - #: src/components/dms/DateDivider.tsx:27 msgid "Today" msgstr "" @@ -11575,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11596,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11631,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11640,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:167 +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 "" @@ -11692,6 +12369,18 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" msgstr "" @@ -11712,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:662 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "" @@ -11758,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11780,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11793,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:496 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11805,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11825,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:519 +#: src/screens/Messages/ConversationSettings/index.tsx:561 msgid "Unlock this group chat" msgstr "" @@ -11860,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:265 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -11876,12 +12562,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:484 +#: src/screens/Messages/ConversationSettings/index.tsx:523 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11895,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11917,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -11951,14 +12637,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1542 msgid "Unsupported video type: {mimeType}" 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" @@ -11968,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 #: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 msgid "Update invite link" msgstr "" @@ -11986,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12001,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12019,39 +12717,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2572 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2574 msgid "Uploading video..." msgstr "" @@ -12094,7 +12793,8 @@ msgstr "" msgid "user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12131,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12175,12 +12875,12 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12197,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12224,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12236,7 +12936,7 @@ 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12269,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12300,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12339,7 +13039,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2592 msgid "Video uploaded" msgstr "" @@ -12352,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1136 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:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12375,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12387,20 +13087,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 +#: src/components/dms/MessagesListHeader.tsx:111 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 msgid "View {displayName}’s profile" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12423,10 +13118,18 @@ msgstr "" msgid "View full thread" msgstr "" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42 +#: 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:56 msgid "View information about these labels" msgstr "" @@ -12442,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1131 msgid "View post" msgstr "" @@ -12459,10 +13162,10 @@ msgstr "" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12470,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:506 +#: src/screens/Messages/ConversationSettings/index.tsx:548 msgid "View the invite link for this group chat" msgstr "" @@ -12483,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12516,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12560,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12585,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:111 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 msgid "We couldn’t load this conversation’s settings" msgstr "" @@ -12635,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -12664,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12699,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12734,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "" @@ -12785,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12798,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 msgid "Who can join this group chat and how" msgstr "" @@ -12807,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12827,6 +13534,7 @@ 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 "" @@ -12858,15 +13566,19 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:49 +#: 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:1320 +#: src/view/com/composer/Composer.tsx:1424 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12875,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1602 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1504 msgid "Write your reply" msgstr "" @@ -12893,7 +13605,8 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:129 +#: src/screens/Messages/ConversationSettings/index.tsx:150 +#: src/screens/Messages/JoinRequests.tsx:109 msgid "Wrong kind of conversation" msgstr "" @@ -12920,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -12945,7 +13658,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:635 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -12979,11 +13692,11 @@ msgstr "" msgid "You are Live" msgstr "" -#: src/features/liveNow/index.tsx:368 +#: src/features/liveNow/index.tsx:371 msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "" @@ -12991,7 +13704,7 @@ msgstr "" msgid "You are not following anyone yet" msgstr "" -#: src/features/liveNow/index.tsx:312 +#: src/features/liveNow/index.tsx:315 msgid "You are now live!" msgstr "" @@ -13032,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13054,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13070,9 +13792,9 @@ msgstr "" 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13081,6 +13803,15 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13108,6 +13839,10 @@ msgstr "" msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13177,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1419 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13235,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13244,10 +13983,11 @@ msgid "You must be following at least seven other people to generate a starter p msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13255,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13265,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13279,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13289,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13301,12 +14050,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13340,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13374,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13386,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -13410,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "" @@ -13430,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "" @@ -13438,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13472,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13493,7 +14254,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13522,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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 @@ -13534,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1127 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1124 msgid "Your posts were sent" msgstr "" @@ -13546,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13559,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1126 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:523 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13572,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1454 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 b18b9c83ed..b327177739 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Khmer\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} បានតាមអ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} តាមអ្នកមកវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ចូលចិត្តព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} បានចូលចិត្តការបង្ហោះរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} បានបង្ហោះសាររបស់អ្នកឡើងវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} បានចុះឈ្មោះជាមួយកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} បានតាមអ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} តាមអ្នកមកវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ចូលចិត្តព័ត៌មានផ្ទាល់ខ្លួនរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} បានចូលចិត្តការបង្ហោះរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} បានបង្ហោះសាររបស់អ្នកឡើងវិញ" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} បានចុះឈ្មោះជាមួយកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} កំពុងតាម" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} មិនអាចផ្ញើសារបានទេ" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {អ្នកតាម} other {អ្នកតាម}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {អ្នកកំពុងតាម} other {អ្នកកំពុងតាម}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "សមាជិក <0>{0}" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "ភាពងាយស្រួល" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "ការកំណត់មានភាពងាយស្រួល" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "ការកំណត់មានភាពងាយស្រួល" msgid "Account" msgstr "គណនី" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "គណនីត្រូវបានរារាំង" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "គណនីបានធ្វើតាម" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "គណនីត្រូវបានដកចេញពីការចូលប្រើរហ័ស" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "គណនីត្រូវបានបិទ" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "គណនី​មិន​បាន​តាម" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "គណនីត្រូវបានបើក" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "បន្ថែម" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "បន្ថែមអត្ថបទជំនួស (ជាជម្រ #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "បន្ថែមប្រកាសមួយទៀត" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិ msgid "Add App Password" msgstr "បន្ថែមពាក្យសម្ងាត់កម្មវិធី" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "អនុញ្ញាតឱ្យចូលប្រើសារផ្ទ msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "បាន​ចូល​ជា @{0} រួច​ហើយ" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ជំនួស" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "អត្ថបទជំនួស" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "អត្ថបទជំនួសពិពណ៌នារូបភាពសម្រាប់អ្នកប្រើប្រាស់ពិការភ្នែក និងភ្នែកទាប និងជួយផ្តល់បរិបទដល់មនុស្សគ្រប់គ្នា" @@ -1387,7 +1486,7 @@ msgstr "កំហុសមួយបានកើតឡើង" msgid "An error occurred" msgstr "កំហុសមួយបានកើតឡើង" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "កំហុសមួយបានកើតឡើងខណៈពេលកំពុងបង្ហាប់វីដេអូ" @@ -1421,7 +1520,8 @@ msgstr "កំហុសបានកើតឡើងខណៈពេលកំពុ msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "កំហុសបានកើតឡើងខណៈពេលរក្សាទុកកូដ QR!" @@ -1432,11 +1532,11 @@ msgstr "កំហុសបានកើតឡើងខណៈពេលរក្ស msgid "An error occurred while trying to follow all" msgstr "កំហុសបានកើតឡើងខណៈពេលព្យាយាមតាមដានទាំងអស់" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "បញ្ហាមួយបានកើតឡើងខណៈពេលព #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "បញ្ហាបានកើតឡើង សូមព្យាយាមម្តងទៀត" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "ឈ្មោះពាក្យសម្ងាត់កម្មវិធ msgid "App passwords" msgstr "ពាក្យសម្ងាត់កម្មវិធី" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "ពាក្យសម្ងាត់កម្មវិធី" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "បាន​ដាក់​បណ្ដឹង​ឧទ្ធរណ៍" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "បានរក្សាទុកពី {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "តើអ្នកប្រាកដថាចង់លុបពាក្យសម្ងាត់កម្មវិធី \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់ល msgid "Are you sure you want to discard your changes?" msgstr "តើអ្នកប្រាកដទេថាអ្នកចង់បោះបង់ការផ្លាស់ប្ដូររបស់អ្នក" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "តើអ្នកប្រាកដថាចង់ចាកចេញពីការសន្ទនានេះទេ? សាររបស់អ្នកនឹងត្រូវបានលុបសម្រាប់អ្នក ប៉ុន្តែមិនមែនសម្រាប់អ្នកចូលរួមផ្សេងទៀតទេ" +#: src/components/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 "តើអ្នកប្រាកដថាចង់លុបវាចេញពីមតិព័ត៌មានរបស់អ្នកមែនទេ" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "តើអ្នកប្រាកដថាចង់បោះបង់ការបង្ហោះនេះទេ?" @@ -1724,8 +1838,8 @@ msgstr "សិល្បៈ" msgid "Artistic or non-erotic nudity." msgstr "អាក្រាតកាយបែបសិល្បៈ ឬមិនស្រើបស្រាល" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "ចាក់វីដេអូ និង GIFs ដោយស្វ័យ msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "ត្រឡប់" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "មុននឹងបង្កើតកញ្ចប់ចាប់ផ្តើម អ្នកត្រូវតែផ្ទៀងផ្ទាត់អ៊ីមែលរបស់អ្នកជាមុនសិន" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "ថ្ងៃកំណើត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "ទប់ស្កាត់" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "បិទគណនី" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "បញ្ជីទប់ស្កាត់" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "ទប់ស្កាត់គណនីទាំងនេះ?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "" @@ -1948,7 +2059,7 @@ msgctxt "button" msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "រារាំង" @@ -1964,14 +2075,12 @@ msgstr "រារាំង" msgid "Blocked accounts" msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "គណនី​ដែល​បាន​ទប់ស្កាត់​មិន​អាច​ឆ្លើយ​តប​ក្នុង​ខ្សែ​ស្រឡាយ​របស់​អ្នក លើក​ឡើង​ពី​អ្នក ឬ​ធ្វើ​អន្តរកម្ម​ជាមួយ​អ្នក" @@ -1987,7 +2096,7 @@ msgstr "ការទប់ស្កាត់មិនរារាំងអ្ន msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ការទប់ស្កាត់ជាសាធារណៈ។ គណនី​ដែល​បាន​ទប់ស្កាត់​មិន​អាច​ឆ្លើយ​តប​ក្នុង​ខ្សែ​ស្រឡាយ​របស់​អ្នក លើក​ឡើង​ពី​អ្នក ឬ​ធ្វើ​អន្តរកម្ម​ជាមួយ​អ្នក" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "ការទប់ស្កាត់នឹងមិនរារាំងស្លាកមិនឱ្យអនុវត្តនៅលើគណនីរបស់អ្នកទេ ប៉ុន្តែវានឹងបញ្ឈប់គណនីនេះពីការឆ្លើយតបនៅក្នុងខ្សែស្រឡាយរបស់អ្នក ឬធ្វើអន្តរកម្មជាមួយអ្នក" @@ -2000,7 +2109,7 @@ msgstr "ប្លុក" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky មិនអាចបញ្ជាក់ពីភាពត្រឹមត្រូវនៃកាលបរិច្ឆេទដែលបានទាមទារនោះទេ" @@ -2029,7 +2138,7 @@ msgstr "Bluesky គឺល្អជាមួយមិត្តភក្តិ!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky នឹងជ្រើសរើសសំណុំនៃគណន msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky នឹងមិនបង្ហាញប្រវត្តិរូប និងការបង្ហោះរបស់អ្នកទៅកាន់អ្នកប្រើប្រាស់ដែលបានចេញពីគណនីនោះទេ។ កម្មវិធីផ្សេងទៀតប្រហែលជាមិនគោរពសំណើនេះទេ។ នេះមិនធ្វើឱ្យគណនីរបស់អ្នកជាឯកជនទេ" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "សៀវភៅ" 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" @@ -2137,24 +2254,34 @@ msgstr "អាជីវកម្ម" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "ដោយ {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "តាមរយៈការបង្កើតគណនីមួយ អ msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "កាមេរ៉ា" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "កាមេរ៉ា" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "កាមេរ៉ា" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "បោះបង់" @@ -2248,9 +2384,9 @@ msgstr "បោះបង់ការបើកដំណើរការឡើងវ msgid "Cancel search" msgstr "បោះបង់ការស្វែងរក" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "មិនអាចធ្វើអន្តរកម្មជាមួយអ្នកប្រើប្រាស់ដែលត្រូវបានទប់ស្កាត់បានទេ" @@ -2264,7 +2400,7 @@ msgstr "ចំណងជើង (.vtt)" msgid "Captions & alt text" msgstr "ចំណងជើង និងអត្ថបទជំនួស" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "ផ្លាស់ប្តូរ Handle" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "ជជែក" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "បានបិទការជជែក" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "ការកំណត់ការជជែក" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "ការកំណត់ការជជែក" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "បាន​បើក​ការ​ជជែក" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "ជ្រើសរើសពណ៌នេះជារូបតំណាងរបស់អ្នក" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "ចុចដើម្បីព្យាយាមសារដែលបរាជ័យម្តងទៀត" @@ -2594,28 +2745,30 @@ msgstr "ចុចដើម្បីព្យាយាមសារដែលបរ #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "ចុចដើម្បីព្យាយាមសារដែលបរ #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "បិទ" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "បិទប្រអប់សកម្ម" @@ -2647,6 +2800,10 @@ msgstr "បិទប្រអប់សកម្ម" msgid "Close alert" msgstr "បិទការជូនដំណឹង" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2657,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "បិទប្រអប់" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "រូបភាពបិទ" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "បិទប្រអប់នេះ។" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "បិទការជូនដំណឹងអំពីការអាប់ដេតពាក្យសម្ងាត់" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "បង្រួមបញ្ជីអ្នកប្រើប្រាស់" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "បង្រួមបញ្ជីអ្នកប្រើប្រាស់សម្រាប់ការជូនដំណឹងដែលបានផ្តល់ឱ្យ" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "រឿងកំប្លែង" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "គោលការណ៍ណែនាំសហគមន៍" @@ -2740,12 +2915,12 @@ msgstr "បញ្ចប់ការប្រឈម" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "សរសេរអត្ថបទថ្មី" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "សរសេរការឆ្លើយតប" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "កំពុង​បង្ហាប់​វីដេអូ..." @@ -2780,7 +2955,7 @@ msgstr "បានកំណត់រចនាសម្ព័ន្ធនៅក្ msgid "Confirm" msgstr "បញ្ជាក់" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "ទាក់ទងផ្នែកគាំទ្រ" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព msgid "Content and media" msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "ខ្លឹមសារ និងប្រព័ន្ធផ្សព្វផ្សាយ" @@ -2889,7 +3064,7 @@ msgstr "ផ្ទាំងខាងក្រោយម៉ឺនុយបរិប #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "បន្ត​ខ្សែ..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "ការសន្ទនាត្រូវបានលុប" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "ការសន្ទនាត្រូវបានលុប" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "បានចម្លងកំណែស្ថាបនាទៅ clipboard" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "បានចម្លង" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "ចម្លង" @@ -2997,6 +3184,11 @@ msgstr "ចម្លង DID" msgid "Copy host" msgstr "ចម្លងម៉ាស៊ីន" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "ចម្លងតំណទៅបញ្ជី" msgid "Copy link to post" msgstr "ចម្លងតំណទៅប្រកាស" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "ចម្លងអត្ថបទសារ" @@ -3037,12 +3229,12 @@ msgstr "ចម្លងអត្ថបទសារ" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "ចម្លងអត្ថបទអត្ថបទ" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "ចម្លងកូដ QR" @@ -3052,11 +3244,15 @@ msgstr "ចម្លងតម្លៃកំណត់ត្រា TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "គោលការណ៍រក្សាសិទ្ធិ" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "មិនអាចចាកចេញពីការជជែកបានទេ" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "មិនអាចផ្ទុកព័ត៌មានបានទេ" @@ -3100,7 +3308,11 @@ msgstr "មិនអាចផ្ទុកព័ត៌មានបានទេ" msgid "Could not load list" msgstr "មិនអាចផ្ទុកបញ្ជីបានទេ" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "មិនអាចបិទការជជែកបានទេ" @@ -3108,11 +3320,19 @@ msgstr "មិនអាចបិទការជជែកបានទេ" msgid "Could not process your video" msgstr "មិនអាចដំណើរការវីដេអូរបស់អ្នកបានទេ" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "បង្កើត" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម" @@ -3174,13 +3394,14 @@ msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើមសម្ #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "បង្កើតគណនី" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "បង្កើតរូបតំណាងជំនួសវិញ" @@ -3206,7 +3427,7 @@ msgstr "បង្កើតរូបតំណាងជំនួសវិញ" msgid "Create another" msgstr "បង្កើតមួយផ្សេងទៀត" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "បង្កើតគណនីថ្មី" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "បង្កើតរបាយការណ៍សម្រាប់ {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "បង្កើត {0}" @@ -3270,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "វប្បធម៌" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "ស្បែកខ្មៅងងឹត" msgid "Date of birth" msgstr "ថ្ងៃខែឆ្នាំកំណើត" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "លំនាំដើម" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "លុបពាក្យសម្ងាត់កម្មវិធី" msgid "Delete app password?" msgstr "លុបពាក្យសម្ងាត់កម្មវិធី" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "លុបកំណត់ត្រាប្រកាសការជជែក" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "លុបពីខ្ញុំ" @@ -3399,11 +3633,11 @@ msgstr "លុបពីខ្ញុំ" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "លុបសារ" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3411,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "លុបសារពីខ្ញុំ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "លុប post" @@ -3430,17 +3664,17 @@ msgstr "លុបកញ្ចប់ចាប់ផ្តើម?" msgid "Delete this list?" msgstr "លុបបញ្ជីនេះ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "លុប post នេះ?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "បានលុប់" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "គណនីបានលុប" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "អត្ថបទ alt ពិពណ៌នា" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "ផ្ដាច់សម្រង់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "ផ្ដាច់សម្រង់ post?" @@ -3507,13 +3741,13 @@ msgstr "ប្រអប់៖ កែតម្រូវអ្នកដែលអ msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "បិទអ៊ីមែល 2FA" msgid "Disable haptic feedback" msgstr "បិទ​រំញ័រ" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "បានបិទ" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "បោះបង់" msgid "Discard changes?" msgstr "បោះបង់ " -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "បោះបង់ការបង្ហោះ?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "ស្វែងរកមតិព័ត៌មានថ្មី" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ច្រានចោល" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "ច្រានចោលកំហុស" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "មិនរាប់បញ្ចូលភាពអាក្រាតក msgid "Domain verified!" msgstr "បានផ្ទៀងផ្ទាត់ Domain" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "រួចរាល់" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "ចុចពីរដងដើម្បីបិទប្រអប់" @@ -3737,19 +3981,14 @@ msgstr "ចុចពីរដងដើម្បីបិទប្រអប់" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "រយៈពេល" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "កែសម្រួល" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "កែសម្រួលរូបតំណាង" @@ -3847,19 +4102,19 @@ msgstr "កែសម្រួលរូបតំណាង" msgid "Edit Feeds" msgstr "កែសម្រួលមតិព័ត៌មាន" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "កែរូបភាព" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "កែសម្រួលការកំណត់អន្តរកម្ម" @@ -3868,7 +4123,16 @@ msgstr "កែសម្រួលការកំណត់អន្តរកម្ msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "កែសម្រួលមតិព័ត៌មានរបស់ខ្ញុំ" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "កែសម្រួលមនុស្ស" @@ -3912,12 +4171,12 @@ msgstr "កែសម្រួលការកំណត់អន្តរកម្ #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "កែប្រវត្តិរូប" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "កែប្រវត្តិរូប" @@ -3925,7 +4184,8 @@ msgstr "កែប្រវត្តិរូប" msgid "Edit starter pack" msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើម" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "កែសម្រួលអ្នកណាអាចឆ្លើយតបបាន" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "កែសម្រួលកញ្ចប់ចាប់ផ្តើមរបស់អ្នក" @@ -3971,7 +4231,7 @@ msgstr "អាសយដ្ឋានអ៊ីមែល" msgid "Email Resent" msgstr "ផ្ញើអ៊ីមែលឡើងវិញ" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "បង្កប់ការបង្ហោះនេះនៅក្នុ msgid "Embedded video player" msgstr "កម្មវិធីចាក់វីដេអូដែលបានបង្កប់" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "បើក" @@ -4025,7 +4285,7 @@ msgstr "បើកមាតិកាសម្រាប់មនុស្សពេ msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "បើកប្រព័ន្ធផ្សព្វផ្សាយខា msgid "Enable media players for" msgstr "បើកកម្មវិធីចាក់មេឌៀសម្រាប់" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "បញ្ចូលពាក្យសម្ងាត់" msgid "Enter a word or tag" msgstr "បញ្ចូលពាក្យ ឬស្លាក" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "កំហុស" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ msgstr "អ្នក​រាល់​គ្នា​អាច​ឆ្លើយ msgid "Everybody can reply to this post." msgstr "អ្នក​រាល់​គ្នា​អាច​ឆ្លើយ​តប​នឹង​ការ​ប្រកាស​នេះ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "ទាំងអស់គ្នា" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "ទាំងអស់គ្នា" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "ទាំងអស់គ្នា" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "មិនរាប់បញ្ចូលអ្នកប្រើប្រ msgid "Exit fullscreen" msgstr "ចេញពីអេក្រង់ពេញ" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "ពង្រីកបញ្ជីអ្នកប្រើប្រាស់" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "ពង្រីក ឬបង្រួមការបង្ហោះពេញដែលអ្នកកំពុងឆ្លើយតប" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "អ្នករំពឹងថានឹងដោះស្រាយកំណត់ត្រាមួយ។" @@ -4277,10 +4536,10 @@ msgstr "ប្រព័ន្ធផ្សព្វផ្សាយច្បាស msgid "Explicit sexual images." msgstr "រូបភាពផ្លូវភេទច្បាស់លាស់" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "ចំណូលចិត្តប្រព័ន្ធផ្សព្វផ្សាយខាងក្រៅ" @@ -4331,18 +4587,22 @@ msgstr "ចំណូលចិត្តប្រព័ន្ធផ្សព្វ msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "បរាជ័យក្នុងការផ្លាស់ប្តូរចំណុចទាញ។ សូមព្យាយាមម្តងទៀត" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "បរាជ័យក្នុងការបង្កើតពាក្យសម្ងាត់កម្មវិធី។ សូមព្យាយាមម្តងទៀត" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "បរាជ័យក្នុងការបង្កើតកញ្ចប់ចាប់ផ្តើម" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "បរាជ័យក្នុងការលុបសារ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "បរាជ័យក្នុងការលុបការបង្ហោះ សូមព្យាយាមម្តងទៀត" @@ -4394,24 +4655,24 @@ msgstr "បរាជ័យក្នុងការលុបការបង្ហ msgid "Failed to delete starter pack" msgstr "បរាជ័យក្នុងការលុបកញ្ចប់ចាប់ផ្តើម" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "បានបរាជ័យក្នុងការផ្ទុកចំណូលចិត្តមតិព័ត៌មាន" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "បានបរាជ័យក្នុងការផ្ទុកព័ msgid "Failed to load suggested follows" msgstr "បានបរាជ័យក្នុងការផ្ទុកដែលបានណែនាំដូចខាងក្រោម" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "បរាជ័យក្នុងការខ្ទាស់ការបង្ហោះ" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "បរាជ័យក្នុងការដាក់បណ្តឹងតវ៉ា សូមព្យាយាមម្តងទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "មិន​អាច​បិទ​បើក​បិទ​សំឡេង​បាន​ទេ សូម​ព្យាយាម​ម្ដង​ទៀត" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "បរាជ័យក្នុងការធ្វើបច្ចុប្បន្នភាពការកំណត់" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "ព័ត៌មាន" @@ -4649,7 +4914,7 @@ msgstr "ព័ត៌មាន" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "ព័ត៌មានដោយ {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "មតិកែលម្អ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "ព័ត៌មាន" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "បញ្ចប់" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "ស្វែងរកគណនីដើម្បីតាមដាន" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "តាម" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "តាម {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "តាមដានគណនី" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "តាមដានត្រឡប់វិញ" @@ -4916,7 +5183,7 @@ msgstr "តាមដានត្រឡប់វិញ" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "តាមដោយ <0>{0} និង <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "អ្នកតាមដាន @{0} ដែលអ្នកស្គាល់" @@ -4960,10 +5231,10 @@ msgstr "អ្នកតាមដែលអ្នកស្គាល់" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "កំពុងតាម" @@ -4977,12 +5248,12 @@ msgstr "កំពុងតាម" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "កំពុងតាម {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "ធ្វើតាមចំណូលចិត្តមតិព័ត៌មាន" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "តាមអ្នក" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "តាមអ្នក" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "ពុម្ពអក្សរ" @@ -5065,11 +5333,16 @@ msgstr "ភ្លេចពាក្យសម្ងា?ត់" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "ពី <0/>" msgid "Generate a starter pack" msgstr "បង្កើតកញ្ចប់ចាប់ផ្តើម" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "រកជំនួយ" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "ផ្តល់ទម្រង់មុខរបស់អ្នក" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "ត្រឡប់ទៅវិញ" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "ត្រលប់ទៅជំហានមុន" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "ទៅទំពណ៌ដើម" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "ទៅទំពណ៌ដើម" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "ទៅទំពណ៌ដើម" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "ចូលទៅកាន់ការសន្ទនាជាមួយ {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "ទៅបន្ទាប់" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "ចូលទៅកាន់ប្រវត្តិរូបរបស់អ្នកប្រើ" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5458,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "ជំនួយ" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ជួយមនុស្សឱ្យដឹងថាអ្នកមិនមែនជារូបយន្តដោយការបង្ហោះរូបភាព ឬបង្កើតរូបតំណាង" @@ -5522,7 +5820,7 @@ msgstr "បញ្ជីដែលលាក់" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "បញ្ជីដែលលាក់" msgid "Hide" msgstr "លាក់" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "លាក់" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "លាក់ post សម្រាប់ខ្ញុំ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "លាក់ការឆ្លើយតបសម្រាប់ខ្ញុំ" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "លាក់ការបង្ហោះនេះ?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "លាក់បញ្ជីអ្នកប្រើប្រាស់" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "ហឺម វាហាក់ដូចជាយើងមានបញ្ msgid "Hmmmm, we couldn't load that moderation service." msgstr "ហ៊ឺ យើងមិនអាចផ្ទុកសេវាកម្មសម្របសម្រួលនោះបានទេ" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "ចាំ! យើងកំពុងផ្តល់សិទ្ធិចូលប្រើវីដេអូបន្តិចម្តងៗ ហើយអ្នកនៅតែរង់ចាំក្នុងជួរ។ សូមពិនិត្យមើលឡើងវិញឆាប់ៗនេះ" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "ទំព័រដើម" @@ -5721,7 +6019,7 @@ msgstr "ខ្ញុំយល់" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "ប្រសិនបើអត្ថបទ alt វែង បិទ/បើកស្ថានភាពពង្រីកអត្ថបទ" @@ -5757,15 +6055,15 @@ msgstr "ប្រសិនបើអ្នកលុបបញ្ជីនេះ msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "ប្រសិនបើអ្នកកំពុងព្យាយាមផ្លាស់ប្តូរចំណុចទាញ ឬអ៊ីមែលរបស់អ្នក សូមធ្វើដូច្នេះមុនពេលអ្នកបិទដំណើរការ" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "រូបភាព" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "លេខកូដបញ្ជាក់ 2FA មិនត្រឹមត្រូវ" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "លេខកូដផ្ទៀងផ្ទាត់មិនត្រឹមត្រូវ" @@ -6001,8 +6315,15 @@ msgstr "លេខកូដអញ្ជើញ" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "លេខកូដអញ្ជើញមិនត្រូវបានទទួលយកទេ។ ពិនិត្យមើលថាអ្នកបញ្ចូលវាត្រឹមត្រូវ ហើយព្យាយាមម្តងទៀត" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "" @@ -6083,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "ការងារ" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "ការងារ" msgid "Join Bluesky" msgstr "ចូលរួមជាមួយ Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "ចូលរួមការសន្ទនា" msgid "Journalism" msgstr "សារព័ត៌មាន" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "ស្លាកនៅលើគណនីរបស់អ្នក" msgid "Labels on your content" msgstr "ស្លាកនៅលើមាតិការបស់អ្នក" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "ការកំណត់ភាសា" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "ចុងក្រោយ" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "ស្វែងយល់បន្ថែមអំពីការព្រមាននេះ" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "ស្វែងយល់បន្ថែមអំពីអ្វីដែលជាសាធារណៈនៅលើ Bluesky" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "ស្វែងយល់បន្ថែម" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "ចាកចេញ" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "ចាកចេញពីការជជែក" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "ចាកចេញពីការសន្ទនា" @@ -6284,13 +6642,14 @@ msgstr "ចាកចេញពីការសន្ទនា" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "ចាកចេញពីការសន្ទនា" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "ចាកចេញពី Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "ចាកចេញទៅ" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "ពន្លឺ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6346,11 +6713,7 @@ msgstr "ចូលចិត្ត 10 ប្រកាស" msgid "Like 10 posts to train the Discover feed" msgstr "ចូលចិត្តការបង្ហោះចំនួន 10 ដើម្បីបណ្តុះបណ្តាល Discover feed" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "ចូលចិត្តមតិព័ត៌មាននេះ" @@ -6358,8 +6721,8 @@ msgstr "ចូលចិត្តមតិព័ត៌មាននេះ" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "ចូលចិត្ត" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "ចូលចិត្ត" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "ចូលចិត្តនៅលើប្រកាសនេះ" @@ -6409,11 +6768,11 @@ msgstr "ចូលចិត្តនៅលើប្រកាសនេះ" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "បញ្ជី" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "បាន​បិទ​បញ្ជី" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "​បញ្ជី" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "កំពុងផ្ទុក..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "កំណត់ហេតុ" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "និមិត្តសញ្ញាដោយ <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "មើល​ទៅ​ដូច​ជា​អ្នក​កំពុង msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "គ្រប់គ្រងពាក្យ និងស្លាកដែលបានបិទរបស់អ្នក" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "សម្គាល់ថាបានអានហើយ" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "ប្រព័ន្ធផ្សព្វផ្សាយដែលអាចរំខាន ឬមិនសមរម្យសម្រាប់ទស្សនិកជនមួយចំនួន" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "អ្នកប្រើប្រាស់ដែលបានលើកឡើង" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "សារ {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "សារត្រូវបានលុប" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "សារត្រូវបានលុប" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "សារវែងពេក" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "សារ" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "ការសម្របសម្រួល" @@ -6894,7 +7247,7 @@ msgstr "បានធ្វើបច្ចុប្បន្នភាពបញ្ msgid "Moderation lists" msgstr "បញ្ជីសម្របសម្រួល" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "បញ្ជីការសម្របសម្រួល" @@ -6903,7 +7256,7 @@ msgstr "បញ្ជីការសម្របសម្រួល" msgid "moderation settings" msgstr "ការកំណត់កម្រិតមធ្យម" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "ជម្រើសច្រើនទៀត" @@ -6949,7 +7302,7 @@ msgstr "ភាពយន្ត" msgid "Music" msgstr "តន្ត្រី" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "បិទ" @@ -6965,8 +7318,8 @@ msgstr "បិទ" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "បិទគណនី" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "បិទការសន្ទនា" @@ -6994,7 +7347,7 @@ msgstr "បិទបញ្ជី" msgid "Mute these accounts?" msgstr "បិទសំឡេងគណនីទាំងនេះ?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "បិទពាក្យនេះនៅក្នុងស្លាកត msgid "Mute this word until you unmute it" msgstr "បិទ​ពាក្យ​នេះ​រហូត​ដល់​អ្នក​បើក​សំឡេង​វា" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "បិទ thread" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "បិទពាក្យ & ស្លាក" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "គណនីបិទ" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "គណនីបិទ" @@ -7062,6 +7419,10 @@ msgstr "ពាក្យ និងស្លាកដែលបានបិទ" 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "រុករកទៅអេក្រង់បន្ទាប់" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "រុករកទៅកម្រងព័ត៌មានរបស់អ្នក" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "មិនអីទេ បង្កើត handle សម្រាប់ខ្ញុំ" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "ថ្មី" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "ការជជែកថ្មី" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "post ថ្មី" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "post ថ្មី" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "ព័ត៌មាន" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "បន្ទាប់" msgid "Next image" msgstr "រូបភាពបន្ទាប់" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "រកមិនឃើញមតិព័ត៌មានទេ។ ព្យាយាមស្វែងរកអ្វីផ្សេងទៀត" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "លែង​តាម {0}" @@ -7362,7 +7726,7 @@ msgstr "លែង​តាម {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "មិនមានសារនៅឡើយទេ" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "មិនមានការជូនដំណឹងនៅឡើយទេ" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "គ្មាននរណាម្នាក់ក្រៅពីអ្នកនិពន្ធអាចដកស្រង់ការប្រកាសនេះបានទេ" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "គ្មានលទ្ធផល" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "គ្មានលទ្ធផល" @@ -7446,8 +7810,8 @@ msgstr "គ្មានលទ្ធផល" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "រកមិនឃើញលទ្ធផលទេ" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "រកមិនឃើញ" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "ចំណាំអំពីការចែករំលែក" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "ការកំណត់ការជូនដំណឹង" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "សំឡេងជូនដំណឹង" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "ការជូនដំណឹង" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ឥឡូវនេះ" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "បិទ" @@ -7623,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7648,35 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "កំណត់ការចូលដំណើរការឡើងវិញ" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "GIFs មួយ ឬ​ច្រើន​បាត់​អត្ថបទ​ជំនួស" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "រូបភាពមួយ ឬច្រើនបាត់អត្ថបទជំនួស" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថបទជំនួស" @@ -7685,6 +8037,26 @@ msgstr "វីដេអូមួយ ឬច្រើនបាត់អត្ថ msgid "Only {0} can reply." msgstr "មានតែ {0} ប៉ុណ្ណោះដែលអាចឆ្លើយតបបាន" +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "មានតែឯកសាររូបភាពប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "មានតែឯកសារ WebVTT (.vtt) ប៉ុណ្ណោះដែលត្រូវបានគាំទ្រ" @@ -7703,6 +8085,10 @@ msgstr "មានតែឯកសារ WebVTT (.vtt) ប៉ុណ្ណោះដ msgid "Oops, something went wrong!" msgstr "ឯកសារ WebVTT (.vtt) ងាយស្រួលគាំទ្រ" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "ឯកសារ WebVTT (.vtt) ងាយស្រួលគាំទ្រ msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "បើកអ្នកបង្កើតរូបតំណាង" @@ -7720,12 +8106,17 @@ msgstr "បើកអ្នកបង្កើតរូបតំណាង" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "បើកជម្រើសការសន្ទនា" @@ -7739,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "បើកកម្មវិធីជ្រើសរើសរូបអារម្មណ៍" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "បើកម៉ឺនុយជម្រើសមតិព័ត៌មាន" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "បើកតំណទៅ {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "បើកម៉ឺនុយជម្រើសប្រកាស" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "បើកប្រអប់មួយដើម្បីបន្ថែម msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "បើកព័ត៌មានលម្អិតបន្ថែមសម្រាប់ធាតុបំបាត់កំហុស" @@ -7838,7 +8250,7 @@ msgstr "បើកព័ត៌មានលម្អិតបន្ថែមសម msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "បើកកាមេរ៉ានៅលើឧបករណ៍" @@ -7858,22 +8270,24 @@ msgstr "បើកកម្មវិធីតែង" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "បើកលំហូរដើម្បីបង្កើតគណនី Bluesky ថ្មី" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "បើកទម្រង់កំណត់ពាក្យសម្ងា msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "បើកកម្រងព័ត៌មាននេះ" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "អ្នកសម្របសម្រួលរបស់យើងបានពិនិត្យរបាយការណ៍ ហើយបានសម្រេចចិត្តបិទការចូលប្រើការជជែករបស់អ្នកនៅលើ Bluesky" @@ -8010,14 +8431,15 @@ msgstr "អ្នកសម្របសម្រួលរបស់យើងបា msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "រកមិនឃើញទំព័រ" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "ផ្អាក video" msgid "People" msgstr "មនុស្ស" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "មនុស្ស​តាម​ដោយ @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "មនុស្ស​តាម @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "ការថតរូប" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8152,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8236,7 +8662,7 @@ msgstr "សូមជ្រើសរើស handle របស់អ្នក" msgid "Please choose your password." msgstr "សូមជ្រើសរើសពាក្យសម្ងាត់របស់អ្នក" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "សូមបំពេញការផ្ទៀងផ្ទាត់ captcha" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "សូមបញ្ចូលអ៊ីមែលរបស់អ្នក" msgid "Please enter your invite code." msgstr "សូមបញ្ចូលលេខកូដអញ្ជើញរបស់អ្នក" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "សូមពន្យល់ពីមូលហេតុដែលអ្នកគិតថាស្លាកនេះត្រូវបានអនុវត្តមិនត្រឹមត្រូវដោយ {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "សូមពន្យល់ពីមូលហេតុដែលអ្នកគិតថាការជជែករបស់អ្នកត្រូវបានបិទមិនត្រឹមត្រូវ" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "សូមចូលគណនីជា @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "នយោបាយ" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "ការបង្ហោះ" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Post ទាំងអស់" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Post ត្រូវាបានលុប" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "មិនអាចបង្ហោះសារបង្ហោះបានទេ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" @@ -8454,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "ការ​កំណត់​អន្តរកម្ម​ post" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "ការបង្ហោះអាចត្រូវបានបិទដ msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "ចុចដើម្បីព្យាយាមភ្ជាប់ឡើងវិញ" -#: src/components/Error.tsx:61 +#: 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 "ចុចដើម្បីព្យាយាមម្តងទៀត" @@ -8536,7 +8966,7 @@ msgstr "ចុចដើម្បីព្យាយាមម្តងទៀត" msgid "Press to view followers of this account that you also follow" msgstr "ចុចដើម្បីមើលអ្នកតាមដានគណនីនេះដែលអ្នកតាមដានផងដែរ" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "ឯកជនភាព" msgid "Privacy and security" msgstr "ភាពឯកជន និងសុវត្ថិភាព" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "ភាពឯកជន និងសុវត្ថិភាព" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "គោលការណ៍ឯកជនភាព" @@ -8586,15 +9015,15 @@ msgstr "គោលការណ៍ឯកជនភាព" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "ដំណើរការវីដេអូ..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "កំពុងដំណើរការ..." @@ -8602,10 +9031,10 @@ msgstr "កំពុងដំណើរការ..." msgid "profile" msgstr "ប្រវត្តិរូប" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "ប្រវត្តិរូប" @@ -8613,6 +9042,7 @@ msgstr "ប្រវត្តិរូប" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "កូដ QR ត្រូវបានចម្លងទៅក្ដារតម្បៀតខ្ទាស់របស់អ្នក" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "កូដ QR ត្រូវបានទាញយកហើយ" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "លេខកូដ QR ត្រូវបានរក្សាទុកទៅក្នុងក្រឡុកកាមេរ៉ារបស់អ្នក" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Quote post ត្រូវបានភ្ជាប់ម្តងទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Quote post ត្រូវបានផ្ដាច់ដោយជោគជ័យ" @@ -8711,12 +9138,12 @@ msgstr "Quote posts ត្រូវបានបិទ" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8728,16 +9155,16 @@ msgstr "លើសកម្រិតកំណត់ - អ្នកបានព្ msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "ភ្ជាប់ឡើងវិញ" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "ផ្ទុកការសន្ទនាឡើងវិញ" @@ -8863,6 +9304,8 @@ msgstr "ផ្ទុកការសន្ទនាឡើងវិញ" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "លុប {displayName} ចេញពីកញ្ចប់ចាប់ផ្តើម" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "លុបគណនី" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "យកឯកសារភ្ជាប់ចេញ" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "លុប Avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "លុប Banner" @@ -8914,8 +9362,9 @@ msgstr "លុប Banner" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "លុប​កាបង្កប់" @@ -8929,12 +9378,12 @@ msgstr "លុប​មតិព័ត៌មាន" msgid "Remove feed?" msgstr "លុប​មតិព័ត៌មាន?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "លុបរូបភាព" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "លុបការបង្ហោះឡើងវិញ" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "លុបចេញដោយ author" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "ដកចេញដោយអ្នក" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "ការឆ្លើយតប" @@ -9104,14 +9552,14 @@ msgstr "ការឆ្លើយតបត្រូវបានបិទ" msgid "Replies to this post are disabled." msgstr "ការឆ្លើយតបទៅនឹងការបង្ហោះនេះត្រូវបានបិទ" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "ឆ្លើយតបដែលលាក់ដោយ Thread Author" msgid "Reply Hidden by You" msgstr "ឆ្លើយតបដែលលាក់ដោយអ្នក" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "ការកំណត់ការឆ្លើយតបត្រូវបានជ្រើសរើសដោយ author នៃ thread" @@ -9137,18 +9581,18 @@ msgstr "ការកំណត់ការឆ្លើយតបត្រូវប msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "បានធ្វើបច្ចុប្បន្នភាពភាពមើលឃើញនៃការឆ្លើយតប" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "ការឆ្លើយតបត្រូវបានលាក់ដោយជោគជ័យ" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "រាយការណ៍" @@ -9157,20 +9601,20 @@ msgstr "រាយការណ៍" msgid "Report account" msgstr "រាយការណ៍គណនី" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "ប្រអប់រាយការណ៍" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "រាយការណ៍ព័ត៌មាន" @@ -9179,12 +9623,12 @@ msgstr "រាយការណ៍ព័ត៌មាន" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "រាយការណ៍ពីសារ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "រាយការណ៍ពី post" @@ -9199,8 +9643,8 @@ msgstr "រាយការណ៍ពីកញ្ចប់ចាប់ផ្តើ #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "រាយការណ៍ព័ត៌មាននេះ" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "រាយការណ៍បញ្ជីនេះ" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "បង្ហោះឡើងវិញ" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "ផ្សាយឡើងវិញដោយអ្នក" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "ការផ្សាយឡើងវិញនៃប្រកាសនេះ" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "ទាមទារសម្រាប់អ្នកផ្តល់សេ msgid "Required in your region" msgstr "ទាមទារនៅក្នុងតំបន់របស់អ្នក" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "កំណត់ស្ថានភាពចាប់ផ្តើមឡើ msgid "Reset password" msgstr "កំណត់ពាក្យសម្ងាត់ឡើងវិញ" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "ព្យាយាមម្តងទៀតនូវសកម្មភា msgid "Retry" msgstr "ព្យាយាមម្តងទៀត" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "ត្រឡប់ទៅទំព័រមុនវិញ" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "រក្សាទុកការផ្លាស់ប្តូរ" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "រក្សាទុករូបភាព" msgid "Save new handle" msgstr "រក្សាទុក handle ថ្មី" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "រក្សាទុកកូដ QR" @@ -9518,13 +9994,13 @@ msgstr "រក្សាទុកកូដ QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "រក្សាទុកក្នុងព័ត៌មានរបស់ខ្ញុំ" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "មតិព័ត៌មានដែលបានរក្សាទុក" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "បានរក្សាទុកទៅក្នុងមតិព័ត៌មានរបស់អ្នក" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "និយាយថាជំរាបសួរ" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "វិទ្យាសាស្ត្រ" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "រំកិលទៅកំពូល" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "ស្វែងរក" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "ស្វែងរកប្រវត្តិរូប" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "ជ្រើសរើសពណ៌មួយ" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "ជ្រើសរើស GIF" msgid "Select GIF \"{0}\"" msgstr "ជ្រើសរើស GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "ជ្រើសរើសភាសា..." msgid "Select languages" msgstr "ជ្រើសរើសភាសា" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "ជ្រើសរើសចំណាប់អារម្មណ៍រប msgid "Select your preferred language for translations in your feed." msgstr "ជ្រើសរើសភាសាដែលអ្នកពេញចិត្តសម្រាប់ការបកប្រែនៅក្នុងព័ត៌មានរបស់អ្នក" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "ផ្ញើអ៊ីមែល" @@ -9935,11 +10421,11 @@ msgstr "ផ្ញើអ៊ីមែល" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "ផ្ញើមតិកែលម្អ" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "ផ្ញើសារ" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "ផ្ញើរសារទៅ..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "ផ្ញើតាមសារផ្ទាល់" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "កំណត់អ៊ីមែលសម្រាប់កំណត់ពាក្យសម្ងាត់ឡើងវិញ" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "ការកំណត់" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "សកម្មភាពផ្លូវភេទ ឬអាក្រា msgid "Sexually Suggestive" msgstr "ចំណង់ផ្លូវភេទ" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "ចែករំលែក" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "ចែករំលែក" @@ -10097,16 +10586,21 @@ msgstr "ចែករំលែក" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "ចែករំលែកតំណ" @@ -10114,6 +10608,11 @@ msgstr "ចែករំលែកតំណ" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "ចែករំលែកកូដ QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10142,8 +10641,8 @@ msgstr "ចែករំលែកកញ្ចប់ចាប់ផ្តើមន #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "កម្មវិធីសាកល្បងចំណូលចិត្តដែលបានចែករំលែក" @@ -10167,16 +10666,16 @@ msgstr "បង្ហាញអត្ថបទជំនួស" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "បង្ហាញ" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "បង្ហាញបែបនេះតិច" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "បង្ហាញច្រើនទៀត" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "បង្ហាញច្រើនទៀតដូចនេះ" @@ -10246,8 +10745,8 @@ msgstr "បង្ហាញការឆ្លើយតប" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "បង្ហាញការឆ្លើយតបសម្រាប់អ្នករាល់គ្នា" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "បង្ហាញការព្រមាន និងត្រងពីមតិព័ត៌មាន" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "ចូល ឬបង្កើតគណនីរបស់អ្នក ដើម្បីចូលរួមការសន្ទនា" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "ចូលទៅគណនីដែលមិនមានក្នុងបញ្ជី" @@ -10337,8 +10842,12 @@ msgstr "ចូលទៅគណនីដែលមិនមានក្នុងប msgid "Sign in to Bluesky or create a new account" msgstr "ចូល Bluesky ឬបង្កើតគណនីថ្មីមួយ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "ចេញ" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "ចេញ" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "ចេញ?" @@ -10391,7 +10900,7 @@ msgstr "រំលង" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "តូចជាង" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "មានអ្វីមួយខុសប្រក្រតី" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "កីឡា" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "ចាប់ផ្តើមការជជែកថ្មី" @@ -10582,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "ចាប់ផ្តើមជជែកជាមួយ {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "កញ្ចប់ចាប់ផ្តើម" @@ -10654,12 +11173,12 @@ msgstr "កន្លែងផ្ទុកត្រូវបានសម្អា msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "ដាក់ស្នើ" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "ជាវ" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "ជោគជ័យ!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "គាំទ្រ" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "ប្តូរគណនី" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "កំណត់ហេតុប្រព័ន្ធ" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "ប៉ះដើម្បីច្រានចោល" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "លក្ខខណ្ឌនៃសេវាកម្ម" @@ -10939,7 +11484,7 @@ msgstr "អត្ថបទ & ស្លាក" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "វាលបញ្ចូលអត្ថបទ" @@ -10981,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "គណនីនឹងអាចធ្វើអន្តរកម្មជាមួយអ្នកបន្ទាប់ពីឈប់ទប់ស្កាត់" @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "គោលការណ៍ឯកជនភាពត្រូវបានផ្លាស់ទីទៅ <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "មានបញ្ហាក្នុងការទាក់ទងម៉ាស៊ីនមេ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "មានបញ្ហាក្នុងការទាញយកសារបង្ហោះ។ ចុចទីនេះដើម្បីព្យាយាមម្តងទៀត" @@ -11161,31 +11714,31 @@ msgstr "មានបញ្ហាក្នុងការទាញយកព័ត msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "មាន​បញ្ហា​ក្នុង​ការ​ដក​មតិ​ព័ត៌មាន​នេះ​ចេញ។ សូមពិនិត្យមើលការតភ្ជាប់អ៊ីនធឺណិតរបស់អ្នក ហើយព្យាយាមម្តងទៀត" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "ការកំណត់ទាំងនេះអនុវត្តចំពោះតែព័ត៌មានខាងក្រោមប៉ុណ្ណោះ" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} នេះត្រូវបានសម្គាល់៖" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "បណ្ដឹងតវ៉ានេះនឹងត្រូវបានផ្ញើទៅ <0>{sourceName}" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "ការអំពាវនាវនេះនឹងត្រូវបញ្ជូនទៅសេវាកម្មសម្របសម្រួលរបស់ Bluesky" @@ -11263,7 +11824,7 @@ msgstr "ការអំពាវនាវនេះនឹងត្រូវបញ msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "ការជជែកនេះត្រូវបានផ្ដាច់" @@ -11310,7 +11881,11 @@ msgstr "ខ្លឹមសារនេះមិនមានទេ ដោយស msgid "This content is not viewable without a Bluesky account." msgstr "ខ្លឹមសារនេះមិនអាចមើលបានដោយគ្មានគណនី Bluesky ទេ" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "មតិព័ត៌មាននេះគឺទទេ" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "មតិព័ត៌មាននេះលែងមានអ៊ីនធឺណិតទៀតហើយ។ យើងកំពុងបង្ហាញ <0>Discover ជំនួសវិញ" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "ប្រកាសនេះអះអាងថាត្រូវបានបង្កើតឡើងនៅលើ <0>{0} ប៉ុន្តែត្រូវបានមើលឃើញជាលើកដំបូងដោយ Bluesky នៅលើ <1>{1}" @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "អ្នកនិពន្ធនៃប្រកាសនេះបានបិទការបង្ហោះសម្រង់" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "អ្នកប្រើប្រាស់នេះមិនមានអ្នកតាមទេ" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "អ្នកប្រើប្រាស់នេះបានរារាំងអ្នក។ អ្នកមិនអាចមើលមាតិការបស់ពួកគេបានទេ" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "វានឹងដក @{0} ចេញពីបញ្ជីចូលប្រើរហ័ស" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "វានឹងលុបការបង្ហោះរបស់អ្នកចេញពីប្រកាសសម្រង់នេះសម្រាប់អ្នកប្រើប្រាស់ទាំងអស់ ហើយជំនួសវាដោយកន្លែងដាក់" @@ -11574,7 +12166,7 @@ msgstr "ចំណូលចិត្តខ្សែស្រឡាយ" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "ដើម្បីបិទវិធីសាស្ត្រ 2FA អ៊ីមែល សូមផ្ទៀងផ្ទាត់ការចូលប្រើអាសយដ្ឋានអ៊ីមែលរបស់អ្នក" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "កំពូល" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "បកប្រែ" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:170 +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 "" @@ -11763,11 +12369,15 @@ msgstr "មិនអាចទាក់ទងសេវាកម្មរបស់ msgid "Unable to delete" msgstr "មិនអាចលុបបានទេ" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "ឈប់ទប់ស្កាត់" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "ឈប់ទប់ស្កាត់" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "បិទគណនី" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "បិទគណនី?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "ឈប់តាម {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "ឈប់តាមដានគណនី" @@ -11872,7 +12487,7 @@ msgstr "ឈប់តាមដានគណនី" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "បើកគណនី" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "បើកការសន្ទនា" @@ -11955,12 +12562,12 @@ msgstr "បើកការសន្ទនា" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -12030,14 +12637,18 @@ msgstr "ឈប់ជាវពីអ្នកដាក់ស្លាកនេះ msgid "Unsubscribed from list" msgstr "ឈប់ជាវពីបញ្ជី" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "ធ្វើបច្ចុប្បន្នភាព <0>{displayName} នៅក្នុងបញ្ជី" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "ធ្វើបច្ចុប្បន្នភាពទៅ {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "ការធ្វើបច្ចុប្បន្នភាពឯកសារភ្ជាប់សម្រង់បានបរាជ័យ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "ការធ្វើបច្ចុប្បន្នភាពលទ្ធភាពមើលឃើញការឆ្លើយតបបានបរាជ័យ" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "បង្ហោះរូបថតជំនួសវិញ" @@ -12098,39 +12717,40 @@ msgstr "បង្ហោះរូបថតជំនួសវិញ" msgid "Upload a text file to:" msgstr "បង្ហោះឯកសារអត្ថបទទៅ៖" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "កំពុងបង្ហោះរូបភាព..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "កំពុងបង្ហោះរូបភាពតូចនៃតំណ..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "កំពុងបង្ហោះវីដេអូ..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "បញ្ជីអ្នកប្រើប្រាស់ដោយ {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "អ្នក​ប្រើ​តាម​ដោយ <0>@{0}" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "ផ្ទៀងផ្ទាត់ DNS Record" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "វីដេអូ" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "វីដេអូបានបរាជ័យក្នុងដំណើរការ" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "រកមិនឃើញវីដេអូ" msgid "Video settings" msgstr "ការកំណត់វីដេអូ" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "បង្ហោះវីដេអូ" @@ -12432,18 +13052,18 @@ msgstr "វីដេអូ៖ {0}" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "មើលប្រវត្តិរូបរបស់ {0}" @@ -12467,20 +13087,15 @@ msgstr "មើលប្រវត្តិរូបរបស់ {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "មើលប្រវត្តិរូបរបស់អ្នកប្រើដែលត្រូវបានរារាំង" @@ -12503,10 +13118,18 @@ msgstr "មើលព័ត៌មានលម្អិត" msgid "View full thread" msgstr "មើល thread ពេញ" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "មើលព័ត៌មានអំពីស្លាកទាំងនេះ" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "មើលប្រវត្តិរូប" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "មើលរូបតំណាង" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "មើលសេវាកម្មដាក់ស្លាកដែលផ msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "មើលអ្នកប្រើប្រាស់ដែលចូលចិត្តព័ត៌មាននេះ" @@ -12596,8 +13219,8 @@ msgstr "មើលគណនីដែលបានបិទរបស់អ្នក msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "មាតិកាព្រមាន" msgid "Warn content and filter from feeds" msgstr "ព្រមានខ្លឹមសារ និងត្រងពីមតិព័ត៌មាន" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "យើងមិនអាចផ្ទុកការសន្ទនានេះបានទេ" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "យើងមិនអាចកំណត់ថាតើអ្នកត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូឬអត់។ សូមព្យាយាមម្តងទៀត" @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "យើងនឹងប្រាប់អ្នកនៅពេលគណនីរបស់អ្នករួចរាល់" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "យើងកំពុងមានបញ្ហាបណ្តាញ សូមព្យាយាមម្តងទៀត" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "យើងសុំទោស! ប្រកាសដែលអ្នកកំពុងឆ្លើយតបត្រូវបានលុប" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "យើងសុំទោស! យើងមិនអាចស្វែងរកទំព័រដែលអ្នកកំពុងស្វែងរកបានទេ" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "តើអ្នកចង់ហៅកញ្ចប់ចាប់ផ្តើមរបស់អ្នកថាម៉េច?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "មានរឿងអី?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "តើអ្នកណាអាចទាក់ទងជាមួយការបង្ហោះនេះ?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "អ្នកដែលអាចឆ្លើយបាន" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12939,7 +13566,7 @@ msgstr "ហេតុអ្វីបានជាកញ្ចប់ចាប់ផ msgid "Why should this user be reviewed?" msgstr "ហេតុអ្វីបានជាអ្នកប្រើប្រាស់នេះគួរត្រូវបានពិនិត្យ?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "សរសេរសារបង្ហោះ" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "សរសេរការឆ្លើយតបរបស់អ្នក" @@ -12978,7 +13605,8 @@ msgstr "អ្នកនិពន្ធ" msgid "Wrong DID returned from server. Received: {0}" msgstr "ខុស DID ត្រឡប់ពីម៉ាស៊ីនមេ។ បានទទួល៖ {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "បាទ/ចាស លុបកញ្ចប់ចាប់ផ្តើមនេះ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "បាទ ផ្ដាច់" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "បាទ លាក់" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "អ្នកមិនត្រូវបានអនុញ្ញាតឱ្យបង្ហោះវីដេអូទេ" @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "អ្នកអាចបន្តការសន្ទនាបន្តដោយមិនគិតពីការកំណត់ណាមួយដែលអ្នកជ្រើសរើស" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "ឥឡូវនេះ អ្នកអាចចូលដោយប្រើពាក្យសម្ងាត់ថ្មីរបស់អ្នក" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "អ្នកអាចដំណើរការគណនីរបស់អ 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "អ្នកមិនមានព័ត៌មានដែលបានរ msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "អ្នកបានឈានដល់ដែនកំណត់បណ្តោះអាសន្នសម្រាប់ការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "អ្នកអាចបន្ថែមបានត្រឹមតែ 3 មតិព័ត៌មានប៉ុណ្ណោះ" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "អ្នក​ត្រូវ​តែ​តាម​យ៉ាង​ហោច​ណាស់​ប្រាំពីរ​នាក់​ផ្សេង​ទៀត​ដើម្បី​បង្កើត​កញ្ចប់​ចាប់ផ្ដើម" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "អ្នកត្រូវតែផ្តល់សិទ្ធិចូលប្រើបណ្ណាល័យរូបថតរបស់អ្នក ដើម្បីរក្សាទុកកូដ QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "អ្នកនឹងត្រូវបានចេញពីគណនីរបស់អ្នកទាំងអស់" @@ -13378,11 +14038,11 @@ msgstr "អ្នកនឹងត្រូវបានចេញពីគណនី msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "អ្នក​នឹង​លែង​ទទួល​បាន​ការ​ជូន​ដំណឹង​សម្រាប់​ខ្សែ​នេះ​ទៀត​ហើយ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "ឥឡូវនេះ អ្នកនឹងទទួលបានការជូនដំណឹងសម្រាប់អត្ថបទនេះ" @@ -13390,12 +14050,12 @@ msgstr "ឥឡូវនេះ អ្នកនឹងទទួលបានកា 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "អ្នកស្ថិតនៅក្នុងជួរ" @@ -13463,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "អ្នក​បាន​ដល់​ចុង​បញ្ចប់​នៃ​ព័ត៌មាន​របស់​អ្នក​ហើយ! ស្វែងរកគណនីមួយចំនួនទៀតដើម្បីតាមដាន" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (ច្រើនបៃ)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "អ្នកបានឈានដល់ដែនកំណត់ប្រចាំថ្ងៃរបស់អ្នកសម្រាប់ការបង្ហោះវីដេអូ (វីដេអូច្រើនពេក)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "គណនីរបស់អ្នកមិនទាន់ចាស់គ្រប់គ្រាន់ក្នុងការបង្ហោះវីដេអូ។ សូមព្យាយាមម្តងទៀតនៅពេលក្រោយ" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "ឃ្លាំងគណនីរបស់អ្នកដែលមានកំណត់ត្រាទិន្នន័យសាធារណៈទាំងអស់ អាចទាញយកជាឯកសារ \"CAR\"។ ឯកសារនេះមិនរួមបញ្ចូលការបង្កប់មេឌៀ ដូចជារូបភាព ឬទិន្នន័យឯកជនរបស់អ្នក ដែលត្រូវតែទាញយកដោយឡែកពីគ្នា" @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "ថ្ងៃខែឆ្នាំកំណើតរបស់អ្នក" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "ការជជែករបស់អ្នកត្រូវបានបិទ" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "អ៊ីមែលរបស់អ្នកហាក់ដូចជាមិនត្រឹមត្រូវ" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "មតិព័ត៌មានខាងក្រោមរបស់អ្ msgid "Your full handle will be <0>@{0}" msgstr "ចំណុចទាញពេញលេញរបស់អ្នកនឹងមាន <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "ពាក្យដែលអ្នកបានបិទ" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "ប្រវត្តិរូប ការបង្ហោះ មតិព័ត៌មាន និងបញ្ជីរបស់អ្នកនឹងលែងអាចមើលឃើញដោយអ្នកប្រើប្រាស់ Bluesky ផ្សេងទៀត។ អ្នកអាចដំណើរការគណនីរបស់អ្នកឡើងវិញបានគ្រប់ពេលដោយការចូល" -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 41d79856f8..5604a4e72d 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "‘{interestsDisplayName}’ 카테고리 (활성)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(대화 초대 링크)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(임베드 콘텐츠 포함)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, other {# 좋아요}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "멤버 {0, plural, other {#명}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, other {#분}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, other {#개월}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, other {새 참여 요청 #개}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {#명}} 반응함 – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, other {#초}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "읽지 않은 항목 {0, plural, other {#개}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, other {#분}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "<0><1>텍스트 및 태그: {0}" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} 님이 대화에 추가되었습니다" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} 님과 {1} 님이 대화에 추가되었습니다" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} 팔로우 중" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} 님이 나를 차단했습니다" @@ -264,7 +273,7 @@ msgstr "{0}/50자" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} 님이 {1}(으)로 반응함" @@ -290,7 +299,7 @@ msgstr "{0} 님이 그룹에서 내보내졌습니다" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0} 님, {1} 님 {memberCount, plural, other {외 #명}}이 대화에 추가되었습니다" @@ -309,15 +318,40 @@ msgstr "{1} 님의 리스트 {0}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0} 님의 프로필 사진" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0} 님의 프로필 사진" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, other {멤버}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} 멤버" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}분" msgid "{0}s" msgstr "{0}초" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {참여 요청 없음} other {참여 요청 #개}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, other {대화 업데이트 #개}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, other {새 참여 요청 #개}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, other {#개 요청}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "읽지 않은 항목 {count, plural, other {#개}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {페이지를 새로 고침하고 확인하세요.} other {페이지를 새로 고침하고 모두 확인하세요.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "이 게시물에는 사진이 {count, plural, other {#장}} 있습니다." + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {앱을 업데이트하고 확인하세요.} other {앱을 업데이트하고 모두 확인하세요.}}" + +#. 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 "{count, plural, other {참여 요청 #+개}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+개 요청" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, other {시간}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {분}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 계정을 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 인증했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 님이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 님이 나를 맞팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 님이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 님이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} 님이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 님이 나를 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 님이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} 님이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 님이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 님이 나를 인증했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 계정을 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}이 나를 인증했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 님이 나를 팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 님이 나를 맞팔로우했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 님이 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 님이 내 게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} 님이 내 재게시물을 좋아합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 님이 나를 인증 취소했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 님이 내 게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} 님이 내 재게시물을 재게시했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 님이 내 스타터 팩으로 가입했습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 님이 나를 인증했습니다" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} 님이 나를 인증했습니다" msgid "{following} following" msgstr "{following} 팔로우 중" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} 님은 추가할 수 없습니다" @@ -547,7 +606,7 @@ msgstr "{handle} 님은 추가할 수 없습니다" msgid "{handle} can't be messaged" msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" @@ -559,6 +618,16 @@ msgstr "{hours, plural, other {#시간 {minutesString}}}" msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, other {#시간}}" +#. 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 "새 참여 요청 {JOIN_REQUESTS_THRESHOLD}+개" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "새 참여 요청 {JOIN_REQUESTS_THRESHOLD}+개" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {설명이 너무 깁니다. 최대 #자 msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {표시 이름이 너무 깁니다. 최대 #자까지 입력할 수 있습니다.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "답글은 최대 {MAX_HIDDEN_REPLIES, plural, other {#개}}까지 숨길 수 있습니다." #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} 님이 {target}에 {0}(으)로 반응했습니다" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name} 님이 좋아하는 피드와 사람들을 소개합니다. 함 msgid "{name}'s starter pack" msgstr "{name} 님의 스타터 팩" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "읽지 않은 항목 {notificationCount, plural, other {#개}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {연락처 #개를}} 찾았습니다" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, other {#개 요청}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+개 요청" @@ -656,6 +725,12 @@ msgstr "{userName} 님은 인증되었습니다" msgid "{userName}'s verifications" msgstr "{userName} 님의 인증" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} 외 {2, plural, other {#명}}이 스타터 팩에 #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {팔로워}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {팔로우 중}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {좋아요}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {인용}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {재게시}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, other {저장}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0}의 멤버" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> 님이 나를 추가함" @@ -795,8 +870,13 @@ msgstr "네트워크 오류가 발생했습니다. 인터넷 연결 상태를 #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "네트워크 오류가 발생했습니다. 인터넷 연결 상태를 확인해 주세요." @@ -804,7 +884,7 @@ msgstr "네트워크 오류가 발생했습니다. 인터넷 연결 상태를 msgid "A new code has been sent" msgstr "새 코드를 보냈습니다" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "새로운 방식의 인증" @@ -827,11 +907,11 @@ msgstr "팔로우 버튼 옆에 새 활동 알림 기능을 나타내는 종 모 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 "‘임시 저장’이라는 새로운 버튼이 추가된 게시물 작성기 스크린샷. 버튼에는 무지개색 폭죽 효과가 적용되어 있습니다. 버튼 아래에는 “이봐, 소식 들었어? 이제 Bluesky에 임시 저장 기능이 생겼대!!!”라는 문구가 적혀 있습니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "선택한 수신자를 발신자가 팔로우하지 않았습니다." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "모욕 또는 차별 행위" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "수락" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "요청 수락" @@ -860,17 +950,26 @@ msgstr "요청 수락" msgid "Accept this language suggestion" msgstr "이 언어 제안 수락하기" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "수락한 대화" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "참여 요청 완료! 그룹 소유자가 요청을 검토할 예정입니다" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "접근성" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "접근성 설정" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "접근성 설정" msgid "Account" msgstr "계정" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "계정을 차단했습니다" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "계정을 팔로우했습니다" @@ -899,7 +998,7 @@ msgstr "계정이 일시 정지되었습니다" msgid "Account is deactivated" msgstr "계정이 비활성화되었습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "계정 제공자" msgid "Account removed from quick access" msgstr "빠른 액세스에서 계정 제거" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "계정을 차단 해제했습니다" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "계정을 언팔로우했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "계정을 언뮤트했습니다" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "물결 모양의 파란색 체크 표시 <0><1/> 가 있는 계정은 다른 계정을 인증할 수 있습니다. 이러한 신뢰할 수 있는 인증자는 Bluesky에서 선정합니다." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "다른 사용자의 활동" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "활동 알림" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "추가" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "대체 텍스트 추가 (선택 사항)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "다른 게시물 추가하기" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "스레드에 다른 게시물 추가" @@ -1035,7 +1130,7 @@ msgstr "앱 비밀번호 추가" msgid "Add App Password" msgstr "앱 비밀번호 추가" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "계정에 자동화 라벨 추가" @@ -1043,7 +1138,7 @@ msgstr "계정에 자동화 라벨 추가" msgid "Add emoji reaction" msgstr "이모티콘 반응 추가" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "그룹 대화 멤버 추가" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "게시물에 미디어 추가" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "세부 정보 추가 (선택 사항)" @@ -1091,6 +1186,10 @@ msgstr "사용자 추가" 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 "반응 추가" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "{0} 님이 추가함" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "초대 링크로 추가됨" @@ -1165,12 +1264,12 @@ msgstr "리스트에 멤버를 추가하는 중…" msgid "Additional details (limit 1000 characters)" msgstr "추가 세부 정보 (1000자 이내)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "추가 세부 정보 (300자 이내)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "관리자" @@ -1228,12 +1327,12 @@ msgstr "연령 확인 요청을 제출했습니다" msgid "Age assurance only takes a few minutes" msgstr "연령 확인은 몇 분이면 완료됩니다" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "모두" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "전체 {0}" @@ -1278,13 +1377,13 @@ msgstr "다이렉트 메시지 접근 허용" msgid "Allow anyone to reply" msgstr "누구나 답글을 달 수 있도록 허용" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "다이렉트 메시지를 허용할 대상" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "그룹 대화 초대를 허용할 대상" @@ -1338,12 +1437,12 @@ msgstr "이미 계정이 있나요?" msgid "Already signed in as @{0}" msgstr "이미 @{0}(으)로 로그인했습니다" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "대체 텍스트" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "대체 텍스트는 시각장애인과 저시력 사용자를 위해 이미지를 설명하며 모든 사용자의 이해를 돕습니다." @@ -1387,7 +1486,7 @@ msgstr "오류 발생" msgid "An error occurred" msgstr "오류 발생" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "동영상을 압축하는 동안 오류가 발생했습니다." @@ -1421,7 +1520,8 @@ msgstr "동영상을 불러오는 동안 오류가 발생했습니다. 다시 msgid "An error occurred while loading your lists :/" msgstr "리스트를 불러오는 동안 오류가 발생했습니다 :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" @@ -1432,11 +1532,11 @@ msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" msgid "An error occurred while trying to follow all" msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "동영상을 업로드하는 동안 오류가 발생했습니다. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "동영상을 업로드하는 동안 오류가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요." @@ -1456,26 +1556,30 @@ msgstr "연락처에서 Bluesky 앱으로 사용자 프로필 사진이 흘러 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "재게시, 좋아요, 댓글 아이콘과 함께 여러 Bluesky 게시물이 나열된 삽화" +#: 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 "친구 초대를 나타내는, 종이비행기가 날아가는 Bluesky 앱의 일러스트" + #: 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 "Bluesky가 신뢰할 수 있는 인증자를 선정하고 신뢰할 수 있는 인증자가 차례로 개별 사용자 계정을 인증하는 과정을 보여주는 그림." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "그룹 대화 만드는 동안 문제가 발생했습니다. 다시 시도해 주세요." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +msgstr "대화를 시작하는 동안 문제가 발생했습니다. 다시 시도해 주세요." #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 msgid "An issue occurred while trying to open the chat" @@ -1485,12 +1589,12 @@ msgstr "대화를 여는 동안 문제가 발생했습니다" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "문제가 발생했습니다. 다시 시도해 주세요." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "파란색 체크 표시가 달린 인증된 사용자의 프로필 화면이 열린 Bluesky 앱을 iPhone에 띄워 보여주는 목업 이미지." @@ -1539,13 +1643,17 @@ msgstr "누구나" msgid "Anyone can interact" msgstr "누구나 상호작용할 수 있음" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "누구나 참여 요청할 수 있음" @@ -1555,11 +1663,11 @@ msgstr "누구나 참여 요청할 수 있음" msgid "Anyone who follows me" msgstr "나를 팔로우하는 모든 사용자" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다" msgid "App passwords" msgstr "앱 비밀번호" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "앱 비밀번호" @@ -1618,7 +1726,7 @@ msgstr "라이브 스트리밍 정지 이의신청" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "이의신청을 제출했습니다" @@ -1632,14 +1740,14 @@ msgstr "일시 정지 이의신청" msgid "Appeal Suspension" msgstr "일시 정지 이의신청" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "풀 리퀘스트 적용" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "{0}에 보관됨" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "보관된 게시물" @@ -1675,7 +1783,7 @@ msgstr "정말로 진행하시겠습니까?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "앱 비밀번호 ‘{0}’(을)를 삭제하시겠습니까?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "이 메시지를 정말 삭제하시겠습니까? 삭제하더라도 다른 참여자에게는 메시지가 그대로 표시됩니다." @@ -1688,23 +1796,29 @@ msgstr "이 스타터 팩을 삭제하시겠습니까?" msgid "Are you sure you want to discard your changes?" msgstr "변경 사항을 삭제하시겠습니까?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "정말 {groupName}에서 나가시겠습니까?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "이 대화에서 나가시겠습니까?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다." +#: src/components/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 "내 피드에서 이 피드를 삭제하시겠습니까?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "{0}에 대한 참여 요청을 취소하시겠습니까?" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "이 게시물을 삭제하시겠습니까?" @@ -1724,8 +1838,8 @@ msgstr "예술" msgid "Artistic or non-erotic nudity." msgstr "선정적이지 않거나 예술적인 나체." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "알고리즘에 주제 지정" @@ -1752,7 +1866,7 @@ msgstr "자동화된 계정" msgid "Automation label" msgstr "자동화 라벨" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "자동화 라벨" @@ -1767,12 +1881,12 @@ msgstr "동영상 및 GIF 자동 재생" msgid "Available" msgstr "사용 가능" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "사용 가능" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "사용 가능" msgid "Back" msgstr "뒤로" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "대화로 돌아가기" @@ -1832,7 +1948,7 @@ msgstr "게시물을 작성하거나 답글을 달기 전에 먼저 이메일을 msgid "Before creating a starter pack, you must first verify your email." msgstr "스타터 팩을 만들기 전에 먼저 이메일을 인증해야 합니다." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "이 대화 요청을 수락하려면 먼저 이메일을 인증해야 합니다." @@ -1840,13 +1956,14 @@ msgstr "이 대화 요청을 수락하려면 먼저 이메일을 인증해야 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "{name} 님의 게시물에 대한 알림을 받으려면 먼저 이메일을 인증해야 합니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "다른 사용자에게 메시지를 보내려면 먼저 이메일을 인증해야 합니다." @@ -1874,59 +1991,53 @@ msgstr "생년월일" msgid "Birthday" msgstr "생년월일" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "차단" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "{displayName} 님 차단하기" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "계정 차단" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "계정을 차단하시겠습니까?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "차단 및 삭제" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "차단 및 나가기" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "리스트 차단" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "차단 또는 신고" @@ -1936,9 +2047,9 @@ msgstr "이 계정들을 차단하시겠습니까?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "사용자 차단" @@ -1946,17 +2057,17 @@ msgstr "사용자 차단" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "사용자 차단" -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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 "" +msgstr "사용자를 차단하거나 이 대화에서 나가기" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "차단됨" @@ -1964,14 +2075,12 @@ msgstr "차단됨" msgid "Blocked accounts" msgstr "차단한 계정" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "차단한 계정" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다." @@ -1987,7 +2096,7 @@ msgstr "차단하더라도 이 라벨러가 내 계정에 라벨을 붙이는 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "차단 목록은 공개됩니다. 차단한 계정은 내 스레드에 답글을 달거나 나를 멘션하거나 기타 다른 방식으로 나와 상호작용할 수 없습니다." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "차단하더라도 내 계정에 라벨이 붙는 것은 막지 못하지만, 이 계정이 내 스레드에 답글을 달거나 나와 상호작용하는 것은 중지됩니다." @@ -2000,7 +2109,7 @@ msgstr "블로그" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky는 해당 날짜의 진위를 확인할 수 없습니다." @@ -2029,7 +2138,7 @@ msgstr "Bluesky는 친구와 함께하면 더 좋답니다!" msgid "Bluesky is more fun with friends" msgstr "Bluesky는 친구들과 함께하면 더욱 즐거워집니다" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky는 친구들과 함께하면 더욱 즐거워집니다! 연락처를 가져와서 누가 이미 Bluesky에 있는지 확인해 보세요." @@ -2037,11 +2146,15 @@ msgstr "Bluesky는 친구들과 함께하면 더욱 즐거워집니다! 연락 msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky는 친구들과 함께하면 더욱 즐거워집니다. 친구들을 초대해 볼까요? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "다른 프로필의 QR 코드를 스캔하려면 Bluesky에 카메라 접근 권한이 필요합니다." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Bluesky Social 서비스 이용약관" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky는 연락처를 인코딩된 데이터로 저장합니다. 연락처를 제거하면 이 데이터는 즉시 삭제됩니다." @@ -2053,7 +2166,7 @@ msgstr "Bluesky가 네트워크에 있는 사용자 중에서 임의로 추천 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky는 주목할 만하고 신뢰할 수 있는 계정을 우선적으로 인증합니다." @@ -2081,6 +2194,10 @@ msgstr "책" msgid "Breaking site rules" msgstr "사이트 규칙 위반" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "최대 50명의 친구를 하나의 대화방에 초대하세요." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "비즈니스" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" -msgstr "{0} 님이 만듦" - -#. placeholder {0}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 -msgid "By <0>{0}" -msgstr "<0>{0} 님이 만듦" +msgstr "{0}" #. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "<0>@{0} 님이 만듦" +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "<0>{0}" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "소유자: <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "계정을 만들면 <0>서비스 이용약관에 동의하는 것입 msgid "By you" msgstr "내가 만듦" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "카메라" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "카메라" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "카메라" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "취소" @@ -2248,9 +2384,9 @@ msgstr "재활성화 취소 및 로그아웃" msgid "Cancel search" msgstr "검색 취소" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "차단된 사용자와 상호작용할 수 없습니다" @@ -2264,7 +2400,7 @@ msgstr "자막(.vtt)" msgid "Captions & alt text" msgstr "자막 및 대체 텍스트" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "캐러셀" @@ -2297,7 +2433,7 @@ msgstr "앱 언어 변경" msgid "Change Handle" msgstr "핸들 변경" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "검토 서비스 변경" @@ -2310,11 +2446,11 @@ msgstr "비밀번호 변경" msgid "Change password dialog" msgstr "비밀번호 변경 대화 상자" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "신고 카테고리 변경" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "신고 이유 변경" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "대화" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "대화를 삭제했습니다" @@ -2361,6 +2497,12 @@ msgstr "대화를 삭제했습니다" msgid "Chat ended" msgstr "대화가 종료되었습니다" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "대화 초대 링크를 사용할 수 없습니다" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "대화가 잠겼습니다" @@ -2373,35 +2515,44 @@ msgstr "대화 메시지 - 음소거" msgid "Chat messages - sound" msgstr "대화 메시지 - 소리" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "대화를 뮤트했습니다" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "대화를 찾을 수 없습니다." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "대화 소유자는 그룹 대화에서 나갈 수 없습니다." + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "대화 수신자가 발신자를 팔로우하지 않았습니다." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "대화 요청 수신함" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "대화 요청" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "대화 설정" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "대화 설정" @@ -2418,14 +2569,14 @@ msgstr "대화 제목이 {0}(으)로 변경되었습니다" msgid "Chat unlocked" msgstr "대화가 잠금 해제되었습니다" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "대화를 언뮤트했습니다" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "대화" @@ -2479,7 +2630,7 @@ msgstr "게시물 언어 선택" msgid "Choose this color as your avatar" msgstr "이 색상을 아바타로 선택" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "이 그룹 대화에 참여할 수 있는 사람과 참여 방식을 선택하세요." @@ -2558,7 +2709,7 @@ msgstr "이곳을 클릭하여 로그아웃하기" msgid "Click here to resend the email" msgstr "이곳을 클릭하여 이메일 다시 전송하기" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "인증 절차를 다시 시작하려면 이곳을 클릭하세요." @@ -2567,7 +2718,7 @@ msgstr "인증 절차를 다시 시작하려면 이곳을 클릭하세요." msgid "Click here to update your birthdate" msgstr "이곳을 클릭하여 생년월일 변경하기" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "이곳을 클릭하여 이메일 변경하기" @@ -2580,7 +2731,7 @@ msgstr "이곳을 클릭하여 이 그룹 대화의 초대 링크 보기" msgid "Click to open tag menu for {0}" msgstr "클릭하여 {0}에 대한 태그 메뉴를 엽니다" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "클릭하여 메시지 다시 보내기" @@ -2594,28 +2745,30 @@ msgstr "클릭하여 메시지 다시 보내기" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "클릭하여 메시지 다시 보내기" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "닫기" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "열려 있는 대화 상자 닫기" @@ -2647,6 +2800,10 @@ msgstr "열려 있는 대화 상자 닫기" msgid "Close alert" msgstr "알림 닫기" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "배너 닫기" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "하단 서랍 닫기" @@ -2657,8 +2814,10 @@ msgstr "하단 서랍 닫기" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "대화 상자 닫기" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "이미지 닫기" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "이 대화 상자 닫기" @@ -2695,18 +2866,22 @@ msgstr "환영 대화 상자 닫기" msgid "Closes password update alert" msgstr "비밀번호 변경 알림을 닫습니다" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "게시물 작성기를 닫고 게시물 초안을 삭제합니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "사용자 목록 접기" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "이 알림에 대한 사용자 목록을 축소합니다" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "색상" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "만화" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "커뮤니티 가이드라인" @@ -2740,12 +2915,12 @@ msgstr "챌린지 완료하기" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "새 게시물 작성하기" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습니다" @@ -2753,11 +2928,11 @@ msgstr "게시물을 최대 {0, plural, other {#자}}까지 작성할 수 있습 msgid "Compose reply" msgstr "답글 작성하기" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "GIF 압축 중…" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "동영상 압축 중…" @@ -2780,7 +2955,7 @@ msgstr "<0>검토 설정에서 설정합니다." msgid "Confirm" msgstr "확인" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "지원팀에 연락하기" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "앱이 연락처에 접근할 수 없으므로 이 기기에서는 연락처 동기화를 사용할 수 없습니다." @@ -2825,11 +3000,11 @@ msgstr "앱이 연락처에 접근할 수 없으므로 이 기기에서는 연 msgid "Contact us" msgstr "문의하기" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "연락처 가져오기 완료" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "연락처를 제거했습니다" @@ -2842,7 +3017,7 @@ msgstr "콘텐츠 및 미디어" msgid "Content and media" msgstr "콘텐츠 및 미디어" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "콘텐츠 및 미디어" @@ -2889,7 +3064,7 @@ msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "스레드 더 보기" msgid "Continue thread..." msgstr "스레드 더 보기…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "그룹 이름으로 계속" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "대화" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "대화 삭제됨" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "대화를 삭제했습니다" @@ -2939,15 +3114,22 @@ msgstr "대화를 삭제했습니다" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +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:162 msgid "Copied build version to clipboard" msgstr "빌드 버전을 클립보드에 복사했습니다" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "복사했습니다!" msgid "Copies build version to clipboard" msgstr "빌드 버전을 클립보드에 복사합니다" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "프로필 고유 URL을 클립보드에 복사합니다" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "복사" @@ -2997,6 +3184,11 @@ msgstr "DID 복사" msgid "Copy host" msgstr "호스트 복사" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "리스트 링크 복사" msgid "Copy link to post" msgstr "게시물 링크 복사" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "프로필 링크 복사" @@ -3027,8 +3219,8 @@ msgstr "프로필 링크 복사" msgid "Copy link to starter pack" msgstr "스타터 팩 링크 복사" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "메시지 텍스트 복사" @@ -3037,12 +3229,12 @@ msgstr "메시지 텍스트 복사" msgid "Copy post at:// URI" msgstr "게시물 at:// URI 복사" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "게시물 텍스트 복사" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR 코드 복사" @@ -3052,11 +3244,15 @@ msgstr "TXT 레코드 값 복사" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "저작권 정책" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "QR 코드를 캡처할 수 없습니다" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "맞춤 피드에 연결할 수 없습니다" @@ -3065,7 +3261,15 @@ msgstr "맞춤 피드에 연결할 수 없습니다" msgid "Could not connect to feed service" msgstr "피드 서비스에 연결할 수 없습니다" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "복사할 수 없습니다. 다시 시도해 주세요" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "다운로드할 수 없습니다. 다시 시도해 주세요" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "게시물을 가져올 수 없습니다" @@ -3073,23 +3277,27 @@ msgstr "게시물을 가져올 수 없습니다" msgid "Could not find profile" msgstr "프로필을 찾을 수 없습니다" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "모든 사용자를 팔로우할 수 없습니다. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "대화에서 나갈 수 없습니다" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "대화에서 나갈 수 없습니다." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "피드를 불러올 수 없습니다" @@ -3100,7 +3308,11 @@ msgstr "피드를 불러올 수 없습니다" msgid "Could not load list" msgstr "리스트를 불러올 수 없습니다" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "프로필을 불러올 수 없습니다" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "대화를 뮤트할 수 없습니다" @@ -3108,11 +3320,19 @@ msgstr "대화를 뮤트할 수 없습니다" msgid "Could not process your video" msgstr "동영상을 처리할 수 없습니다" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "멤버를 내보낼 수 없습니다." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "변경 사항을 저장할 수 없습니다: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "공유할 수 없습니다. 다시 시도해 주세요" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "알림 설정을 업데이트할 수 없습니다" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "만들기" @@ -3153,13 +3373,13 @@ msgstr "리스트 만들기" msgid "Create a list from this starter pack" msgstr "스타터 팩에서 리스트 만들기" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "스타터 팩 만들기" @@ -3174,13 +3394,14 @@ msgstr "나를 위한 스타터 팩 만들기" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "계정 만들기" msgid "Create an account without using this starter pack" msgstr "이 스타터 팩을 사용하지 않고 계정 만들기" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "대신 아바타 만들기" @@ -3206,7 +3427,7 @@ msgstr "대신 아바타 만들기" msgid "Create another" msgstr "다른 스타터 팩 만들기" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "그룹 대화 만들기" @@ -3228,19 +3449,20 @@ msgstr "스타터 팩에서 리스트 만들기" msgid "Create moderation list" msgstr "검토 리스트 만들기" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "새 계정 만들기" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "{0}에 대한 신고 작성하기" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "{0}에 생성됨" @@ -3270,6 +3492,10 @@ msgstr "작성자 차단됨" msgid "Culture" msgstr "문화" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "현재 대화" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "어두운 테마" msgid "Date of birth" msgstr "생년월일" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "새벽" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "낮" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "기본" msgid "Default icons" msgstr "기본 아이콘" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "앱 비밀번호 삭제" msgid "Delete app password?" msgstr "앱 비밀번호를 삭제하시겠습니까?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "대화 삭제" @@ -3378,19 +3612,19 @@ msgstr "대화 삭제" msgid "Delete chat declaration record" msgstr "대화 신고 기록 삭제" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "연락처 삭제" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "나에게서 삭제" @@ -3399,11 +3633,11 @@ msgstr "나에게서 삭제" msgid "Delete list" msgstr "리스트 삭제" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "메시지 삭제" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "나에게 보이는 메시지 삭제" @@ -3411,9 +3645,9 @@ msgstr "나에게 보이는 메시지 삭제" msgid "Delete my account" msgstr "내 계정 삭제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "게시물 삭제" @@ -3430,17 +3664,17 @@ msgstr "스타터 팩 삭제" msgid "Delete this list?" msgstr "이 리스트를 삭제하시겠습니까?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "이 게시물을 삭제하시겠습니까?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "삭제됨" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "삭제된 계정" @@ -3471,12 +3705,12 @@ msgstr "설명 (최대 1000자)" msgid "Descriptive alt text" msgstr "설명이 포함된 대체 텍스트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "인용 해제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "인용을 해제하시겠습니까?" @@ -3507,13 +3741,13 @@ msgstr "대화 상자: 이 게시물과 상호작용할 수 있는 사용자 조 msgid "Dim" msgstr "어둑함" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "2단계 인증 비활성화" @@ -3521,7 +3755,7 @@ msgstr "2단계 인증 비활성화" msgid "Disable captions" msgstr "캡션 비활성화" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "이메일 2단계 인증 비활성화" @@ -3534,8 +3768,8 @@ msgstr "이메일 2단계 인증 끄기" msgid "Disable haptic feedback" msgstr "햅틱 피드백 끄기" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "링크 비활성화" @@ -3547,7 +3781,7 @@ msgstr "이 게시물의 인용 게시물을 비활성화" msgid "Disable replies entirely" msgstr "답글을 완전히 비활성화" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "이 초대 링크를 비활성화하시겠습니까?" @@ -3560,9 +3794,9 @@ msgstr "사용 안 함" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "삭제" msgid "Discard changes?" msgstr "변경 사항 삭제" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "게시물 삭제" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Germ DM 연결 해제" @@ -3609,15 +3843,16 @@ msgstr "새 피드 발견하기" msgid "Discover New Feeds" msgstr "새 피드 발견하기" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "닫기" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "배너 닫기" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "오류 무시" @@ -3642,6 +3877,10 @@ msgstr "이 부분 닫기" msgid "Dismiss this suggestion" msgstr "이 추천 닫기" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "QR 코드 스캐너를 닫습니다" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "나체를 포함하지 않습니다." msgid "Domain verified!" msgstr "도메인을 확인했습니다." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "코드가 없거나 새 코드가 필요한가요? <0>이곳을 클릭하세요." @@ -3681,7 +3920,7 @@ msgstr "코드가 없거나 새 코드가 필요한가요? <0>이곳을 클릭 msgid "Don’t see a code? <0>Click here to resend." msgstr "코드가 보이지 않나요? <0>다시 전송하려면 이곳을 클릭하세요." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "이메일이 보이지 않나요? <0>다시 전송하려면 이곳을 클릭하세요." @@ -3700,16 +3939,21 @@ msgstr "걱정 마세요! 모든 기존 메시지와 설정은 저장되며 성 #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "완료" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "메시지를 두 번 탭하거나 길게 눌러서 반응을 추가합니다" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "두 번 탭하여 대화 상자를 닫습니다" @@ -3737,19 +3981,14 @@ msgstr "두 번 탭하여 대화 상자를 닫습니다" 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 "Bluesky 다운로드" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR 파일 다운로드" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR 파일 다운로드" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "대화 데이터 다운로드" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "대화 데이터 다운로드" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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 "초대 QR 코드 다운로드하기" + +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "해당 지역의 법률에 따라 성인 인증이 완료될 때까지 B msgid "Duration:" msgstr "기간:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "저녁" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "예: alice" @@ -3823,9 +4079,8 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정." msgid "Eating disorders" msgstr "섭식 장애" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "편집" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "프로필 사진 편집" @@ -3847,19 +4102,19 @@ msgstr "프로필 사진 편집" msgid "Edit Feeds" msgstr "피드 편집하기" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "이미지 편집하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "상호작용 설정 편집" @@ -3868,7 +4123,16 @@ msgstr "상호작용 설정 편집" msgid "Edit interests" msgstr "관심 주제 편집" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "링크 설정 편집" @@ -3886,20 +4150,15 @@ msgstr "라이브 상태 편집" msgid "Edit moderation list" msgstr "검토 리스트 편집" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "내 피드 편집" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "이름 편집" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "{0} 님의 알림 편집" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "사용자 편집하기" @@ -3912,12 +4171,12 @@ msgstr "게시물 상호작용 설정 편집하기" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "프로필 편집" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "프로필 편집" @@ -3925,7 +4184,8 @@ msgstr "프로필 편집" msgid "Edit starter pack" msgstr "스타터 팩 편집" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "이 그룹 대화의 이름을 편집하기" @@ -3937,7 +4197,7 @@ msgstr "사용자 리스트 편집" msgid "Edit who can reply" msgstr "답글을 달 수 있는 사용자 편집" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "스타터 팩 편집" @@ -3971,7 +4231,7 @@ msgstr "이메일 주소" msgid "Email Resent" msgstr "이메일 다시 전송됨" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "이메일을 보냈습니다!" @@ -4006,8 +4266,8 @@ msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를 msgid "Embedded video player" msgstr "임베드 동영상 플레이어" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "활성화" @@ -4025,7 +4285,7 @@ msgstr "성인 콘텐츠 활성화" msgid "Enable captions" msgstr "캡션 활성화" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "이메일 2단계 인증 활성화" @@ -4038,13 +4298,12 @@ msgstr "외부 미디어 사용" msgid "Enable media players for" msgstr "미디어 플레이어를 사용할 외부 사이트" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "계정의 프로필을 방문하여 <0>종 모양 아이콘 <1/> 을 눌러 계정에 대한 알림을 사용 설정하세요." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "푸시 알림 사용" @@ -4091,8 +4350,8 @@ msgstr "비밀번호 입력" msgid "Enter a word or tag" msgstr "단어 또는 태그 입력" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "코드 입력" @@ -4143,12 +4402,12 @@ msgstr "전체화면으로 봅니다" msgid "Entertainment" msgstr "엔터테인먼트" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "오류" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "최신 데이터를 불러오는 중 오류가 발생했습니다." @@ -4185,23 +4444,23 @@ msgstr "누구나 답글을 달 수 있음" msgid "Everybody can reply to this post." msgstr "누구나 이 게시물에 답글을 달 수 있습니다." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "모두" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "모두" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "모두" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "기타" @@ -4217,16 +4476,16 @@ msgstr "내가 팔로우하는 사용자 제외" msgid "Exit fullscreen" msgstr "전체화면 나가기" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "사용자 목록 펼치기" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다" @@ -4238,7 +4497,7 @@ msgstr "게시물 텍스트 확장" msgid "Expands or collapses post text" msgstr "게시물 텍스트를 펼치거나 접습니다" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "레코드로 확인될 것으로 예상되는 URI" @@ -4277,10 +4536,10 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어." msgid "Explicit sexual images." msgstr "노골적인 성적 이미지." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "탐색" @@ -4289,11 +4548,8 @@ msgstr "탐색" msgid "Explore the app" msgstr "앱 둘러보기" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "대화 데이터 내보내기" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "내 대화 데이터 내보내기" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "외부 미디어 설정" @@ -4331,18 +4587,22 @@ msgstr "외부 미디어 설정" msgid "Extremist content" msgstr "극단주의 콘텐츠" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "대화를 수락하지 못했습니다" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "참여 요청을 승인하지 못했습니다" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "이모티콘 반응을 추가하지 못했습니다" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "멤버를 추가하지 못했습니다" @@ -4354,7 +4614,8 @@ msgstr "스타터 팩에 추가하지 못했습니다" msgid "Failed to change handle. Please try again." msgstr "핸들을 변경하지 못했습니다. 다시 시도해 주세요." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "링크를 복사하지 못했습니다" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "앱 비밀번호를 만들지 못했습니다. 다시 시도해 주세요." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "대화를 만들지 못했습니다" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "초대 링크를 생성하지 못했습니다" @@ -4376,17 +4637,17 @@ msgstr "초대 링크를 생성하지 못했습니다" msgid "Failed to create starter pack" msgstr "스타터 팩을 만들지 못했습니다" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "메시지를 삭제하지 못했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" @@ -4394,24 +4655,24 @@ msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" msgid "Failed to delete starter pack" msgstr "스타터 팩을 삭제하지 못했습니다" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "초대 링크를 비활성화하지 못했습니다" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Germ DM을 연결 해제하지 못했습니다. 오류: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "그룹 대화 이름을 편집하지 못했습니다" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "초대 링크를 편집하지 못했습니다" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "초대 링크를 활성화하지 못했습니다" @@ -4427,19 +4688,27 @@ msgstr "모든 친구를 팔로우하지 못했습니다. 다시 시도해 주 msgid "Failed to hide suggestion, please check your internet connection" msgstr "추천을 숨기지 못했습니다. 인터넷 연결 상태를 확인해 주세요" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "참여 요청을 무시하지 못했습니다" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "그룹 대화에서 나가지 못했습니다" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "대화를 불러오지 못했습니다" @@ -4456,17 +4725,8 @@ msgstr "피드를 불러오지 못했습니다" msgid "Failed to load feeds preferences" msgstr "피드 환경설정을 불러오지 못했습니다" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "알림 설정을 불러오지 못했습니다." @@ -4493,16 +4753,15 @@ msgstr "추천 피드를 불러오지 못했습니다" msgid "Failed to load suggested follows" msgstr "추천 팔로우를 불러오지 못했습니다" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "그룹 대화를 잠그지 못했습니다" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "모든 요청을 읽음으로 표시하지 못했습니다" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "그룹 대화를 뮤트하지 못했습니다" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "게시물을 고정하지 못했습니다" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Germ DM을 다시 연결하지 못했습니다. 오류: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "데이터를 제거하지 못했습니다. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "이모티콘 반응을 제거하지 못했습니다" @@ -4534,7 +4793,8 @@ msgstr "이모티콘 반응을 제거하지 못했습니다" msgid "Failed to remove from starter pack" msgstr "스타터 팩에서 제거하지 못했습니다" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "그룹 대화 멤버를 내보내지 못했습니다" @@ -4542,15 +4802,20 @@ msgstr "그룹 대화 멤버를 내보내지 못했습니다" msgid "Failed to remove verification" msgstr "인증을 취소하지 못했습니다" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "임시 저장하지 못했습니다" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "이미지를 저장하지 못했습니다" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "관심 주제를 저장하지 못했습니다." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "이메일을 전송하지 못했습니다. 다시 시도해 주세요." @@ -4580,16 +4845,16 @@ msgstr "신고를 보내지 못했습니다" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "그룹 대화를 잠금 해제하지 못했습니다" @@ -4597,12 +4862,12 @@ msgstr "그룹 대화를 잠금 해제하지 못했습니다" msgid "Failed to unpin list" msgstr "리스트를 고정 해제하지 못했습니다" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "이메일 2단계 인증을 변경하지 못했습니다" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "이메일을 변경하지 못했습니다. 다시 시도해 주세요." @@ -4614,7 +4879,7 @@ msgstr "피드를 업데이트하지 못했습니다" msgid "Failed to update notification declaration" msgstr "알림 선언을 업데이트하지 못했습니다" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "설정을 업데이트하지 못했습니다" @@ -4641,7 +4906,7 @@ msgstr "가짜 계정 또는 봇" msgid "False information about elections" msgstr "선거에 대한 허위 정보" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "피드" @@ -4649,7 +4914,7 @@ msgstr "피드" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "{0} 님의 피드" @@ -4662,7 +4927,7 @@ msgstr "피드 작성자" msgid "Feed identifier" msgstr "피드 ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "피드 메뉴" @@ -4676,25 +4941,25 @@ msgstr "사용할 수 없는 피드" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "피드백" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "피드" @@ -4739,7 +5004,7 @@ msgstr "언어별 검색 필터링 (현재: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "알림 수신 대상 필터링" @@ -4747,11 +5012,11 @@ msgstr "알림 수신 대상 필터링" msgid "Finalizing" msgstr "마무리 중" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "드디어!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "드디어! 중요한 게시물을 놓치지 마세요. 저장해 두었다가 원할 때 언제든지 다시 확인할 수 있습니다." @@ -4768,19 +5033,17 @@ msgstr "경제" msgid "Find accounts to follow" msgstr "팔로우할 계정 찾아보기" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "연락처 찾기" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "친구 찾기" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "연락처에서 친구 찾기" +msgid "Find and invite friends" +msgstr "친구를 찾고 초대하기" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "연락처 찾기" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "내 친구 찾기" msgid "Find people to follow" msgstr "팔로우할 사용자 찾아보기" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "아는 사람 찾아보기" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Bluesky에서 게시물, 사용자, 피드 찾기" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "친구들을 찾아보세요" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Bluesky에서 전화번호를 인증하고 연락처를 매칭하여 친구들을 찾아보세요. Bluesky는 사용자의 정보를 안전하게 보호하며, 이후 과정은 사용자가 직접 제어할 수 있습니다. <0>더 알아보기 (영어)" @@ -4847,22 +5114,22 @@ msgstr "검색 필드에 포커스" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "팔로우" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} 님을 팔로우" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "{displayName} 님을 팔로우" @@ -4892,8 +5159,8 @@ msgstr "계정 팔로우" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "모든 계정을 팔로우" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "맞팔로우" @@ -4916,7 +5183,7 @@ msgstr "맞팔로우" msgid "Followed all accounts!" msgstr "모든 계정을 팔로우했습니다!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "모든 사용자를 팔로우했습니다" @@ -4944,8 +5211,12 @@ msgstr "<0>{0} 님과 <1>{1} 님이 팔로우함" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0} 님, <1>{1} 님 외 {2, plural, other {#명}}이 팔로우함" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "팔로워만 참여할 수 있음" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "내가 아는 @{0} 님의 팔로워" @@ -4960,10 +5231,10 @@ msgstr "내가 아는 팔로워" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "팔로우 중" @@ -4977,12 +5248,12 @@ msgstr "팔로우 중" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "{0} 님을 팔로우했습니다" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "{displayName} 님을 팔로우했습니다" @@ -4995,19 +5266,16 @@ msgstr "{handle} 님을 팔로우 중" msgid "Following feed preferences" msgstr "팔로우 중 피드 설정" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "팔로우 중 피드 설정" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "나를 팔로우함" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "나를 팔로우함" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "글꼴" @@ -5065,11 +5333,16 @@ msgstr "비밀번호를 잊었나요?" msgid "Forgot?" 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 "그룹 대화를 나타내는 4개의 메시지 말풍선. 첫 번째 메시지: \"소식 들었어? Bluesky에 이제 그룹 대화 기능이 생겼대!\" 두 번째 메시지: \"세상에, 진짜?\" 세 번째 메시지: \"와, 대화방 하나에 50명까지 들어갈 수 있어!\" 네 번째 메시지: \"초대 링크도 보낼 수 있대!\"" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:12 msgid "Free your feed" msgstr "피드를 자유롭게" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "수신 대상" @@ -5086,82 +5359,86 @@ msgstr "<0/>에서" msgid "Generate a starter pack" msgstr "스타터 팩 만들기" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "새 초대 링크 생성하기" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM을 연결 해제했습니다" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM 링크" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM을 다시 연결했습니다" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "도움말" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "스타터 팩 가입, 인증 및 기타 활동에 대한 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "사람들이 나를 팔로우하면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "사람들이 내가 재게시한 게시물에 좋아요를 누르면 알림을 받습니다." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "사람들이 내 게시물에 좋아요를 누르면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "다른 사용자가 내 재게시물에 좋아요를 누를 때 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "사람들이 나를 멘션하면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "사람들이 내 게시물을 인용하면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "사람들이 내 게시물에 답글을 달면 알림을 받습니다." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "사람들이 내가 재게시한 게시물을 재게시하면 알림을 받습니다." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "사람들이 내 게시물을 재게시하면 알림을 받습니다." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "다른 사용자가 내 게시물을 재게시할 때 알림을 받습니다." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "구독 중인 게시물에 활동이 있을 때 알림을 받습니다." + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "새 게시물 알림 받기" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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} 님의 새 게시물 알림 받기" @@ -5174,27 +5451,27 @@ msgstr "이 계정의 활동 알림 받기" msgid "Get notified when {name} posts" msgstr "{name} 님이 게시물을 올리면 알림 받기" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "다른 사용자가 게시물을 올릴 때 알림 받기" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF를 업로드했습니다" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "프로필에 얼굴 달기" @@ -5213,20 +5490,20 @@ msgstr "폭력 미화" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "뒤로" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "이전 단계로 돌아가기" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "홈으로 이동" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "홈으로 이동" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "홈으로 이동" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "라이브 시작 (비활성화됨)" msgid "Go live for" msgstr "라이브 예정 시간" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "{firstAuthorName} 님의 프로필로 이동" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "계정 설정으로 이동" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "{0} 님과의 대화로 이동합니다" @@ -5296,23 +5571,23 @@ msgstr "피드로 이동" msgid "Go to next" msgstr "다음" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "‘{chatName}’(이)라는 이름의 그룹 대화로 이동합니다" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "사용자의 프로필로 이동" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "사용자의 프로필로 이동" @@ -5320,11 +5595,18 @@ msgstr "사용자의 프로필로 이동" msgid "Going live is currently disabled for your account" msgstr "현재 내 계정에서 라이브 시작 기능이 비활성화되어 있습니다" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "불쾌감을 주는 폭력 콘텐츠" msgid "Grooming or predatory behavior" msgstr "그루밍 또는 포식 행위" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "그룹 대화" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "그룹 대화 초대 링크 대화 상자" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "그룹 대화가 잠겼습니다" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "그룹 대화를 뮤트했습니다" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "그룹 대화 이름이 변경되었습니다" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "그룹 대화 설정" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "그룹 대화가 잠금 해제되었습니다" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "그룹 대화를 언뮤트했습니다" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "그룹 채팅 기능은 아직 사용할 수 없습니다" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "그룹 대화" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "이제 그룹 채팅 기능을 사용할 수 있습니다" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "그룹 대화는 만 18세 이상 사용자만 이용할 수 있습니다." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "그룹 대화는 최대 {0, plural, other {#명}}까지 참여할 수 있습니다." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "그룹 잠김" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "그룹 이름" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 {최대 글자 수는 #자입니다.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "해킹 또는 시스템 공격" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "핸들이 너무 깁니다. 더 짧은 핸들을 사용하세요." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "지금 진행 중" @@ -5446,7 +5744,7 @@ msgstr "유해하거나 위험성이 큰 활동" msgid "Harming or endangering minors" msgstr "미성년자에게 유해 또는 위험에 빠뜨리는 행위" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "해시태그" @@ -5458,8 +5756,8 @@ msgstr "해시태그 #{tag}" msgid "Hate speech" msgstr "혐오 발언" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "코드가 있나요? <0>이곳을 클릭하세요." @@ -5479,11 +5777,11 @@ msgstr "Bluesky에서는 악용 방지를 위해 7일간 보관 후 삭제됩니 #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "도움말" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 봇이 아니라는 사실을 알 수 있도록 하세요." @@ -5522,7 +5820,7 @@ msgstr "숨겨진 리스트" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "숨겨진 리스트" msgid "Hide" msgstr "숨기기" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "숨기기" @@ -5553,18 +5851,18 @@ msgstr "그룹 대화 업데이트를 숨깁니다" msgid "Hide lists" msgstr "리스트 숨기기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "나에게서 답글 숨기기" @@ -5577,19 +5875,19 @@ msgstr "이 카드 숨기기" msgid "Hide this event" msgstr "이 이벤트 숨기기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "이 게시물을 숨기시겠습니까?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "번역 숨기기" @@ -5606,7 +5904,7 @@ msgstr "인기 주제를 숨기시겠습니까?" msgid "Hide trending videos?" msgstr "인기 동영상을 숨기시겠습니까?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "사용자 리스트 숨기기" @@ -5620,6 +5918,10 @@ msgstr "인증 배지 숨기기" msgid "Hides the content" msgstr "콘텐츠를 숨깁니다" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "친구 초대 프로모션 배너를 숨깁니다" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "<0>앱 비밀번호로 로그인한 것 같습니다. 생년월일을 설정하려면 기본 계정 비밀번호로 로그인하거나 이 계정을 관리하는 사람에게 요청하세요." @@ -5652,19 +5954,15 @@ msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자 msgid "Hmmmm, we couldn't load that moderation service." msgstr "검토 서비스를 불러올 수 없습니다." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "잠깐! 동영상에 대한 접근 권한이 점차적으로 제공되고 있지만 아직은 기다려야 합니다. 나중에 다시 확인해 주세요!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "잠깐! 아직 이 기능을 사용할 수 없습니다. 나중에 다시 확인해 주세요." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "홈" @@ -5721,7 +6019,7 @@ msgstr "확인" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "저는 블루스카이에서 {0}(으)로 활동하고 있어요. 와서 저를 찾아보세요! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "대체 텍스트가 긴 경우 대체 텍스트 확장 상태를 전환합니다" @@ -5757,15 +6055,15 @@ msgstr "이 리스트를 삭제하면 다시 복구할 수 없습니다." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "자체 도메인이 있는 경우 이를 핸들로 사용할 수 있으며, 이를 통해 본인임을 다른 사용자에게 알릴 수 있습니다. <0>더 알아보기 (영어)" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "이메일을 변경해야 하는 경우 <0>이곳을 클릭하세요." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "이메일 주소를 변경하면 이메일 2단계 인증이 비활성화됩니다." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "내 계정의 활동에 대한 알림을 받을 수 있는 사용자를 제한하려면 <0>설정 → 개인정보 및 보안에서 변경할 수 있습니다." @@ -5786,23 +6083,23 @@ msgstr "개발자라면 직접 서버를 호스팅할 수 있습니다." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "핸들이나 이메일을 변경하려는 경우 비활성화하기 전에 변경하세요." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "이미지" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "이미지 {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "{1}개 중 {0}번째 이미지" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "{imageCount}개 중 {0}번째 이미지" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "이미지 캐시를 지우고 {0}를 확보했습니다" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "이미지 갤러리, {0}개 이미지" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "이미지를 사용할 수 없습니다." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "사칭" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "연락처 가져오기" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "{0}에 가져옴" @@ -5881,40 +6182,40 @@ msgstr "{0}에 가져옴" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "인앱" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "인앱 알림" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "인앱, 모두" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "인앱, 내가 팔로우하는 사용자" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "인앱, 푸시" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "인앱, 푸시, 모두" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "인앱, 푸시, 내가 팔로우하는 사용자" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "수신함이 비어 있습니다" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "수신함 제로!" @@ -5954,6 +6255,10 @@ msgstr "임시 저장 소개" 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 "새로운 저장된 게시물(일명 '북마크')을 만나보세요" @@ -5963,11 +6268,15 @@ msgstr "새로운 저장된 게시물(일명 '북마크')을 만나보세요" msgid "Invalid 2FA confirmation code." msgstr "잘못된 2단계 인증 코드입니다." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "잘못된 상호작용 설정입니다" @@ -5977,10 +6286,15 @@ msgstr "잘못된 상호작용 설정입니다" msgid "Invalid phone number" msgstr "잘못된 전화번호입니다" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "잘못된 신고 항목" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "잘못된 취소 요청입니다." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "잘못된 인증 코드" @@ -6001,8 +6315,15 @@ msgstr "초대 코드" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "초대 코드가 올바르지 않습니다. 코드를 올바르게 입력했는지 확인한 후 다시 시도해 주세요." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "친구 초대하기" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "친구 초대하기" @@ -6010,21 +6331,31 @@ msgstr "친구 초대하기" msgid "Invite friends <0/>" msgstr "친구 초대하기 <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "초대 링크" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "초대 링크" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "초대 링크가 비활성화되었습니다" @@ -6040,11 +6371,16 @@ msgstr "초대 링크가 활성화되었습니다" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "초대됨" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "작업 ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "작업 ID: {0}" msgid "Jobs" msgstr "채용" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "참여" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "채용" msgid "Join Bluesky" msgstr "Bluesky 가입하기" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "그룹 대화 참여" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "대화에 참여하기" msgid "Journalism" msgstr "저널리즘" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "계속 작성하기" @@ -6109,6 +6460,11 @@ msgstr "계속 작성하기" msgid "Keep me posted" msgstr "최신 소식 받기" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "멤버 내보내기" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS 웹사이트" @@ -6143,7 +6499,7 @@ msgstr "내 계정의 라벨" msgid "Labels on your content" msgstr "내 콘텐츠의 라벨" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "언어 설정" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "최신" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "친구 초대 작동 방식에 대해 더 알아보기" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "연락처 가져오기에 대해 더 알아보기 (영어)" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "이 경고에 대해 더 알아보기" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Bluesky의 인증에 대해 더 알아보기 (영어)" @@ -6239,7 +6595,7 @@ msgstr "Bluesky의 인증에 대해 더 알아보기 (영어)" msgid "Learn more about what is public on Bluesky." msgstr "Bluesky에서 공개되는 항목에 대해 자세히 알아보세요." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Germ DM 링크에 대해 더 알아보기" @@ -6252,31 +6608,33 @@ msgstr "<0>계정 설정에서 자세히 알아보세요." msgid "Learn more." msgstr "더 알아보기" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "나가기" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "대화 나가기" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "대화 나가기" @@ -6284,13 +6642,14 @@ msgstr "대화 나가기" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "대화 나가기" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "그룹 대화 나가기" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "이 그룹 대화 나가기" @@ -6299,6 +6658,14 @@ msgstr "이 그룹 대화 나가기" msgid "Leaving Bluesky" msgstr "Bluesky 떠나기" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "이 대화에서 나가면 영구적으로 잠기며 다시 참여할 수 없습니다." + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "그룹 대화에서 나갔습니다" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "명 남았습니다." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "밝음" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "좋아요 ({0, plural, other {#개}})" @@ -6346,11 +6713,7 @@ msgstr "10개 게시물에 좋아요 누르기" msgid "Like 10 posts to train the Discover feed" msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "좋아요 알림" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "이 피드에 좋아요 표시" @@ -6358,8 +6721,8 @@ msgstr "이 피드에 좋아요 표시" msgid "Like this labeler" msgstr "이 라벨러에 좋아요 표시" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "좋아요 표시한 사용자" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {#명}}의 사용자가 좋아요 표시함" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {#명}}의 사용자가 좋아요 표시함" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "좋아요" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "내 재게시물의 좋아요" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "내 재게시물의 좋아요 알림" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "이 게시물을 좋아요 표시합니다" @@ -6409,11 +6768,11 @@ msgstr "이 게시물을 좋아요 표시합니다" msgid "Linear" msgstr "일반" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "링크를 클립보드에 복사했습니다" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "리스트" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "리스트를 언뮤트했습니다" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "리스트" @@ -6545,7 +6904,7 @@ msgstr "라이브 이벤트를 숨김 해제했습니다" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "라이브 이벤트는 흥미로운 일이 일어날 때 가끔 나타납니다. 원한다면 이 특정 이벤트를 숨기거나 앱 인터페이스의 이 위치에 표시되는 모든 이벤트를 숨길 수 있습니다." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "라이브 기능은 베타 테스트 중입니다" @@ -6595,27 +6954,27 @@ msgstr "게시물 상호작용 설정 불러오는 중…" msgid "Loading..." msgstr "불러오는 중…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "잠그기" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "그룹 대화 잠그기" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "그룹 대화를 잠그시겠습니까?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "이 그룹 대화 잠그기" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "잠김" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "로그" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "@sawaratsuki.bsky.social 님의 로고" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "<0>@sawaratsuki.bsky.social 님의 로고" @@ -6662,7 +7021,7 @@ msgstr "팔로우 중 피드가 누락된 것 같습니다. <0>이곳을 클릭 msgid "Love GIFs" msgstr "사랑 GIF" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "계정의 이메일 설정 조정하기" @@ -6687,24 +7046,22 @@ msgstr "인증 설정 관리" msgid "Manage your muted words and tags" msgstr "뮤트한 단어 및 태그 관리" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "모두 읽음으로 표시" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "읽음으로 표시" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "모두 읽음으로 표시했습니다" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "나중에 하기" @@ -6726,26 +7083,26 @@ msgstr "다른 기기에 저장된 미디어" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "일부 사용자에게 불쾌감을 주거나 부적절할 수 있는 미디어." +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "멤버를 그룹 채팅에서 내보냈습니다" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "멤버" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "멤버들이 대화 기록은 읽을 수 있지만 새 메시지는 보낼 수 없습니다." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "멘션 알림" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "멘션한 사용자" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "멘션" @@ -6761,7 +7118,7 @@ msgstr "메시지" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "메시지" @@ -6771,26 +7128,26 @@ msgstr "메시지" msgid "Message {0}" msgstr "{0} 님에게 메시지 보내기" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "{displayName} 님에게 메시지 보내기" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "메시지 삭제됨" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "메시지를 삭제했습니다" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "메시지를 보내지 못했습니다." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "@{0} 님이 보낸 메시지: {1}" @@ -6813,19 +7170,19 @@ msgstr "메시지가 너무 깁니다" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "메시지가 너무 깁니다 ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "메시지 옵션" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "메시지" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "나를 차단한 사람이 보낸 메시지는 숨겨집니다." -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "차단한 사람이 보낸 메시지는 숨겨집니다." @@ -6838,10 +7195,6 @@ msgstr "심야" msgid "Minor harassment or bullying" msgstr "미성년자 괴롭힘 또는 따돌림" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "기타 알림" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "오해 소지" @@ -6850,7 +7203,7 @@ msgstr "오해 소지" msgid "Missing media" msgstr "미디어 찾을 수 없음" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "검토" @@ -6894,7 +7247,7 @@ msgstr "검토 리스트를 업데이트했습니다" msgid "Moderation lists" msgstr "검토 리스트" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "검토 리스트" @@ -6903,7 +7256,7 @@ msgstr "검토 리스트" msgid "moderation settings" msgstr "검토 설정" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "검토 상태" @@ -6928,8 +7281,8 @@ msgstr "다른 언어…" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "옵션 더 보기" @@ -6949,7 +7302,7 @@ msgstr "영화" msgid "Music" msgstr "음악" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "음소거" @@ -6965,8 +7318,8 @@ msgstr "음소거" msgid "Mute {0}" msgstr "{0} 뮤트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "계정 뮤트" msgid "Mute accounts" msgstr "계정 뮤트" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "대화 뮤트" @@ -6994,7 +7347,7 @@ msgstr "리스트 뮤트" msgid "Mute these accounts?" msgstr "이 계정들을 뮤트하시겠습니까?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "이 그룹 대화 뮤트하기" @@ -7022,17 +7375,21 @@ msgstr "태그에서만 이 단어 뮤트하기" msgid "Mute this word until you unmute it" msgstr "언뮤트할 때까지 이 단어 뮤트하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "스레드 뮤트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "단어 및 태그 뮤트" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "뮤트됨" @@ -7040,7 +7397,7 @@ msgstr "뮤트됨" msgid "Muted accounts" msgstr "뮤트한 계정" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "뮤트한 계정" @@ -7062,6 +7419,10 @@ msgstr "뮤트한 단어 및 태그" 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" @@ -7104,12 +7465,12 @@ msgstr "스타터 팩으로 이동하기" msgid "Navigates to the next screen" msgstr "다음 화면으로 이동합니다" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "내 프로필로 이동합니다" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "저작권 위반, 법적 요청 또는 규제 준수 문제를 신고해야 하나요?" @@ -7117,6 +7478,7 @@ msgstr "저작권 위반, 법적 요청 또는 규제 준수 문제를 신고해 msgid "Nevermind, create a handle for me" msgstr "취소하고 내 핸들 만들기" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "새로 만들기" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{firstAuthorLink} 님의 새 {postsCount, plural, other {게시물}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{firstAuthorName} 님의 새 {postsCount, plural, other {게시물}}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "새 대화" @@ -7163,7 +7525,7 @@ msgstr "{0} 님, {1} 님과의 새 대화" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "{0} 님, {1} 님 외 {memberCount, plural, other {{memberCount}명}}과의 새 대화." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "새 이메일 주소" @@ -7171,32 +7533,30 @@ msgstr "새 이메일 주소" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "새 팔로워 알림" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "새 팔로워" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "새 그룹 대화" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "새 그룹 대화 멤버:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "새 게시물" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "새 게시물" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "{firstAuthorLink} 님 <0>외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}의 새 게시물 " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "{firstAuthorName} 님 외 {additionalAuthorsCount, plural, other {{formattedAuthorsCount}명}}의 새 게시물" @@ -7262,8 +7622,8 @@ msgstr "뉴스" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "다음" msgid "Next image" msgstr "다음 이미지" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "밤" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "광고, 사생활 침해 트래킹, 참여 유도 함정이 없습니다. Bluesky는 내 시간과 관심을 소중히 생각합니다." @@ -7321,7 +7685,7 @@ msgstr "종료 시간 미정" msgid "No feeds found. Try searching for something else." msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요." -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "아직 팔로워가 없습니다" @@ -7335,7 +7699,7 @@ msgstr "‘{query}’에 대한 GIF를 찾을 수 없습니다." msgid "No GIFs to show right now. Try again in a moment." msgstr "현재 표시할 GIF가 없습니다. 잠시 후 다시 시도해 주세요." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "이미지 없음" @@ -7353,8 +7717,8 @@ msgstr "리스트가 없습니다" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "{0} 님을 언팔로우했습니다" @@ -7362,7 +7726,7 @@ msgstr "{0} 님을 언팔로우했습니다" msgid "No media yet" msgstr "아직 미디어가 없습니다" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "아직 메시지가 없습니다" @@ -7378,12 +7742,12 @@ msgstr "이름 없음" msgid "No notifications yet!" msgstr "아직 알림이 없습니다" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "없음" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "없음" @@ -7399,7 +7763,7 @@ msgstr "없음" msgid "No one but the author can quote this post." msgstr "이 게시물은 작성자 외에는 누구도 인용할 수 없습니다." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "아무도 메시지를 보낼 수 없습니다" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "결과 없음" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "결과 없음" @@ -7446,8 +7810,8 @@ msgstr "결과 없음" msgid "No results for \"{0}\"." msgstr "‘{0}’에 대한 결과가 없습니다." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "결과를 찾을 수 없습니다" @@ -7509,12 +7873,12 @@ msgstr "동의받지 않은 사적인 성적 이미지" msgid "Non-sexual Nudity" msgstr "선정적이지 않은 나체" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -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:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "이 플랫폼에서는 사용할 수 없습니다" @@ -7522,16 +7886,16 @@ msgstr "이 플랫폼에서는 사용할 수 없습니다" msgid "Not followed by anyone you’re following" msgstr "내가 팔로우하는 사용자가 팔로우하지 않음" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "찾을 수 없음" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "공유 관련 참고 사항" @@ -7548,44 +7912,31 @@ msgstr "참고: 이 게시물은 로그인한 사용자만 볼 수 있습니다. msgid "Nothing saved yet" msgstr "아직 저장된 게시물이 없습니다" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "알림 설정" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "알림음" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "알림" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "다른 사용자가 내 스타터 팩을 통해 가입하는 경우 등 기타 모든 알림을 받습니다." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "지금" @@ -7601,7 +7952,7 @@ msgstr "입력한 번호는 휴대전화 번호여야 합니다" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "끄기" @@ -7623,9 +7974,10 @@ msgstr "확인" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "확인" @@ -7648,35 +8000,35 @@ msgstr "<0><1/><2><3/>" msgid "Onboarding reset" msgstr "온보딩 재설정" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "선택한 수신자 중 한 명이 그룹 대화를 허용하지 않습니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "선택한 수신자 중 한 명이 당신을 차단했으므로 메시지를 보낼 수 없습니다." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "하나 이상의 GIF에 대체 텍스트가 누락되었습니다." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "선택한 파일 중 지원되지 않는 파일이 있습니다." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "선택한 파일 중 크기가 너무 큰 파일이 있습니다. 최대 크기는 100MB입니다." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다." @@ -7685,6 +8037,26 @@ msgstr "하나 이상의 동영상에 대체 텍스트가 누락되었습니다. msgid "Only {0} can reply." msgstr "{0}만 답글을 달 수 있습니다." +#. 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:234 +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}개)" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "관리자만 가입 요청을 승인할 수 있습니다." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "관리자만 가입 요청을 무시할 수 있습니다." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "내가 팔로우하는 팔로워만" msgid "Only image files are supported" msgstr "이미지 파일만 지원됩니다" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "{0} 님이 팔로우하는 사람만 참여할 수 있습니다." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "대화 소유자가 팔로우하는 사람만 참여할 수 있습니다" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "WebVTT(.vtt) 파일만 지원됩니다" @@ -7703,6 +8085,10 @@ msgstr "WebVTT(.vtt) 파일만 지원됩니다" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "문제가 발생했습니다!" msgid "Oops!" msgstr "이런!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "아바타 생성기 열기" @@ -7720,12 +8106,17 @@ msgstr "아바타 생성기 열기" msgid "Open camera" msgstr "카메라 열기" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "대화 열기" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "{displayName} 님의 대화 멤버 옵션 열기" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "대화 옵션 열기" @@ -7739,16 +8130,16 @@ msgstr "서랍 메뉴 열기" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "이모티콘 선택기 열기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "피드 옵션 메뉴 열기" @@ -7760,13 +8151,22 @@ msgstr "전체 이모티콘 목록 열기" msgid "Open Germ DM" msgstr "Germ DM 열기" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Google 번역에서 열기" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "{niceUrl} 링크 열기" @@ -7790,11 +8190,15 @@ msgstr "팩 열기" msgid "Open post options menu" msgstr "게시물 옵션 메뉴 열기" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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 "QR 코드 스캐너 열기" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "스토리북 페이지 열기" msgid "Open system log" msgstr "시스템 로그 열기" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "이 그룹 대화를 엽니다" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "게시물에 콘텐츠 경고를 추가하는 대화 상자를 엽니다 msgid "Opens a dialog to choose who can interact with this post" msgstr "이 게시물과 상호작용할 수 있는 사용자를 선택하는 대화 상자를 엽니다" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "QR 카드의 색상 테마 목록을 엽니다" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다" @@ -7838,7 +8250,7 @@ msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다" msgid "Opens alt text dialog" msgstr "대체 텍스트 대화 상자를 엽니다" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "기기에서 카메라를 엽니다" @@ -7858,22 +8270,24 @@ msgstr "답글 작성 상자를 엽니다" msgid "Opens device camera" msgstr "기기 카메라를 엽니다" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "기기 갤러리를 열어 이미지를 최대 {MAX_IMAGES, plural, other {#개}}까지 또는 동영상, GIF를 1개 선택합니다." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "최대 {MAX_GALLERY_IMAGES, plural, other {#개}}의 이미지 또는 단일 동영상 및 GIF를 선택하기 위해 기기 갤러리를 엽니다" +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "새 Bluesky 계정을 만드는 화면을 엽니다" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "존재하는 Bluesky 계정에 로그인하는 화면을 엽니다" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "전체 이미지를 엽니다" @@ -7890,7 +8304,7 @@ msgstr "이미지 선택기를 엽니다" msgid "Opens link {0}" msgstr "링크 {0}(을)를 엽니다" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "라이브 상태 대화 상자를 엽니다" @@ -7902,15 +8316,23 @@ msgstr "비밀번호 재설정 양식을 엽니다" msgid "Opens post language settings" msgstr "게시물 언어 설정을 엽니다" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "GIF 선택기 대화 상자를 엽니다" +#: 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 "게시물 작성기를 엽니다" @@ -7919,9 +8341,8 @@ msgstr "게시물 작성기를 엽니다" msgid "Opens this draft in the composer" msgstr "작성기에서 이 임시 저장을 엽니다" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "이 프로필을 엽니다" @@ -7997,12 +8418,12 @@ msgstr "이 블로그 게시물" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Bluesky 검토 팀에서 신고를 접수했습니다." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Bluesky 검토 팀에서 신고를 검토한 결과 귀하의 Bluesky 대화 접속을 비활성화하기로 결정했습니다." @@ -8010,14 +8431,15 @@ msgstr "Bluesky 검토 팀에서 신고를 검토한 결과 귀하의 Bluesky msgid "Owner" msgstr "소유자" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "페이지를 찾을 수 없습니다" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "소유자는 나가기 전에 그룹을 잠가야 합니다." -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "동영상 일시 정지" msgid "People" msgstr "사용자" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "{ownerName} 님이 팔로우하는 사람은 바로 참여할 수 있음" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "{ownerName} 님이 팔로우하는 사람은 참여 요청할 수 있음" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "@{0} 님이 팔로우하는 사용자" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "@{0} 님을 팔로우하는 사용자" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "내가 팔로우하는 사용자" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "내가 팔로우하는 사람은 바로 참여할 수 있음" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "내가 팔로우하는 사람은 참여 요청할 수 있음" @@ -8136,13 +8558,17 @@ msgstr "전화번호를 인증했습니다" msgid "Photography" msgstr "사진" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "피드 고정" @@ -8152,12 +8578,12 @@ msgstr "피드 고정" msgid "Pin to home" msgstr "홈에 고정" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "홈에 고정" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "내 프로필에 고정" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "고정됨" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0}(을)를 홈에 고정했습니다" @@ -8236,7 +8662,7 @@ msgstr "핸들을 입력해 주세요." msgid "Please choose your password." msgstr "비밀번호를 입력해 주세요." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "방금 보낸 이메일에 있는 링크를 클릭하여 새 이메일 주소를 인증하세요. 이는 Bluesky의 모든 기능을 계속해서 즐길 수 있도록 하기 위한 중요한 단계입니다." @@ -8244,7 +8670,7 @@ msgstr "방금 보낸 이메일에 있는 링크를 클릭하여 새 이메일 msgid "Please complete the verification captcha." msgstr "인증 캡차를 완료해 주세요." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "동영상을 업로드하려면 이메일 주소를 인증해 주세요." @@ -8265,14 +8691,14 @@ msgstr "비밀번호를 입력해 주세요. 비밀번호는 8자 이상이어 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "올바른 이메일 주소를 입력해 주세요." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "추후 확인이 필요할 수 있으므로 임시 이메일이 아닌 유효한 이메일 주소를 입력해 주세요." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "아래에 <0>{0}(으)로 전송된 코드를 입력해 주세요." @@ -8293,7 +8719,7 @@ msgstr "아래에 <0>{0}(으)로 전송된 코드를 입력해 주세요." msgid "Please enter the code you received and the new password you would like to use." msgstr "받은 인증 코드와 사용할 새 비밀번호를 입력해 주세요." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "기존 이메일 주소로 전송된 보안 코드를 입력해 주세요." @@ -8306,7 +8732,7 @@ msgstr "이메일을 입력해 주세요." msgid "Please enter your invite code." msgstr "초대 코드를 입력해 주세요." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "새 이메일 주소를 입력해 주세요." @@ -8323,7 +8749,7 @@ msgstr "사용자 이름을 입력해 주세요" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "{0}(이)가 이 라벨을 잘못 적용했다고 생각하는 이유를 설명해 주세요" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "대화가 잘못 비활성화되었다고 생각하는 이유를 설명해 주세요" @@ -8358,7 +8784,11 @@ msgstr "신고 이유를 선택하세요" msgid "Please sign in as @{0}" msgstr "@{0}(으)로 로그인하세요" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "QR 코드를 스캔하려면 Bluesky 모바일 앱을 사용해 주세요." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "연락처를 가져오려면 모바일 앱을 사용해 주세요." @@ -8366,7 +8796,7 @@ msgstr "연락처를 가져오려면 모바일 앱을 사용해 주세요." msgid "Please use the native app to sync your contacts." msgstr "연락처를 동기화하려면 모바일 앱을 사용해 주세요." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "이메일을 인증해 주세요" @@ -8383,7 +8813,7 @@ msgstr "정치" msgid "Porn" msgstr "음란물" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "게시하기" @@ -8403,12 +8833,12 @@ msgstr "사진 게시하기" msgid "Post a video" msgstr "동영상 게시하기" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "모두 게시하기" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "무시하고 게시" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "게시물 차단됨" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} 님의 게시물" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "게시물을 삭제했습니다" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "게시물을 업로드하지 못했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요." @@ -8454,18 +8884,22 @@ msgstr "내가 숨긴 게시물" msgid "Post interaction settings" msgstr "게시물 상호작용 설정" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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 "Bluesky에 올리거나 어디든 공유해 보세요." + #. 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "게시물 링크" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "게시물을 텍스트, 태그 또는 둘 다에 따라 뮤트할 수 msgid "Posts hidden" msgstr "게시물 숨겨짐" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "게시물, 답글" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "오해의 소지가 있는 링크" @@ -8525,9 +8954,10 @@ msgstr "선호하는 언어" msgid "Press to attempt reconnection" msgstr "다시 연결을 시도하려면 누르기" -#: src/components/Error.tsx:61 +#: 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 "다시 시도하려면 누르기" @@ -8536,7 +8966,7 @@ msgstr "다시 시도하려면 누르기" msgid "Press to view followers of this account that you also follow" msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "미리보기" @@ -8559,26 +8989,25 @@ msgstr "개인정보" msgid "Privacy and security" msgstr "개인정보 및 보안" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "개인정보 및 보안" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "개인정보 처리방침" @@ -8586,15 +9015,15 @@ msgstr "개인정보 처리방침" msgid "Privacy violation of a minor" msgstr "미성년자 사생활 침해" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "GIF 처리 중…" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "동영상 처리 중…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "처리 중…" @@ -8602,10 +9031,10 @@ msgstr "처리 중…" msgid "profile" msgstr "프로필" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "프로필" @@ -8613,6 +9042,7 @@ msgstr "프로필" msgid "Profile banner placeholder" msgstr "프로필 배너 자리 표시자" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "프로필을 찾을 수 없습니다" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "게시물 등록하기" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "게시물 등록하기" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "답글 등록하기" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "답글 등록하기" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "푸시" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "푸시 알림" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "푸시, 모두" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "푸시, 내가 팔로우하는 사용자" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR 코드를 클립보드에 복사했습니다." -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR 코드를 다운로드했습니다." -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR 코드를 사진 보관함에 저장했습니다." -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "인용 알림" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "인용 알림" msgid "Quote post" msgstr "게시물 인용" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "인용을 다시 연결했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "인용을 성공적으로 해제했습니다" @@ -8711,12 +9138,12 @@ msgstr "게시물 인용 비활성화됨" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "인용" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "이 게시물의 인용" @@ -8728,16 +9155,16 @@ msgstr "짧은 시간에 핸들 변경을 너무 많이 시도했습니다. 잠 msgid "Rate limit exceeded. Please try again later." msgstr "요청 횟수 제한을 초과했습니다. 나중에 다시 시도해 주세요." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "초대 링크 재활성화" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "링크 재활성화" @@ -8745,8 +9172,8 @@ msgstr "링크 재활성화" msgid "React with {emoji}" msgstr "{emoji}(으)로 반응하기" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "반응" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "검색 필터 사용 방법에 대해 읽어보기 (영어)" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "블로그 게시물 읽기" @@ -8812,11 +9239,11 @@ msgstr "진짜 사람들." msgid "Reason for appeal" msgstr "이의신청 이유" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "인앱 알림 받기" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "푸시 알림 받기" @@ -8841,17 +9268,31 @@ msgstr "추천" msgid "Reconnect" msgstr "다시 연결" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "확인하려면 앱을 새로 고침하세요." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "거절" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "참여 요청 거절하기" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "대화 다시 불러오기" @@ -8863,6 +9304,8 @@ msgstr "대화 다시 불러오기" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "그룹 대화에서 {displayName} 님 내보내기" msgid "Remove {displayName} from starter pack" msgstr "스타터 팩에서 {displayName} 님 제거" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "이 그룹 대화에서 {displayName} 님 내보내기" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "{displayName} 님을 내보내시겠습니까?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "{historyItem} 제거" @@ -8891,22 +9339,22 @@ msgstr "{historyItem} 제거" msgid "Remove account" msgstr "계정 제거" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "모든 연락처 삭제" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "첨부 제거" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "프로필 사진 제거" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "배너 제거" @@ -8914,8 +9362,9 @@ msgstr "배너 제거" msgid "Remove caption file" msgstr "캡션 파일 제거" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "임베드 제거" @@ -8929,12 +9378,12 @@ msgstr "피드 제거" msgid "Remove feed?" msgstr "피드를 제거하시겠습니까?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "대화에서 내보내기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "저장된 게시물에서 제거" msgid "Remove from your feeds?" msgstr "내 피드에서 제거하시겠습니까?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "이미지 제거" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "재게시 취소" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "추천 제거하기" @@ -9009,11 +9458,11 @@ msgstr "인증 취소" msgid "Remove your verification for this account?" msgstr "이 계정을 인증 취소하시겠습니까?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "작성자가 제거함" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "내가 제거함" @@ -9035,7 +9484,7 @@ msgstr "저장된 게시물에서 제거했습니다" msgid "Removed from starter pack" msgstr "스타터 팩에서 제거했습니다" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "나에게 보내는 답글" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "답글" @@ -9104,14 +9552,14 @@ msgstr "답글 비활성화됨" msgid "Replies to this post are disabled." msgstr "이 게시물에 대한 답글은 비활성화되어 있습니다." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "답글 ({0, plural, other {#개}})" @@ -9125,10 +9573,6 @@ msgstr "스레드 작성자에 의해 답글 숨겨짐" msgid "Reply Hidden by You" msgstr "나에 의해 답글 숨겨짐" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "답글 알림" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "답글 설정은 스레드 작성자가 선택합니다" @@ -9137,18 +9581,18 @@ msgstr "답글 설정은 스레드 작성자가 선택합니다" msgid "Reply sorting" msgstr "답글 정렬" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "답글 표시 여부를 업데이트했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "답글을 성공적으로 숨겼습니다" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "신고" @@ -9157,20 +9601,20 @@ msgstr "신고" msgid "Report account" msgstr "계정 신고" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "신고 대화 상자" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "피드 신고" @@ -9179,12 +9623,12 @@ msgstr "피드 신고" msgid "Report list" msgstr "리스트 신고" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "메시지 신고" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "게시물 신고" @@ -9199,8 +9643,8 @@ msgstr "스타터 팩 신고" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "신고 제출됨" @@ -9213,7 +9657,7 @@ msgstr "이 대화 신고하기" msgid "Report this feed" msgstr "이 피드 신고하기" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "이 그룹 대화 신고하기" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "이 리스트 신고하기" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "이 라이브 스트리밍 신고하기" @@ -9256,10 +9700,6 @@ msgstr "재게시" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "재게시 ({0, plural, other {#개}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "재게시 알림" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "내가 재게시함" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "재게시" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "이 게시물의 재게시물" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "내 재게시물의 재게시" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "내 재게시물의 재게시 알림" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "요청을 무시했습니다" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "참여 요청" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "요청했습니다" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "요청" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "계정에 로그인할 때 이메일 코드를 요구합니다." @@ -9328,7 +9791,17 @@ msgstr "이 제공자에서 필수" msgid "Required in your region" msgstr "내 지역에서 필수" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "다시 전송" @@ -9373,8 +9846,8 @@ msgstr "온보딩 상태 초기화" msgid "Reset password" msgstr "비밀번호 재설정" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "연락처 다시 동기화" @@ -9391,17 +9864,18 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" msgid "Retry" msgstr "다시 시도" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "신고 옵션 불러오기 다시 시도" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "이전 페이지로 돌아갑니다" @@ -9451,10 +9925,10 @@ msgstr "슬픈 GIF" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "생년월일 저장" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "변경 사항 저장" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "변경 사항을 저장하시겠습니까?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "임시 저장" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "임시 저장하시겠습니까?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "이미지 저장" msgid "Save new handle" msgstr "새 핸들 저장" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR 코드 저장" @@ -9518,13 +9994,13 @@ msgstr "QR 코드 저장" msgid "Save these options for next time" msgstr "다음에도 이 옵션 저장하기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "내 피드에 저장" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "저장" @@ -9534,25 +10010,25 @@ msgstr "저장" msgid "Saved Feeds" msgstr "저장된 피드" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "저장된 게시물" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "내 피드에 저장했습니다" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "인사해 보세요!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "먼저 인사를 건네보세요" @@ -9560,6 +10036,16 @@ msgstr "먼저 인사를 건네보세요" 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:316 +msgid "Scan QR code" +msgstr "QR 코드 스캔" + #: src/lib/interests.ts:71 msgid "Science" msgstr "과학" @@ -9576,18 +10062,18 @@ msgstr "오른쪽으로 스크롤" msgid "Scroll to top" msgstr "맨 위로 스크롤" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "검색" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} 님의 게시물 검색" @@ -9662,12 +10148,12 @@ msgstr "언어 검색" msgid "Search my posts" msgstr "내 게시물 검색" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "게시물 검색" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "프로필 검색" msgid "Search..." msgstr "검색…" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "보안 단계 필요" @@ -9759,7 +10245,7 @@ msgstr "{langName} 선택" msgid "Select a color" msgstr "색상 선택" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "이유 선택" @@ -9828,7 +10314,7 @@ msgstr "GIF 선택" msgid "Select GIF \"{0}\"" msgstr "GIF ‘{0}’ 선택" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "그룹 대화 멤버 선택" @@ -9850,7 +10336,7 @@ msgstr "언어 선택…" msgid "Select languages" msgstr "언어 선택" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "검토 서비스 선택" @@ -9904,11 +10390,11 @@ msgstr "아래 옵션에서 관심 주제를 선택하세요" msgid "Select your preferred language for translations in your feed." msgstr "피드에서 번역을 위해 선호하는 언어를 선택합니다." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "선호하는 알림 채널 선택" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "여러 유형의 미디어를 함께 선택할 수 없습니다." @@ -9921,9 +10407,9 @@ msgstr "자해 또는 위험 행위" msgid "Send code" msgstr "코드 전송" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "이메일 전송" @@ -9935,11 +10421,11 @@ msgstr "이메일 전송" msgid "Send error report" msgstr "오류 신고 보내기" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "피드백 보내기" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "메시지 보내기" @@ -9952,7 +10438,7 @@ msgstr "{name} 님에게 게시물 보내기" msgid "Send post to..." msgstr "게시물을 다음으로 보내기" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "{title}에게 신고 보내기" @@ -9960,7 +10446,7 @@ msgstr "{title}에게 신고 보내기" msgid "Send the message from your phone" msgstr "휴대폰에서 메시지 전송하기" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "다이렉트 메시지로 보내기" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "{0}에 전송됨" @@ -10015,14 +10501,14 @@ msgstr "아래에서 생년월일을 설정하고 바로 게시물을 올리거 msgid "Sets email for password reset" msgstr "비밀번호 재설정을 위한 이메일을 설정합니다" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "설정" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "다른 사용자의 활동 알림 설정" @@ -10030,39 +10516,39 @@ msgstr "다른 사용자의 활동 알림 설정" msgid "Settings for allowing others to be notified of your posts" msgstr "다른 사용자에게 내 게시물 알림을 허용할지에 대한 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "좋아요 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "멘션 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "새 팔로워 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "기타 모든 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "내 재게시물의 좋아요 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "내 재게시물의 재게시 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "인용 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "답글 알림 설정" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "재게시 알림 설정" @@ -10079,16 +10565,19 @@ msgstr "성행위 또는 선정적인 나체." msgid "Sexually Suggestive" msgstr "외설적" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "공유" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "무시하고 공유" @@ -10097,16 +10586,21 @@ msgstr "무시하고 공유" msgid "Share author DID" msgstr "작성자 DID 공유" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "링크 공유" @@ -10114,6 +10608,11 @@ msgstr "링크 공유" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "게시물 at:// URI 공유" msgid "Share QR code" msgstr "QR 코드 공유" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "이 피드 공유하기" @@ -10142,8 +10641,8 @@ msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니 #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "공유…" @@ -10151,7 +10650,7 @@ msgstr "공유…" msgid "Share your contacts to find friends" msgstr "연락처를 공유하고 친구들을 찾아보세요" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "공유 설정 테스터" @@ -10167,16 +10666,16 @@ msgstr "대체 텍스트 표시" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "무시하고 표시" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "자동화 라벨 표시" @@ -10197,8 +10696,8 @@ msgstr "사용자 지정 옵션 표시" msgid "Show group chat updates" msgstr "그룹 대화 업데이트를 표시합니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "이런 항목 덜 보기" @@ -10219,8 +10718,8 @@ msgstr "Discover 피드에 라이브 이벤트 표시하기" msgid "Show More" msgstr "더 보기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "이런 항목 더 보기" @@ -10246,8 +10745,8 @@ msgstr "답글 표시" msgid "Show replies as" msgstr "답글 표시 형식" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "모두에게 답글 표시" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "경고 표시 및 피드에서 필터링" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "내가 라이브 중일 때 표시하기" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "이 게시물이 언제 작성되었는지에 대한 정보를 표시합니다" @@ -10297,15 +10796,17 @@ msgstr "콘텐츠를 표시합니다" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "로그인 또는 계정 만들기" msgid "Sign in or create your account to join the conversation!" msgstr "대화에 참여하려면 로그인하거나 계정을 만드세요!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "초대를 수락하려면 로그인하세요." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "목록에 없는 계정으로 로그인" @@ -10337,8 +10842,12 @@ msgstr "목록에 없는 계정으로 로그인" msgid "Sign in to Bluesky or create a new account" msgstr "Bluesky에 로그인하거나 새 계정 만들기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "로그인하여 게시물 보기" @@ -10348,9 +10857,9 @@ msgstr "로그인하여 게시물 보기" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "로그아웃" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "로그아웃" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "로그아웃하시겠습니까?" @@ -10391,7 +10900,7 @@ msgstr "건너뛰기" msgid "Skip contact sharing and continue to the app" msgstr "연락처 공유를 건너뛰고 앱으로 바로 이동하기" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "빈 게시물을 제외하시겠습니까?" @@ -10405,7 +10914,7 @@ msgstr "소개를 건너뛰고 계정 사용 시작하기" msgid "Skip to next step" msgstr "다음 단계로 건너뛰기" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "슬라이드" @@ -10413,7 +10922,7 @@ msgstr "슬라이드" msgid "Smaller" msgstr "작음" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "알림을 끕니다" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "누군가가 그룹에서 나갔습니다" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "누군가가 {0}(으)로 반응했습니다" @@ -10487,17 +10996,22 @@ msgstr "누군가 내보내졌습니다" msgid "Someone was removed from the group" msgstr "누군가가 그룹에서 내보내졌습니다" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "문제가 발생했습니다!" msgid "Something went wrong. Please try again in a moment." msgstr "문제가 발생했습니다. 잠시 후 다시 시도해 주세요." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "문제가 발생했습니다. 다시 시도해 주세요." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "문제가 발생했나요? 저희에게 알려주세요." @@ -10564,11 +11078,16 @@ msgstr "스팸 또는 기타 기만, 사기 행위" msgid "Sports" msgstr "스포츠" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "대화를 시작하면 여기에 표시됩니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "새 대화 시작하기" @@ -10582,17 +11101,17 @@ msgstr "사용자 추가하기" msgid "Start adding people!" msgstr "사용자를 추가해 보세요!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "대화 시작" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "{displayName} 님과 대화 시작하기" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "스타터 팩" @@ -10654,12 +11173,12 @@ msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니 msgid "Stored as part of a secure code for matching with others" msgstr "다른 사용자와 번호를 대조하는 보안 코드의 일부로 저장됩니다" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "스토리북" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Twitch에서 스트리밍 중이신가요? Bluesky에서 라이브 상태를 설정하여 아바타에 배지를 추가해 보세요. 배지를 누르면 사람들이 내 스트리밍으로 바로 이동할 수 있습니다." @@ -10671,8 +11190,8 @@ msgstr "Twitch에서 스트리밍 중이신가요? Bluesky에서 라이브 상 #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "제출" @@ -10684,9 +11203,9 @@ msgstr "이의신청 제출" msgid "Submit Appeal" msgstr "이의신청 제출" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "신고 제출" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "구독" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "{0}에서 구독하기" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0}에서 {publicationTitle} 구독하기" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "성공" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "성공!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "그룹 대화에 참여했습니다!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "성공적으로 인증했습니다" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "추천" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "일몰" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "지원" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "회원님의 국가에서는 아직 이 기능이 지원되지 않습니다! 나중에 다시 확인해 주세요." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "계정이 정지된 경우 그룹 대화에 참여할 수 없습니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "정지된 계정은 대화에 참여할 수 없습니다." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "계정 전환" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "계정 전환" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "{0}(으)로 전환" @@ -10824,11 +11347,15 @@ msgstr "시스템 로그" 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 "내 지역에서 이용 가능한 콘텐츠와 기능을 더 정확하게 결정할 수 있도록 아래를 탭하여 Bluesky의 GPS 위치 접근을 허용해 주세요." -#: src/components/dms/MessageItem.tsx:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "탭하여 자세히 알아보기" @@ -10854,33 +11381,51 @@ msgstr "이 업데이트 내용을 이해하고 동의하며 Bluesky를 계속 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:163 msgid "Tap to dismiss" msgstr "탭하여 닫기" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "탭하여 제거" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "탭하여 내 {0} 반응을 제거합니다" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "탭하여 이 그룹 대화의 참여 권한을 요청합니다" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "탭하여 다시 시도" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "탭하여 {0} 반응을 표시합니다" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "탭하여 모든 반응을 표시합니다" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "탭하여 반응을 봅니다" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "서비스 이용약관" @@ -10939,7 +11484,7 @@ msgstr "텍스트 및 태그" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "텍스트 입력 필드" @@ -10981,9 +11526,9 @@ msgstr "이상입니다, 여러분!" msgid "That's everything!" msgstr "그게 다예요!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "차단을 해제하면 이 계정이 나와 상호작용할 수 있게 됩니다." @@ -11049,6 +11594,11 @@ msgstr "새 게시물을 작성할 때 다음 설정이 기본값으로 사용 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "그룹 대화의 최대 인원 제한에 도달했습니다." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "답글을 보내려는 게시물은 작성자가 언어를 {suggestedLanguageName}로 표시했습니다. <0>{suggestedLanguageName}로 답글을 작성하시겠습니까?" @@ -11057,10 +11607,10 @@ msgstr "답글을 보내려는 게시물은 작성자가 언어를 {suggestedLan msgid "The Privacy Policy has been moved to <0/>" msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "선택한 동영상의 크기가 {videoSize} MB를 초과했습니다. 더 작은 파일로 다시 시도해 주세요." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "선택한 동영상이 {VIDEO_MAX_SIZE_MB} MB보다 큽니다. 더 작은 파일로 다시 시도해 주세요." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "테마" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "이 그룹 대화에는 초대 링크가 없습니다." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "GIF를 불러오는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "인터넷 연결에 문제가 발생했습니다. 다시 시도해 주 msgid "There was an issue contacting the server" msgstr "서버에 연결하는 동안 문제가 발생했습니다" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 다시 시도하려면 이곳을 탭하세요." @@ -11161,31 +11714,31 @@ msgstr "내 서비스 정보를 가져오는 동안 문제가 발생했습니다 msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터넷 연결 상태를 확인하고 다시 시도해 주세요." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "문제가 발생했습니다! {0}" @@ -11221,6 +11774,14 @@ msgstr "내 기본 설정" msgid "These settings only apply to the Following feed." msgstr "이 설정은 팔로우 중 피드에만 적용됩니다." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "내 소유가 아닌 대화" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "다시 초대하기 전까지 이 대화에 다시 참여할 수 없습니다." + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "이 {screenDescription}에 다음 플래그가 지정되었습니다:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "이 이의신청을 <0>{sourceName}에게 전송합니다." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "이 이의신청을 Bluesky Moderation Service에게 전송합니다." @@ -11263,7 +11824,7 @@ msgstr "이 이의신청을 Bluesky Moderation Service에게 전송합니다." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "이 작성자는 로그인한 사용자에게만 게시물을 공개하도록 설정했습니다." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "이 버튼을 누르면 다른 사람이 Germ DM 앱을 열어 메시지를 보낼 수 있습니다. Germ DM 앱에서 이 버튼의 공개 여부를 관리하거나 아래 버튼을 클릭하여 Bluesky 계정을 Germ DM에서 완전히 연결 해제할 수 있습니다." @@ -11271,11 +11832,21 @@ msgstr "이 버튼을 누르면 다른 사람이 Germ DM 앱을 열어 메시지 msgid "This chat has ended" msgstr "이 대화는 종료되었습니다" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "이 대화는 인원이 가득 찼습니다" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "이 대화는 잠겨 있습니다" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "이 대화는 검토 조치로 인해 잠겨 있습니다" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "이 대화는 연결이 끊어졌습니다" @@ -11310,7 +11881,11 @@ msgstr "관련 사용자 중 한 명이 다른 사용자를 차단했기 때문 msgid "This content is not viewable without a Bluesky account." msgstr "이 콘텐츠는 Bluesky 계정이 없으면 볼 수 없습니다." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "이 대화는 삭제되었거나 비활성화된 계정과의 대화입니다. 옵션을 보려면 누르세요" @@ -11318,7 +11893,7 @@ msgstr "이 대화는 삭제되었거나 비활성화된 계정과의 대화입 msgid "This draft will be permanently deleted." msgstr "이 임시 저장은 영구적으로 삭제됩니다." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "이 이메일은 이미 내 계정에 연결되어 있습니다." @@ -11356,11 +11931,15 @@ msgstr "이 피드는 비어 있습니다." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "이 피드는 더 이상 온라인 상태가 아닙니다. 대신 <0>Discover를 표시합니다." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "이 이미지는 사용할 수 없습니다. .jpg 또는 .png와 같은 다른 형식을 사용해 보세요." @@ -11368,6 +11947,14 @@ msgstr "이 이미지는 사용할 수 없습니다. .jpg 또는 .png와 같은 msgid "This information is private and not shared with other users." msgstr "이 정보는 비공개이며 다른 사용자와 공유되지 않습니다." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "이 초대 링크는 비활성화되었습니다." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "이 초대 링크는 유효하지 않습니다" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "이것은 빈 상태입니다" @@ -11377,7 +11964,7 @@ msgstr "이것은 빈 상태입니다" msgid "This is not a valid link" msgstr "올바른 링크가 아닙니다" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "이 라벨은 이 계정이 자동화된 계정임을 알려줍니다. 이 기능을 켜면 계정 프로필과 게시물의 계정 이름 옆에 이 라벨이 나타납니다. 이 설정은 언제든지 켜거나 끌 수 있습니다." @@ -11410,13 +11997,17 @@ msgstr "내가 만든 이 목록은 이름이나 설명에 Bluesky의 커뮤니 msgid "This list is empty." msgstr "이 리스트는 비어 있습니다." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "이 메시지는 숨겨져 있습니다" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "이 사용자가 나를 차단했기 때문에 이 메시지는 숨겨졌습니다." +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "이 사용자를 차단했기 때문에 이 메시지는 숨겨졌습니다." @@ -11434,7 +12025,7 @@ msgstr "이 사용자는 나를 차단했습니다" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "이 게시물은 <0>{0}에 작성되었다고 주장하지만 Bluesky에서는 <1>{1}에 처음 확인되었습니다." @@ -11450,23 +12041,24 @@ msgstr "이 게시물은 로그인한 사용자만 볼 수 있습니다." msgid "This post was deleted by its author" msgstr "작성자가 삭제한 게시물입니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "이 게시물의 작성자가 인용 게시물을 비활성화했습니다." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "이 화면은 그룹 대화에서만 사용할 수 있습니다." @@ -11490,22 +12082,22 @@ msgstr "이 절차는 몇 분 정도 소요됩니다." msgid "This user does not have a display name, and therefore cannot be verified." msgstr "이 사용자는 표시 이름이 없으므로 인증할 수 없습니다." -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "이 사용자는 팔로워가 없습니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "이 사용자는 나를 차단했으므로 메시지를 보낼 수 없습니다." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 msgid "This user has blocked you. You cannot view their content." msgstr "이 사용자는 나를 차단했습니다. 이 사용자의 콘텐츠를 볼 수 없습니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "이 사용자는 대화를 비활성화했으므로 메시지를 보낼 수 없습니다." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "이 작업은 Bluesky 계정 <0>{currentHandle} 및 관련된 모든 msgid "This will remove @{0} from the quick access list." msgstr "빠른 액세스 목록에서 @{0}(을)를 제거합니다." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "모든 사용자의 인용 게시물에서 해당 게시물이 삭제되고 자리 표시자로 대체됩니다." @@ -11574,7 +12166,7 @@ msgstr "스레드 설정" msgid "Threaded" msgstr "스레드" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "스레드 설정" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "이메일 2단계 인증을 비활성화하려면 이메일 주소에 대한 접근 권한을 인증하세요." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "이메일 2단계 인증을 비활성화하려면 <0>{0}에 대한 접근 권한을 인증해 주세요." @@ -11646,16 +12238,16 @@ msgstr "인기" msgid "Top replies first" msgstr "인기순" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "주제" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "번역" @@ -11667,8 +12259,8 @@ msgstr "번역됨" msgid "Translating" msgstr "번역 중" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "번역 중…" @@ -11702,7 +12294,7 @@ msgstr "인기 동영상" msgid "Trolling" msgstr "분쟁 유발" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "신뢰는 관계, 커뮤니티, 공유된 맥락에서 비롯되므로 직접 인증을 발행할 수 있는 조직인 <0>신뢰할 수 있는 인증자 또한 지원합니다." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "다른 검색어를 사용해 보거나 <0>검색 필터 사용 방법(영어)에 대해 읽어보세요." +#: 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:170 +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 "Google 번역 사용" +#: 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 "TV" @@ -11763,13 +12369,17 @@ msgstr "서비스에 연결할 수 없습니다. 인터넷 연결 상태를 확 msgid "Unable to delete" msgstr "삭제할 수 없음" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "참여 요청을 가져올 수 없습니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "선택한 수신자를 찾을 수 없습니다." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "선택한 수신자를 찾을 수 없습니다." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "사용할 수 없음" msgid "Unavailable feed information" msgstr "사용할 수 없는 피드 정보" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "차단 해제" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "차단 해제" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "{displayName} 님 차단 해제하기" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "계정 차단 해제" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "계정을 차단 해제하시겠습니까?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "계정을 차단 해제하시겠습니까?" @@ -11837,8 +12452,8 @@ msgstr "리스트 차단 해제" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "실행 취소" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "재게시 취소 ({0, plural, other {#개}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} 님을 언팔로우" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "계정 언팔로우" @@ -11872,7 +12487,7 @@ msgstr "계정 언팔로우" msgid "Unfollows the user" msgstr "사용자를 언팔로우합니다" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "죄송합니다. 구독하는 라벨러 중 이 신고 유형을 지원하는 라벨러가 없습니다." @@ -11884,14 +12499,6 @@ msgstr "죄송합니다. 프로필에 저장된 생년월일이 Bluesky 이용 msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "죄송합니다. 입력한 연령으로는 해당 지역에서 Bluesky를 이용할 수 없습니다." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "초대 취소" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "이 그룹 대화에서 {displayName} 님 초대 취소하기" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "알 수 없는 인증자" @@ -11904,21 +12511,21 @@ msgstr "라벨이 없는 성인 콘텐츠" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "라벨이 없거나, 학대적이거나 동의받지 않은 성인 콘텐츠" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "좋아요 취소 ({0, plural, other {#개}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "대화 잠금 해제" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "이 그룹 대화 잠금 해제하기" @@ -11939,14 +12546,14 @@ msgstr "음소거 해제" msgid "Unmute {0}" msgstr "{0} 언뮤트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "계정 언뮤트" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "대화 언뮤트" @@ -11955,12 +12562,12 @@ msgstr "대화 언뮤트" msgid "Unmute list" msgstr "리스트 언뮤트" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "이 그룹 대화 언뮤트하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "스레드 언뮤트" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "고정 해제" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "피드 고정 해제" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "홈에서 고정 해제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "프로필에서 고정 해제" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "검토 리스트 고정 해제" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0}(을)를 홈에서 고정 해제했습니다" @@ -12030,14 +12637,18 @@ msgstr "이 라벨러 구독 취소하기" msgid "Unsubscribed from list" msgstr "리스트를 구독 취소했습니다" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "지원되지 않는 클립보드 콘텐츠" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "지원되지 않는 동영상 유형: {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "최대 50명까지" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,16 +12658,20 @@ msgstr "업데이트" msgid "Update <0>{displayName} in Lists" msgstr "리스트에서 <0>{displayName} 업데이트" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "앱 업데이트" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "이메일 변경" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "초대 링크 업데이트" @@ -12065,11 +12680,15 @@ msgstr "초대 링크 업데이트" msgid "Update to {domain}" msgstr "{domain}(으)로 변경" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "참여하려면 앱을 최신 버전으로 업데이트하세요!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "앱 업데이트하기" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "확인하려면 앱을 업데이트하세요." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "이메일 변경" @@ -12080,17 +12699,17 @@ msgstr "이메일 변경" msgid "Update your location" msgstr "위치 업데이트" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "인용 첨부를 업데이트하지 못했습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "답글 표시 여부를 업데이트하지 못했습니다" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "대신 사진 업로드하기" @@ -12098,39 +12717,40 @@ msgstr "대신 사진 업로드하기" msgid "Upload a text file to:" msgstr "텍스트 파일 업로드 경로:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "GIF 업로드 중…" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "이미지 업로드 중…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "링크 미리보기 업로드 중…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "동영상 업로드 중…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "사용자" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "사용자를 차단했습니다" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "{0} 님의 사용자 리스트" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "{0} 님의 사용자 리스트" @@ -12255,12 +12875,12 @@ msgstr "<0>@{0} 님이 팔로우하는 사용자" msgid "users following <0>@{0}" msgstr "<0>@{0} 님을 팔로우하는 사용자" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "내가 팔로우하는 사용자" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "내가 팔로우하는 사용자" @@ -12277,7 +12897,7 @@ msgstr "인증하지 못했습니다. 다시 시도해 주세요." msgid "Verification settings" msgstr "인증 설정" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "인증 설정" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "코드 인증" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNS 레코드 인증" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "이메일 코드 인증하기" @@ -12349,7 +12969,7 @@ msgstr "이 계정을 인증하시겠습니까?" msgid "Verify your age" msgstr "나이를 인증하세요" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "버전 {0}" msgid "Video" msgstr "동영상" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "동영상을 처리하지 못했습니다" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "동영상 피드" @@ -12419,7 +13039,7 @@ msgstr "동영상을 찾을 수 없습니다." msgid "Video settings" msgstr "동영상 설정" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "동영상을 업로드했습니다" @@ -12432,18 +13052,18 @@ msgstr "동영상: {0}" msgid "Videos" msgstr "동영상" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "동영상 길이는 3분 미만이어야 합니다." -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "{0} 보기" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "{0} 님의 프로필 보기" @@ -12467,20 +13087,15 @@ msgstr "{0} 님의 프로필 보기" msgid "View {0}’s profile" msgstr "{0} 님의 프로필 보기" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "{displayName} 님의 프로필 보기" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "{publicationTitle} 보기" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "@{0} 님의 프로필 보기" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "차단된 사용자의 프로필 보기" @@ -12503,10 +13118,18 @@ msgstr "세부 정보 보기" msgid "View full thread" msgstr "전체 스레드 보기" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "이 라벨에 대한 정보 보기" @@ -12522,7 +13145,7 @@ msgstr "더 보기" msgid "View more trending videos" msgstr "인기 동영상 더 보기" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "게시물 보기" @@ -12539,10 +13162,10 @@ msgstr "프로필 보기" msgid "View profile banner" msgstr "프로필 배너 보기" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "발행물 보기" @@ -12550,7 +13173,7 @@ msgstr "발행물 보기" msgid "View the avatar" msgstr "아바타 보기" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "이 그룹 대화의 초대 링크 보기" @@ -12563,7 +13186,7 @@ msgstr "{0} 님이 제공하는 라벨링 서비스 보기" msgid "View this user's verifications" msgstr "이 사용자의 인증 보기" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "이 피드를 좋아하는 사용자 보기" @@ -12596,8 +13219,8 @@ msgstr "내가 뮤트한 계정 보기" msgid "View your verifications" msgstr "내 인증 보기" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "전체 이미지를 봅니다" @@ -12640,8 +13263,8 @@ msgstr "콘텐츠 경고" msgid "Warn content and filter from feeds" msgstr "콘텐츠 경고 및 피드에서 필터링" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "시청하기" @@ -12665,11 +13288,15 @@ msgstr "해당 태그에 대한 검색 결과를 찾을 수 없습니다." msgid "We couldn't find any results for that topic." msgstr "해당 주제에 대한 결과를 찾을 수 없습니다." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "이 대화를 불러올 수 없습니다" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "이 대화 설정을 불러올 수 없습니다" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "관심 주제를 2개 이상 선택하는 것을 권장합니다." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "링크가 포함된 이메일을 <0>{0}(으)로 보냈습니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "동영상을 업로드할 수 있는지 확인할 수 없습니다. 다시 시도해 주세요." @@ -12744,12 +13371,12 @@ msgstr "연결 문제로 인해 인증 정보를 받지 못했습니다. 나중 msgid "We will let you know when your account is ready." msgstr "계정이 준비되면 알려 드리겠습니다." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "친구를 찾으면 알림을 보냅니다." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "링크가 포함된 이메일을 <0>{0}(으)로 전송합니다. 이메일 인증 절차를 완료하려면 해당 링크를 클릭하세요." @@ -12779,12 +13406,12 @@ msgstr "계정의 연령 확인 절차를 시작하는 데 문제가 발생했 msgid "We're having network issues, try again" msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "네트워크 문제가 발생했습니다. 다시 시도해 주세요" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Bluesky에 인증을 쉽게 확인할 수 있는 체크 표시를 도입합니다." @@ -12814,12 +13441,12 @@ msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다 msgid "We're sorry, you cannot access this screen at this time." msgstr "죄송합니다. 현재 이 화면에 접근할 수 없습니다." -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "죄송합니다. 페이지를 찾을 수 없습니다." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "스타터 팩의 이름을 무엇으로 할까요?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "무슨 일이 일어나고 있나요?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "체크 표시를 탭하면 어떤 조직이 인증을 승인했는지 확인할 수 있습니다." @@ -12878,7 +13505,7 @@ msgstr "체크 표시를 탭하면 어떤 조직이 인증을 승인했는지 msgid "Who can interact with this post?" msgstr "누가 이 게시물과 상호작용할 수 있나요?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "그룹 대화 참여 대상 및 방식" @@ -12887,13 +13514,13 @@ msgstr "그룹 대화 참여 대상 및 방식" msgid "Who can reply" msgstr "답글을 달 수 있는 사용자" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "누가 인증을 받을 수 있나요?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "이런!" @@ -12939,19 +13566,19 @@ msgstr "이 스타터 팩을 검토해야 하는 이유는 무엇인가요?" msgid "Why should this user be reviewed?" msgstr "이 사용자를 검토해야 하는 이유는 무엇인가요?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: 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 "" +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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "나중에 다시 작성할 수 있도록 임시 저장하시겠습니까?" @@ -12960,12 +13587,12 @@ msgstr "나중에 다시 작성할 수 있도록 임시 저장하시겠습니까 msgid "Write a post" msgstr "게시물 작성하기" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "게시물 작성" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "답글 작성하기" @@ -12978,7 +13605,8 @@ msgstr "작가" msgid "Wrong DID returned from server. Received: {0}" msgstr "서버에서 잘못된 DID를 반환했습니다. 수신됨: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "올바르지 않은 대화 유형" @@ -13005,11 +13633,11 @@ msgstr "내 계정을 삭제하겠습니다" msgid "Yes, delete this starter pack" msgstr "이 스타터 팩 삭제하기" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "해제" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "숨기기" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "{0} 님을 차단했습니다" @@ -13068,7 +13696,7 @@ msgstr "라이브 중" msgid "You are no longer live" msgstr "더 이상 라이브 중이 아닙니다" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "동영상을 업로드할 수 없습니다." @@ -13117,21 +13745,30 @@ msgstr "언제든지 동의를 철회하고 데이터를 삭제할 수 있습니 msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "앱 내 대화 설정에서 대화 알림 소리 여부를 선택할 수 있습니다" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "어떤 설정을 선택하든 진행 중인 대화를 계속할 수 있습니다." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "이제 링크나 QR 코드로 친구를 초대할 수 있습니다. 어디서든 링크를 공유하거나, 친구가 코드를 스캔해서 Bluesky에서 나와 함께하도록 해보세요." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "이제 새 비밀번호로 로그인할 수 있습니다." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "최대 1000자까지만 임시 저장할 수 있습니다." @@ -13139,11 +13776,11 @@ msgstr "최대 1000자까지만 임시 저장할 수 있습니다." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "최대 1000자까지만 임시 저장할 수 있습니다. 임시 저장 목록을 확인하기 전에 이 게시물을 삭제하시겠습니까?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "GIF는 한 번에 하나만 선택할 수 있습니다." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "동영상은 한 번에 하나만 선택할 수 있습니다." @@ -13155,10 +13792,10 @@ msgstr "계정을 재활성화하여 로그인을 계속할 수 있습니다. 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "이미지는 최대 {MAX_IMAGES, plural, other {#개}}까지 선택할 수 있습니다." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "이미지는 최대 {MAX_IMAGES, plural, other {#개}}까지 선택할 msgid "You can update this later from your settings." msgstr "나중에 설정에서 변경할 수 있습니다." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "이모티콘 반응은 최대 {EMOJI_REACTION_LIMIT, plural, other {#개}}까지만 추가할 수 있습니다" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "아직 그룹 대화를 만들 수 없습니다." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "저장된 피드가 없습니다." msgid "You got here first" msgstr "제일 먼저 오셨네요" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "이전에 이 그룹에서 내보내졌으므로 이 링크를 사용하여 다시 가입할 수 없습니다." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "이메일 주소를 성공적으로 인증했습니다. 이 대화 상 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "일시적으로 동영상 업로드 한도에 도달했습니다. 나중에 다시 시도해 주세요." -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "이 초안에 저장되지 않은 변경 사항이 있습니다. 저장하시겠습니까?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "멤버를 내보내려면 대화 소유자여야 합니다." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Bluesky를 이용하려면 만 13세 이상이어야 합니다. 자세한 내용은 <0>서비스 이용약관을 참조하세요." @@ -13332,11 +13982,12 @@ msgstr "Bluesky를 이용하려면 만 13세 이상이어야 합니다. 자세 msgid "You must be following at least seven other people to generate a starter pack." msgstr "스타터 팩을 만들려면 다른 사용자를 최소 7명 이상 팔로우해야 합니다." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "미디어 라이브러리에 대한 접근 권한을 허용해야 합니다." @@ -13344,6 +13995,10 @@ msgstr "미디어 라이브러리에 대한 접근 권한을 허용해야 합니 msgid "You need to verify your email address before you can enable email 2FA." msgstr "이메일 2단계 인증을 사용하려면 이메일 주소를 인증해야 합니다." +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "내가 소유한 대화" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "앱을 다시 시작해야 할 수 있습니다." #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "내가 {0}(으)로 반응함" @@ -13368,8 +14023,13 @@ msgstr "내가 {target}에 {0}(으)로 반응했습니다" msgid "You recently changed your birthdate" msgstr "최근 생년월일을 변경했습니다" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "참여 요청을 보냈습니다" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "모든 계정에서 로그아웃됩니다." @@ -13378,11 +14038,11 @@ msgstr "모든 계정에서 로그아웃됩니다." msgid "You will no longer receive notifications for {0}" msgstr "{0}에 대한 알림을 더 이상 받지 않습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "이 스레드에 대한 알림을 더 이상 받지 않습니다" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "이제 이 스레드에 대한 알림을 받습니다" @@ -13390,12 +14050,12 @@ msgstr "이제 이 스레드에 대한 알림을 받습니다" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "나: {message}" @@ -13429,6 +14089,10 @@ msgstr "이제 {0}에 대한 알림을 받습니다!" msgid "You'll stay updated with these feeds" 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 "대기 중입니다" @@ -13463,7 +14127,7 @@ msgstr "활성 콘텐츠의 끝에 도달했습니다." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보세요." -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "임시 저장 수가 최대치에 도달했습니다" @@ -13475,11 +14139,11 @@ msgstr "허용된 최대 요청 수에 도달했습니다. 나중에 다시 시 msgid "You've reached the start of the active content." msgstr "활성 콘텐츠의 시작 부분에 도달했습니다." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "동영상 업로드 일일 한도에 도달했습니다 (용량이 너무 큼)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "동영상 업로드 일일 한도에 도달했습니다 (동영상 수가 너무 많음)" @@ -13499,10 +14163,18 @@ msgstr "계정을 삭제했습니다. 또 봐요! ✌️" msgid "Your account has been suspended" msgstr "계정이 일시 정지되었습니다" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "내 계정은 아직 동영상을 업로드할 수 없습니다. 나중에 다시 시도해 주세요." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "계정이 너무 새롭습니다" + +#: src/components/dms/InitiateChatFlow.tsx:732 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "새 그룹 대화를 만들려면 계정 생성 후 최소 7일이 지나야 합니다." + #: 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 "모든 공개 데이터 레코드가 포함된 계정 저장소를 ‘CAR’ 파일로 다운로드할 수 있습니다. 이 파일에는 이미지와 같은 미디어 임베드나 별도로 가져와야 하는 비공개 데이터는 포함되지 않습니다." @@ -13519,7 +14191,7 @@ msgstr "이의신청을 제출했습니다. 이의신청이 받아들여지면 msgid "Your birth date" msgstr "생년월일" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "대화가 사용 중지되었습니다" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "연락처에 있는 {firstAuthorLink} 님이 Bluesky에 있습니다" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "연락처에 있는 {firstAuthorName} 님이 Bluesky에 있습니다" @@ -13561,7 +14233,7 @@ msgstr "이메일" msgid "Your email appears to be invalid." msgstr "이메일이 잘못된 것 같습니다." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "내 이메일이 아직 인증되지 않았습니다. Bluesky의 모든 기능을 즐기려면 이메일을 인증해 주세요." @@ -13582,7 +14254,7 @@ msgstr "팔로우 중 피드가 비어 있습니다. 더 많은 사용자를 팔 msgid "Your full handle will be <0>@{0}" msgstr "내 전체 핸들: <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "위치 정보를 업데이트했습니다" msgid "Your muted words" msgstr "뮤트한 단어" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -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." @@ -13623,11 +14295,11 @@ msgstr "비밀번호를 성공적으로 변경했습니다! 앞으로 Bluesky에 msgid "Your password must be at least 8 characters long." msgstr "비밀번호는 8자 이상이어야 합니다." -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "게시물을 보냈습니다" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "게시물을 보냈습니다" @@ -13635,7 +14307,7 @@ msgstr "게시물을 보냈습니다" msgid "Your preferred language" msgstr "선호하는 언어" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "내 프로필 사진" @@ -13648,12 +14320,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 "내 프로필, 게시물, 피드, 리스트가 더 이상 다른 Bluesky 사용자에게 표시되지 않습니다. 언제든지 로그인하여 계정을 재활성화할 수 있습니다." -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "답글을 보냈습니다" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "신고를 <0>{0}에게 전송합니다." @@ -13661,7 +14333,7 @@ msgstr "신고를 <0>{0}에게 전송합니다." msgid "Your selected interests help us serve you content you care about." msgstr "선택한 관심 주제는 사용자가 관심 있는 콘텐츠를 제공하는 데 도움을 줍니다." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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/lt/messages.po b/src/locale/locales/lt/messages.po index 3a911cc6a1..3d232df8fa 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "" msgid "{0, plural, one {# month} other {# months}}" msgstr "" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:203 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:639 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "" msgid "{0}s" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:427 +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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:850 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:811 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,13 +645,13 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:33 -msgid "{memberCount}/{MEMBER_LIMIT}" +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 +msgid "{memberCount}/{memberLimit}" msgstr "" #: src/features/liveNow/utils.ts:10 @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:52 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:47 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "" #. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.bookmarkCount) #. placeholder {1}: post.bookmarkCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,6 +870,13 @@ 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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -802,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -825,7 +907,11 @@ msgstr "" 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/Navigation.tsx:547 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -837,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:452 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -854,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -872,15 +977,15 @@ msgstr "" msgid "Account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 msgctxt "toast" msgid "Account blocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "" @@ -893,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -920,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "" @@ -993,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1006,16 +1107,16 @@ msgstr "" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1505 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2168 msgid "Add another post to thread" msgstr "" @@ -1029,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1037,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1046,7 +1147,7 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" @@ -1056,8 +1157,8 @@ msgstr "" msgid "Add members" msgstr "" +#: src/components/moderation/ReportDialog/index.tsx:528 #: src/components/moderation/ReportDialog/index.tsx:532 -#: src/components/moderation/ReportDialog/index.tsx:536 msgid "Add more details (optional)" msgstr "" @@ -1074,8 +1175,8 @@ msgstr "" msgid "Add muted words and tags" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:133 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:172 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 #: src/screens/ProfileList/AboutSection.tsx:72 #: src/screens/ProfileList/AboutSection.tsx:90 msgid "Add people" @@ -1085,6 +1186,10 @@ msgstr "" 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 "" @@ -1133,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1159,11 +1264,11 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:550 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 msgid "Admin" msgstr "" @@ -1222,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1235,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1272,13 +1377,13 @@ msgstr "" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1332,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1356,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "" @@ -1381,7 +1486,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "" @@ -1416,6 +1521,7 @@ msgid "An error occurred while loading your lists :/" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "An error occurred while saving the QR code!" msgstr "" @@ -1426,11 +1532,11 @@ msgstr "" msgid "An error occurred while trying to follow all" msgstr "" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1450,25 +1556,29 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: src/screens/Messages/components/InviteLinkDialog.tsx:190 +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:56 -msgid "An issue occurred creating the group chat, please try again" +#: 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:42 -msgid "An issue occurred starting the chat, please try again" +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +msgid "An issue occurred starting the chat, please try again." msgstr "" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 @@ -1479,12 +1589,12 @@ msgstr "" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1533,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 msgid "Anyone can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 msgid "Anyone can request to join" msgstr "" @@ -1549,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: src/screens/Messages/components/InviteLinkDialog.tsx:458 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1591,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "" @@ -1612,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "" @@ -1626,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1651,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1669,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1682,23 +1796,29 @@ msgstr "" msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1718,8 +1838,8 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1746,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1761,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1777,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1790,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1826,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1834,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 msgid "Before you can message another user, you must first verify your email." msgstr "" @@ -1868,53 +1991,53 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:147 -msgid "Block and Delete" +#: 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:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1922,20 +2045,29 @@ msgstr "" msgid "Block these accounts?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:188 -#: src/components/dms/AfterReportDialog.tsx:191 +#: 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 "" -#: src/components/dms/AfterReportDialog.tsx:153 -msgid "Block User" +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:182 +msgctxt "button" +msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:184 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:196 +#: src/components/dms/AfterReportConversationDialog.tsx:217 +msgid "Block user and/or leave this conversation" +msgstr "" + +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "" @@ -1943,14 +2075,12 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" @@ -1966,7 +2096,7 @@ msgstr "" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "" @@ -1979,7 +2109,7 @@ msgstr "" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2008,7 +2138,7 @@ msgstr "" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2016,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2032,7 +2166,7 @@ msgstr "" 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2060,6 +2194,10 @@ msgstr "" 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" @@ -2116,24 +2254,34 @@ msgstr "" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:853 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:174 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:74 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2160,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2171,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2191,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2207,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "" @@ -2227,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "" @@ -2243,7 +2400,7 @@ msgstr "" msgid "Captions & alt text" msgstr "" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2276,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:449 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2289,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:314 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:394 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2323,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2340,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2352,31 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:199 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:82 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "" @@ -2393,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:201 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2454,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 msgid "Choose who can join this group chat and how." msgstr "" @@ -2508,7 +2684,7 @@ msgstr "" msgid "click here" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:126 msgid "Click here to add people to this group chat" msgstr "" @@ -2516,7 +2692,7 @@ msgstr "" msgid "Click here to contact our support team" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 msgid "Click here to create or manage an invite link for this group chat" msgstr "" @@ -2533,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2542,11 +2718,11 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:141 msgid "Click here to view the invite link for this group chat" msgstr "" @@ -2555,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "" @@ -2569,24 +2745,30 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 -#: src/components/dms/AfterReportDialog.tsx:93 -#: src/components/dms/AfterReportDialog.tsx:98 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2594,14 +2776,14 @@ msgstr "" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 #: src/screens/Settings/components/ChangePasswordDialog.tsx:288 #: src/screens/Settings/components/ChangePasswordDialog.tsx:293 #: src/view/com/feeds/MissingFeed.tsx:211 @@ -2610,7 +2792,7 @@ msgid "Close" msgstr "" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "" @@ -2618,6 +2800,10 @@ msgstr "" msgid "Close alert" msgstr "" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "" @@ -2628,8 +2814,10 @@ msgstr "" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "" @@ -2643,17 +2831,29 @@ msgid "Close image" msgstr "" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "" @@ -2666,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1727 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2696,7 +2900,7 @@ msgid "Comics" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "" @@ -2711,12 +2915,12 @@ msgstr "" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1603 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2724,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2565 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2567 msgid "Compressing video..." msgstr "" @@ -2751,7 +2955,7 @@ msgstr "" msgid "Confirm" msgstr "" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2788,7 +2992,7 @@ msgid "Contact support" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2796,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2813,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2860,7 +3064,7 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2879,40 +3083,53 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:148 -#: src/components/dms/AfterReportDialog.tsx:151 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2929,7 +3146,12 @@ msgstr "" msgid "Copies build version to clipboard" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + #: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 msgid "Copy" msgstr "" @@ -2962,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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" @@ -2983,8 +3210,8 @@ msgstr "" msgid "Copy link to post" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -2992,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "" @@ -3002,8 +3229,8 @@ msgstr "" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "" @@ -3017,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3030,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3038,22 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:138 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: 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:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "" @@ -3064,7 +3308,11 @@ msgstr "" msgid "Could not load list" msgstr "" -#: src/components/dms/ConvoMenu.tsx:205 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "" @@ -3072,11 +3320,19 @@ msgstr "" msgid "Could not process your video" msgstr "" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3103,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "" @@ -3123,7 +3379,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:207 #: src/components/StarterPack/ProfileStarterPacks.tsx:316 -#: src/Navigation.tsx:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "" @@ -3138,13 +3394,14 @@ msgstr "" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3162,7 +3419,7 @@ msgstr "" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "" @@ -3170,7 +3427,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3192,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:301 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:547 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:713 -#: src/components/moderation/ReportDialog/index.tsx:759 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "" @@ -3220,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:461 +#: src/screens/Messages/components/InviteLinkDialog.tsx:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "" @@ -3234,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3275,6 +3537,14 @@ msgstr "" msgid "Date of birth" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3305,8 +3575,8 @@ msgstr "" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3333,8 +3603,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3342,22 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:194 -#: src/components/dms/AfterReportDialog.tsx:197 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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/AfterReportDialog.tsx:150 -msgid "Delete Conversation" -msgstr "" - -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "" @@ -3366,11 +3633,11 @@ msgstr "" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "" @@ -3378,9 +3645,9 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1615 msgid "Delete post" msgstr "" @@ -3397,17 +3664,17 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "" -#: src/components/Post/Embed/index.tsx:189 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3438,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "" @@ -3474,13 +3741,13 @@ msgstr "" msgid "Dim" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 msgid "Disable" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3488,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3501,8 +3768,8 @@ msgstr "" msgid "Disable haptic feedback" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 msgid "Disable link" msgstr "" @@ -3514,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:455 msgid "Disable this invite link?" msgstr "" @@ -3527,9 +3794,9 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3540,19 +3807,19 @@ msgstr "" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1396 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1640 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3576,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2486 msgid "Dismiss error" msgstr "" @@ -3609,6 +3877,10 @@ msgstr "" 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" @@ -3640,7 +3912,7 @@ msgstr "" msgid "Domain verified!" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3648,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3667,15 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 -#: src/components/dms/AfterReportDialog.tsx:144 +#: src/components/dms/AfterReportConversationDialog.tsx:164 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3691,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "" @@ -3703,19 +3981,14 @@ msgstr "" 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:118 -msgid "Download CAR file" -msgstr "" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3725,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3753,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "" @@ -3789,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3804,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "" @@ -3813,19 +4102,19 @@ msgstr "" msgid "Edit Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "" @@ -3834,7 +4123,16 @@ msgstr "" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 msgid "Edit link settings" msgstr "" @@ -3852,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:495 +#: src/screens/Messages/ConversationSettings/index.tsx:534 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "" @@ -3878,12 +4171,12 @@ msgstr "" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "" @@ -3891,7 +4184,8 @@ msgstr "" msgid "Edit starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:494 +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 msgid "Edit this group chat’s name" msgstr "" @@ -3903,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "" @@ -3937,7 +4231,7 @@ msgstr "" msgid "Email Resent" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -3972,8 +4266,8 @@ msgstr "" msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -3991,7 +4285,7 @@ msgstr "" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4004,13 +4298,12 @@ msgstr "" msgid "Enable media players for" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4057,8 +4350,8 @@ msgstr "" msgid "Enter a word or tag" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4109,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2585 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4151,23 +4444,23 @@ msgstr "" msgid "Everybody can reply to this post." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4183,16 +4476,16 @@ msgstr "" msgid "Exit fullscreen" msgstr "" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "" @@ -4204,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4243,10 +4536,10 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4255,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4288,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "" @@ -4297,13 +4587,17 @@ msgstr "" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" @@ -4320,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 msgid "Failed to copy link" msgstr "" @@ -4329,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:101 msgid "Failed to create invite link" msgstr "" @@ -4342,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "" @@ -4360,24 +4655,24 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:124 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:343 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 msgid "Failed to enable invite link" msgstr "" @@ -4393,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:370 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4422,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4459,16 +4753,15 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:391 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:357 +#: src/screens/Messages/ConversationSettings/index.tsx:383 msgid "Failed to mute group chat" msgstr "" @@ -4477,22 +4770,22 @@ msgid "Failed to pin post" msgstr "" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4500,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:73 msgid "Failed to remove group chat member" msgstr "" @@ -4508,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:158 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4535,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4546,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:394 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:429 msgid "Failed to unlock group chat" msgstr "" @@ -4563,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4580,7 +4879,7 @@ msgstr "" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "" @@ -4607,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "" @@ -4615,7 +4914,7 @@ msgstr "" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "" @@ -4628,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4642,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "" @@ -4705,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4713,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4734,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4761,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4813,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4858,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4872,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "" @@ -4882,7 +5183,7 @@ msgstr "" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4910,8 +5211,12 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "" @@ -4926,10 +5231,10 @@ msgstr "" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "" @@ -4943,12 +5248,12 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4961,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "" @@ -5031,11 +5333,16 @@ msgstr "" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5052,82 +5359,86 @@ msgstr "" msgid "Generate a starter pack" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 msgid "Generate invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 msgid "Generate new link" msgstr "" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5140,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:71 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:81 +#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 msgid "Get started" msgstr "" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2590 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "" @@ -5179,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "" @@ -5203,7 +5514,9 @@ msgid "Go back to previous step" msgstr "" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "" @@ -5213,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5238,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5250,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "" @@ -5262,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "" -#: src/components/dms/ConvoMenu.tsx:255 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:251 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5286,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5306,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:383 +#: src/screens/Messages/ConversationSettings/index.tsx:412 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:350 +#: src/screens/Messages/ConversationSettings/index.tsx:376 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:338 +#: src/screens/Messages/ConversationSettings/index.tsx:364 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:89 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:378 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5387,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5412,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "" @@ -5424,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5445,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "" @@ -5488,7 +5820,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5497,7 +5829,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "" @@ -5519,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "" @@ -5543,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5572,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "" @@ -5586,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5618,19 +5954,15 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "" @@ -5679,7 +6011,6 @@ msgid "I have my own domain" msgstr "" #: src/components/dms/BlockedByListDialog.tsx:55 -#: src/components/dms/ReportConversationPrompt.tsx:21 msgid "I understand" msgstr "" @@ -5688,7 +6019,7 @@ msgstr "" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "" @@ -5724,15 +6055,15 @@ msgstr "" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5740,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5753,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5784,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5824,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5848,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5921,6 +6255,10 @@ msgstr "" 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 "" @@ -5930,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5948,6 +6290,11 @@ msgstr "" msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:165 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "" @@ -5968,8 +6315,15 @@ msgstr "" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 msgid "Invite Friends" msgstr "" @@ -5977,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:149 -#: src/screens/Messages/ConversationSettings/index.tsx:508 +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 msgid "Invite link disabled" msgstr "" @@ -6007,6 +6371,11 @@ msgstr "" 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 "" @@ -6041,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2505 msgid "Job ID: {0}" msgstr "" @@ -6050,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6057,6 +6431,16 @@ msgstr "" msgid "Join Bluesky" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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" @@ -6066,8 +6450,8 @@ msgstr "" msgid "Journalism" msgstr "" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1446 +#: src/view/com/composer/Composer.tsx:1456 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6076,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6110,7 +6499,7 @@ msgstr "" msgid "Labels on your content" msgstr "" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "" @@ -6141,7 +6530,7 @@ msgid "Latest" msgstr "" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6168,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6196,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6206,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6219,37 +6608,48 @@ msgstr "" msgid "Learn more." msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:542 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 msgid "Leave" msgstr "" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "" -#: src/components/dms/ConvoMenu.tsx:229 -#: src/components/dms/ConvoMenu.tsx:233 -#: src/components/dms/ConvoMenu.tsx:299 -#: src/components/dms/ConvoMenu.tsx:303 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#. After-report action for a conversation +#: src/components/dms/AfterReportConversationDialog.tsx:174 +msgctxt "button" +msgid "Leave conversation" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:541 +#: src/screens/Messages/ConversationSettings/index.tsx:584 msgid "Leave this group chat" msgstr "" @@ -6258,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "" @@ -6286,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6305,11 +6713,7 @@ msgstr "" msgid "Like 10 posts to train the Discover feed" msgstr "" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "" @@ -6317,8 +6721,8 @@ msgstr "" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "" @@ -6336,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "" @@ -6368,11 +6768,11 @@ msgstr "" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "" @@ -6458,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "" @@ -6504,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6554,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:520 +#: src/screens/Messages/ConversationSettings/index.tsx:562 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:522 +#: src/screens/Messages/ConversationSettings/index.tsx:564 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "" @@ -6591,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6621,7 +7021,7 @@ msgstr "" msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6646,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:241 -#: src/components/dms/ConvoMenu.tsx:245 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6685,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:28 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6720,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 msgctxt "action" msgid "Message" msgstr "" @@ -6730,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6772,19 +7170,19 @@ msgstr "" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "" -#: src/components/dms/MessageItem.tsx:651 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:646 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6797,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6809,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "" @@ -6853,7 +7247,7 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "" @@ -6862,7 +7256,7 @@ msgstr "" msgid "moderation settings" msgstr "" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "" @@ -6887,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "" @@ -6908,7 +7302,7 @@ msgstr "" msgid "Music" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: src/screens/Messages/ConversationSettings/index.tsx:526 msgid "Mute" msgstr "" @@ -6924,8 +7318,8 @@ msgstr "" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6936,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "" -#: src/components/dms/ConvoMenu.tsx:260 #: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "" @@ -6953,7 +7347,7 @@ msgstr "" msgid "Mute these accounts?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:485 +#: src/screens/Messages/ConversationSettings/index.tsx:524 msgid "Mute this group chat" msgstr "" @@ -6981,17 +7375,21 @@ msgstr "" msgid "Mute this word until you unmute it" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:487 +#: 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:526 msgid "Muted" msgstr "" @@ -6999,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "" @@ -7021,6 +7419,10 @@ msgstr "" 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" @@ -7063,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:345 -#: src/components/moderation/ReportDialog/index.tsx:362 +#: 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 "" @@ -7076,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7087,42 +7490,42 @@ msgctxt "action" msgid "New" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:107 -#: src/components/dms/dialogs/NewChatDialog.tsx:117 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:61 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 msgid "New chat with {0}" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:65 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 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 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7130,26 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 -#: src/components/dms/InitiateChatFlow.tsx:715 -#: src/components/dms/InitiateChatFlow.tsx:743 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#. 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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7180,16 +7587,16 @@ msgid "New post" msgstr "" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7215,8 +7622,8 @@ msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7237,6 +7644,10 @@ msgstr "" msgid "Next image" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7274,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7288,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7306,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "" @@ -7315,7 +7726,7 @@ msgstr "" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "" @@ -7331,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7352,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7388,8 +7799,8 @@ msgid "No result" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "" @@ -7399,8 +7810,8 @@ msgstr "" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "" @@ -7462,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7475,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "" @@ -7501,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "" @@ -7554,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "" @@ -7576,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:658 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "" @@ -7601,27 +8000,35 @@ msgstr "" msgid "Onboarding reset" msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7630,6 +8037,26 @@ msgstr "" 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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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 @@ -7640,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "" @@ -7648,6 +8085,10 @@ msgstr "" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7657,7 +8098,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "" @@ -7665,12 +8106,17 @@ msgstr "" msgid "Open camera" msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 msgid "Open chat member options for {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "" @@ -7684,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2145 msgid "Open emoji picker" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "" @@ -7705,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:408 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:120 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7735,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7762,6 +8221,10 @@ msgstr "" msgid "Open system log" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:409 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7775,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "" @@ -7783,7 +8250,7 @@ msgstr "" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "" @@ -7803,22 +8270,24 @@ msgstr "" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:302 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:288 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7835,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7847,15 +8316,23 @@ msgstr "" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7864,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "" @@ -7940,12 +8416,14 @@ msgstr "" msgid "Our blog post" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:88 -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "" @@ -7953,14 +8431,15 @@ msgstr "" msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8011,34 +8490,34 @@ msgstr "" msgid "People" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 msgid "People I follow can request to join" msgstr "" @@ -8079,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8095,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "" @@ -8109,8 +8592,8 @@ msgid "Pinned" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8179,7 +8662,7 @@ msgstr "" msgid "Please choose your password." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8187,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8208,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8228,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8236,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8249,7 +8732,7 @@ msgstr "" msgid "Please enter your invite code." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8266,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "" @@ -8301,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8309,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8326,7 +8813,7 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1793 msgctxt "action" msgid "Post" msgstr "" @@ -8346,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1791 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1455 msgid "Post anyway" msgstr "" @@ -8360,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8397,18 +8884,22 @@ msgstr "" msgid "Post interaction settings" msgstr "" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 msgid "Post link" msgstr "" @@ -8434,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8448,10 +8938,6 @@ msgstr "" msgid "Posts hidden" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8468,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "" -#: src/components/Error.tsx:61 +#: src/components/Error.tsx:56 #: src/components/Lists.tsx:104 #: src/screens/Messages/components/MessageListError.tsx:23 +#: src/screens/Messages/JoinRequests.tsx:349 #: src/screens/Signup/BackNextButtons.tsx:48 msgid "Press to retry" msgstr "" @@ -8479,7 +8966,7 @@ msgstr "" msgid "Press to view followers of this account that you also follow" msgstr "" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8502,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "" @@ -8529,15 +9015,15 @@ msgstr "" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2579 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2581 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "" @@ -8545,10 +9031,10 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "" @@ -8556,6 +9042,7 @@ msgstr "" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8578,39 +9065,39 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1777 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1772 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1761 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1766 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:140 @@ -8622,13 +9109,10 @@ msgid "QR code has been downloaded!" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 msgid "QR code saved to your camera roll!" msgstr "" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8637,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "" @@ -8654,12 +9138,12 @@ msgstr "" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "" @@ -8671,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:413 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 msgid "Re-enable link" msgstr "" @@ -8688,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8707,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8755,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8784,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "" @@ -8806,6 +9304,8 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8821,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:231 msgid "Remove {displayName} from this group chat" msgstr "" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8834,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "" @@ -8857,8 +9362,9 @@ msgstr "" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "" @@ -8872,12 +9378,12 @@ msgstr "" msgid "Remove feed?" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8902,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "" @@ -8925,7 +9431,7 @@ msgid "Remove repost" msgstr "" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -8952,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:224 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "" -#: src/components/Post/Embed/index.tsx:222 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "" @@ -8978,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9032,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "" @@ -9047,14 +9552,14 @@ msgstr "" msgid "Replies to this post are disabled." msgstr "" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1789 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9068,10 +9573,6 @@ msgstr "" msgid "Reply Hidden by You" msgstr "" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "" @@ -9080,18 +9581,18 @@ msgstr "" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:533 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 msgid "Report" msgstr "" @@ -9100,21 +9601,20 @@ msgstr "" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:287 -#: src/components/dms/ConvoMenu.tsx:291 -#: src/components/dms/ReportConversationPrompt.tsx:17 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:265 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "" @@ -9123,12 +9623,12 @@ msgstr "" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "" @@ -9141,12 +9641,15 @@ msgstr "" msgid "Report starter pack" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:85 -#: src/components/dms/AfterReportDialog.tsx:177 +#: 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 "" @@ -9154,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:532 +#: src/screens/Messages/ConversationSettings/index.tsx:576 msgid "Report this group chat" msgstr "" @@ -9163,7 +9666,7 @@ msgid "Report this list" msgstr "" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9197,10 +9700,6 @@ msgstr "" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9223,23 +9722,27 @@ msgid "Reposted by you" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9247,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9269,7 +9791,17 @@ msgstr "" msgid "Required in your region" msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9314,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9332,17 +9864,18 @@ msgstr "" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:299 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:268 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:271 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:92 @@ -9356,25 +9889,25 @@ msgstr "" msgid "Retry" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:296 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "" @@ -9395,7 +9928,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:207 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9420,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1408 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1436 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1410 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9459,13 +9994,13 @@ msgstr "" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9475,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9501,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "" @@ -9517,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9603,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9618,13 +10163,13 @@ msgstr "" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9700,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:384 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9769,7 +10314,7 @@ msgstr "" msgid "Select GIF \"{0}\"" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9791,7 +10336,7 @@ msgstr "" msgid "Select languages" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:434 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9845,11 +10390,11 @@ msgstr "" msgid "Select your preferred language for translations in your feed." msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9862,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "" @@ -9876,11 +10421,11 @@ msgstr "" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "" @@ -9893,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:824 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9901,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9915,7 +10460,7 @@ msgid "Send via direct message" msgstr "" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -9956,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -9971,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10020,16 +10565,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" +#: src/components/Link.tsx:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 #: src/components/StarterPack/QrCodeDialog.tsx:195 #: src/screens/Hashtag.tsx:130 -#: src/screens/Messages/components/InviteLinkDialog.tsx:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "" @@ -10038,16 +10586,21 @@ msgstr "" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "" @@ -10055,6 +10608,11 @@ msgstr "" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10065,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10083,8 +10641,8 @@ msgstr "" #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10092,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "" @@ -10108,16 +10666,16 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10138,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "" @@ -10160,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "" @@ -10187,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "" @@ -10211,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10238,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10270,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:213 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10278,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:212 +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 "" @@ -10289,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "" @@ -10300,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "" @@ -10332,7 +10900,7 @@ msgstr "" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1453 msgid "Skip empty posts?" msgstr "" @@ -10346,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10354,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10403,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10428,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:110 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/JoinRequests.tsx:87 msgid "Something went wrong" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:291 +#: 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 @@ -10458,11 +11031,11 @@ msgstr "" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:239 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10505,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:123 +#: 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:191 msgid "Start a new chat" msgstr "" @@ -10523,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:779 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "" @@ -10595,12 +11173,12 @@ msgstr "" msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10612,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "" @@ -10625,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:512 -#: src/components/moderation/ReportDialog/index.tsx:573 -#: src/components/moderation/ReportDialog/index.tsx:580 +#: 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 "" @@ -10636,13 +11214,13 @@ msgid "Subscribe" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:377 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:386 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:385 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10673,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:108 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10711,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10721,12 +11303,20 @@ msgstr "" 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10735,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10757,11 +11347,15 @@ msgstr "" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10787,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10857,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "" @@ -10872,7 +11484,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "" @@ -10914,9 +11526,9 @@ msgstr "" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "" @@ -10982,6 +11594,11 @@ msgstr "" 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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -10990,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11034,7 +11651,7 @@ msgstr "" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:499 msgid "There is no invite link for this group chat." msgstr "" @@ -11048,10 +11665,13 @@ 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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11059,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11069,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -11094,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "" @@ -11154,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "" @@ -11187,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "" @@ -11196,7 +11824,7 @@ msgstr "" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11204,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "" @@ -11243,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:128 +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 "" @@ -11251,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11289,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11301,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11310,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11343,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:624 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:620 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11367,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11383,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:130 +#: src/screens/Messages/ConversationSettings/index.tsx:151 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "This screen is only available for group conversations." msgstr "" @@ -11407,7 +12066,7 @@ msgstr "" msgid "This service has not provided terms of service or a privacy policy." msgstr "" -#: src/features/liveNow/index.tsx:200 +#: src/features/liveNow/index.tsx:203 msgid "This service is not supported while the Live feature is in beta. Allowed services: {formatted}." msgstr "" @@ -11423,15 +12082,23 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: 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 +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 "" @@ -11476,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "" @@ -11499,7 +12166,7 @@ msgstr "" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11525,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11534,10 +12201,6 @@ msgstr "" msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." msgstr "" -#: src/components/dms/ReportConversationPrompt.tsx:19 -msgid "To report a conversation, please report one of its messages via the conversation screen. This lets our moderators understand the context of your issue." -msgstr "" - #: src/components/dms/DateDivider.tsx:27 msgid "Today" msgstr "" @@ -11575,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11596,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11631,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11640,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:167 +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 "" @@ -11692,6 +12369,18 @@ msgstr "" msgid "Unable to delete" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" msgstr "" @@ -11712,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:662 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:281 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "" @@ -11758,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11780,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11793,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:496 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11805,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11825,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:519 +#: src/screens/Messages/ConversationSettings/index.tsx:561 msgid "Unlock this group chat" msgstr "" @@ -11860,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:265 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "" @@ -11876,12 +12562,12 @@ msgstr "" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:484 +#: src/screens/Messages/ConversationSettings/index.tsx:523 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "" @@ -11895,19 +12581,19 @@ msgid "Unpin" msgstr "" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "" @@ -11917,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -11951,14 +12637,18 @@ msgstr "" msgid "Unsubscribed from list" msgstr "" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1542 msgid "Unsupported video type: {mimeType}" 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" @@ -11968,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 #: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 msgid "Update invite link" msgstr "" @@ -11986,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12001,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "" @@ -12019,39 +12717,40 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2572 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2574 msgid "Uploading video..." msgstr "" @@ -12094,7 +12793,8 @@ msgstr "" msgid "user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportConversationDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12131,7 +12831,7 @@ msgid "User list by {0}" msgstr "" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12175,12 +12875,12 @@ msgstr "" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12197,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12224,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12236,7 +12936,7 @@ 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12269,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12300,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12339,7 +13039,7 @@ msgstr "" msgid "Video settings" msgstr "" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2592 msgid "Video uploaded" msgstr "" @@ -12352,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1136 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:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12375,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "" @@ -12387,20 +13087,15 @@ msgstr "" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 +#: src/components/dms/MessagesListHeader.tsx:111 #: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 msgid "View {displayName}’s profile" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:388 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "" @@ -12423,10 +13118,18 @@ msgstr "" msgid "View full thread" msgstr "" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:42 +#: 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:56 msgid "View information about these labels" msgstr "" @@ -12442,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1131 msgid "View post" msgstr "" @@ -12459,10 +13162,10 @@ msgstr "" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:282 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:378 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:389 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:501 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12470,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:506 +#: src/screens/Messages/ConversationSettings/index.tsx:548 msgid "View the invite link for this group chat" msgstr "" @@ -12483,7 +13186,7 @@ msgstr "" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "" @@ -12516,8 +13219,8 @@ msgstr "" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12560,8 +13263,8 @@ msgstr "" msgid "Warn content and filter from feeds" msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12585,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:111 +#: src/screens/Messages/JoinRequests.tsx:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 msgid "We couldn’t load this conversation’s settings" msgstr "" @@ -12635,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "" @@ -12664,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12699,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12734,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "" @@ -12785,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1506 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12798,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:239 msgid "Who can join this group chat and how" msgstr "" @@ -12807,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "" @@ -12827,6 +13534,7 @@ 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 "" @@ -12858,15 +13566,19 @@ msgstr "" msgid "Why should this user be reviewed?" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:49 +#: 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:1320 +#: src/view/com/composer/Composer.tsx:1424 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12875,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1602 msgid "Write post" msgstr "" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1504 msgid "Write your reply" msgstr "" @@ -12893,7 +13605,8 @@ msgstr "" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:129 +#: src/screens/Messages/ConversationSettings/index.tsx:150 +#: src/screens/Messages/JoinRequests.tsx:109 msgid "Wrong kind of conversation" msgstr "" @@ -12920,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "" @@ -12945,7 +13658,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:635 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -12979,11 +13692,11 @@ msgstr "" msgid "You are Live" msgstr "" -#: src/features/liveNow/index.tsx:368 +#: src/features/liveNow/index.tsx:371 msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "" @@ -12991,7 +13704,7 @@ msgstr "" msgid "You are not following anyone yet" msgstr "" -#: src/features/liveNow/index.tsx:312 +#: src/features/liveNow/index.tsx:315 msgid "You are now live!" msgstr "" @@ -13032,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13054,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13070,9 +13792,9 @@ msgstr "" 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13081,6 +13803,15 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13108,6 +13839,10 @@ msgstr "" msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13177,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1419 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13235,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13244,10 +13983,11 @@ msgid "You must be following at least seven other people to generate a starter p msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13255,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13265,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13279,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13289,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "" @@ -13301,12 +14050,12 @@ msgstr "" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13340,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "" @@ -13374,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13386,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "" @@ -13410,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "" @@ -13430,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "" @@ -13438,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13472,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13493,7 +14254,7 @@ msgstr "" msgid "Your full handle will be <0>@{0}" msgstr "" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13522,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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 @@ -13534,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1127 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1124 msgid "Your posts were sent" msgstr "" @@ -13546,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13559,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1126 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:523 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13572,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1454 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 new file mode 100644 index 0000000000..03cdde2474 --- /dev/null +++ b/src/locale/locales/lv/messages.po @@ -0,0 +1,14343 @@ +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: lv\n" +"Project-Id-Version: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2026-06-10 21:06\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" +"X-Crowdin-Project: 49a8cb746fbc2ae5707392ee41ddec4c\n" +"X-Crowdin-Project-ID: 1\n" +"X-Crowdin-Language: lv\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:330 +msgid "\"{interestsDisplayName}\" category (active)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 +msgid "(contains embedded content)" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:76 +msgid "(no email)" +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/LabelsOnMe.tsx:63 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this account" +msgstr "" + +#. placeholder {0}: labels.length +#: src/components/moderation/LabelsOnMe.tsx:72 +msgid "{0, plural, one {# label has} other {# labels have}} been placed on this content" +msgstr "" + +#. placeholder {0}: likeCount ?? 0 +#: src/screens/Post/PostLikedBy.tsx:34 +msgid "{0, plural, one {# like} other {# likes}}" +msgstr "" + +#. placeholder {0}: convo.members.length +#: src/components/dialogs/SearchablePeopleList.tsx:555 +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:225 +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:269 +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:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:231 +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:311 +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:100 +msgid "{0} (Account)" +msgstr "" + +#. Pattern: {wordValue} in tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:495 +msgid "{0} <0>in <1>tags" +msgstr "" + +#. Pattern: {wordValue} in text, tags +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:484 +msgid "{0} <0>in <1>text & tags" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +msgid "{0} added to chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +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:614 +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:186 +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:264 +msgid "{0} reacted {1}" +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 "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +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:136 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:307 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +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:427 +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:35 +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 "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "" + +#. Displayed when there are more requests to join a group chat than have been loaded +#: src/screens/Messages/JoinRequests.tsx:421 +msgid "{count, plural, other {#+ requests to join}}" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/InboxRequests.tsx:56 +msgid "{count}+" +msgstr "" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/InboxRequests.tsx:31 +msgid "{count}+ requests" +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/view/com/notifications/NotificationFeedItem.tsx:355 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:389 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:298 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:494 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:467 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:322 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:518 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:413 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:442 +msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:367 +msgid "{firstAuthorLink} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:344 +msgid "{firstAuthorLink} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:401 +msgid "{firstAuthorLink} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:310 +msgid "{firstAuthorLink} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:506 +msgid "{firstAuthorLink} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:479 +msgid "{firstAuthorLink} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:334 +msgid "{firstAuthorLink} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:530 +msgid "{firstAuthorLink} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:425 +msgid "{firstAuthorLink} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:454 +msgid "{firstAuthorLink} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:348 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:382 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:291 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:487 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:460 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:315 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:511 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:406 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:435 +msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:353 +msgid "{firstAuthorName} followed you" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:343 +msgid "{firstAuthorName} followed you back" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:387 +msgid "{firstAuthorName} liked your custom feed" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:296 +msgid "{firstAuthorName} liked your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:492 +msgid "{firstAuthorName} liked your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:465 +msgid "{firstAuthorName} removed their verification from your account" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:320 +msgid "{firstAuthorName} reposted your post" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:516 +msgid "{firstAuthorName} reposted your repost" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:411 +msgid "{firstAuthorName} signed up with your starter pack" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:440 +msgid "{firstAuthorName} verified you" +msgstr "" + +#: src/components/ProfileHoverCard/index.web.tsx:572 +msgid "{following} following" +msgstr "" + +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 +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:906 +msgid "{handle} can’t be messaged" +msgstr "" + +#: src/features/liveNow/utils.ts:15 +msgid "{hours, plural, one {# hour {minutesString}} other {# hours {minutesString}}}" +msgstr "" + +#: src/features/liveNow/utils.ts:19 +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:220 +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:10 +msgid "{minutes, plural, one {# minute} other {# minutes}}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:45 +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:57 +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" +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:101 +msgid "{rank}." +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 "" + +#. 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 "" + +#: 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}: totalNumber - 3 +#: 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 +msgid "+{computedTotal}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:569 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[2]) +#. placeholder {2}: items.length - 2 +#: src/screens/StarterPack/Wizard/index.tsx:516 +msgctxt "profiles" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) +#. placeholder {1}: profile?.followersCount || 0 +#: src/view/shell/Drawer.tsx:155 +msgid "<0>{0} {1, plural, one {follower} other {followers}}" +msgstr "" + +#. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) +#. placeholder {1}: profile?.followsCount || 0 +#: src/view/shell/Drawer.tsx:166 +msgid "<0>{0} {1, plural, one {following} other {following}}" +msgstr "" + +#. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.likeCount) +#. placeholder {1}: post.likeCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 +msgid "<0>{0} {1, plural, one {like} other {likes}}" +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:473 +msgid "<0>{0} {1, plural, one {quote} other {quotes}}" +msgstr "" + +#. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.repostCount) +#. placeholder {1}: post.repostCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 +msgid "<0>{0} {1, plural, one {repost} other {reposts}}" +msgstr "" + +#. Save count display, the <0> tags enclose the number of saves in bold (will never be 0) +#. placeholder {0}: formatPostStatCount(post.bookmarkCount) +#. placeholder {1}: post.bookmarkCount +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 +msgid "<0>{0} {1, plural, one {save} other {saves}}" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#. placeholder {1}: getName(items[1] /* [0] is self, skip it */) +#. placeholder {1}: getName(items[1]) +#: src/screens/StarterPack/Wizard/index.tsx:503 +#: src/screens/StarterPack/Wizard/index.tsx:557 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:550 +msgid "<0>{0} is included in your starter pack" +msgstr "" + +#. placeholder {0}: list.name +#: src/components/WhoCanReply.tsx:353 +msgid "<0>{0} members" +msgstr "" + +#. Text identifying the person who added you to a group chat +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 +msgid "<0>{displayName}<1/><2> added you" +msgstr "" + +#: src/screens/Hashtag.tsx:226 +#: src/screens/Search/SearchResults.tsx:315 +msgid "<0>Sign in<1> or <2>create an account<3> <4>to search for news, sports, politics, and everything else happening on Bluesky." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 +msgid "<0>Tap here to update your location with GPS." +msgstr "" + +#. placeholder {0}: getName(items[1] /* [0] is self, skip it */) +#: src/screens/StarterPack/Wizard/index.tsx:494 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + +#: src/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:278 +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:17 +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:33 +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/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:187 +#: src/screens/Messages/JoinRequests.tsx:219 +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 "" + +#. 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 +msgid "A selected recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:465 +#: src/screens/Settings/AboutSettings.tsx:78 +#: src/screens/Settings/Settings.tsx:255 +#: src/screens/Settings/Settings.tsx:258 +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:458 +msgctxt "button" +msgid "Accept" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:281 +msgid "Accept chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:452 +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/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:101 +msgid "Access requested! The group owner will review your request." +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:45 +#: src/screens/Settings/Settings.tsx:233 +#: src/screens/Settings/Settings.tsx:236 +msgid "Accessibility" +msgstr "" + +#: src/Navigation.tsx:388 +msgid "Accessibility Settings" +msgstr "" + +#: src/Navigation.tsx:404 +#: src/screens/Login/LoginForm.tsx:192 +#: src/screens/Settings/AccountSettings.tsx:56 +#: src/screens/Settings/Settings.tsx:173 +#: src/screens/Settings/Settings.tsx:176 +msgid "Account" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:427 +#: src/screens/Messages/components/RequestButtons.tsx:104 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:119 +#: src/view/com/profile/ProfileMenu.tsx:190 +msgctxt "toast" +msgid "Account blocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:206 +msgctxt "toast" +msgid "Account followed" +msgstr "" + +#: src/lib/strings/errors.ts:34 +msgid "Account has been suspended" +msgstr "" + +#: src/lib/strings/errors.ts:37 +msgid "Account is deactivated" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 +#: src/view/com/profile/ProfileMenu.tsx:160 +msgctxt "toast" +msgid "Account muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:107 +#: src/lib/moderation/useModerationCauseDescription.ts:99 +msgid "Account Muted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:93 +msgid "Account Muted by List" +msgstr "" + +#: src/screens/Settings/Settings.tsx:637 +msgid "Account options" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:138 +msgid "Account provider" +msgstr "" + +#: src/screens/Settings/Settings.tsx:671 +msgid "Account removed from quick access" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:106 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 +msgctxt "toast" +msgid "Account unblocked" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:221 +msgctxt "toast" +msgid "Account unfollowed" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 +msgctxt "toast" +msgid "Account unmuted" +msgstr "" + +#: src/components/verification/VerifierDialog.tsx:100 +msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:216 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 +msgid "Activity from others" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 +#: src/components/dialogs/MutedWords.tsx:337 +#: src/components/dialogs/StarterPackDialog.tsx:376 +#: src/components/dialogs/StarterPackDialog.tsx:388 +#: src/components/dms/AddMembersFlow.tsx:410 +#: src/view/com/modals/UserAddRemoveLists.tsx:236 +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:108 +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:575 +#: src/screens/Settings/Settings.tsx:578 +#: 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:1505 +msgid "Add another post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2168 +msgid "Add another post to thread" +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/components/dms/AddMembersFlow.tsx:492 +msgid "Add group chat members" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:224 +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:505 +msgid "Add media to post" +msgstr "" + +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +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:130 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:169 +#: src/screens/ProfileList/AboutSection.tsx:72 +#: src/screens/ProfileList/AboutSection.tsx:90 +msgid "Add people" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:83 +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:355 +#: src/view/com/profile/ProfileMenu.tsx:358 +msgid "Add to lists" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:144 +msgid "Add to saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:346 +#: src/view/com/profile/ProfileMenu.tsx:349 +msgid "Add to starter packs" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:166 +msgid "Add user to list" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:234 +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:113 +#: src/view/com/modals/UserAddRemoveLists.tsx:163 +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:152 +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:131 +#: src/lib/moderation/useGlobalLabelStrings.ts:34 +#: src/lib/moderation/useModerationCauseDescription.ts:149 +#: src/view/com/composer/labels/LabelsBtn.tsx:123 +msgid "Adult Content" +msgstr "" + +#: src/screens/Moderation/index.tsx:412 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:252 +msgid "Adult content is disabled." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:134 +#: src/view/com/composer/labels/LabelsBtn.tsx:192 +msgid "Adult Content labels" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:76 +msgid "Adult sexual abuse content" +msgstr "" + +#: src/screens/Moderation/index.tsx:457 +msgid "Advanced" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceBadge.tsx:42 +msgid "Age Assurance" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:72 +msgid "Age assurance inquiry failed to send, please try again." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:82 +msgctxt "toast" +msgid "Age assurance inquiry was submitted" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:383 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:207 +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:288 +#: 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:385 +msgid "All {0}" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:400 +msgid "All accounts have been followed!" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:144 +msgid "All friends followed!" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:255 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:65 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:100 +#: src/screens/Search/components/SearchLanguageDropdown.tsx:102 +msgid "All languages" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:189 +msgid "All languages will be shown in your feeds." +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:143 +#: src/screens/Messages/Settings.tsx:158 +msgid "Allow direct messages from" +msgstr "" + +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 +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:180 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:237 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:243 +msgid "Already have a code?" +msgstr "" + +#: src/components/WelcomeModal.tsx:192 +msgid "Already have an account?" +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Login/ChooseAccountForm.tsx:46 +msgid "Already signed in as @{0}" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 +#: 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/Post/Embed/VideoEmbed/GifPresentationControls.tsx:100 +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:448 +msgid "An error occurred" +msgstr "" + +#: src/view/com/composer/state/video.ts:401 +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:374 +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:149 +msgid "An error occurred while loading the video. Please try again later." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:239 +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:78 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 +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:453 +msgid "An error occurred while uploading the video. {message}" +msgstr "" + +#: src/view/com/composer/state/video.ts:445 +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:35 +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:190 +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:92 +msgid "An issue occurred creating the group chat, please try again." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:54 +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/hooks/useFollowMethods.ts:35 +#: src/components/hooks/useFollowMethods.ts:52 +#: src/components/ProfileCard.tsx:508 +#: src/components/ProfileCard.tsx:530 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 +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/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:165 +msgid "An unknown error occurred." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:138 +#: 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:97 +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 "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:457 +msgid "Anyone" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:137 +msgid "Anyone can interact" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:318 +msgid "Anyone can join" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:145 +#: src/screens/Messages/components/InviteLinkDialog.tsx:146 +msgid "Anyone can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:151 +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:458 +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:473 +#: 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, dashes, and underscores" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:80 +msgid "App password names must be at least 4 characters long" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:72 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:75 +msgid "App passwords" +msgstr "" + +#: src/Navigation.tsx:356 +#: src/screens/Settings/AppPasswords.tsx:51 +msgid "App Passwords" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:155 +#: src/components/moderation/LabelsOnMeDialog.tsx:158 +msgid "Appeal" +msgstr "" + +#. placeholder {0}: strings.name +#: src/components/moderation/LabelsOnMeDialog.tsx:282 +msgid "Appeal \"{0}\" label" +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:93 +msgid "Appeal livestream suspension" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:272 +#: 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/Navigation.tsx:396 +#: src/screens/Settings/AppearanceSettings.tsx:73 +#: src/screens/Settings/Settings.tsx:225 +#: src/screens/Settings/Settings.tsx:228 +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:506 +#: src/screens/Settings/Settings.tsx:508 +msgid "Apply Pull Request" +msgstr "" + +#. placeholder {0}: niceDate(i18n, createdAt, 'medium') +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 +msgid "Archived from {0}" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 +msgid "Archived post" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:327 +msgid "Are you really, really sure?" +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:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 +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:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1641 +msgid "Are you sure you'd like to discard this post?" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:452 +msgid "Are you sure?" +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:349 +msgid "Are you writing in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/lib/interests.ts:53 +msgid "Art" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:167 +msgid "Artistic or non-erotic nudity." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 +msgid "Assign topic for algo" +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:209 +msgid "At least 8 characters" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:338 +msgid "AT Protocol FAQ" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 +msgctxt "Name of app icon variant" +msgid "Aurora" +msgstr "" + +#: src/components/BotAccountAlert.tsx:32 +#: src/components/BotBadge.tsx:63 +msgid "Automated account" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:157 +#: src/screens/Settings/AccountSettings.tsx:160 +msgid "Automation label" +msgstr "" + +#: src/Navigation.tsx:412 +#: 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 +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:73 +msgid "Available" +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/moderation/LabelsOnMeDialog.tsx:334 +#: src/components/moderation/LabelsOnMeDialog.tsx:335 +#: src/screens/Login/ChooseAccountForm.tsx:98 +#: src/screens/Login/ChooseAccountForm.tsx:102 +#: src/screens/Login/ForgotPasswordForm.tsx:127 +#: src/screens/Login/ForgotPasswordForm.tsx:132 +#: src/screens/Login/LoginForm.tsx:317 +#: src/screens/Login/LoginForm.tsx:322 +#: src/screens/Login/SetNewPasswordForm.tsx:172 +#: src/screens/Login/SetNewPasswordForm.tsx:178 +#: src/screens/Messages/components/ChatDisabled.tsx:164 +#: src/screens/Messages/components/ChatDisabled.tsx:166 +#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: src/screens/Messages/components/InviteLinkDialog.tsx:296 +#: src/screens/Messages/Inbox.tsx:240 +#: 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:239 +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/components/ageAssurance/AgeAssuranceAccountCard.tsx:259 +msgid "Based on your device's location, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265 +msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." +msgstr "" + +#: src/view/screens/Lists.tsx:35 +#: src/view/screens/ModerationModlists.tsx:35 +msgid "Before creating a list, you must first verify your email." +msgstr "" + +#: src/lib/hooks/useOpenComposer.tsx:14 +msgid "Before creating a post or replying, you must first verify your email." +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:72 +#: src/components/StarterPack/ProfileStarterPacks.tsx:264 +#: src/components/StarterPack/ProfileStarterPacks.tsx:274 +#: src/view/screens/Profile.tsx:350 +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:59 +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:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: src/screens/Messages/ChatList.tsx:543 +#: src/screens/Messages/Conversation.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:96 +msgid "Before you can message another user, you must first verify your email." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:318 +msgid "Begin" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:312 +msgid "Begin age assurance process" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:51 +msgid "Begin the age assurance process by completing the fields below." +msgstr "" + +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:99 +msgid "Beta Feature" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:163 +msgid "Birthdate" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:147 +msgid "Birthday" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +msgid "Block" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:213 +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:469 +#: src/view/com/profile/ProfileMenu.tsx:476 +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:216 +msgid "Blocked" +msgstr "" + +#: src/screens/Moderation/index.tsx:329 +msgid "Blocked accounts" +msgstr "" + +#: src/Navigation.tsx:192 +#: 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:203 +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:174 +msgid "Blog" +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:144 +#: src/components/dialogs/ServerInput.tsx:146 +msgid "Bluesky" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 +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 +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:117 +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:340 +msgid "Bluesky will choose a set of recommended accounts from people in your network." +msgstr "" + +#: src/screens/Settings/components/PwiOptOut.tsx:100 +msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 +msgid "Bluesky will proactively verify notable and authentic accounts." +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:97 +msgid "Bluesky+" +msgstr "" + +#: src/screens/Settings/AppIconSettings/index.tsx:100 +msgid "Bluesky+ icons" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:56 +msgid "Blur images" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:54 +msgid "Blur images and filter from feeds" +msgstr "" + +#: src/lib/interests.ts:54 +msgid "Books" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:215 +msgid "Breaking site rules" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "" + +#: src/view/com/feeds/ProfileFeedgens.tsx:167 +#: src/view/com/feeds/ProfileFeedgens.tsx:168 +msgid "Browse custom feeds" +msgstr "" + +#: src/components/FeedInterstitials.tsx:535 +msgid "Browse more accounts" +msgstr "" + +#: src/components/FeedInterstitials.tsx:665 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:646 +#: src/components/FeedInterstitials.tsx:649 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:674 +msgid "Browse more suggestions on the Explore page" +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:104 +#: src/screens/Home/NoFeedsPinned.tsx:110 +msgid "Browse other feeds" +msgstr "" + +#: src/components/TrendingTopics.tsx:179 +msgid "Browse posts about {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:187 +msgid "Browse posts tagged with {displayName}" +msgstr "" + +#: src/components/TrendingTopics.tsx:196 +msgid "Browse starter pack {displayName}" +msgstr "" + +#. placeholder {0}: trend.displayName +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:83 +msgid "Browse topic {0}" +msgstr "" + +#: src/components/TrendingTopics.tsx:233 +msgid "Browse topic {displayName}" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:169 +msgid "Business" +msgstr "" + +#: src/screens/Bookmarks/index.tsx:302 +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:174 +#: src/screens/Search/components/StarterPackCard.tsx:107 +#: src/screens/Search/Explore.tsx:971 +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}: sanitizeHandle(info.creatorHandle, '@') +#: src/components/intents/GroupChatJoinDialog.tsx:341 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 +msgid "By <0>{0}" +msgstr "" + +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 +msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:297 +msgid "By continuing, you consent to this use. You may change your mind any time by visiting settings. <0>Learn more" +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:76 +msgid "By creating an account you agree to the <0>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:43 +msgid "By creating an account you agree to the <0>Terms of Service and <1>Privacy Policy." +msgstr "" + +#: src/screens/Signup/StepInfo/Policies.tsx:63 +msgid "By creating an account you agree to the <0>Terms of Service." +msgstr "" + +#: src/screens/Search/components/StarterPackCard.tsx:106 +msgid "By you" +msgstr "" + +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 +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:367 +#: src/components/moderation/BlockDialog.tsx:202 +#: 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/liveEvents/components/LiveEventFeedOptionsMenu.tsx:152 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:157 +#: src/features/liveNow/components/GoLiveDialog.tsx:248 +#: src/features/liveNow/components/GoLiveDialog.tsx:254 +#: src/lib/media/picker.tsx:38 +#: src/screens/Deactivated.tsx:150 +#: src/screens/Messages/components/InviteLinkDialog.tsx:480 +#: src/screens/Messages/components/InviteLinkDialog.tsx:484 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 +#: src/screens/Profile/Header/EditProfileDialog.tsx:215 +#: src/screens/Profile/Header/EditProfileDialog.tsx:223 +#: src/screens/Search/Shell.tsx:405 +#: src/screens/Settings/AppIconSettings/index.tsx:42 +#: src/screens/Settings/AppIconSettings/index.tsx:228 +#: 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:300 +#: src/screens/Takendown.tsx:102 +#: src/screens/Takendown.tsx:105 +#: src/view/com/composer/Composer.tsx:1719 +#: src/view/com/composer/Composer.tsx:1729 +#: 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/Search/Shell.tsx:396 +msgid "Cancel search" +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:275 +msgid "carousel" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Cashtag {tag}" +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:40 +msgid "Change app language" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:96 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:100 +msgid "Change Handle" +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:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: 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:234 +#: src/screens/Messages/JoinRequest.tsx:90 +msgid "Chat invite link no longer available" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:104 +msgid "Chat locked" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:148 +msgid "Chat messages - silent" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:139 +msgid "Chat messages - sound" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:206 +msgctxt "toast" +msgid "Chat muted" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "" + +#: src/Navigation.tsx:511 +msgid "Chat request inbox" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 +msgid "Chat requests" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 +#: src/screens/Messages/ChatList.tsx:83 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 +msgid "Chat settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:134 +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:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 +msgid "Chats" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:233 +msgid "Check <0>{currentEmail} for an email with the confirmation code to enter below:" +msgstr "" + +#: src/screens/SignupQueued.tsx:79 +#: src/screens/SignupQueued.tsx:83 +msgid "Check my status" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:307 +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:349 +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:108 +msgid "Choose this color as your avatar" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:235 +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 +msgid "Choose your account 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:268 +msgid "Choose your password" +msgstr "" + +#: src/screens/Signup/index.tsx:192 +msgid "Choose your username" +msgstr "" + +#: src/screens/Settings/Settings.tsx:498 +msgid "Clear all storage data" +msgstr "" + +#: src/screens/Settings/Settings.tsx:500 +msgid "Clear all storage data (restart after this)" +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:127 +#: src/screens/Settings/AboutSettings.tsx:131 +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:126 +msgid "Click here to add people to this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:129 +msgid "Click here to contact our support team" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:140 +msgid "Click here to create or manage an invite link for this group chat" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:263 +msgid "Click here to delete your account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:254 +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:109 +#: src/ageAssurance/components/NoAccessScreen.tsx:231 +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:141 +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:533 +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/dialogs/LanguageSelectDialog.tsx:359 +#: 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:565 +#: src/components/intents/GroupChatJoinDialog.tsx:211 +#: src/components/intents/GroupChatJoinDialog.tsx:246 +#: src/components/NewskieDialog.tsx:169 +#: src/components/NewskieDialog.tsx:175 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 +#: 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:217 +#: src/features/liveNow/components/EditLiveDialog.tsx:223 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/components/InviteLinkDialog.tsx:509 +#: 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:127 +#: src/components/Dialog/index.web.tsx:317 +msgid "Close active dialog" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:32 +msgid "Close alert" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + +#: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 +msgid "Close bottom drawer" +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:94 +#: src/components/moderation/BlockDialog.tsx:199 +#: 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:129 +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:84 +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:204 +#: src/components/intents/GroupChatJoinDialog.tsx:205 +#: src/components/intents/GroupChatJoinDialog.tsx:241 +#: src/components/intents/GroupChatJoinDialog.tsx:242 +#: src/components/Menu/index.tsx:361 +msgid "Close this dialog" +msgstr "" + +#: src/components/WelcomeModal.tsx:217 +msgid "Close welcome modal" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:33 +msgid "Closes password update alert" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1727 +msgid "Closes post composer and discards post draft" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:605 +msgid "Collapse list of users" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:953 +msgid "Collapses list of users for a given notification" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + +#: src/components/dialogs/Embed.tsx:150 +#: src/screens/Settings/AppearanceSettings.tsx:81 +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:346 +#: 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:194 +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:1603 +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:2565 +msgid "Compressing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2567 +msgid "Compressing video..." +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:88 +msgid "Configure content filtering setting for category: {name}" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:37 +msgid "Configure live event banner" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:254 +msgid "Configured in <0>moderation settings." +msgstr "" + +#: src/components/Prompt.tsx:211 +#: src/components/Prompt.tsx:214 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:186 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:189 +msgid "Confirm" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 +#: src/screens/Login/LoginForm.tsx:284 +#: 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:140 +#: src/screens/Login/LoginForm.tsx:340 +msgid "Connecting to service..." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:297 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:209 +msgid "Connection issue" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:334 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:146 +#: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:31 +msgid "Contact our moderation team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:127 +msgid "Contact our support team" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:156 +#: src/screens/Signup/index.tsx:233 +#: src/screens/Signup/index.tsx:236 +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:205 +#: src/screens/Settings/Settings.tsx:208 +msgid "Content and media" +msgstr "" + +#: src/Navigation.tsx:449 +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/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 "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:86 +#: 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:54 +#: src/components/moderation/ScreenHider.tsx:100 +#: 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:91 +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/Onboarding/StepInterests/index.tsx:93 +#: src/screens/Onboarding/StepProfile/index.tsx:304 +#: 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/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:493 +msgid "Continue to group name" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:90 +#: src/screens/Onboarding/StepProfile/index.tsx:301 +#: 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:191 +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Conversation not found." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:162 +msgid "Copied build version to clipboard" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 +#: src/components/PostControls/DiscoverDebug.tsx:36 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 +#: 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:138 +msgid "Copies build version to clipboard" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:252 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:262 +msgid "Copy" +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:196 +msgid "Copy App Password" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:506 +#: src/view/com/profile/ProfileMenu.tsx:509 +msgid "Copy at:// URI" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:154 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:157 +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:515 +#: src/view/com/profile/ProfileMenu.tsx:518 +msgid "Copy DID" +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:436 +msgid "Copy host" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:251 +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:142 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:88 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:91 +msgid "Copy link to post" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 +msgid "Copy link to profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:637 +msgid "Copy link to starter pack" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:169 +msgid "Copy message text" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:145 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:148 +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:181 +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:351 +#: src/view/screens/CopyrightPolicy.tsx:25 +msgid "Copyright Policy" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +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:117 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +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:284 +msgid "Could not leave chat." +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:73 +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:166 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 +msgid "Could not mute chat" +msgstr "" + +#: src/view/com/composer/videos/VideoPreview.web.tsx:66 +msgid "Could not process your video" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + +#: src/state/queries/notifications/settings.ts:49 +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 "" + +#. 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 +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:166 +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:542 +msgid "Create a starter pack" +msgstr "" + +#: src/view/screens/Profile.tsx:562 +#: src/view/screens/Profile.tsx:563 +msgid "Create a Starter Pack" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:303 +msgid "Create a starter pack for me" +msgstr "" + +#: src/components/WelcomeModal.tsx:158 +#: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:307 +#: src/screens/Signup/index.tsx:135 +#: src/view/com/auth/SplashScreen.tsx:107 +#: src/view/com/auth/SplashScreen.web.tsx:116 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 +#: 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:235 +#: src/screens/Search/SearchResults.tsx:321 +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:317 +msgid "Create an avatar instead" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:214 +msgid "Create another" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:501 +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:301 +#: src/view/com/auth/SplashScreen.tsx:100 +#: src/view/com/auth/SplashScreen.web.tsx:108 +msgid "Create new account" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:547 +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:341 +#: src/screens/Messages/ConversationSettings/index.tsx:499 +#: 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/components/moderation/BlockDialog.tsx:378 +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:93 +#: src/screens/Settings/AppearanceSettings.tsx:114 +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppIconSettings/useAppIconSets.ts:28 +msgctxt "Name of app icon variant" +msgid "Dark" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:106 +msgid "Dark theme" +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:296 +msgid "Date of birth" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:179 +#: src/screens/Settings/AccountSettings.tsx:184 +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 +msgid "Deactivate account" +msgstr "" + +#: src/screens/Settings/Settings.tsx:463 +msgid "Debug Moderation" +msgstr "" + +#: src/view/screens/Debug.tsx:75 +msgid "Debug panel" +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:156 +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:189 +#: src/screens/Settings/AccountSettings.tsx:194 +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:470 +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:180 +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:177 +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:1615 +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:209 +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:151 +msgctxt "toast" +msgid "Developer mode disabled" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:145 +msgctxt "toast" +msgid "Developer mode enabled" +msgstr "" + +#: src/screens/Settings/Settings.tsx:282 +#: src/screens/Settings/Settings.tsx:285 +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/Settings/AppearanceSettings.tsx:110 +msgid "Dim" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:373 +#: src/screens/Messages/components/InviteLinkDialog.tsx:378 +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:414 +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:468 +#: src/screens/Messages/components/InviteLinkDialog.tsx:474 +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:455 +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:1398 +#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1648 +#: 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:1396 +#: 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:1413 +#: src/view/com/composer/Composer.tsx:1640 +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/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 "" + +#: src/view/screens/Feeds.tsx:723 +msgid "Discover New Feeds" +msgstr "" + +#: src/components/Dialog/index.tsx:413 +#: 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:2486 +msgid "Dismiss error" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:82 +msgid "Dismiss getting started guide" +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:44 +msgid "Dismiss interests" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:82 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:64 +msgid "Dismiss live event banner" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:90 +msgid "Dismiss this section" +msgstr "" + +#: src/components/FeedInterstitials.tsx:349 +msgid "Dismiss this suggestion" +msgstr "" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "" + +#: src/screens/Settings/AccessibilitySettings.tsx:70 +#: src/screens/Settings/AccessibilitySettings.tsx:75 +msgid "Display larger alt text badges" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:310 +#: src/screens/Profile/Header/EditProfileDialog.tsx:316 +msgid "Display name" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:23 +msgid "Ditch the trolls and clickbait. Find real people and conversations that matter to you." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:405 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:407 +msgid "DNS Panel" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:311 +msgid "Do not apply this mute word to users you follow" +msgstr "" + +#: src/lib/moderation/useGlobalLabelStrings.ts:39 +msgid "Does not include nudity." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:525 +msgid "Domain verified!" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 +msgid "Don't have a code or need a new one? <0>Click here." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:269 +msgid "Don’t see a code? <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 +msgid "Don't see an email? <0>Click here to resend." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:105 +#: src/components/ageAssurance/AgeAssuranceDismissibleNotice.tsx:38 +msgid "Don't show again" +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:26 +msgid "Don't worry! All existing messages and settings are saved and will be available after you verify you're an adult." +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:73 +#: src/components/contacts/components/InviteInfo.tsx:79 +#: src/components/contacts/screens/ViewMatches.tsx:395 +#: src/components/contacts/screens/ViewMatches.tsx:412 +#: src/components/dialogs/BirthDateSettings.tsx:193 +#: src/components/dialogs/BirthDateSettings.tsx:200 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:195 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:200 +#: src/components/dialogs/LanguageSelectDialog.tsx:327 +#: src/components/dialogs/NotificationSettingsDialog.tsx:98 +#: 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:104 +#: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:143 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:149 +#: src/lib/media/picker.tsx:37 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 +#: 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/view/com/modals/UserAddRemoveLists.tsx:114 +#: src/view/com/modals/UserAddRemoveLists.tsx:117 +msgctxt "action" +msgid "Done" +msgstr "" + +#: src/components/dms/MessageItem.tsx:437 +msgid "Double tap or long press the message to add a reaction" +msgstr "" + +#: src/components/Dialog/index.tsx:414 +msgid "Double tap to close the dialog" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1107 +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:366 +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:30 +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:150 +#: 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:188 +#: src/view/com/lists/ListMembers.tsx:194 +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:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 +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:99 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:106 +msgid "Edit interests" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:293 +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:299 +msgctxt "button" +msgid "Edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +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:369 +#: src/view/com/profile/ProfileMenu.tsx:389 +msgid "Edit live status" +msgstr "" + +#: src/components/dialogs/lists/CreateOrEditListDialog.tsx:364 +msgid "Edit moderation list" +msgstr "" + +#: src/Navigation.tsx:361 +#: src/view/screens/Feeds.tsx:511 +msgid "Edit My Feeds" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:534 +msgid "Edit name" +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:296 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 +msgid "Edit profile" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 +msgid "Edit Profile" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:596 +msgid "Edit starter pack" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:480 +#: src/screens/Messages/ConversationSettings/index.tsx:533 +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:547 +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:71 +#: src/screens/Signup/StepInfo/index.tsx:220 +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:95 +msgid "Email address" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:99 +msgid "Email Resent" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 +msgid "Email sent!" +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:260 +msgid "Email sent! <0>Click here to resend." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:183 +msgid "Email verification complete!" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:74 +msgid "Email Verified" +msgstr "" + +#: src/components/dialogs/Embed.tsx:178 +msgid "Embed HTML code" +msgstr "" + +#: src/components/dialogs/Embed.tsx:105 +#: src/components/dialogs/Embed.tsx:109 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:120 +#: src/components/PostControls/ShareMenu/ShareMenuItems.web.tsx:125 +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:57 +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/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:415 +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/view/screens/Storybook/Admonitions.tsx:76 +msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 +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:131 +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:149 +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:433 +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:115 +msgid "Enter the email you used to create your account. We'll send you a \"reset code\" so you can set a new password." +msgstr "" + +#: src/screens/Login/LoginForm.tsx:218 +msgid "Enter the username or email address you used when you created your account" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:164 +msgid "Enter your birthdate" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:101 +#: src/screens/Signup/StepInfo/index.tsx:240 +msgid "Enter your email address" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:243 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:291 +msgid "Enter your password" +msgstr "" + +#: src/screens/Login/index.tsx:141 +msgid "Enter your username and password" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:150 +msgid "Enters full screen" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:224 +msgid "Entertainment" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2585 +#: 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:154 +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:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:80 +msgctxt "allow group chat invites from" +msgid "Everyone" +msgstr "" + +#: src/screens/Messages/Settings.tsx:65 +msgctxt "allow messages from" +msgid "Everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 +msgid "Everything else" +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:432 +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:606 +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:33 +msgid "Expand post text" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:983 +msgid "Expands or collapses post text" +msgstr "" + +#: src/lib/api/index.ts:491 +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:204 +#: src/components/moderation/ModerationDetailsDialog.tsx:224 +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:132 +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:751 +#: src/screens/Search/Shell.tsx:362 +#: 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 +msgid "Explore the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 +#: src/screens/Settings/components/ExportCarDialog.tsx:130 +msgid "Export my chat data" +msgstr "" + +#: src/screens/Settings/AccountSettings.tsx:170 +#: src/screens/Settings/AccountSettings.tsx:174 +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:380 +#: 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:185 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 +msgid "Failed to add emoji reaction" +msgstr "" + +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +msgid "Failed to add members" +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:126 +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:101 +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:124 +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:369 +msgid "Failed to edit group chat name" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:114 +msgid "Failed to edit invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:134 +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/screens/Messages/JoinRequests.tsx:217 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:124 +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:42 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:396 +msgctxt "toast" +msgid "Failed to leave group chat" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 +msgid "Failed to load conversations" +msgstr "" + +#: src/screens/Search/Explore.tsx:530 +#: src/screens/Search/Explore.tsx:575 +#: src/screens/Search/Explore.tsx:621 +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 +msgid "Failed to load feeds preferences" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 +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:482 +#: src/screens/Search/Explore.tsx:537 +#: src/screens/Search/Explore.tsx:582 +#: src/screens/Search/Explore.tsx:628 +msgid "Failed to load suggested feeds" +msgstr "" + +#: src/screens/Search/Explore.tsx:391 +msgid "Failed to load suggested follows" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:420 +msgid "Failed to lock group chat" +msgstr "" + +#: src/screens/Messages/Inbox.tsx:311 +msgid "Failed to mark all requests as read" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:383 +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/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:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 +msgid "Failed to remove emoji reaction" +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:73 +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:158 +#: 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:648 +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/LabelsOnMeDialog.tsx:266 +#: 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:429 +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:97 +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:291 +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:353 +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:527 +#: src/screens/SavedFeeds.tsx:112 +#: src/screens/SavedFeeds.tsx:303 +#: src/screens/Search/SearchResults.tsx:80 +#: src/screens/StarterPack/StarterPackScreen.tsx:196 +#: src/view/screens/Feeds.tsx:504 +#: src/view/screens/Profile.tsx:239 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 +msgid "Feeds" +msgstr "" + +#: src/screens/SavedFeeds.tsx:227 +#: src/screens/SavedFeeds.tsx:398 +msgid "Feeds are custom algorithms that users build with a little coding expertise. <0>See this guide for more information." +msgstr "" + +#: src/components/FeedCard.tsx:313 +#: src/screens/SavedFeeds.tsx:92 +#: src/screens/SavedFeeds.tsx:271 +msgctxt "toast" +msgid "Feeds updated!" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:66 +msgid "Feeds we think you might like." +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/lib/moderation/useLabelBehaviorDescription.ts:69 +msgid "Filter from feeds" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:98 +msgid "Filter search by language" +msgstr "" + +#: src/screens/Search/components/SearchLanguageDropdown.tsx:71 +msgid "Filter search by language (currently: {currentLanguageLabel})" +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:166 +msgid "Filter who you receive notifications from" +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:216 +#: src/screens/Settings/Settings.tsx:219 +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +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:537 +msgid "Find posts, users, and feeds on Bluesky" +msgstr "" + +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 +msgid "Find your friends" +msgstr "" + +#: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 +#: src/screens/Settings/FindContactsSettings.tsx:133 +msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:21 +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:546 +#: 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:425 +#: src/screens/VideoFeed/index.tsx:866 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 +msgid "Follow" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 +msgid "Follow {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:167 +msgid "Follow {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:845 +msgid "Follow {handle}" +msgstr "" + +#: src/state/shell/progress-guide.tsx:232 +msgid "Follow 10 accounts" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:75 +msgid "Follow 10 people to get started" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:116 +msgid "Follow 7 accounts" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:325 +#: src/view/com/profile/ProfileMenu.tsx:336 +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:542 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 +msgid "Follow back" +msgstr "" + +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:132 +msgid "Followed all accounts!" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:418 +msgid "Followed all matches" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#: src/components/KnownFollowers.tsx:233 +msgid "Followed by <0>{0}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: serverCount - 1 +#: src/components/KnownFollowers.tsx:219 +msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#: src/components/KnownFollowers.tsx:206 +msgid "Followed by <0>{0} and <1>{1}" +msgstr "" + +#. placeholder {0}: slice[0].profile.displayName +#. placeholder {1}: slice[1].profile.displayName +#. placeholder {2}: serverCount - 2 +#: src/components/KnownFollowers.tsx:189 +msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:317 +msgid "Followers can join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:245 +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:537 +#: 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:421 +#: src/screens/VideoFeed/index.tsx:864 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 +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:498 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 +msgid "Following {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/Member.tsx:66 +msgid "Following {displayName}" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:844 +msgid "Following {handle}" +msgstr "" + +#: src/screens/Settings/ContentAndMediaSettings.tsx:78 +#: src/screens/Settings/ContentAndMediaSettings.tsx:81 +msgid "Following feed preferences" +msgstr "" + +#: src/Navigation.tsx:367 +#: src/screens/Settings/FollowingFeedPreferences.tsx:57 +msgid "Following Feed Preferences" +msgstr "" + +#: src/components/Pills.tsx:175 +#: src/screens/Profile/Header/Handle.tsx:33 +msgid "Follows you" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:128 +msgid "Font" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:148 +msgid "Font size" +msgstr "" + +#: src/lib/interests.ts:61 +msgid "Food" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:96 +msgid "For organizational accounts, use the birthdate of the person who is responsible for the account." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:186 +msgid "For security reasons, we’ll need to send a confirmation code to your email address <0>{currentEmail}." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:208 +msgid "For security reasons, you won't be able to view this again. If you lose this app password, you'll need to generate a new one." +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:130 +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 +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:30 +msgid "Forget the noise" +msgstr "" + +#: src/screens/Login/index.tsx:172 +#: src/screens/Login/index.tsx:188 +msgid "Forgot Password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:258 +msgid "Forgot password?" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:269 +msgid "Forgot?" +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:12 +msgid "Free your feed" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 +msgid "From" +msgstr "" + +#: src/screens/Hashtag.tsx:124 +msgid "From @{sanitizedAuthor}" +msgstr "" + +#: src/view/com/posts/PostFeedReason.tsx:48 +msgctxt "from-feed" +msgid "From <0/>" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:337 +msgid "Generate a starter pack" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:269 +#: src/screens/Messages/components/InviteLinkDialog.tsx:297 +msgid "Generate invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +msgid "Generate new invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:431 +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/view/shell/Drawer.tsx:431 +msgid "Get help" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 +msgid "Get notifications when people follow you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:261 +msgid "Get notifications when people like your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 +msgid "Get notifications when people mention you." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:293 +msgid "Get notifications when people quote your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:277 +msgid "Get notifications when people reply to your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileButton.tsx:94 +msgid "Get notified about new posts" +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:87 +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:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:218 +msgid "Get started" +msgstr "" + +#: src/components/MediaPreview.tsx:182 +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 +msgid "GIF" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2590 +msgid "GIF uploaded" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:259 +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:133 +#: src/components/moderation/ScreenHider.tsx:161 +#: src/components/moderation/ScreenHider.tsx:170 +#: src/screens/Login/components/AuthLayout/Header/index.tsx:75 +#: 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:1168 +#: src/screens/VideoFeed/index.tsx:1172 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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/index.tsx:303 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 +msgid "Go home" +msgstr "" + +#: src/screens/Bookmarks/components/EmptyState.tsx:44 +#: src/screens/Bookmarks/components/EmptyState.tsx:52 +msgctxt "Button to go back to the home timeline" +msgid "Go home" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:370 +#: src/view/com/profile/ProfileMenu.tsx:391 +msgid "Go live" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:100 +#: src/features/liveNow/components/GoLiveDialog.tsx:105 +#: src/features/liveNow/components/GoLiveDialog.tsx:233 +#: src/features/liveNow/components/GoLiveDialog.tsx:242 +msgid "Go Live" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:367 +#: src/view/com/profile/ProfileMenu.tsx:387 +msgid "Go live (disabled)" +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:175 +msgid "Go live for" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:250 +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:174 +msgid "Go to next" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:262 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:98 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 +#: 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:212 +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:46 +#: src/components/intents/GroupChatJoinDialog.tsx:299 +#: src/screens/Messages/JoinRequest.tsx:122 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:536 +msgid "Group chat invite link dialog" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:412 +msgctxt "toast" +msgid "Group chat locked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:376 +msgctxt "toast" +msgid "Group chat muted" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:364 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "" + +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:111 +msgid "Group chat settings" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:414 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:378 +msgctxt "toast" +msgid "Group chat unmuted" +msgstr "" + +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" + +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" + +#. placeholder {0}: convo.details.memberLimit +#: src/screens/Messages/components/InviteLinkDialog.tsx:197 +msgid "Group chats can only have a maximum of {0, plural, other {# people}}." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 +msgid "Group is locked" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 +msgid "Group name" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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:135 +#: src/screens/Settings/AccountSettings.tsx:140 +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:480 +msgid "Hashtag" +msgstr "" + +#: src/components/RichTextTag.tsx:53 +msgid "Hashtag {tag}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:111 +msgid "Hate speech" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 +msgid "Have a code? <0>Click here." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:320 +msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." +msgstr "" + +#: src/screens/Signup/index.tsx:231 +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:247 +#: src/screens/Settings/Settings.tsx:251 +#: 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:262 +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:173 +msgid "Hey there!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:213 +msgid "Hi there!" +msgstr "" + +#: src/components/VideoPostCard.tsx:178 +#: src/components/VideoPostCard.tsx:462 +msgid "Hidden" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:643 +msgid "Hidden by your moderation settings." +msgstr "" + +#: src/components/ListCard.tsx:133 +msgid "Hidden list" +msgstr "" + +#: src/components/interstitials/Trending.tsx:133 +#: src/components/interstitials/TrendingVideos.tsx:139 +#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/LabelPreference.tsx:141 +#: src/components/moderation/PostHider.tsx:140 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:820 +#: src/lib/moderation/useLabelBehaviorDescription.ts:18 +#: src/lib/moderation/useLabelBehaviorDescription.ts:23 +#: src/lib/moderation/useLabelBehaviorDescription.ts:28 +#: src/lib/moderation/useLabelBehaviorDescription.ts:33 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:131 +msgid "Hide" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:960 +msgctxt "action" +msgid "Hide" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:139 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:146 +msgid "Hide all events" +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/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:111 +msgid "Hide this card" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:127 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:134 +msgid "Hide this event" +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:115 +msgid "Hide trending topics" +msgstr "" + +#: src/components/interstitials/Trending.tsx:131 +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:129 +msgid "Hide trending topics?" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:137 +msgid "Hide trending videos?" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:951 +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:171 +#: src/components/moderation/PostHider.tsx:94 +msgid "Hides the content" +msgstr "" + +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:76 +msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." +msgstr "" + +#: src/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:415 +msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" +msgstr "" + +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: 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/screens/Login/ForgotPasswordForm.tsx:85 +#: src/screens/Login/LoginForm.tsx:182 +msgid "Hosting provider" +msgstr "" + +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:179 +msgid "Hot" +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:121 +msgid "If you are 18 years of age or older and want to try again, click the button below and use a different verification method if one is available in your region. If you have questions or concerns, <0>our support team can help." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:337 +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:125 +msgid "If you believe your birthdate is incorrect, please <0>contact our support team." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:106 +msgid "If you believe your birthdate is incorrect, you can update it by <0>clicking here." +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:118 +msgid "If you choose to hide all events, you can always re-enable them from <0>Settings → Content & Media." +msgstr "" + +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:272 +msgid "If you delete this list, you won't be able to recover it." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:274 +msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 +msgid "If you need to update your email, <0>click here." +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 +msgid "If you remove this post, you won't be able to recover it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 +msgid "If you update your email address, email 2FA will be disabled." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:60 +msgid "If you want to change your password, we will send you a code to verify that this is your account." +msgstr "" + +#: src/view/screens/Storybook/Admonitions.tsx:90 +msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:210 +msgid "If you're a developer, you can host your own server." +msgstr "" + +#: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 +msgid "If you're trying to change your handle or email, do so before you deactivate." +msgstr "" + +#: src/components/images/ImageLayoutGridItem.tsx:96 +msgid "Image" +msgstr "" + +#. placeholder {0}: index + 1 +#: src/components/images/Gallery/index.tsx:459 +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:444 +msgid "Image {0} of {imageCount}" +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:67 +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:53 +msgid "Image cache cleared, freed {0}" +msgstr "" + +#. placeholder {0}: images.length +#: src/components/images/Gallery/index.tsx:276 +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:216 +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/index.tsx:387 +msgid "In-app" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 +msgid "In-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:420 +msgid "Inbox empty" +msgstr "" + +#. Title message shown in chat requests inbox when it's empty +#: src/screens/Messages/Inbox.tsx:226 +msgid "Inbox zero!" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:162 +msgid "Incorrect username or password" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:135 +msgid "Input code sent to your email for password reset" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:161 +msgid "Input new password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:299 +msgid "Input the code which has been emailed to you" +msgstr "" + +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:138 +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:153 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:71 +msgid "Invalid 2FA confirmation code." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:134 +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:165 +#: 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:190 +msgid "Invite code" +msgstr "" + +#: src/screens/Signup/state.ts:347 +msgid "Invite code not accepted. Check that you input it correctly and try again." +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:137 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:42 +#: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 +msgid "Invite Friends" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:301 +msgid "Invite friends <0/>" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:185 +#: src/screens/Messages/components/InviteLinkDialog.tsx:321 +#: src/screens/Messages/components/InviteLinkDialog.tsx:327 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:146 +#: src/screens/Messages/ConversationSettings/index.tsx:550 +msgid "Invite link" +msgstr "" + +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:210 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:123 +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:321 +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:152 +msgid "Invited" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:34 +msgid "Invites, but personal" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:394 +msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " +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:370 +msgid "It's correct" +msgstr "" + +#. placeholder {0}: getName(items[0]) +#: src/screens/StarterPack/Wizard/index.tsx:483 +msgid "It's just <0>{0} right now! Add more people to your starter pack by searching above." +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:478 +msgid "It's just you right now! Add more people to your starter pack by searching above." +msgstr "" + +#. placeholder {0}: videoState.jobId +#: src/view/com/composer/Composer.tsx:2505 +msgid "Job ID: {0}" +msgstr "" + +#. Link to a page with job openings at Bluesky +#: src/view/com/auth/SplashScreen.web.tsx:179 +msgid "Jobs" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:260 +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:68 +#: src/components/intents/GroupChatJoinDialog.tsx:426 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:154 +#: 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:1446 +#: src/view/com/composer/Composer.tsx:1456 +#: 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/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 +msgid "KWS website" +msgstr "" + +#. placeholder {0}: sanitizeDisplayName(desc.source!) +#: src/components/moderation/ContentHider.tsx:251 +msgid "Labeled by {0}." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:249 +msgid "Labeled by the author." +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:70 +#: src/view/screens/Profile.tsx:232 +msgid "Labels" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:68 +msgid "Labels added" +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:194 +msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:77 +msgid "Labels on your account" +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:79 +msgid "Labels on your content" +msgstr "" + +#: src/Navigation.tsx:218 +msgid "Language Settings" +msgstr "" + +#: src/screens/Settings/LanguageSettings.tsx:98 +#: src/screens/Settings/Settings.tsx:239 +#: src/screens/Settings/Settings.tsx:242 +msgid "Languages" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:160 +msgid "Larger" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:377 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:201 +msgid "Last initiated {timeAgo} ago" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:375 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:199 +msgid "Last initiated just now" +msgstr "" + +#: src/screens/Hashtag.tsx:99 +#: src/screens/Search/SearchResults.tsx:64 +#: src/screens/Topic.tsx:65 +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:147 +msgid "Learn More" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceDismissibleFeedBanner.tsx:66 +msgid "Learn more about age assurance" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:167 +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 +msgid "Learn more about self hosting your PDS." +msgstr "" + +#: src/components/moderation/ContentHider.tsx:169 +#: src/components/moderation/ContentHider.tsx:235 +msgid "Learn more about the moderation applied to this content" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:150 +msgid "Learn more about these changes and how to share your thoughts with us by <0>reading our blog post." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:90 +msgid "Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/components/moderation/PostHider.tsx:116 +#: src/components/moderation/ScreenHider.tsx:134 +msgid "Learn more about this warning" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:153 +#: src/components/verification/VerifierDialog.tsx:122 +msgctxt "english-only-resource" +msgid "Learn more about verification on Bluesky" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:128 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:131 +msgid "Learn more about what is public on Bluesky." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:212 +msgid "Learn more about your Germ DM link" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceAdmonition.tsx:90 +msgid "Learn more in your <0>account settings." +msgstr "" + +#: src/components/dialogs/ServerInput.tsx:222 +#: src/components/moderation/ContentHider.tsx:259 +msgid "Learn more." +msgstr "" + +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:585 +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:384 +#: src/components/moderation/BlockDialog.tsx:391 +#: src/screens/Messages/components/ChatEnded.tsx:67 +#: src/screens/Messages/components/ChatLocked.tsx:113 +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:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 +msgid "Leave group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:584 +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:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + +#: src/screens/SignupQueued.tsx:158 +msgid "left to go." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:354 +msgid "Let me choose" +msgstr "" + +#: src/screens/Login/index.tsx:173 +#: src/screens/Login/index.tsx:189 +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:89 +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:509 +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:110 +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:497 +msgid "Like this feed" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:148 +msgid "Like this labeler" +msgstr "" + +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 +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 "" + +#: src/components/LabelingServiceCard/index.tsx:96 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 +msgid "Liked by {likeCount, plural, one {# user} other {# users}}" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:160 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 +#: src/view/screens/Profile.tsx:238 +msgid "Likes" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:202 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 +msgid "Likes of your reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 +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:251 +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:172 +#: src/view/screens/Lists.tsx:60 +#: src/view/screens/Profile.tsx:233 +#: src/view/screens/Profile.tsx:241 +#: 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:51 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:33 +msgid "Live event hidden" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:106 +msgid "Live event options" +msgstr "" + +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:53 +#: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:35 +msgid "Live event unhidden" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:110 +msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 +msgid "Live feature is in beta" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:149 +#: src/features/liveNow/components/EditLiveDialog.tsx:153 +#: src/features/liveNow/components/GoLiveDialog.tsx:131 +#: src/features/liveNow/components/GoLiveDialog.tsx:135 +msgid "Live link" +msgstr "" + +#: src/screens/Search/Explore.tsx:90 +msgid "Load more" +msgstr "" + +#: src/screens/Search/Explore.tsx:519 +#: src/screens/Search/Explore.tsx:610 +msgid "Load more suggested feeds" +msgstr "" + +#: src/view/screens/Notifications.tsx:271 +msgid "Load new notifications" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:206 +#: src/screens/Profile/Sections/Feed.tsx:117 +#: src/screens/ProfileList/FeedSection.tsx:113 +#: src/view/com/feeds/FeedPage.tsx:168 +msgid "Load new posts" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:217 +#: src/screens/Messages/components/MessageInput.tsx:234 +#: src/screens/Messages/components/MessageInput.web.tsx:202 +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:564 +msgid "Lock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 +msgid "Lock group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 +msgid "Lock group chat?" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:562 +msgid "Lock this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:564 +msgid "Locked" +msgstr "" + +#: src/Navigation.tsx:326 +msgid "Log" +msgstr "" + +#: src/components/AccountList.tsx:189 +msgid "Logged out" +msgstr "" + +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:107 +msgid "Logged-out visibility" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:142 +msgid "Logo by @sawaratsuki.bsky.social" +msgstr "" + +#: src/view/shell/desktop/RightNav.tsx:139 +#: src/view/shell/Drawer.tsx:768 +msgid "Logo by <0>@sawaratsuki.bsky.social" +msgstr "" + +#. placeholder {0}: isCashtag ? tag : `#${tag}` +#: src/components/RichTextTag.tsx:55 +msgid "Long press to open tag menu for {0}" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:124 +msgid "Looks like XXXXX-XXXXX" +msgstr "" + +#: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:44 +msgid "Looks like you haven't saved any feeds! Use our recommendations or browse more below." +msgstr "" + +#: src/screens/Home/NoFeedsPinned.tsx:84 +msgid "Looks like you unpinned all your feeds. But don't worry, you can add some below 😄" +msgstr "" + +#: src/screens/Feeds/NoFollowingFeed.tsx:36 +msgid "Looks like you're missing a following feed. <0>Click here to add one." +msgstr "" + +#. Accessibility label for the icon-only pill that filters the GIF picker to GIFs about love/affection. +#: src/features/gifPicker/components/GifCategoryPills.tsx:55 +msgid "Love GIFs" +msgstr "" + +#: src/components/dialogs/EmailDialog/index.tsx:39 +msgid "Make adjustments to email settings for your account" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +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/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 +msgid "Mark all 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:306 +msgid "Marked all as read" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +msgid "Maybe later" +msgstr "" + +#: src/view/screens/Profile.tsx:236 +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:302 +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:98 +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:181 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 +#: src/view/screens/Notifications.tsx:99 +msgid "Mentions" +msgstr "" + +#: src/components/Menu/index.tsx:113 +msgid "Menu" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:178 +msgid "Message" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:218 +#: src/screens/Messages/components/MessageInput.tsx:235 +#: src/screens/Messages/components/MessageInput.web.tsx:203 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:200 +msgctxt "action" +msgid "Message" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/components/dms/MessageProfileButton.tsx:99 +msgid "Message {0}" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:196 +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:527 +msgid "Message failed to send." +msgstr "" + +#. placeholder {0}: sender?.handle ?? 'unknown' +#. placeholder {1}: message.text +#: src/components/dms/MessageContextMenu.tsx:142 +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:214 +#: src/screens/Messages/components/MessageInput.tsx:176 +msgid "Message input field" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:86 +#: src/screens/Messages/components/MessageInput.web.tsx:55 +msgid "Message is too long" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:89 +msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:141 +msgid "Message options" +msgstr "" + +#: src/Navigation.tsx:761 +msgid "Messages" +msgstr "" + +#: src/components/dms/MessageItem.tsx:626 +msgid "Messages from this person are hidden while they are blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:621 +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:177 +#: src/screens/Moderation/index.tsx:100 +msgid "Moderation" +msgstr "" + +#: src/screens/Settings/Settings.tsx:189 +#: src/screens/Settings/Settings.tsx:192 +msgid "Moderation and content filters" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:142 +msgid "Moderation details" +msgstr "" + +#. placeholder {0}: sanitizeHandle(creator.handle, '@') +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/components/ListCard.tsx:152 +#: src/view/com/modals/UserAddRemoveLists.tsx:223 +msgid "Moderation list by {0}" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:158 +msgid "Moderation list by <0/>" +msgstr "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:221 +#: 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:182 +#: src/view/screens/ModerationModlists.tsx:60 +msgid "Moderation Lists" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:257 +msgid "moderation settings" +msgstr "" + +#: src/Navigation.tsx:311 +msgid "Moderation states" +msgstr "" + +#: src/screens/Moderation/index.tsx:253 +msgid "Moderation tools" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:56 +#: 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:259 +#: src/view/com/profile/ProfileMenu.tsx:266 +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:526 +msgid "Mute" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:171 +#: 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:448 +#: src/view/com/profile/ProfileMenu.tsx:455 +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:524 +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:526 +msgid "Muted" +msgstr "" + +#: src/screens/Moderation/index.tsx:314 +msgid "Muted accounts" +msgstr "" + +#: src/Navigation.tsx:187 +#: 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:150 +#: src/screens/Login/ForgotPasswordForm.tsx:175 +#: src/screens/Login/LoginForm.tsx:351 +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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 +#: src/view/com/profile/ProfileMenu.tsx:403 +msgid "New" +msgstr "" + +#: src/view/screens/Lists.tsx:71 +#: src/view/screens/ModerationModlists.tsx:72 +msgctxt "action" +msgid "New" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:563 +msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:546 +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:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 +msgid "New chat" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:58 +msgid "New chat with {0}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:62 +msgid "New chat with {0} and {1}" +msgstr "" + +#. placeholder {0}: createSanitizedDisplayName(members[0]) +#. placeholder {1}: createSanitizedDisplayName(members[1]) +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:70 +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:195 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 +msgid "New followers" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 +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 +msgctxt "action" +msgid "New group chat" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:300 +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/Login/SetNewPasswordForm.tsx:143 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:204 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:208 +msgid "New password" +msgstr "" + +#: src/screens/Profile/ProfileFeed/index.tsx:217 +#: 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 +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:552 +msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:537 +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/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:226 +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/screens/Login/ForgotPasswordForm.tsx:149 +#: src/screens/Login/ForgotPasswordForm.tsx:156 +#: src/screens/Login/SetNewPasswordForm.tsx:186 +#: src/screens/Login/SetNewPasswordForm.tsx:192 +#: 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:31 +msgid "Night" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 +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/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:141 +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:202 +msgid "No followers yet" +msgstr "" + +#. Empty-state message shown in the GIF picker when a search returns zero results. Placeholder is the user’s search query. +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:25 +msgid "No GIFs found for \"{query}\"." +msgstr "" + +#. Empty-state message shown when the trending/featured GIF feed returns no results (rare, usually a transient provider issue). +#: src/features/gifPicker/components/GifPickerPlaceholder.tsx:36 +msgid "No GIFs to show right now. Try again in a moment." +msgstr "" + +#: src/features/liveNow/components/LinkPreview.tsx:64 +msgid "No image" +msgstr "" + +#: src/components/LikedByList.tsx:84 +#: src/view/com/post-thread/PostLikedBy.tsx:84 +#: src/view/screens/Profile.tsx:525 +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:521 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 +msgid "No longer following {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:471 +msgid "No media yet" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:310 +msgid "No messages yet" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:14 +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:91 +msgctxt "allow group chat invites from" +msgid "No one" +msgstr "" + +#: src/screens/Messages/Settings.tsx:73 +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:74 +msgid "No one can send messages" +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 +msgid "No posts yet" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:107 +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:456 +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:376 +#: src/components/ProgressGuide/FollowDialog.tsx:221 +msgid "No results" +msgstr "" + +#. placeholder {0}: interestsDisplayNames[selectedInterest] +#: src/screens/Search/Explore.tsx:828 +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:178 +msgid "No results found for “<0>{query}”." +msgstr "" + +#: src/screens/Search/Explore.tsx:832 +msgid "No results." +msgstr "" + +#: src/view/screens/Profile.tsx:557 +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:498 +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:109 +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/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:167 +#: src/view/screens/Profile.tsx:132 +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:545 +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:135 +msgid "Note: This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks/components/EmptyState.tsx:36 +#: src/screens/Bookmarks/index.tsx:299 +msgid "Nothing saved yet" +msgstr "" + +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 +#: src/view/screens/Notifications.tsx:134 +msgid "Notification settings" +msgstr "" + +#: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 +msgid "Notification sounds" +msgstr "" + +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 +#: src/screens/Notifications/ActivityList.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:104 +#: src/screens/Settings/Settings.tsx:197 +#: src/screens/Settings/Settings.tsx:200 +#: src/view/screens/Notifications.tsx:128 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: 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:164 +#: src/screens/Settings/NotificationSettings/index.tsx:394 +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:226 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:49 +#: 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:733 +#: src/components/dms/MessageItem.tsx:633 +#: src/screens/Login/PasswordUpdatedForm.tsx:37 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 +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:164 +msgid "On" +msgstr "" + +#: src/components/StarterPack/QrCode.tsx:86 +msgid "on<0><1/><2><3/>" +msgstr "" + +#: src/screens/Settings/Settings.tsx:396 +msgid "Onboarding reset" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:117 +msgid "One of the selected recipients does not allow group chats." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:100 +msgid "One of the selected recipients has blocked you and cannot be messaged." +msgstr "" + +#: src/view/com/composer/Composer.tsx:864 +msgid "One or more GIFs is missing alt text." +msgstr "" + +#: src/view/com/composer/Composer.tsx:861 +msgid "One or more images is missing alt text." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:417 +msgid "One or more of your selected files are not supported." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:659 +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:871 +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:234 +msgid "Only {0} of {1} {2, plural, one {image} other {images}} added; limit is {MAX_GALLERY_IMAGES}" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:195 +msgid "Only admins can accept join requests." +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:227 +msgid "Only admins can ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:132 +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:215 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:270 +msgid "Only people the chat owner follows can join" +msgstr "" + +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 +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:363 +#: src/components/StarterPack/ProfileStarterPacks.tsx:372 +#: src/screens/Settings/AppPasswords.tsx:59 +#: src/screens/Settings/components/ChangeHandleDialog.tsx:108 +#: src/view/screens/Profile.tsx:132 +msgid "Oops!" +msgstr "" + +#: src/screens/Onboarding/StepProfile/index.tsx:311 +msgid "Open avatar creator" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:202 +msgid "Open camera" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:415 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +msgid "Open chat member options for {displayName}" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 +msgid "Open conversation options" +msgstr "" + +#: src/view/com/composer/drafts/DraftItem.tsx:69 +msgid "Open draft" +msgstr "" + +#: src/components/Layout/Header/index.tsx:167 +msgid "Open drawer menu" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:176 +#: src/screens/Messages/components/MessageInput.web.tsx:148 +#: src/view/com/composer/Composer.tsx:2145 +msgid "Open emoji picker" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 +msgid "Open feed info screen" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:293 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:298 +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:408 +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:141 +msgid "Open link to {niceUrl}" +msgstr "" + +#: src/components/dms/ActionsWrapper.tsx:43 +msgid "Open message options" +msgstr "" + +#: src/screens/Settings/Settings.tsx:461 +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:120 +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:454 +#: src/screens/Settings/Settings.tsx:468 +msgid "Open storybook page" +msgstr "" + +#: src/screens/Settings/Settings.tsx:447 +msgid "Open system log" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:409 +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/view/com/composer/threadgate/ThreadgateBtn.tsx:154 +msgid "Opens a dialog to choose who can interact with this post" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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:70 +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:136 +msgid "Opens change handle dialog" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:64 +msgid "Opens composer" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:203 +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:511 +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:302 +#: src/view/com/auth/SplashScreen.tsx:102 +#: src/view/com/auth/SplashScreen.web.tsx:110 +msgid "Opens flow to create a new Bluesky account" +msgstr "" + +#: src/screens/Messages/JoinRequest.tsx:288 +#: src/view/com/auth/SplashScreen.tsx:120 +#: src/view/com/auth/SplashScreen.web.tsx:124 +msgid "Opens flow to sign in to your existing Bluesky account" +msgstr "" + +#: src/components/images/Gallery/index.tsx:460 +msgid "Opens full image" +msgstr "" + +#: src/screens/Settings/Settings.tsx:248 +msgid "Opens helpdesk in browser" +msgstr "" + +#: src/view/com/feeds/ComposerPrompt.tsx:225 +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/screens/Login/LoginForm.tsx:259 +msgid "Opens password reset form" +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/notifications/NotificationFeedItem.tsx:1131 +#: 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:228 +#: src/screens/Settings/AccountSettings.tsx:126 +#: src/screens/Settings/AccountSettings.tsx:130 +#: src/screens/Settings/components/DeleteAccountDialog.tsx:284 +#: src/screens/Signup/StepInfo/index.tsx:255 +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:202 +msgid "Password updated" +msgstr "" + +#: src/screens/Login/PasswordUpdatedForm.tsx:24 +msgid "Password updated!" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:155 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:395 +msgid "Pause" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:36 +msgid "Pause GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:346 +msgid "Pause video" +msgstr "" + +#: src/screens/ProfileList/index.tsx:167 +#: src/screens/Search/SearchResults.tsx:74 +#: src/screens/StarterPack/StarterPackScreen.tsx:195 +msgid "People" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:156 +msgid "People {ownerName} follows can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:161 +msgid "People {ownerName} follows can request to join" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:238 +msgid "People followed by @{0}" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:231 +msgid "People following @{0}" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 +msgid "People I follow" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:155 +msgid "People I follow can join instantly" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:160 +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:37 +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:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: 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:337 +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:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 +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:155 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:396 +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:36 +msgid "Play GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.tsx:130 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VideoControls.tsx:347 +msgid "Play video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:61 +msgid "Play Video" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:37 +msgid "Plays or pauses the GIF" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:156 +msgid "Plays or pauses the video" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalGif.tsx:109 +msgid "Plays the GIF" +msgstr "" + +#: src/components/Post/Embed/ExternalEmbed/ExternalPlayer.tsx:62 +msgid "Plays the video" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:111 +msgid "Please add any content warning labels that are applicable for the media you are posting." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:189 +msgid "Please check your email inbox for further instructions. It may take a minute or two to arrive." +msgstr "" + +#: src/screens/Signup/state.ts:294 +msgid "Please choose your handle." +msgstr "" + +#: src/screens/Signup/state.ts:286 +#: src/screens/Signup/StepInfo/index.tsx:150 +msgid "Please choose your password." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:286 +msgid "Please click on the link in the email we just sent you to verify your new email address. This is an important step to allow you to continue enjoying all the features of Bluesky." +msgstr "" + +#: src/screens/Signup/state.ts:309 +msgid "Please complete the verification captcha." +msgstr "" + +#: src/view/com/composer/state/video.ts:439 +msgid "Please confirm your email address to upload videos." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:102 +#: src/screens/Signup/StepInfo/index.tsx:140 +msgid "Please double-check that you have entered your email address correctly." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:60 +msgid "Please enter a password." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:120 +msgid "Please enter a password. It must be at least 8 characters long." +msgstr "" + +#: src/screens/Settings/components/AddAppPasswordDialog.tsx:114 +msgid "Please enter a unique name for this app password or use our randomly generated one." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:130 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:134 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:146 +msgid "Please enter a valid code." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 +msgid "Please enter a valid email address." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:89 +msgid "Please enter a valid word, tag, or phrase to mute" +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:145 +msgid "Please enter a valid, non-temporary email address. You may need to access this email in the future." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 +msgid "Please enter the code we sent to <0>{0} below." +msgstr "" + +#: src/screens/Settings/components/ChangePasswordDialog.tsx:66 +msgid "Please enter the code you received and the new password you would like to use." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +msgid "Please enter the security code we sent to your previous email address." +msgstr "" + +#: src/screens/Signup/state.ts:270 +#: src/screens/Signup/StepInfo/index.tsx:123 +msgid "Please enter your email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:116 +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:96 +msgid "Please enter your password" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:90 +msgid "Please enter your username" +msgstr "" + +#. placeholder {0}: labeler ? sanitizeHandle(labeler.creator.handle, '@') : label.src +#: src/components/moderation/LabelsOnMeDialog.tsx:309 +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:303 +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:220 +msgid "Politics" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:152 +msgid "Porn" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1793 +msgctxt "action" +msgid "Post" +msgstr "" + +#: src/screens/PostThread/index.tsx:553 +msgctxt "description" +msgid "Post" +msgstr "" + +#: src/view/screens/Profile.tsx:475 +#: src/view/screens/Profile.tsx:476 +msgid "Post a photo" +msgstr "" + +#: src/view/screens/Profile.tsx:502 +#: src/view/screens/Profile.tsx:503 +msgid "Post a video" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1791 +msgctxt "action" +msgid "Post All" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1455 +msgid "Post anyway" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:22 +msgid "Post blocked" +msgstr "" + +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 +#: src/Navigation.tsx:271 +#: src/Navigation.tsx:278 +#: src/Navigation.tsx:285 +msgid "Post by @{0}" +msgstr "" + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 +msgctxt "toast" +msgid "Post deleted" +msgstr "" + +#: src/lib/api/index.ts:190 +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:117 +#: src/screens/PostThread/components/ThreadItemTreePost.tsx:110 +#: src/screens/VideoFeed/index.tsx:547 +msgid "Post has been deleted" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:111 +#: src/lib/moderation/useModerationCauseDescription.ts:107 +msgid "Post Hidden by Muted Word" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:114 +#: 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:198 +#: 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:383 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +msgid "Post link" +msgstr "" + +#: src/screens/PostThread/components/ThreadError.tsx:33 +#: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 +msgid "Post not found" +msgstr "" + +#: src/state/queries/pinned-post.ts:59 +msgctxt "toast" +msgid "Post pinned" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:67 +msgid "Post saved" +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/StarterPack/StarterPackScreen.tsx:197 +#: src/view/screens/Profile.tsx:234 +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/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:349 +#: 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:181 +#: src/screens/Settings/Settings.tsx:184 +msgid "Privacy and security" +msgstr "" + +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 +#: src/screens/Settings/ActivityPrivacySettings.tsx:41 +#: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 +msgid "Privacy and Security" +msgstr "" + +#: 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:336 +#: src/screens/Settings/AboutSettings.tsx:95 +#: src/screens/Settings/AboutSettings.tsx:98 +#: 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:2579 +msgid "Processing GIF..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2581 +msgid "Processing video..." +msgstr "" + +#: src/lib/api/index.ts:63 +msgid "Processing..." +msgstr "" + +#: src/view/screens/DebugMod.tsx:956 +msgid "profile" +msgstr "" + +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: 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:40 +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:165 +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:1777 +msgid "Publish post" +msgstr "" + +#. Accessibility label for button to publish multiple posts in a thread +#: src/view/com/composer/Composer.tsx:1772 +msgid "Publish posts" +msgstr "" + +#. Accessibility label for button to publish multiple replies in a thread +#: src/view/com/composer/Composer.tsx:1761 +msgid "Publish replies" +msgstr "" + +#. Accessibility label for button to publish a single reply +#: src/view/com/composer/Composer.tsx:1766 +msgid "Publish reply" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:389 +msgid "Push" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 +msgid "Push notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:140 +msgid "QR code copied to your clipboard!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:118 +msgid "QR code has been downloaded!" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:97 +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:188 +#: src/screens/Post/PostQuotes.tsx:31 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 +msgid "Quotes" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 +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:413 +msgid "Re-enable invite link" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:420 +msgid "Re-enable link" +msgstr "" + +#: src/components/dms/EmojiReactionPicker.tsx:80 +msgid "React with {emoji}" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 +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:189 +msgctxt "english-only-resource" +msgid "read about how to use 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:984 +msgid "Read less" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:984 +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:172 +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:149 +msgid "Real conversations." +msgstr "" + +#: src/components/WelcomeModal.tsx:147 +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:140 +msgid "Receive in-app notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 +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:49 +msgid "Recent searches" +msgstr "" + +#: src/components/dialogs/LanguageSelectDialog.tsx:249 +msgid "Recently used" +msgstr "" + +#: src/screens/Search/modules/ExploreRecommendations.tsx:55 +msgid "Recommended" +msgstr "" + +#: src/screens/Messages/components/MessageListError.tsx:19 +msgid "Reconnect" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +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:483 +msgctxt "button" +msgid "Reject" +msgstr "" + +#: src/screens/Messages/components/RequestButtons.tsx:125 +msgid "Reject chat request" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:477 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 +msgid "Reload conversations" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:181 +#: 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/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 +#: src/screens/Moderation/index.tsx:477 +#: src/screens/Settings/Settings.tsx:673 +#: src/view/com/modals/UserAddRemoveLists.tsx:236 +#: 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:231 +msgid "Remove {displayName} from this group chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:105 +msgid "Remove {historyItem}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:654 +#: src/screens/Settings/Settings.tsx:657 +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 "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:235 +msgid "Remove from chat" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 +#: 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:667 +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:143 +#: src/screens/Bookmarks/index.tsx:259 +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:228 +#: src/features/liveNow/components/EditLiveDialog.tsx:235 +msgid "Remove live status" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:613 +msgid "Remove mute word from your list" +msgstr "" + +#: src/screens/Search/components/SearchHistory.tsx:170 +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:167 +msgid "Remove user from list" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:48 +#: src/components/verification/VerificationsDialog.tsx:250 +#: src/view/com/profile/ProfileMenu.tsx:421 +#: src/view/com/profile/ProfileMenu.tsx:424 +msgid "Remove verification" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:46 +msgid "Remove your verification for this account?" +msgstr "" + +#: src/components/Post/Embed/index.tsx:244 +msgid "Removed by author" +msgstr "" + +#: src/components/Post/Embed/index.tsx:242 +msgid "Removed by you" +msgstr "" + +#: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:124 +#: src/view/com/modals/UserAddRemoveLists.tsx:171 +msgid "Removed from list" +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:98 +msgid "Removed from saved feeds" +msgstr "" + +#: src/components/PostControls/BookmarkButton.tsx:107 +#: src/screens/Bookmarks/index.tsx:217 +msgid "Removed from saved posts" +msgstr "" + +#: src/components/dialogs/StarterPackDialog.tsx:287 +msgid "Removed from starter pack" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 +#: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 +#: src/view/com/posts/FeedShutdownMsg.tsx:45 +msgid "Removed from your feeds" +msgstr "" + +#: src/screens/Moderation/index.tsx:187 +msgid "Removed unavailable services" +msgstr "" + +#: src/components/verification/VerificationRemovePrompt.tsx:32 +msgid "Removed verification" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:541 +msgid "Renew" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:547 +msgid "Renew duration" +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:531 +msgid "Renew mute word" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:134 +#: src/view/com/posts/FeedShutdownMsg.tsx:138 +msgid "Replace with Discover" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:39 +msgctxt "description" +msgid "Replied to <0><1/>" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:28 +msgctxt "description" +msgid "Replied to a blocked post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:30 +msgctxt "description" +msgid "Replied to a post" +msgstr "" + +#: src/components/Post/PostRepliedTo.tsx:36 +msgctxt "description" +msgid "Replied to you" +msgstr "" + +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 +#: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 +#: src/lib/hooks/useNotificationHandler.ts:174 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 +#: src/view/screens/Profile.tsx:235 +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/view/com/composer/Composer.tsx:1789 +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:120 +#: src/lib/moderation/useModerationCauseDescription.ts:126 +msgid "Reply Hidden by Thread Author" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:119 +#: 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:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:577 +msgid "Report" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:488 +#: src/view/com/profile/ProfileMenu.tsx:491 +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:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 +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:186 +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:576 +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:167 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 +msgid "Reposts" +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 +msgid "Reposts of this post" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:209 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 +msgid "Reposts of your reposts" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:425 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:177 +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:209 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:259 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + +#. Incoming message requests +#: src/screens/Messages/components/InboxRequests.tsx:26 +msgid "Requests" +msgstr "" + +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:58 +#: src/screens/Messages/JoinRequests.tsx:419 +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:204 +msgid "Required for this provider" +msgstr "" + +#: src/components/LabelingServiceCard/index.tsx:80 +msgid "Required in your region" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:274 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 +msgid "Resend" +msgstr "" + +#: src/components/contacts/screens/VerifyNumber.tsx:365 +#: src/components/contacts/screens/VerifyNumber.tsx:382 +msgid "Resend code" +msgstr "" + +#. placeholder {0}: String( clamp(Math.round(timeUntilCanResend / 1000), 0, 30), ).padStart(2, '0') +#: src/components/contacts/screens/VerifyNumber.tsx:372 +msgid "Resend code in <0>00:{0}" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:174 +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:177 +msgid "Resend email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:124 +msgid "Resend Email" +msgstr "" + +#: src/components/intents/VerifyEmailIntentDialog.tsx:117 +msgid "Resend Verification Email" +msgstr "" + +#: src/screens/Settings/Settings.tsx:490 +#: src/screens/Settings/Settings.tsx:492 +msgid "Reset activity subscription nudge" +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:118 +msgid "Reset code" +msgstr "" + +#: src/screens/Settings/Settings.tsx:475 +#: src/screens/Settings/Settings.tsx:477 +msgid "Reset onboarding state" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:82 +msgid "Reset password" +msgstr "" + +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 +msgid "Resync contacts" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:330 +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:377 +#: src/screens/Login/LoginForm.tsx:329 +#: src/screens/Login/LoginForm.tsx:335 +#: src/screens/Messages/ChatList.tsx:412 +#: src/screens/Messages/components/MessageListError.tsx:24 +#: src/screens/Messages/Inbox.tsx:218 +#: src/screens/Messages/JoinRequests.tsx:355 +#: 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:1169 +#: 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 "" + +#. 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:207 +#: src/features/liveNow/components/EditLiveDialog.tsx:204 +#: src/features/liveNow/components/EditLiveDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 +#: 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:1436 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save changes" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1408 +#: src/view/com/composer/drafts/DraftsButton.tsx:93 +msgid "Save changes?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1436 +#: src/view/com/composer/drafts/DraftsButton.tsx:125 +msgid "Save draft" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1410 +#: src/view/com/composer/drafts/DraftsButton.tsx:95 +msgid "Save draft?" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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:199 +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:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 +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:561 +#: src/screens/Bookmarks/index.tsx:59 +msgid "Saved Posts" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 +#: src/screens/ProfileList/components/Header.tsx:88 +msgid "Saved to your feeds" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 +msgid "Say hello!" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 +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:316 +msgid "Scan QR code" +msgstr "" + +#: src/lib/interests.ts:71 +msgid "Science" +msgstr "" + +#: src/components/InterestTabs.tsx:255 +msgid "Scroll left" +msgstr "" + +#: src/components/InterestTabs.tsx:289 +msgid "Scroll right" +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/Shell.tsx:362 +#: src/screens/Search/Shell.tsx:525 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 +msgid "Search" +msgstr "" + +#. placeholder {0}: profile.handle +#. placeholder {0}: route.params.name +#: src/Navigation.tsx:257 +#: 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:54 +msgid "Search for \"{searchText}\"" +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:378 +msgid "Search for more accounts" +msgstr "" + +#: src/screens/Search/Explore.tsx:456 +msgid "Search for more feeds" +msgstr "" + +#: src/components/dms/components/UserSearchInput.tsx:43 +msgid "Search for people" +msgstr "" + +#: src/screens/Search/Shell.tsx:388 +msgid "Search for posts, users, or feeds" +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:224 +#: src/screens/Search/SearchResults.tsx:313 +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:306 +#: src/view/com/profile/ProfileMenu.tsx:309 +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/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:177 +msgid "See jobs at Bluesky" +msgstr "" + +#: src/components/FeedInterstitials.tsx:491 +#: src/components/FeedInterstitials.tsx:549 +msgid "See more" +msgstr "" + +#: src/components/FeedInterstitials.tsx:472 +msgid "See more suggested profiles" +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:190 +#: src/view/com/profile/ProfileFollows.tsx:191 +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:337 +msgid "Select \"{interestsDisplayName}\" category" +msgstr "" + +#. Accessibility label for a username suggestion in the account creation flow +#. placeholder {0}: suggestion.handle +#: src/screens/Signup/StepHandle/HandleSuggestions.tsx:43 +msgid "Select {0}" +msgstr "" + +#: src/view/com/composer/select-language/PostLanguageSelect.tsx:110 +msgid "Select {langName}" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:68 +msgid "Select a color" +msgstr "" + +#: src/components/moderation/ReportDialog/index.tsx:380 +msgid "Select a reason" +msgstr "" + +#: src/screens/Login/ChooseAccountForm.tsx:81 +msgid "Select account" +msgstr "" + +#: src/components/AppLanguageDropdown.tsx:61 +msgid "Select an app language" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCircle.tsx:66 +msgid "Select an avatar" +msgstr "" + +#: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:66 +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:60 +#: src/view/com/composer/videos/SubtitleFilePicker.tsx:67 +msgid "Select caption file (.vtt)" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:501 +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:180 +msgid "Select duration" +msgstr "" + +#: src/screens/Login/index.tsx:162 +msgid "Select from an existing account" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:553 +msgid "Select from your lists" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:555 +msgid "Select from your lists <0>{numberOfListsSelected, plural, other {(# selected)}}" +msgstr "" + +#. Accessibility label for the button in the post composer that opens the GIF picker dialog. +#: src/view/com/composer/photos/SelectGifBtn.tsx:38 +msgid "Select GIF" +msgstr "" + +#. Accessibility label for an individual GIF tile in the picker grid. The placeholder is the GIF’s title from the provider. +#. placeholder {0}: gif.title +#: src/features/gifPicker/components/GifPickerItem.tsx:31 +msgid "Select GIF \"{0}\"" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:725 +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:69 +#: src/components/LanguageSelect.tsx:37 +#: src/components/LanguageSelect.tsx:38 +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:84 +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:297 +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:118 +msgid "Select your preferred notification channels" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:420 +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:118 +#: src/screens/Settings/AboutSettings.tsx:121 +msgid "Send error report" +msgstr "" + +#: src/view/shell/Drawer.tsx:420 +msgid "Send feedback" +msgstr "" + +#: src/screens/Messages/components/MessageComposer.tsx:288 +#: src/screens/Messages/components/MessageInput.web.tsx:225 +msgid "Send message" +msgstr "" + +#: src/components/PostControls/ShareMenu/RecentChats.tsx:146 +msgid "Send post to {name}" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:72 +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: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 "" + +#. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) +#: src/components/dms/MessageContextMenu.tsx:150 +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 +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:108 +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:223 +msgid "Set your birthdate below and we'll get you back to posting and exploring in no time!" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:109 +msgid "Sets email for password reset" +msgstr "" + +#: src/Navigation.tsx:213 +#: src/screens/Settings/Settings.tsx:98 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 +msgid "Settings" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:199 +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:133 +msgid "Settings for like notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:166 +msgid "Settings for mention notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:144 +msgid "Settings for new follower notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:238 +msgid "Settings for notifications for everything else" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:212 +msgid "Settings for notifications for likes of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:225 +msgid "Settings for notifications for reposts of your reposts" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:177 +msgid "Settings for quote notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:155 +msgid "Settings for reply notifications" +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:188 +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:433 +#: src/components/MediaPreview.tsx:237 +#: src/components/Post/Embed/ImageContextMenu.tsx:74 +#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/screens/Hashtag.tsx:130 +#: src/screens/Messages/components/InviteLinkDialog.tsx:399 +#: src/screens/Messages/components/InviteLinkDialog.tsx:406 +#: src/screens/StarterPack/StarterPackScreen.tsx:447 +#: src/screens/Topic.tsx:90 +msgid "Share" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:548 +msgid "Share anyway" +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:176 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:179 +msgid "Share author DID" +msgstr "" + +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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:167 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 +msgid "Share post at:// URI" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:129 +#: src/components/StarterPack/ShareDialog.tsx:139 +msgid "Share QR code" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 +msgid "Share this feed" +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:132 +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:135 +#: 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:285 +#: src/view/com/profile/ProfileMenu.tsx:297 +msgid "Share via..." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:232 +msgid "Share your contacts to find friends" +msgstr "" + +#: src/Navigation.tsx:321 +msgid "Shared Preferences Tester" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:220 +#: src/components/moderation/LabelPreference.tsx:143 +#: src/components/moderation/PostHider.tsx:140 +msgid "Show" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:86 +msgid "Show alt text" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:179 +#: src/components/moderation/ScreenHider.tsx:182 +#: 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:646 +#: src/screens/VideoFeed/index.tsx:652 +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/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:28 +#: src/features/liveEvents/components/LiveEventFeedsSettingsToggle.tsx:38 +msgid "Show live events in your Discover Feed" +msgstr "" + +#: src/components/Post/ShowMoreTextButton.tsx:52 +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:604 +msgid "Shows information about when this post was created" +msgstr "" + +#: src/screens/Settings/Settings.tsx:123 +msgid "Shows other accounts you can switch to" +msgstr "" + +#: src/components/moderation/ContentHider.tsx:172 +#: 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/screens/Hashtag.tsx:228 +#: src/screens/Login/index.tsx:140 +#: src/screens/Login/index.tsx:161 +#: src/screens/Login/LoginForm.tsx:179 +#: src/screens/Login/LoginForm.tsx:350 +#: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:287 +#: src/screens/Messages/JoinRequest.tsx:293 +#: src/screens/Search/SearchResults.tsx:316 +#: src/view/com/auth/SplashScreen.tsx:118 +#: src/view/com/auth/SplashScreen.tsx:124 +#: src/view/com/auth/SplashScreen.web.tsx:122 +#: src/view/com/auth/SplashScreen.web.tsx:130 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 +#: 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:86 +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:213 +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:212 +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:265 +#: src/screens/Settings/Settings.tsx:267 +#: src/screens/Settings/Settings.tsx:299 +#: 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:296 +#: src/view/shell/desktop/LeftNav.tsx:224 +msgid "Sign out?" +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:98 +#: 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:56 +msgid "Signed in as @{0}" +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:1453 +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:443 +msgid "slide" +msgstr "" + +#: src/screens/Settings/AppearanceSettings.tsx:152 +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:151 +msgid "Social media you control." +msgstr "" + +#: src/lib/interests.ts:58 +msgid "Software Dev" +msgstr "" + +#: src/screens/Moderation/index.tsx:466 +msgid "Some moderation services in your list are no longer available." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:122 +msgid "Some of your verifications are invalid." +msgstr "" + +#: src/components/FeedInterstitials.tsx:628 +msgid "Some other feeds you might like" +msgstr "" + +#: src/components/WhoCanReply.tsx:88 +msgid "Some people can reply" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:86 +msgid "Someone joined" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:87 +msgid "Someone joined the group" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:99 +msgid "Someone left" +msgstr "" + +#: src/components/dms/getSystemMessageInfo.ts:100 +msgid "Someone left the group" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:266 +msgid "Someone reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:47 +msgid "Someone reacted {0} to {target}" +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/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:132 +#: src/screens/Messages/JoinRequests.tsx:87 +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:184 +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:532 +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.native.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:183 +#: src/components/moderation/ModerationDetailsDialog.tsx:202 +msgid "Source: <0>{sourceName}" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:39 +msgid "Spam" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:36 +msgid "Spam or other inauthentic behavior or deception" +msgstr "" + +#: src/lib/interests.ts:72 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:218 +msgid "Sports" +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:191 +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:726 +msgid "Start chat" +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:428 +#: src/components/dms/InitiateChatFlow.tsx:874 +msgid "Start chat with {displayName}" +msgstr "" + +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 +#: 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/Explore.tsx:665 +#: src/view/screens/Profile.tsx:240 +msgid "Starter Packs" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 +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:555 +msgid "Starter Packs let you share your favorite feeds and people with your friends." +msgstr "" + +#: src/screens/Settings/AboutSettings.tsx:103 +#: src/screens/Settings/AboutSettings.tsx:106 +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:180 +msgid "Step {0} of {1}" +msgstr "" + +#: src/screens/Settings/Settings.tsx:401 +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:306 +#: src/screens/Settings/Settings.tsx:456 +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/LabelsOnMeDialog.tsx:343 +#: src/components/moderation/LabelsOnMeDialog.tsx:344 +#: 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 +msgid "Submit" +msgstr "" + +#: src/screens/Takendown.tsx:76 +msgid "Submit appeal" +msgstr "" + +#: src/screens/Takendown.tsx:80 +msgid "Submit Appeal" +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:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 +msgid "Subscribe on {0}" +msgstr "" + +#. placeholder {0}: highlightedPublisher.name +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 +msgid "Subscribe to {publicationTitle} on {0}" +msgstr "" + +#. placeholder {0}: labelerInfo.creator.handle +#: src/screens/Profile/Sections/Labels.tsx:231 +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:347 +msgid "Subscribe to Labeler" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:313 +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:108 +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:350 +msgid "Suggested" +msgstr "" + +#: src/screens/Search/Explore.tsx:375 +msgid "Suggested accounts" +msgstr "" + +#. Accounts suggested to the user for them to follow +#: src/components/FeedInterstitials.tsx:469 +#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 +msgid "Suggested for you" +msgstr "" + +#: src/view/com/composer/labels/LabelsBtn.tsx:140 +#: src/view/com/composer/labels/LabelsBtn.tsx:143 +msgid "Suggestive" +msgstr "" + +#: src/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:331 +#: 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 +msgid "Suspended accounts cannot participate in a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:60 +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:122 +#: src/screens/Settings/Settings.tsx:134 +#: src/screens/Settings/Settings.tsx:615 +#: 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:85 +#: src/screens/Settings/AppearanceSettings.tsx:135 +msgid "System" +msgstr "" + +#: src/screens/Log.tsx:49 +#: src/screens/Settings/AboutSettings.tsx:110 +#: src/screens/Settings/AboutSettings.tsx:113 +#: src/screens/Settings/Settings.tsx:449 +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:572 +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/screens/Signup/StepInfo/index.tsx:323 +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:163 +msgid "Tap to dismiss" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:431 +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:196 +msgid "Tap to remove" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/ReactionsDialog.tsx:212 +msgid "Tap to remove your {0} reaction" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 +msgid "Tap to retry" +msgstr "" + +#. placeholder {0}: tab.value +#: src/components/dms/ReactionsDialog.tsx:358 +msgid "Tap to show {0} reactions" +msgstr "" + +#: src/components/dms/ReactionsDialog.tsx:357 +msgid "Tap to show all reactions" +msgstr "" + +#: src/components/dms/MessageItem.tsx:289 +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:111 +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:341 +#: src/screens/Settings/AboutSettings.tsx:87 +#: src/screens/Settings/AboutSettings.tsx:90 +#: 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/LabelsOnMeDialog.tsx:307 +#: 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/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:423 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:247 +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:81 +msgid "That username is already taken" +msgstr "" + +#: src/view/com/post-thread/PostQuotes.tsx:135 +msgid "That's all, folks!" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1141 +msgid "That's everything!" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 +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:123 +#: 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 your account." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:65 +msgid "The following labels were applied to your content." +msgstr "" + +#: src/features/liveNow/components/GoLiveDialog.tsx:162 +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:142 +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "The member limit has been reached." +msgstr "" + +#: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 +msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" +msgstr "" + +#: src/view/screens/PrivacyPolicy.tsx:29 +msgid "The Privacy Policy has been moved to <0/>" +msgstr "" + +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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:19 +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:500 +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:139 +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:499 +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:126 +#: src/components/intents/GroupChatJoinDialog.tsx:160 +#: 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:177 +#: 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:416 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 +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:1027 +#: src/view/com/posts/PostFeed.tsx:777 +msgid "There was an issue fetching posts. Tap here to try again." +msgstr "" + +#: src/view/com/lists/ListMembers.tsx:159 +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:136 +#: 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:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:124 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:117 +#: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:130 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 +#: src/view/com/profile/ProfileMenu.tsx:152 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 +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 "" + +#: src/screens/Settings/FollowingFeedPreferences.tsx:66 +msgid "These settings only apply to the Following feed." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + +#: src/components/moderation/ScreenHider.tsx:118 +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:113 +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/LabelsOnMeDialog.tsx:285 +msgid "This appeal will be sent to <0>{sourceName}." +msgstr "" + +#: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 +#: src/screens/Messages/components/ChatDisabled.tsx:138 +msgid "This appeal will be sent to Bluesky's moderation service." +msgstr "" + +#: src/screens/PostThread/components/ThreadItemAnchorNoUnauthenticated.tsx:27 +#: src/screens/PostThread/components/ThreadItemPostNoUnauthenticated.tsx:47 +msgid "This author has chosen to make their posts visible only to people who are signed in." +msgstr "" + +#: src/screens/Profile/components/GermButton.tsx:244 +msgid "This button lets others open the Germ DM app to send you a message. You can manage its visibility from the Germ DM app, or you can disconnect your Bluesky account from Germ DM altogether by clicking the button below." +msgstr "" + +#: src/screens/Messages/components/ChatEnded.tsx:49 +msgid "This chat has ended" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:265 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 +msgid "This chat is locked" +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:424 +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:88 +#: 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:128 +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/Settings/ActivityPrivacySettings.tsx:56 +msgid "This feature allows users to receive notifications for your new posts and replies. Who do you want to enable this for?" +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:166 +msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:61 +msgid "This feature is not available while using an app password. Please sign in with your main password." +msgstr "" + +#: src/lib/strings/errors.ts:31 +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:171 +#: src/screens/ProfileList/FeedSection.tsx:78 +msgid "This feed is empty." +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:104 +msgid "This feed is no longer online. We are showing <0>Discover instead." +msgstr "" + +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:142 +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:138 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:201 +msgid "This invite link is invalid" +msgstr "" + +#: src/view/screens/Debug.tsx:327 +msgid "This is an empty state" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:178 +#: src/features/liveNow/components/GoLiveDialog.tsx:155 +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:184 +msgid "This label was applied by the author." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:170 +msgid "This label was applied by you." +msgstr "" + +#: src/screens/Profile/Sections/Labels.tsx:218 +msgid "This labeler hasn't declared what labels it publishes, and may not be active." +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:95 +msgid "This link is taking you to the following website:" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/screens/List/ListHiddenScreen.tsx:155 +msgid "This list – created by <0>{0} – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/List/ListHiddenScreen.tsx:150 +msgid "This list – created by you – contains possible violations of Bluesky's community guidelines in its name or description." +msgstr "" + +#: src/screens/ProfileList/AboutSection.tsx:100 +msgid "This list is empty." +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +msgid "This message is hidden because this user is blocking you." +msgstr "" + +#: src/components/dms/MessageItem.tsx:569 +#: src/components/dms/MessageItem.tsx:595 +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/moderation/ModerationDetailsDialog.tsx:161 +msgid "This moderation was applied to the entire user account and will appear on all posts." +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:644 +msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." +msgstr "" + +#: src/components/WhoCanReply.tsx:274 +msgid "This post has an unknown type of threadgate on it. Your app may be out of date." +msgstr "" + +#: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:157 +msgid "This post is only visible to logged-in users." +msgstr "" + +#: src/screens/Bookmarks/index.tsx:255 +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:1043 +msgid "This post's author has disabled quote posts." +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:546 +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:151 +#: src/screens/Messages/JoinRequests.tsx:110 +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:203 +msgid "This user doesn't have any followers." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:64 +msgid "This user has blocked you and cannot be messaged." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:83 +#: 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 +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:63 +msgid "This user is included in the <0>{0} list which you have blocked." +msgstr "" + +#. placeholder {0}: list.name +#: src/components/moderation/ModerationDetailsDialog.tsx:95 +msgid "This user is included in the <0>{0} list which you have muted." +msgstr "" + +#: src/components/NewskieDialog.tsx:49 +msgid "This user is new here. Press for more info about when they joined." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:182 +msgid "This user isn't following anyone." +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 +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/components/dialogs/lists/CreateListFromStarterPackDialog.tsx:157 +msgid "This will create a new list with the same name, description, and members as this starter pack." +msgstr "" + +#. placeholder {0}: word.value +#: src/components/dialogs/MutedWords.tsx:454 +msgid "This will delete \"{0}\" from your muted words. You can always add it back later." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:330 +msgid "This will irreversibly delete your Bluesky account <0>{currentHandle} and all associated data. Note that this will affect any other <1>AT Protocol services you use with this account." +msgstr "" + +#. placeholder {0}: account.handle +#: src/screens/Settings/Settings.tsx:668 +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:374 +msgid "Threads Preferences" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:134 +msgid "Threats or incitement" +msgstr "" + +#. placeholder {0}: Number(time) || 0 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/TimeIndicator.tsx:34 +msgid "Time remaining: {0, plural, one {# second} other {# seconds}}" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:68 +msgid "Title" +msgstr "" + +#: src/components/SendErrorReportDialog.tsx:71 +msgid "Title (100 characters max)" +msgstr "" + +#: src/screens/Settings/components/DisableEmail2FADialog.tsx:100 +msgid "To disable the email 2FA method, please verify your access to the email address." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 +msgid "To disable your email 2FA method, please verify your access to <0>{0}" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:251 +msgid "To log out, <0>click here. Or if you’d prefer, you can <1>delete your account." +msgstr "" + +#: src/components/dms/DateDivider.tsx:27 +msgid "Today" +msgstr "" + +#: src/screens/Moderation/index.tsx:392 +msgid "Toggle to enable or disable adult content" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:173 +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:88 +#: src/screens/Search/SearchResults.tsx:54 +#: src/screens/Topic.tsx:59 +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:485 +msgid "Topic" +msgstr "" + +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 +#: 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/view/shell/desktop/SidebarTrendingTopics.tsx:50 +msgid "Trending" +msgstr "" + +#. Accessibility label for the icon-only pill that shows currently trending/featured GIFs in the GIF picker. +#: src/features/gifPicker/components/GifCategoryPills.tsx:45 +msgid "Trending GIFs" +msgstr "" + +#: src/view/shell/desktop/SidebarTrendingTopics.tsx:57 +msgid "Trending options" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:87 +msgid "Trending Videos" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:103 +msgid "Trolling" +msgstr "" + +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 +msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." +msgstr "" + +#: src/screens/Search/SearchResults.tsx:186 +msgctxt "english-only-resource" +msgid "Try a different search term, or <0>read about how to use search filters." +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:167 +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/screens/Settings/PrivacyAndSecuritySettings.tsx:65 +msgid "Two-factor authentication (2FA)" +msgstr "" + +#: src/screens/Messages/components/MessageInput.tsx:177 +msgid "Type your message here" +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:12 +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:70 +#: src/screens/Login/index.tsx:96 +#: src/screens/Login/LoginForm.tsx:167 +#: src/screens/Login/SetNewPasswordForm.tsx:83 +#: src/screens/Signup/index.tsx:87 +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:345 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 +msgid "Unable to find the selected recipient." +msgstr "" + +#: src/lib/strings/errors.ts:43 +msgid "Unable to resolve handle" +msgstr "" + +#: src/screens/Settings/Settings.tsx:515 +msgid "Unapply Pull Request" +msgstr "" + +#: src/screens/Settings/Settings.tsx:517 +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:637 +#: 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/screens/Messages/ConversationSettings/MemberMenu.tsx:224 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 +#: src/screens/ProfileList/components/Header.tsx:166 +#: src/screens/ProfileList/components/Header.tsx:173 +msgid "Unblock" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 +msgctxt "action" +msgid "Unblock" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:212 +msgid "Unblock {displayName}" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 +#: src/view/com/profile/ProfileMenu.tsx:468 +#: src/view/com/profile/ProfileMenu.tsx:474 +msgid "Unblock account" +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 +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:58 +#: src/features/liveEvents/components/DiscoverFeedLiveEventFeedsAndTrendingBanner.tsx:64 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:73 +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 +#: 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:412 +msgid "Unfollow {0}" +msgstr "" + +#: src/view/com/profile/ProfileMenu.tsx:325 +#: src/view/com/profile/ProfileMenu.tsx:334 +msgid "Unfollow account" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:848 +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:200 +msgid "Unfortunately, the birthdate you have saved to your profile makes you too young to access Bluesky." +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:185 +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:509 +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:92 +msgid "Unlock chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:561 +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:170 +#: 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:447 +#: src/view/com/profile/ProfileMenu.tsx:453 +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:523 +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:344 +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:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 +#: src/screens/SavedFeeds.tsx:467 +msgid "Unpin feed" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 +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:162 +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:482 +#: src/screens/Settings/Settings.tsx:484 +msgid "Unsnooze email reminder" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:345 +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:312 +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:128 +msgid "Unsupported clipboard content" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1542 +msgid "Unsupported video type: {mimeType}" +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 "" + +#: src/view/com/modals/UserAddRemoveLists.tsx:83 +msgid "Update <0>{displayName} in Lists" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 +#: src/screens/Settings/AccountSettings.tsx:112 +#: src/screens/Settings/AccountSettings.tsx:120 +msgid "Update email" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:231 +#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: src/screens/Messages/components/InviteLinkDialog.tsx:295 +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/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 +msgid "Update your email" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:397 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:278 +#: 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:315 +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:2572 +msgid "Uploading GIF..." +msgstr "" + +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 +msgid "Uploading images..." +msgstr "" + +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 +msgid "Uploading link thumbnail..." +msgstr "" + +#: src/view/com/composer/Composer.tsx:2574 +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:383 +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:75 +#: 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:61 +msgid "User Blocked by List" +msgstr "" + +#: src/lib/moderation/useModerationCauseDescription.ts:74 +msgid "User Blocking You" +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:81 +msgid "User Blocks You" +msgstr "" + +#. placeholder {0}: sanitizeHandle(list.creator.handle, '@') +#: src/view/com/modals/UserAddRemoveLists.tsx:215 +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/view/com/modals/UserAddRemoveLists.tsx:213 +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:231 +msgid "Username cannot be longer than {MAX_SERVICE_HANDLE_LENGTH, plural, other {# characters}}" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:215 +msgid "Username cannot begin or end with a hyphen" +msgstr "" + +#: src/screens/Signup/StepHandle/index.tsx:219 +msgid "Username must only contain letters (a-z), numbers, and hyphens" +msgstr "" + +#: src/screens/Login/LoginForm.tsx:200 +msgid "Username or email address" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:337 +msgid "users followed by <0>@{0}" +msgstr "" + +#. placeholder {0}: post.author.handle +#: src/components/WhoCanReply.tsx:324 +msgid "users following <0>@{0}" +msgstr "" + +#: src/screens/Messages/Settings.tsx:84 +msgctxt "allow group chat invites from" +msgid "Users I follow" +msgstr "" + +#: src/screens/Messages/Settings.tsx:69 +msgctxt "allow messages from" +msgid "Users I follow" +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:206 +#: src/screens/Moderation/VerificationSettings.tsx:34 +msgid "Verification Settings" +msgstr "" + +#: src/screens/Moderation/VerificationSettings.tsx:43 +msgid "Verifications on Bluesky work differently than on other platforms. <0>Learn more here." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:105 +msgid "Verified by:" +msgstr "" + +#: src/components/verification/VerificationCreatePrompt.tsx:85 +#: src/components/verification/VerificationCreatePrompt.tsx:87 +#: src/view/com/profile/ProfileMenu.tsx:431 +#: src/view/com/profile/ProfileMenu.tsx:434 +msgid "Verify account" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:360 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:184 +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/components/NoAccessScreen.tsx:348 +#: src/ageAssurance/components/NoAccessScreen.tsx:362 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:172 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:186 +msgid "Verify now" +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:86 +#: src/screens/Settings/AccountSettings.tsx:106 +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:137 +#: src/screens/Settings/AboutSettings.tsx:166 +msgid "Version {0}" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:87 +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:149 +msgid "Video" +msgstr "" + +#: src/view/com/composer/state/video.ts:359 +msgid "Video failed to process" +msgstr "" + +#: src/Navigation.tsx:553 +msgid "Video Feed" +msgstr "" + +#. placeholder {0}: author.handle +#: src/components/VideoPostCard.tsx:122 +msgid "Video from {0}: {text}" +msgstr "" + +#. placeholder {0}: sanitizeHandle( post.author.handle, '@', ) +#: src/screens/VideoFeed/index.tsx:1103 +msgid "Video from {0}. Tap to play or pause the video" +msgstr "" + +#: src/lib/interests.ts:62 +#: src/screens/Search/modules/ExploreTrendingTopics.tsx:222 +msgid "Video Games" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1102 +msgid "Video is paused" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1102 +msgid "Video is playing" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/index.web.tsx:232 +msgid "Video not found." +msgstr "" + +#: src/view/com/composer/videos/SubtitleDialog.tsx:107 +msgid "Video settings" +msgstr "" + +#: src/view/com/composer/Composer.tsx:2592 +msgid "Video uploaded" +msgstr "" + +#. placeholder {0}: embed.alt +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/VideoEmbedInnerNative.tsx:87 +msgid "Video: {0}" +msgstr "" + +#: src/view/screens/Profile.tsx:237 +msgid "Videos" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:434 +msgid "Videos must be less than 3 minutes long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1136 +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:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 +msgid "View {0}" +msgstr "" + +#. placeholder {0}: profile.handle +#: src/screens/Profile/Header/Shell.tsx:257 +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:454 +#: src/screens/Search/components/SearchProfileCard.tsx:36 +#: src/screens/VideoFeed/index.tsx:809 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 +msgid "View {0}'s profile" +msgstr "" + +#. placeholder {0}: profile.displayName || sanitizeHandle(profile.handle) +#: src/components/ProfileCard.tsx:149 +msgid "View {0}’s profile" +msgstr "" + +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +msgid "View {displayName}’s profile" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 +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:674 +#: src/screens/VideoFeed/index.tsx:692 +msgid "View details" +msgstr "" + +#: src/view/com/posts/ViewFullThread.tsx:31 +#: src/view/com/posts/ViewFullThread.tsx:64 +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:56 +msgid "View information about these labels" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:200 +#: src/components/interstitials/TrendingVideos.tsx:222 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:191 +#: src/screens/Search/modules/ExploreTrendingVideos.tsx:210 +msgid "View more" +msgstr "" + +#: src/components/interstitials/TrendingVideos.tsx:228 +msgid "View more trending videos" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1131 +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:119 +msgid "View profile" +msgstr "" + +#: src/screens/Profile/Header/Shell.tsx:163 +msgid "View profile banner" +msgstr "" + +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 +msgid "View publication" +msgstr "" + +#: src/view/com/profile/ProfileSubpageHeader.tsx:108 +msgid "View the avatar" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:548 +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:93 +msgid "View this user's verifications" +msgstr "" + +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 +msgid "View users who like this feed" +msgstr "" + +#: src/components/VideoPostCard.tsx:401 +msgid "View video" +msgstr "" + +#: src/screens/Moderation/index.tsx:324 +msgid "View your blocked accounts" +msgstr "" + +#: src/screens/Moderation/index.tsx:264 +msgid "View your default post interaction settings" +msgstr "" + +#: src/view/com/home/HomeHeaderLayout.web.tsx:59 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +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:92 +msgid "View your verifications" +msgstr "" + +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 +msgid "Views full image" +msgstr "" + +#: src/components/VideoPostCard.tsx:121 +msgid "Views video in immersive mode" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:126 +msgid "Violence" +msgstr "" + +#: src/components/moderation/ReportDialog/utils/useReportOptions.ts:127 +msgid "Violent or threatening content" +msgstr "" + +#: src/components/dialogs/LinkWarning.tsx:112 +#: src/components/dialogs/LinkWarning.tsx:122 +msgid "Visit site" +msgstr "" + +#: src/view/screens/Notifications.tsx:296 +msgid "Visit your notification settings" +msgstr "" + +#: src/components/Post/Embed/VideoEmbed/VideoEmbedInner/web-controls/VolumeControl.tsx:80 +msgid "Volume" +msgstr "" + +#: src/components/moderation/LabelPreference.tsx:142 +#: src/lib/moderation/useLabelBehaviorDescription.ts:20 +#: src/lib/moderation/useLabelBehaviorDescription.ts:25 +msgid "Warn" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:51 +msgid "Warn content" +msgstr "" + +#: src/lib/moderation/useLabelBehaviorDescription.ts:49 +msgid "Warn content and filter from feeds" +msgstr "" + +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 +msgid "Watch now" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:253 +msgid "We apply the highest privacy standards, and never share or sell your contact information." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:141 +msgid "We could not connect to the service that provides this custom feed. It may be temporarily experiencing issues, or permanently unavailable." +msgstr "" + +#: src/view/com/feeds/MissingFeed.tsx:147 +msgid "We could not find this list. It was probably deleted." +msgstr "" + +#: src/screens/Hashtag.tsx:259 +msgid "We couldn't find any results for that tag." +msgstr "" + +#: src/screens/Topic.tsx:167 +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:88 +msgid "We couldn’t load this conversation’s join requests" +msgstr "" + +#: src/screens/Messages/ConversationSettings/index.tsx:133 +msgid "We couldn’t load this conversation’s settings" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:244 +msgid "We delete hashes after matches are made" +msgstr "" + +#: src/components/contacts/components/InviteInfo.tsx:67 +msgid "We don't store your friends' phone numbers or send any messages" +msgstr "" + +#: src/screens/SignupQueued.tsx:163 +msgid "We estimate {estimatedTime} until your account is ready." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:197 +msgid "We have partnered with <0>KWS to handle age verification. When you click \"Begin\" below, KWS will email you instructions to complete the verification process. If your email address has already been used to verify your age for another game or service that uses KWS, you won’t need to do it again. When you’re done, you'll be brought back to continue using Bluesky." +msgstr "" + +#. placeholder {0}: currentAccount?.email +#: src/components/intents/VerifyEmailIntentDialog.tsx:102 +msgid "We have sent another verification email to <0>{0}." +msgstr "" + +#: src/components/contacts/screens/PhoneInput.tsx:184 +msgid "We need to verify your number before we can look for your friends. A verification code will be sent to this number." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:241 +msgid "We never keep plain phone numbers" +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:247 +msgid "We only suggest follows if both people consent" +msgstr "" + +#: src/view/com/posts/DiscoverFallbackHeader.tsx:29 +msgid "We ran out of posts from your follows. Here's the latest from <0/>." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:171 +msgid "We recommend selecting at least two interests." +msgstr "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/view/com/composer/state/video.ts:419 +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 "" + +#. placeholder {0}: currentAccount!.email +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 +msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:62 +msgid "We'll use this to help customize your experience." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:140 +msgid "We're also updating our <0>Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:83 +msgid "We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:311 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:223 +msgid "We're confirming your age assurance status with our servers. This should only take a few seconds." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:151 +msgid "We're having issues initializing the age assurance process for your account. Please <0>contact support for assistance." +msgstr "" + +#: src/components/dialogs/SearchablePeopleList.tsx:127 +#: src/components/ProgressGuide/FollowDialog.tsx:195 +msgid "We're having network issues, try again" +msgstr "" + +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 +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:136 +msgid "We’re so excited to have you join us!" +msgstr "" + +#: src/ageAssurance/components/NoAccessScreen.tsx:416 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 +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:339 +#: src/screens/Search/SearchResults.tsx:472 +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:1041 +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:219 +msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:123 +msgid "We’re updating our <0>Terms of Service, <1>Privacy Policy, and <2>Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:64 +msgid "We're updating our policies" +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:77 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025." +msgstr "" + +#: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:62 +msgid "We’re updating our Terms of Service, Privacy Policy, and Copyright Policy, effective September 15th, 2025. We're also updating our Community Guidelines, and we want your input! These new guidelines will take effect on October 15th, 2025. Learn more about these changes and how to share your thoughts with us by reading our blog post." +msgstr "" + +#: src/ageAssurance/components/RedirectOverlay.tsx:257 +#: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:165 +msgid "We've confirmed your age assurance status. You can now close this dialog." +msgstr "" + +#: src/screens/Deactivated.tsx:117 +msgid "Welcome back!" +msgstr "" + +#: src/components/NewskieDialog.tsx:141 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:59 +msgid "What are your interests?" +msgstr "" + +#: src/screens/StarterPack/Wizard/StepDetails.tsx:44 +msgid "What do you want to call your starter pack?" +msgstr "" + +#: src/view/com/auth/SplashScreen.web.tsx:98 +#: src/view/com/composer/Composer.tsx:1506 +#: src/view/com/feeds/ComposerPrompt.tsx:193 +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:239 +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:392 +#: src/screens/Messages/Inbox.tsx:198 +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:1424 +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 +msgid "Write a post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1602 +msgid "Write post" +msgstr "" + +#: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 +#: src/view/com/composer/Composer.tsx:1504 +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:150 +#: src/screens/Messages/JoinRequests.tsx:109 +msgid "Wrong kind of conversation" +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:154 +#: src/features/liveNow/components/GoLiveDialog.tsx:136 +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:176 +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:610 +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:330 +#: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:142 +msgid "You are currently unable to access Bluesky's Age Assurance flow. Please <0>contact our moderation team if you believe this is an error." +msgstr "" + +#: src/screens/SignupQueued.tsx:160 +msgid "You are in line." +msgstr "" + +#: src/features/liveNow/components/EditLiveDialog.tsx:120 +#: src/features/liveNow/components/EditLiveDialog.tsx:125 +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:412 +msgid "You are not allowed to upload videos." +msgstr "" + +#: src/view/com/profile/ProfileFollows.tsx:181 +msgid "You are not following anyone yet" +msgstr "" + +#: src/features/liveNow/index.tsx:315 +msgid "You are now live!" +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:66 +msgid "You are verified" +msgstr "" + +#: src/screens/Profile/Header/EditProfileDialog.tsx:341 +msgid "You are verified. You will lose your verification status if you change your display name. <0>Learn more." +msgstr "" + +#: src/screens/Settings/components/ChangeHandleDialog.tsx:210 +msgid "You are verified. You will lose your verification status if you change your handle. <0>Learn more." +msgstr "" + +#: src/screens/Search/modules/ExploreInterestsCard.tsx:46 +msgid "You can adjust your interests at any time from \"Content and media\" settings." +msgstr "" + +#: src/screens/Settings/components/DeleteAccountDialog.tsx:211 +msgid "You can also <0>temporarily deactivate your account instead. Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:60 +#: src/view/com/posts/FollowingEndOfFeed.tsx:61 +msgid "You can also discover new Custom Feeds to follow." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:139 +msgid "You can also download your chat data as a \"JSONL\" file. This file only includes chat messages that you have sent and does not include chat messages that you have received." +msgstr "" + +#: src/components/contacts/screens/GetContacts.tsx:250 +msgid "You can always opt out and delete your data" +msgstr "" + +#: src/lib/hooks/useNotificationHandler.ts:135 +msgid "You can choose whether chat notifications have sound in the chat settings within the app" +msgstr "" + +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 +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:203 +#: src/screens/Login/PasswordUpdatedForm.tsx:27 +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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1429 +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:437 +msgid "You can only select one GIF at a time." +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:431 +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:423 +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:130 +msgid "You can update this later from your settings." +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "" + +#: src/lib/hooks/useCleanError.ts:54 +#: src/lib/strings/errors.ts:28 +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:144 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:77 +#: src/lib/moderation/useModerationCauseDescription.ts:58 +#: src/lib/moderation/useModerationCauseDescription.ts:66 +msgid "You have blocked this user. You cannot view their content." +msgstr "" + +#: src/components/ageAssurance/useAgeAssuranceCopy.ts:17 +msgid "You have completed the Age Assurance process, but based on the results, we cannot be sure that you are 18 years of age or older. Due to laws in your region, certain features on Bluesky must remain restricted until you're able to verify you're an adult." +msgstr "" + +#: src/view/screens/Notifications.tsx:291 +msgid "You have completely disabled reply, quote, and mention notifications, so this tab will no longer update. To adjust this, visit your <0>notification settings." +msgstr "" + +#: src/screens/Login/SetNewPasswordForm.tsx:51 +#: src/screens/Login/SetNewPasswordForm.tsx:97 +#: 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:115 +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:108 +#: 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/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:1419 +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:292 +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:122 +#: 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:84 +msgid "You may appeal non-self labels if you feel they were placed in error." +msgstr "" + +#: src/components/moderation/LabelsOnMeDialog.tsx:89 +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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + +#: src/components/dialogs/BirthDateSettings.tsx:177 +msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:365 +msgid "You must be following at least seven other people to generate a starter pack." +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 +msgid "You must grant access to your photo library to save a QR code" +msgstr "" + +#: src/view/com/composer/SelectMediaButton.tsx:466 +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:352 +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:412 +msgid "You probably want to restart the app now." +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/MessageItem.tsx:259 +msgid "You reacted {0}" +msgstr "" + +#. placeholder {0}: reaction.value +#: src/components/dms/getReactionInfo.ts:43 +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 "" + +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + +#: src/screens/Settings/Settings.tsx:297 +#: 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:110 +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:121 +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:50 +msgid "You: {message}" +msgstr "" + +#: src/screens/Signup/index.tsx:152 +msgid "You'll follow the suggested users and feeds once you finish creating your account!" +msgstr "" + +#: src/screens/Signup/index.tsx:157 +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/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/LabelsOnMeDialog.tsx:262 +msgid "You've already appealed this label and it's being reviewed by our moderation team." +msgstr "" + +#: src/components/moderation/ModerationDetailsDialog.tsx:112 +#: 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:646 +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/components/FocusScope/index.tsx:88 +msgid "You've reached the start of the active content." +msgstr "" + +#: src/view/com/composer/state/video.ts:423 +msgid "You've reached your daily limit for video uploads (too many bytes)" +msgstr "" + +#: src/view/com/composer/state/video.ts:427 +msgid "You've reached your daily limit for video uploads (too many videos)" +msgstr "" + +#: src/screens/VideoFeed/index.tsx:1150 +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:190 +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:431 +msgid "Your account is not yet old enough to upload videos. Please try again later." +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "" + +#: src/screens/Settings/components/ExportCarDialog.tsx:107 +msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." +msgstr "" + +#: src/screens/Takendown.tsx:210 +msgid "Your account was found to be in violation of the <0>Bluesky Social Terms of Service. You have been sent an email outlining the specific violation and suspension period, if applicable. You can appeal this decision if you believe it was made in error." +msgstr "" + +#: src/screens/Takendown.tsx:150 +msgid "Your appeal has been submitted. If your appeal succeeds, you will receive an email." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:284 +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:374 +msgid "Your contact {firstAuthorLink} is on Bluesky" +msgstr "" + +#: src/view/com/notifications/NotificationFeedItem.tsx:372 +msgid "Your contact {firstAuthorName} is on Bluesky" +msgstr "" + +#: src/components/contacts/screens/ViewMatches.tsx:454 +msgid "Your contact {name}" +msgstr "" + +#. placeholder {0}: sanitizeHandle(currentAccount?.handle || '', '@') +#: src/screens/Settings/components/ChangeHandleDialog.tsx:531 +msgid "Your current handle <0>{0} will automatically remain reserved for you. You can switch back to it at any time from this account." +msgstr "" + +#: src/screens/Moderation/index.tsx:231 +msgid "Your declared age is under 18. Some settings below may be disabled. If this was a mistake, you may edit your birthdate in your <0>account settings." +msgstr "" + +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:252 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:256 +#: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:257 +msgid "Your email" +msgstr "" + +#: src/screens/Login/ForgotPasswordForm.tsx:53 +#: src/screens/Settings/components/ChangePasswordDialog.tsx:82 +#: src/screens/Signup/state.ts:278 +#: src/screens/Signup/StepInfo/index.tsx:130 +msgid "Your email appears to be invalid." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:62 +msgid "Your email has not yet been verified. Please verify your email in order to enjoy all the features of Bluesky." +msgstr "" + +#: src/state/shell/progress-guide.tsx:216 +msgid "Your first like!" +msgstr "" + +#: src/components/dialogs/PostInteractionSettingsDialog.tsx:496 +msgid "Your followers" +msgstr "" + +#: src/view/com/posts/FollowingEmptyState.tsx:41 +msgid "Your following feed is empty! Follow more users to see what's happening." +msgstr "" + +#. placeholder {0}: createFullHandle(subdomain, host) +#: src/screens/Settings/components/ChangeHandleDialog.tsx:247 +msgid "Your full handle will be <0>@{0}" +msgstr "" + +#: src/Navigation.tsx:457 +#: src/screens/Search/modules/ExploreInterestsCard.tsx:68 +#: 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:95 +msgid "Your interests help us find what you like!" +msgstr "" + +#: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:69 +msgid "Your live event preferences have been updated." +msgstr "" + +#: src/screens/Signup/StepInfo/index.tsx:353 +msgid "Your location has been updated." +msgstr "" + +#: src/components/dialogs/MutedWords.tsx:378 +msgid "Your muted words" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:203 +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:157 +msgid "Your password must be at least 8 characters long." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1127 +msgid "Your post was sent" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1124 +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:53 +msgid "Your profile picture" +msgstr "" + +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:26 +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:1126 +msgid "Your reply was sent" +msgstr "" + +#. placeholder {0}: state.selectedLabeler?.creator.displayName +#: src/components/moderation/ReportDialog/index.tsx:519 +msgid "Your report will be sent to <0>{0}." +msgstr "" + +#: src/screens/Settings/InterestsSettings.tsx:63 +msgid "Your selected interests help us serve you content you care about." +msgstr "" + +#: src/view/com/composer/Composer.tsx:1454 +msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." +msgstr "" + +#: src/components/verification/VerificationsDialog.tsx:67 +msgid "Your verifications" +msgstr "" + diff --git a/src/locale/locales/ne/messages.po b/src/locale/locales/ne/messages.po index 55019040db..6f7abb5d01 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Nepali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "सामग्री समावेश गरिएको छ" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# मिनेट} other {# मिनेटहरू}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# महिना} other {# महिनाहरू}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# सेकेन्ड} other {# सेकेन्ड #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>पाठ र ट्यागहरूमा <1>भित्र" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0} को अवतार" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}मि" msgid "{0}s" msgstr "{0}से" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {घण्टा} other {घण्टा msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {मिनेट} other {मिनेटहरू}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंलाई अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} र <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} ले तपाईंलाई अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} ले तपाईंलाई पुनः अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंलाई अनुसरण गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} र {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} ले तपाईंलाई पछ्याए" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} ले तपाईंलाई फिर्ता पछ्याए" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} ले तपाईंको कस्टम फिडलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} ले तपाईंको पोस्टलाई मन पराए" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} ले तपाईंको पोस्टलाई पुन: पोस्ट गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} ले तपाईंको स्टार्टर प्याकबाट साइन अप गरे" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} पछ्याउँदै छन्" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} लाई सन्देश पठाउन सकिदैन" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, र {2, plural, one {# other} other {# others}} #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {अनुगामी} other {अनुगामीहरू}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {पछ्याउँदै छन्} other {पछ्याउँदै छन्}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {मन पराइएको} other {मन पराइएका}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {उद्धरण} other {उद्धरणहरू}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {पुन: पोष्ट} other {पुन: पोष्टहरू}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} सदस्यहरू" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "पहुँचयोग्यता" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "पहुँचयोग्यता सेटिङ्स" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "पहुँचयोग्यता सेटिङ्स" msgid "Account" msgstr "खाता" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "खाता ब्लक गरिएको छ" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "खाता पछ्याइएको छ" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "खाता छिटो पहुँचबाट हटाइएको छ" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "खाताको ब्लक हटाइएको छ" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "खाताको पछ्याइ हटाइएको छ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "खाताको म्यूट हटाइएको छ" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "थप्नुहोस्" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "वैकल्पिक पाठ थप्नुहोस् (ऐच #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "अर्को पोष्ट थप्नुहोस्" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "एप पासवर्ड थप्नुहोस्" msgid "Add App Password" msgstr "एप पासवर्ड थप्नुहोस्" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "तपाईंको प्रत्यक्ष सन्देशह msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "पहिले नै @{0} को रूपमा साइन इन गरिएको छ" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "वैकल्पिक" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "वैकल्पिक पाठ" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "वैकल्पिक पाठले दृष्टिहीन र कमजोर दृष्टि भएका प्रयोगकर्ताहरूका लागि चित्रहरू वर्णन गर्छ, र सबैलाई सन्दर्भ दिन मद्दत गर्दछ।" @@ -1387,7 +1486,7 @@ msgstr "त्रुटि भएको छ" msgid "An error occurred" msgstr "त्रुटि भयो" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "भिडियो संकुचन गर्दा त्रुटि भयो।" @@ -1421,7 +1520,8 @@ msgstr "भिडियो लोड गर्दा त्रुटि भय msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "QR कोड बचत गर्दा त्रुटि भयो!" @@ -1432,11 +1532,11 @@ msgstr "QR कोड बचत गर्दा त्रुटि भयो!" msgid "An error occurred while trying to follow all" msgstr "सबैलाई पछ्याउने प्रयास गर्दा त्रुटि भयो" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "कुराकानी खोल्ने प्रयास गर् #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "समस्या भयो, कृपया पुन: प्रयास गर्नुहोस्।" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "एप पासवर्ड नाम कम्तिमा ४ वर msgid "App passwords" msgstr "एप पासवर्डहरू" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "एप पासवर्डहरू" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "अपील बुझाइएको छ।" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "{0} बाट आर्काइभ गरिएको" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "आर्काइभ गरिएको पोस्ट" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "के तपाईं \"{0}\" एप पासवर्ड मेटाउन निश्चित हुनुहुन्छ?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "के तपाईं यो स्टार्टर प्याक msgid "Are you sure you want to discard your changes?" msgstr "के तपाईं आफ्ना परिवर्तनहरू हटाउन निश्चित हुनुहुन्छ?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "के तपाईं यो कुराकानी छोड्न निश्चित हुनुहुन्छ? तपाईंका सन्देशहरू तपाईंको लागि मेटिनेछन्, तर अर्को सहभागीको लागि होइन।" +#: src/components/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 "के तपाईं यसलाई आफ्नो फिडहरूबाट हटाउन निश्चित हुनुहुन्छ?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "के तपाईं यस पोस्ट हटाउन चाहनुहुन्छ?" @@ -1724,8 +1838,8 @@ msgstr "कला" msgid "Artistic or non-erotic nudity." msgstr "कलात्मक वा गैर-इरोटिक नग्नता।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "भिडियो र GIF हरू अटोप्ले गर्न msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "फिर्ता" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "स्टार्टर प्याक सिर्जना गर्नु अघि, तपाईंले पहिले आफ्नो इमेल प्रमाणित गर्नुपर्छ।" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "जन्मदिन" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "ब्लक गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "खाता ब्लक गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "ब्लक सूची" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "यी खाताहरू ब्लक गर्नुहोस्?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "" @@ -1948,7 +2059,7 @@ msgctxt "button" msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "ब्लक गरियो" @@ -1964,14 +2075,12 @@ msgstr "ब्लक गरियो" msgid "Blocked accounts" msgstr "ब्लक गरिएका खाताहरू" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "ब्लक गरिएका खाताहरू" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्।" @@ -1987,7 +2096,7 @@ msgstr "ब्लकले यस लेबलकर्ताले तपाई msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "ब्लक सार्वजनिक हुन्छ। ब्लक गरिएका खाताहरूले तपाईंको थ्रेडहरूमा उत्तर दिन सक्दैनन्, तपाईंलाई उल्लेख गर्न सक्दैनन्, वा अन्यथा तपाईंसँग अन्तरक्रिया गर्न सक्दैनन्।" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "ब्लकले तपाईंको खातामा लेबलहरू लागू हुनबाट रोक्दैन, तर यस खाताले तपाईंको थ्रेडहरूमा उत्तर दिन वा तपाईंसँग अन्तरक्रिया गर्न रोक्नेछ।" @@ -2000,7 +2109,7 @@ msgstr "ब्लग" msgid "Bluesky" msgstr "ब्लूस्काई" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "ब्लूस्काईले दाबी गरिएको मितिको प्रामाणिकता पुष्टि गर्न सक्दैन।" @@ -2029,7 +2138,7 @@ msgstr "ब्लूस्काई साथीहरूसँग अझ रा msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "ब्लूस्काई तपाईंको नेटवर्क 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:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "पुस्तकहरू" 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" @@ -2137,24 +2254,34 @@ msgstr "व्यापार" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "{0} द्वारा" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "खाता सिर्जना गरेर तपाईं <0>स msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "क्यामेरा" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "क्यामेरा" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "क्यामेरा" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "रद्द गर्नुहोस्" @@ -2248,9 +2384,9 @@ msgstr "पुनः सक्रियता रद्द गर्नुहो msgid "Cancel search" msgstr "खोजी रद्द गर्नुहोस्" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "ब्लक गरिएको प्रयोगकर्तासँग अन्तरक्रिया गर्न सकिँदैन" @@ -2264,7 +2400,7 @@ msgstr "उपशीर्षक (.vtt)" msgid "Captions & alt text" msgstr "उपशीर्षक र वैकल्पिक पाठ" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "ह्यान्डल परिवर्तन गर्नुहोस्" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "कुराकानी" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "कुराकानी म्यूट गरियो" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "कुराकानी सेटिङ्स" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "कुराकानी सेटिङ्स" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "कुराकानी अनम्यूट गरियो" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "यो रंगलाई आफ्नो अवतारको रूपमा छान्नुहोस्" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "असफल सन्देश पुन: प्रयास गर्न क्लिक गर्नुहोस्" @@ -2594,28 +2745,30 @@ msgstr "असफल सन्देश पुन: प्रयास गर् #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "असफल सन्देश पुन: प्रयास गर् #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "बन्द गर्नुहोस्" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "सक्रिय संवाद बन्द गर्नुहोस्" @@ -2647,6 +2800,10 @@ msgstr "सक्रिय संवाद बन्द गर्नुहोस msgid "Close alert" msgstr "चेतावनी बन्द गर्नुहोस्" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "तलको दराज बन्द गर्नुहोस्" @@ -2657,8 +2814,10 @@ msgstr "तलको दराज बन्द गर्नुहोस्" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "संवाद बन्द गर्नुहोस्" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "चित्र बन्द गर्नुहोस्" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "यो संवाद बन्द गर्नुहोस्" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "पासवर्ड अद्यावधिक चेतावनी बन्द गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "प्रयोगकर्ताहरूको सूची संक्षेप गर्नुहोस्" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "दिइएको सूचना लागि प्रयोगकर्ताहरूको सूची संक्षेप गर्दछ" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "कमिक्स" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "समुदायका दिशानिर्देशहरू" @@ -2740,12 +2915,12 @@ msgstr "चुनौती पूरा गर्नुहोस्" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "नयाँ पोस्ट तयार गर्नुहोस्" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "जवाफ तयार गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "भिडियो कम्प्रेस गर्दै..." @@ -2780,7 +2955,7 @@ msgstr "<0>मोडरेशन सेटिङ्स मा कन्फ msgid "Confirm" msgstr "पुष्टि गर्नुहोस्" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "समर्थन सम्पर्क गर्नुहोस्" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "सामग्री र मिडिया" msgid "Content and media" msgstr "सामग्री र मिडिया" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "सामग्री र मिडिया" @@ -2889,7 +3064,7 @@ msgstr "सन्दर्भ मेनु पृष्ठभूमि, मे #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "थ्रेड जारी राख्नुहोस्..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "वार्तालाप मेटाइयो" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "वार्तालाप मेटाइयो" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "बिल्ड संस्करण क्लिपबोर्डमा प्रतिलिपि गरियो" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "प्रतिलिपि गरियो!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "प्रतिलिपि गर्नुहोस्" @@ -2997,6 +3184,11 @@ msgstr "DID प्रतिलिपि गर्नुहोस्" msgid "Copy host" msgstr "होस्ट प्रतिलिपि गर्नुहोस्" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "सूचीको लिंक प्रतिलिपि गर्न msgid "Copy link to post" msgstr "पोस्टको लिंक प्रतिलिपि गर्नुहोस्" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "सन्देशको पाठ प्रतिलिपि गर्नुहोस्" @@ -3037,12 +3229,12 @@ msgstr "सन्देशको पाठ प्रतिलिपि गर् msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "पोस्टको पाठ प्रतिलिपि गर्नुहोस्" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR कोड प्रतिलिपि गर्नुहोस्" @@ -3052,11 +3244,15 @@ msgstr "TXT रेकर्ड मान प्रतिलिपि गर् #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "प्रतिलिपि अधिकार नीति" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "कुराकानी छोड्न सकिएन" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "फिड लोड गर्न सकिएन" @@ -3100,7 +3308,11 @@ msgstr "फिड लोड गर्न सकिएन" msgid "Could not load list" msgstr "सूची लोड गर्न सकिएन" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "कुराकानी म्यूट गर्न सकिएन" @@ -3108,11 +3320,19 @@ msgstr "कुराकानी म्यूट गर्न सकिएन" msgid "Could not process your video" msgstr "तपाईंको भिडियो प्रक्रिया गर्न सकिएन" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "सिर्जना गर्नुहोस्" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "स्टार्टर प्याक सिर्जना गर्नुहोस्" @@ -3174,13 +3394,14 @@ msgstr "मेरो लागि स्टार्टर प्याक स #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "खाता बनाउनुहोस्" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "यसको सट्टा एउटा अवतार बनाउनुहोस्" @@ -3206,7 +3427,7 @@ msgstr "यसको सट्टा एउटा अवतार बनाउ msgid "Create another" msgstr "अर्को बनाउनुहोस्" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "नयाँ खाता सिर्जना गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "{0} का लागि रिपोर्ट सिर्जना गर्नुहोस्" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "सिर्जना गरियो {0}" @@ -3270,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "संस्कृति" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "गाढा थिम" msgid "Date of birth" msgstr "जन्म मिति" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "डिफल्ट" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "एप पासवर्ड मेटाउनुहोस्" msgid "Delete app password?" msgstr "एप पासवर्ड मेटाउनुहोस्?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "कुराकानी घोषणाको रेकर्ड मेटाउनुहोस्" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "मेरो लागि मेटाउनुहोस्" @@ -3399,11 +3633,11 @@ msgstr "मेरो लागि मेटाउनुहोस्" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "सन्देश मेटाउनुहोस्" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "मेरो लागि सन्देश मेटाउनुहोस्" @@ -3411,9 +3645,9 @@ msgstr "मेरो लागि सन्देश मेटाउनुहो msgid "Delete my account" msgstr "मेरो खाता मेटाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "पोस्ट मेटाउनुहोस्" @@ -3430,17 +3664,17 @@ msgstr "स्टार्टर प्याक मेटाउनुहोस msgid "Delete this list?" msgstr "यो सूची मेटाउनुहोस्?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "यो पोस्ट मेटाउनुहोस्?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "मेटाइयो" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "मेटाइएको खाता" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "वर्णनात्मक वैकल्पिक पाठ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "उद्धरण अलग गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "उद्धरण पोस्ट अलग गर्नुहोस्?" @@ -3507,13 +3741,13 @@ msgstr "संवाद: यो पोस्टसँग कसले अन् msgid "Dim" msgstr "धूमिल" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "इमेल 2FA अक्षम गर्नुहोस्" msgid "Disable haptic feedback" msgstr "ह्याप्टिक प्रतिक्रिया अक्षम गर्नुहोस्" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "अक्षम गरियो" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "त्याग्नुहोस्" msgid "Discard changes?" msgstr "परिवर्तनहरू त्याग्नुहोस्?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "पोस्ट त्याग्नुहोस्?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "नयाँ फिडहरू खोज्नुहोस्" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "रद्द गर्नुहोस्" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "त्रुटि रद्द गर्नुहोस्" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "यसमा नग्नता समावेश छैन।" msgid "Domain verified!" msgstr "डोमेन प्रमाणित गरियो!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "सम्पन्न" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "संवाद बन्द गर्न डबल ट्याप गर्नुहोस्" @@ -3737,19 +3981,14 @@ msgstr "संवाद बन्द गर्न डबल ट्याप ग 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 "Bluesky डाउनलोड गर्नुहोस्" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR फाइल डाउनलोड गर्नुहोस्" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR फाइल डाउनलोड गर्नुहोस्" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "अवधि:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "उदा. एलिस" @@ -3823,9 +4079,8 @@ msgstr "उदा. बारम्बार विज्ञापनहरू msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "सम्पादन गर्नुहोस्" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "अवतार सम्पादन गर्नुहोस्" @@ -3847,19 +4102,19 @@ msgstr "अवतार सम्पादन गर्नुहोस्" msgid "Edit Feeds" msgstr "फिड सम्पादन गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "चित्र सम्पादन गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "अन्तर्क्रिया सेटिङ्स सम्पादन गर्नुहोस्" @@ -3868,7 +4123,16 @@ msgstr "अन्तर्क्रिया सेटिङ्स सम्प msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "मेरो फिड सम्पादन गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "व्यक्ति सम्पादन गर्नुहोस्" @@ -3912,12 +4171,12 @@ msgstr "पोस्ट अन्तर्क्रिया सेटिङ् #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "प्रोफाइल सम्पादन गर्नुहोस्" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "प्रोफाइल सम्पादन गर्नुहोस्" @@ -3925,7 +4184,8 @@ msgstr "प्रोफाइल सम्पादन गर्नुहोस msgid "Edit starter pack" msgstr "स्टार्टर प्याक सम्पादन गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "को उत्तर दिन सक्छ सम्पादन गर्नुहोस्" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "तपाईंको स्टार्टर प्याक सम्पादन गर्नुहोस्" @@ -3971,7 +4231,7 @@ msgstr "इमेल ठेगाना" msgid "Email Resent" msgstr "इमेल पुनः पठाइयो" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "यो पोस्टलाई तपाईंको वेबसाइ msgid "Embedded video player" msgstr "समाविष्ट भिडियो प्लेयर" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "सक्षम गर्नुहोस्" @@ -4025,7 +4285,7 @@ msgstr "वयस्क सामग्री सक्षम गर्नुह msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "बाह्य मिडिया सक्षम गर्नुहो msgid "Enable media players for" msgstr "मिडिया प्लेयर सक्षम गर्नुहोस्" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "पासवर्ड प्रविष्ट गर्नुहोस msgid "Enter a word or tag" msgstr "शब्द वा ट्याग प्रविष्ट गर्नुहोस्" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "त्रुटि" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ msgstr "सबैले उत्तर दिन सक्छन्" msgid "Everybody can reply to this post." msgstr "सबैले यो पोस्टमा उत्तर दिन सक्छन्।" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "सबै जना" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "सबै जना" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "सबै जना" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "तपाईंले पछ्याएका प्रयोगकर msgid "Exit fullscreen" msgstr "पूर्ण स्क्रीनबाट बाहिर जानुहोस्" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "प्रयोगकर्ताहरूको सूची विस्तार गर्नुहोस्" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "जसमा तपाईं उत्तर दिँदै हुनुहुन्छ, त्यो पोस्ट विस्तार वा सङ्कुचित गर्नुहोस्" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "एक रेकर्डमा URI समाधान हुने आशा गरियो" @@ -4277,10 +4536,10 @@ msgstr "स्पष्ट वा सम्भावित रूपमा ब msgid "Explicit sexual images." msgstr "स्पष्ट यौन चित्रहरू।" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "बाह्य मिडिया प्राथमिकताहरू" @@ -4331,18 +4587,22 @@ msgstr "बाह्य मिडिया प्राथमिकताहर msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "ह्यान्डल परिवर्तन गर्न असफल भयो। कृपया पुन: प्रयास गर्नुहोस्।" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "एप पासवर्ड सिर्जना गर्न असफल। कृपया पुन: प्रयास गर्नुहोस्।" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "स्टार्टर प्याक सिर्जना गर्न असफल" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "सन्देश मेटाउन असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "पोस्ट मेटाउन असफल। कृपया पुन: प्रयास गर्नुहोस्।" @@ -4394,24 +4655,24 @@ msgstr "पोस्ट मेटाउन असफल। कृपया प msgid "Failed to delete starter pack" msgstr "स्टार्टर प्याक मेटाउन असफल" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "फिड्स प्राथमिकताहरू लोड गर्न असफल" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "सुझाव गरिएका फिड्स लोड गर् msgid "Failed to load suggested follows" msgstr "सुझाव गरिएका फलोहरू लोड गर्न असफल भयो" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "पोस्ट पिन गर्न असफल भयो" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "अपील पठाउन असफल भयो, कृपया पुन: प्रयास गर्नुहोस्।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "थ्रेड म्यूट टगल गर्न असफल, कृपया पुन: प्रयास गर्नुहोस्" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "फिड्स अद्यावधिक गर्न असफल msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "सेटिङ्स अद्यावधिक गर्न असफल" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "फिड" @@ -4649,7 +4914,7 @@ msgstr "फिड" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "{0} द्वारा फिड" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "प्रतिक्रिया" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "फिड्स" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "अन्तिम रूप दिँदै" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "फलो गर्न खाताहरू फेला पार्नुहोस्" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "अनुसरण गर्नुहोस्" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} लाई अनुसरण गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "खाता अनुसरण गर्नुहोस्" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "पछाडि अनुसरण गर्नुहोस्" @@ -4916,7 +5183,7 @@ msgstr "पछाडि अनुसरण गर्नुहोस्" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "<0>{0} र <1>{1} ले अनुसरण गरेका छ msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1}, र {2, plural, one {# other} other {# others}} ले अनुसरण गरेका छन्" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "तपाईंले चिनेका @{0} का अनुसरणकर्ताहरू" @@ -4960,10 +5231,10 @@ msgstr "तपाईंले चिनेका अनुसरणकर्त #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "अनुसरण गर्दै" @@ -4977,12 +5248,12 @@ msgstr "अनुसरण गर्दै" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "{0} लाई अनुसरण गर्दै" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "अनुसरण फिड प्राथमिकताहरू" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "अनुसरण फिड प्राथमिकताहरू" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "तपाईलाई अनुसरण गर्छ" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "तपाईलाई अनुसरण गर्छ" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "फन्ट" @@ -5065,11 +5333,16 @@ msgstr "पासवर्ड बिर्सनुभयो?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "<0/> बाट" msgid "Generate a starter pack" msgstr "स्टार्टर प्याक उत्पन्न गर्नुहोस्" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "मद्दत प्राप्त गर्नुहोस्" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "आफ्नो प्रोफाइललाई अनुहार दिनुहोस्" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "फर्कनुहोस्" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "पिछले चरण पर जाएं" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "गृहपृष्ठमा जानुहोस्" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "गृहपृष्ठमा जानुहोस्" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "गृहपृष्ठमा जानुहोस्" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "{0} सँगको कुराकानीमा जानुहोस्" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "अर्कोमा जानुहोस्" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "प्रयोगकर्ताको प्रोफाइलमा जानुहोस्" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "ह्यान्डल धेरै लामो छ। कृपया छोटो प्रयास गर्नुहोस्।" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "ह्यासट्याग" @@ -5458,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "सहयोग" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "फोटो अपलोड गरेर वा अवतार सिर्जना गरेर आफू बोट होइन भनेर देखाउन सहयोग गर्नुहोस्।" @@ -5522,7 +5820,7 @@ msgstr "लुकेको सूची" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "लुकेको सूची" msgid "Hide" msgstr "लुकाउनुहोस्" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "लुकाउनुहोस्" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "मेरो लागि उत्तर लुकाउनुहोस्" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "यो पोस्ट लुकाउनुहोस्?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "प्रयोगकर्ता सूची लुकाउनुहोस्" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "हाम्रोमा समस्या छ, यो डेटा ल msgid "Hmmmm, we couldn't load that moderation service." msgstr "हाम्रोमा समस्या छ, हामीले त्यो मोडरेशन सेवा लोड गर्न सकेनौं।" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "पर्खनुहोस्! हामी बिस्तारै भिडियो पहुँच उपलब्ध गराउँदैछौं, र तपाईं अझै प्रतीक्षामा हुनुहुन्छ। छिट्टै पुनः प्रयास गर्नुहोस्।" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "गृहपृष्ठ" @@ -5721,7 +6019,7 @@ msgstr "म बुझ्छु" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "यदि वैकल्पिक पाठ लामो छ भने, यसको विस्तारित स्थिति परिवर्तन गर्नुहोस्।" @@ -5757,15 +6055,15 @@ msgstr "यदि तपाईं यो सूची हटाउनुहु msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "यदि तपाईं आफ्नो ह्यान्डल वा इमेल परिवर्तन गर्न प्रयास गरिरहनु भएको छ भने, निष्क्रिय गर्नु अघि गर्नुहोस्।" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "चित्र" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "अमान्य 2FA पुष्टि कोड।" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "अवैध प्रमाणिकरण कोड" @@ -6001,8 +6315,15 @@ msgstr "निमन्त्रणा कोड" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "निमन्त्रणा कोड स्वीकार गरिएन। कृपया यसलाई सहि तरिकाले प्रविष्ट गर्नुभएको छ कि छैन जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "जॉब आईडी: {0}" @@ -6083,6 +6419,11 @@ msgstr "जॉब आईडी: {0}" msgid "Jobs" msgstr "जॉबहरू" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "जॉबहरू" msgid "Join Bluesky" msgstr "ब्लूस्काईमा सामेल हुनुहोस्" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "कुरा गर्ने प्रक्रियामा साम msgid "Journalism" msgstr "पत्रकारिता" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "तपाईंको खातामा लेबलहरू" msgid "Labels on your content" msgstr "तपाईंको सामग्रीमा लेबलहरू" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "भाषा सेटिङ" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "पछिल्लो" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "यस चेतावनीबारे थप जान्नुहोस्।" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "ब्लूस्काईमा सार्वजनिक हुने विषयबारे थप जान्नुहोस्।" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "थप जान्नुहोस्।" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "छोड्नुहोस्" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "च्याट छोड्नुहोस्" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "वार्तालाप छोड्नुहोस्" @@ -6284,13 +6642,14 @@ msgstr "वार्तालाप छोड्नुहोस्" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "वार्तालाप छोड्नुहोस्" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "ब्लूस्काई छोड्दै" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "जान बाँकी।" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "हल्का" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6346,11 +6713,7 @@ msgstr "१० पोस्टहरू मन पराउनुहोस्" msgid "Like 10 posts to train the Discover feed" msgstr "डिस्कभर फीडलाई तालिम दिन १० पोस्ट मन पराउनुहोस्।" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "यस फीडलाई मन पराउनुहोस्।" @@ -6358,8 +6721,8 @@ msgstr "यस फीडलाई मन पराउनुहोस्।" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "मन पराउनेहरू" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "रुचिहरू" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "यस पोस्टमा रुचिहरू" @@ -6409,11 +6768,11 @@ msgstr "यस पोस्टमा रुचिहरू" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "सूची" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "सूची अनम्यूट गरियो" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "सूचीहरू" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "लोड हुँदैछ..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "लग" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "लोगो द्वारा <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "तपाईंले अनुसरण गर्ने फीड ह msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "तपाईंका म्यूट गरिएको शब्द र ट्यागहरू व्यवस्थापन गर्नुहोस्।" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "पढिएको रूपमा चिन्ह लगाउनुहोस्।" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "केही दर्शकहरूको लागि असुविधाजनक वा अनुचित हुन सक्ने मिडिया।" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "उल्लेख गरिएका प्रयोगकर्ता" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "सन्देश {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "सन्देश मेटाइएको।" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "सन्देश मेटाइएको।" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "सन्देश धेरै लामो छ।" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "सन्देशहरू" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "मोडरेशन" @@ -6894,7 +7247,7 @@ msgstr "मोडरेशन सूची अपडेट गरियो।" msgid "Moderation lists" msgstr "मोडरेशन सूचीहरू" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "मोडरेशन सूचीहरू" @@ -6903,7 +7256,7 @@ msgstr "मोडरेशन सूचीहरू" msgid "moderation settings" msgstr "मोडरेशन सेटिङ्स" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "मोडरेशन अवस्थाहरू" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "थप विकल्पहरू" @@ -6949,7 +7302,7 @@ msgstr "चलचित्रहरू" msgid "Music" msgstr "संगीत" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "म्यूट गर्नुहोस्" @@ -6965,8 +7318,8 @@ msgstr "म्यूट गर्नुहोस्" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "खाता म्यूट गर्नुहोस्" msgid "Mute accounts" msgstr "खाता म्यूट गर्नुहोस्" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "वार्ता म्यूट गर्नुहोस्" @@ -6994,7 +7347,7 @@ msgstr "सूची म्यूट गर्नुहोस्" msgid "Mute these accounts?" msgstr "यी खाता म्यूट गर्नुहोस्?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "यो शब्द केवल ट्यागहरूमा म् msgid "Mute this word until you unmute it" msgstr "तपाईंले अनम्यूट नगरेसम्म यो शब्द म्यूट गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "थ्रेड म्यूट गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "शब्दहरू र ट्यागहरू म्यूट गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "म्यूट गरिएका खाता" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "म्यूट गरिएका खाता" @@ -7062,6 +7419,10 @@ msgstr "म्यूट गरिएका शब्दहरू र ट्य 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "अर्को स्क्रिनमा जानुहोस्" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "तपाईंको प्रोफाइलमा जानुहोस्" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "केही छैन, मेरो लागि एक हैंडल सिर्जना गर्नुहोस्" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "नयाँ" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "नयाँ कुराकानी" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "नयाँ पोस्ट" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "नयाँ पोस्ट" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "समाचार" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "अर्को" msgid "Next image" msgstr "अर्को चित्र" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "कुनै फीडहरू फेला परेनन्। केहि अरू खोज्ने प्रयास गर्नुहोस्।" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "{0} लाई अब अनुसरण गरिरहेको छैन" @@ -7362,7 +7726,7 @@ msgstr "{0} लाई अब अनुसरण गरिरहेको छै msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "अहिलेसम्म कुनै सन्देश छैन" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "अहिले सम्म कुनै सूचना छैन!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "लेखकबाहेक कसैले पनि यो पोस्ट उद्धृत गर्न सक्दैन।" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "कुनै परिणाम छैन" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "कुनै परिणाम छैन" @@ -7446,8 +7810,8 @@ msgstr "कुनै परिणाम छैन" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "कुनै परिणाम भेटिएन" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "अ-यौन नग्नता" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "फेला परेन" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "साझेदारीको बारेमा नोट" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "सूचना सेटिङ्स" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "सूचना ध्वनीहरू" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "सूचनाहरू" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "अहिले" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "बन्द" @@ -7623,9 +7974,10 @@ msgstr "ठिक छ" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "हुन्छ" @@ -7648,35 +8000,35 @@ msgstr "मा<0><1/><2><3/>" msgid "Onboarding reset" msgstr "अनबोर्डिङ रिसेट" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "एक वा बढी GIF हरूमा वैकल्पिक पाठ छैन।" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "एक वा बढी चित्रहरूमा वैकल्पिक पाठ छैन।" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "एक वा बढी भिडियोहरूमा वैकल्पिक पाठ छैन।" @@ -7685,6 +8037,26 @@ msgstr "एक वा बढी भिडियोहरूमा वैकल msgid "Only {0} can reply." msgstr "केवल {0} उत्तर दिन सक्छ।" +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "केवल चित्र फाइलहरू समर्थित छन्" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "केवल WebVTT (.vtt) फाइलहरू समर्थित छन्" @@ -7703,6 +8085,10 @@ msgstr "केवल WebVTT (.vtt) फाइलहरू समर्थित 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "ओहो, केही गडबड भयो!" msgid "Oops!" msgstr "ओहो!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "अवतार सिर्जनाकर्ता खोल्नुहोस्" @@ -7720,12 +8106,17 @@ msgstr "अवतार सिर्जनाकर्ता खोल्नु msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "कुराकानी विकल्प खोल्नुहोस्" @@ -7739,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "इमोजी चयनकर्ता खोल्नुहोस्" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "फिड विकल्प मेनु खोल्नुहोस्" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "{niceUrl} को लिङ्क खोल्नुहोस्" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "पोस्ट विकल्प मेनु खोल्नुहोस्" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "स्टोरीबुक पृष्ठ खोल्नुहोस msgid "Open system log" msgstr "प्रणाली लग खोल्नुहोस्" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "आफ्नो पोस्टमा सामग्री चेता msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "डिबग प्रविष्टिका लागि थप विवरणहरू खोल्नुहोस्" @@ -7838,7 +8250,7 @@ msgstr "डिबग प्रविष्टिका लागि थप व msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "डिभाइसमा क्यामेरा खोल्नुहोस्" @@ -7858,22 +8270,24 @@ msgstr "कम्पोजर खोल्नुहोस्" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "नयाँ Bluesky खाता सिर्जना गर्न प्रवाह खोल्नुहोस्" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "आफ्नो विद्यमान Bluesky खातामा साइन इन गर्न प्रवाह खोल्नुहोस्" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "पासवर्ड रिसेट फारम खोल्नुह msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "यो प्रोफाइल खोल्नुहोस्" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "हाम्रा मोडरेटरहरूले रिपोर्टहरूको समीक्षा गरी तपाईंको Bluesky च्याट पहुँचलाई निष्क्रिय गर्ने निर्णय गरेका छन्।" @@ -8010,14 +8431,15 @@ msgstr "हाम्रा मोडरेटरहरूले रिपोर msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "पृष्ठ फेला परेन" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "भिडियो रोक्नुहोस्" msgid "People" msgstr "व्यक्ति" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "@{0} द्वारा अनुसरण गरिएका व्यक्ति" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "@{0} लाई अनुसरण गर्ने व्यक्ति" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "फोटोग्राफी" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8152,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "होममा पिन गर्नुहोस्" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "होममा पिन गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "तपाईंको प्रोफाइलमा पिन गर्नुहोस्" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "पिन गरियो" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8236,7 +8662,7 @@ msgstr "कृपया तपाईंको ह्यान्डल चयन msgid "Please choose your password." msgstr "कृपया तपाईंको पासवर्ड चयन गर्नुहोस्।" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "कृपया प्रमाणीकरण क्याप्चा पूरा गर्नुहोस्।" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "कृपया तपाईंको इमेल प्रविष् msgid "Please enter your invite code." msgstr "कृपया तपाईंको आमन्त्रण कोड प्रविष्ट गर्नुहोस्।" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "कृपया व्याख्या गर्नुहोस् कि तपाईंलाई किन लाग्छ यो लेबल {0} द्वारा गलत रूपमा लागू गरियो।" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "कृपया व्याख्या गर्नुहोस् कि तपाईंलाई किन लाग्छ तपाईंको च्याटहरू गलत रूपमा निष्क्रिय गरिए।" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "कृपया @{0} को रूपमा साइन इन गर्नुहोस्।" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "राजनीति" msgid "Porn" msgstr "पोर्न" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "पोस्ट" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "सबै पोस्ट गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} द्वारा पोस्ट" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "पोस्ट मेटियो" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "पोस्ट अपलोड गर्न असफल भयो। कृपया तपाईंको इन्टरनेट कनेक्शन जाँच गर्नुहोस् र पुनः प्रयास गर्नुहोस्।" @@ -8454,18 +8884,22 @@ msgstr "तपाईं द्वारा पोस्ट लुकाइएक msgid "Post interaction settings" msgstr "पोस्ट अन्तरक्रिया सेटिङ्स" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "पोस्टहरूलाई तिनीहरूको पाठ, msgid "Posts hidden" msgstr "पोस्टहरू लुकाइयो।" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "पुनः जडानको प्रयास गर्न थिच्नुहोस्।" -#: src/components/Error.tsx:61 +#: 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 "पुनः प्रयास गर्न थिच्नुहोस्।" @@ -8536,7 +8966,7 @@ msgstr "पुनः प्रयास गर्न थिच्नुहोस msgid "Press to view followers of this account that you also follow" msgstr "यस खाता का अनुयायीहरू जसलाई तपाईंले पनि पछ्याउनुभएको छ हेर्न थिच्नुहोस्।" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "गोपनीयता।" msgid "Privacy and security" msgstr "गोपनीयता र सुरक्षा" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "गोपनीयता र सुरक्षा" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "गोपनीयता नीति" @@ -8586,15 +9015,15 @@ msgstr "गोपनीयता नीति" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "भिडियो प्रशोधन हुँदैछ।" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "प्रशोधन हुँदैछ।" @@ -8602,10 +9031,10 @@ msgstr "प्रशोधन हुँदैछ।" msgid "profile" msgstr "प्रोफाइल" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "प्रोफाइल" @@ -8613,6 +9042,7 @@ msgstr "प्रोफाइल" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR कोड तपाईंको क्लिपबोर्डमा प्रतिलिपि गरियो!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR कोड डाउनलोड गरियो!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR कोड तपाईंको क्यामेरा रोलमा सुरक्षित गरियो!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "उद्धरण पोस्ट।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "उद्धरण पोस्ट पुन: संलग्न गरियो।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "उद्धरण पोस्ट सफलतापूर्वक अलग गरियो।" @@ -8711,12 +9138,12 @@ msgstr "उद्धरण पोस्टहरू अक्षम गरिए #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "उद्धरण।" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "यस पोस्टका उद्धरण।" @@ -8728,16 +9155,16 @@ msgstr "दर सीमा नाघियो – तपाईंले छो msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "पुनः जडान गर्नुहोस्" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "वार्तालाप पुनः लोड गर्नुहोस्" @@ -8863,6 +9304,8 @@ msgstr "वार्तालाप पुनः लोड गर्नुहो #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "{displayName} लाई स्टार्टर प्याकबाट हटाउनुहोस्" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "खाता हटाउनुहोस्" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "संलग्नक हटाउनुहोस्" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "अवतार हटाउनुहोस्" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "ब्यानर हटाउनुहोस्" @@ -8914,8 +9362,9 @@ msgstr "ब्यानर हटाउनुहोस्" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "एम्बेड हटाउनुहोस्" @@ -8929,12 +9378,12 @@ msgstr "फिड हटाउनुहोस्" msgid "Remove feed?" msgstr "फिड हटाउने?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "तस्बिर हटाउनुहोस्" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "पुनःपोस्ट हटाउनुहोस्" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "लेखकद्वारा हटाइयो" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "तपाईँद्वारा हटाइयो" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "उत्तरहरू" @@ -9104,14 +9552,14 @@ msgstr "उत्तरहरू निष्क्रिय गरियो" msgid "Replies to this post are disabled." msgstr "यो पोस्टका उत्तरहरू निष्क्रिय गरिएका छन्।" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "थ्रेड लेखकद्वारा उत्तर लुक msgid "Reply Hidden by You" msgstr "तपाईँद्वारा उत्तर लुकाइएको" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "उत्तर सेटिङ्स थ्रेडका लेखकद्वारा चयन गरिन्छ" @@ -9137,18 +9581,18 @@ msgstr "उत्तर सेटिङ्स थ्रेडका लेखक msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "उत्तर दृश्यता अद्यावधिक गरियो" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "उत्तर सफलतापूर्वक लुकाइएको" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "रिपोर्ट गर्नुहोस्" @@ -9157,20 +9601,20 @@ msgstr "रिपोर्ट गर्नुहोस्" msgid "Report account" msgstr "खाता रिपोर्ट गर्नुहोस्" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "रिपोर्ट संवाद" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "फिड रिपोर्ट गर्नुहोस्" @@ -9179,12 +9623,12 @@ msgstr "फिड रिपोर्ट गर्नुहोस्" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "सन्देश रिपोर्ट गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "पोस्ट रिपोर्ट गर्नुहोस्" @@ -9199,8 +9643,8 @@ msgstr "स्टार्टर प्याक रिपोर्ट गर् #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "यस फिडलाई रिपोर्ट गर्नुहोस्" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "यस सूचीलाई रिपोर्ट गर्नुहोस्" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "पुनःपोस्ट गर्नुहोस्" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "तपाईँद्वारा पुनःपोस्ट गरियो" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "यस पोस्टका पुनःपोस्टहरू" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "यस प्रदायकका लागि आवश्यक छ" msgid "Required in your region" msgstr "तपाईँको क्षेत्रमा आवश्यक छ" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "प्रारम्भिक अवस्थालाई रिसे msgid "Reset password" msgstr "पासवर्ड रिसेट गर्नुहोस्" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "अन्तिम कार्य पुन: प्रयास गर msgid "Retry" msgstr "पुन: प्रयास गर्नुहोस्" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "अघिल्लो पृष्ठमा फर्कनुहोस्" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "परिवर्तनहरू सुरक्षित गर्नुहोस्" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "चित्र सुरक्षित गर्नुहोस्" msgid "Save new handle" msgstr "नयाँ ह्यान्डल सुरक्षित गर्नुहोस्" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR कोड सुरक्षित गर्नुहोस्" @@ -9518,13 +9994,13 @@ msgstr "QR कोड सुरक्षित गर्नुहोस्" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "मेरो फिडहरूमा सुरक्षित गर्नुहोस्" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "सुरक्षित फिडहरू" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "तपाईंको फिडहरूमा सुरक्षित गरियो" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "नमस्ते भन्नुहोस्!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "विज्ञान" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "माथि स्क्रोल गर्नुहोस्" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "खोज्नुहोस्" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "प्रोफाइलहरूको लागि खोज्नु msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "रंग चयन गर्नुहोस्।" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "GIF चयन गर्नुहोस्।" msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" चयन गर्नुहोस्।" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "भाषा चयन गर्नुहोस्..." msgid "Select languages" msgstr "भाषाहरू चयन गर्नुहोस्।" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "तलका विकल्पहरूबाट आफ्नो रु msgid "Select your preferred language for translations in your feed." msgstr "आफ्नो फिडमा अनुवादका लागि मनपर्ने भाषा चयन गर्नुहोस्।" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "इमेल पठाउनुहोस्" @@ -9935,11 +10421,11 @@ msgstr "इमेल पठाउनुहोस्" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "प्रतिक्रिया पठाउनुहोस्" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "सन्देश पठाउनुहोस्" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "पोष्ट पठाउनुहोस्..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "प्रत्यक्ष सन्देश मार्फत पठाउनुहोस्" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "पासवर्ड रीसेटको लागि इमेल सेट गर्दछ" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "सेटिङ्स" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "यौन क्रियाकलाप वा कामोत्ते msgid "Sexually Suggestive" msgstr "यौन रूपले प्रस्तावनात्मक" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "साझा गर्नुहोस्" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "तथापि साझा गर्नुहोस्" @@ -10097,16 +10586,21 @@ msgstr "तथापि साझा गर्नुहोस्" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "लिङ्क साझा गर्नुहोस्" @@ -10114,6 +10608,11 @@ msgstr "लिङ्क साझा गर्नुहोस्" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "QR कोड साझा गर्नुहोस्" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10142,8 +10641,8 @@ msgstr "यस स्टार्टर प्याकलाई साझा #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "साझा गरिएको प्राथमिकता परीक्षक" @@ -10167,16 +10666,16 @@ msgstr "विकल्पात्मक पाठ देखाउनुहो #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "तथापि देखाउनुहोस्" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "यसको जस्तो कम देखाउनुहोस्" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "थप देखाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "यसको जस्तो थप देखाउनुहोस्" @@ -10246,8 +10745,8 @@ msgstr "उत्तरहरू देखाउनुहोस्" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "सबैको लागि उत्तर देखाउनुहोस्" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "चेतावनी देखाउनुहोस् र फीडबाट फिल्टर गर्नुहोस्" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "चर्चामा सामेल हुन साइन इन गर्नुहोस् वा आफ्नो खाता सिर्जना गर्नुहोस्!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "सूचीबद्ध नभएको खातामा लगइन गर्नुहोस्।" @@ -10337,8 +10842,12 @@ msgstr "सूचीबद्ध नभएको खातामा लगइन msgid "Sign in to Bluesky or create a new account" msgstr "ब्लूस्काईमा साइन इन गर्नुहोस् वा नयाँ खाता सिर्जना गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "साइन आउट गर्नुहोस्" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "साइन आउट गर्नुहोस्" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "साइन आउट गर्नुहोस्?" @@ -10391,7 +10900,7 @@ msgstr "छोड्नुहोस्" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "सानो" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "केहि गलत भयो!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "खेलकुद" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "नयाँ च्याट सुरु गर्नुहोस्" @@ -10582,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "{displayName} सँग च्याट सुरु गर्नुहोस्" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "स्टार्टर प्याक" @@ -10654,12 +11173,12 @@ msgstr "भण्डारण मेटिएको छ, अब तपाईं msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "स्टोरीबुक" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "पेश गर्नुहोस्" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "सदस्यता लिनुहोस्" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "सफलता!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "सहयोग" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "खाता स्विच गर्नुहोस्" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "सिस्टम लग" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "हटाउनका लागि ट्याप गर्नुहोस्" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "सेवाका नियमहरू" @@ -10939,7 +11484,7 @@ msgstr "पाठ र टैगहरू" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "पाठ इनपुट क्षेत्र" @@ -10981,9 +11526,9 @@ msgstr "त्यति हो, साथीहरू!" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "खाता अनब्लक गरेपछि तपाईं सँग अन्तर्क्रिया गर्न सक्षम हुनेछ।" @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति <0/> मा सारिएको छ।" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "थिम" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो।" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "सर्भरलाई सम्पर्क गर्न समस्या आयो, कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "पोस्टहरू प्राप्त गर्न समस्या आयो। पुन: प्रयास गर्न यहाँ ट्याप गर्नुहोस्।" @@ -11161,31 +11714,31 @@ msgstr "तपाईंको सेवा जानकारी प्राप msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "यो फीड मेटाउन समस्या आयो। कृपया आफ्नो इन्टरनेट जडान जाँच गर्नुहोस् र पुन: प्रयास गर्नुहोस्।" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "समस्या आयो! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "यी सेटिङ्स केवल फलोइङ फीडमा लागू हुन्छ।" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "यस {screenDescription} लाई चिह्नित गरिएको छ:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "यो अपील <0>{sourceName} मा पठाइनेछ।" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "यो अपील ब्लूस्काईको मोडरेशन सेवामा पठाइनेछ।" @@ -11263,7 +11824,7 @@ msgstr "यो अपील ब्लूस्काईको मोडरेश msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "यो च्याट डिस्कनेक्ट गरिएको थियो।" @@ -11310,7 +11881,11 @@ msgstr "यो सामग्री उपलब्ध छैन किनक msgid "This content is not viewable without a Bluesky account." msgstr "यो सामग्री बिना Bluesky खाता प्रयोग नगरी हेर्न सकिँदैन।" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "यो फिड खाली छ।" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "यो फिड अब अनलाइन छैन। हामी <0>Discover देखाउँदै छौं।" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "यो पोस्ट <0>{0} मा सिर्जना गरिएको दावी गर्दछ, तर पहिलो पटक Bluesky द्वारा <1>{1} मा देखिएको थियो।" @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "यस पोस्टको लेखकले उद्धरण पोस्टहरू निष्क्रिय गरेको छ।" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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 "यो जवाफ तपाईंको थ्रेडको तल लुकेको सेक्सनमा क्रमबद्ध गरिनेछ र subsequent जवाफहरूको लागि - तपाईं र अरूसँग - अधिसूचनाहरू म्यूट गरिनेछ।" -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "यस प्रयोगकर्तासँग कुनै फलोअर छैन।" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "यस प्रयोगकर्ताले तपाईंलाई ब्लक गरेको छ। तपाईं तिनीहरूको सामग्री हेर्न सक्दैन।" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "यसले @{0}लाई क्विक एक्सेस सूचीबाट हटाउनेछ।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "यसले तपाईंको पोस्टलाई यो उद्धरण पोस्टबाट सबै प्रयोगकर्ताहरूको लागि हटाउनेछ र यसलाई एक स्थानधारक सँग प्रतिस्थापित गर्नेछ।" @@ -11574,7 +12166,7 @@ msgstr "थ्रेड प्राथमिकताहरू" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "थ्रेड प्राथमिकताहरू" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "इमेल 2FA विधि बन्द गर्नका लागि कृपया आफ्नो इमेल ठेगानामा पहुँच प्रमाणित गर्नुहोस्।" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "शीर्ष" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "अनुवाद गर्नुहोस्" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:170 +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 "टीभी" @@ -11763,11 +12369,15 @@ msgstr "तपाईंको सेवा सम्पर्क गर्न msgid "Unable to delete" msgstr "हटाउन असमर्थ" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "ब्लक हटाउनुहोस्" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "ब्लक हटाउनुहोस्" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "खाता ब्लक हटाउनुहोस्" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "खाता ब्लक हटाउन चाहानुहुन्छ?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} लाई अनफोलो गर्नुहोस्" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "खाता अनफोलो गर्नुहोस्" @@ -11872,7 +12487,7 @@ msgstr "खाता अनफोलो गर्नुहोस्" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "खाता म्यूट हटाउनुहोस्" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "वार्तालाप म्यूट हटाउनुहोस्" @@ -11955,12 +12562,12 @@ msgstr "वार्तालाप म्यूट हटाउनुहोस msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "थ्रेड म्यूट हटाउनुहोस्" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "अनपिन गर्नुहोस्" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "होमबाट अनपिन गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "प्रोफाइलबाट अनपिन गर्नुहोस्" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "मोडरेशन सूची अनपिन गर्नुहोस्" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -12030,14 +12637,18 @@ msgstr "यस लेबलरबाट सदस्यता समाप्त msgid "Unsubscribed from list" msgstr "सूचीबाट सदस्यता समाप्त गरिएको" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "सूचीहरूमा <0>{displayName} अपडेट गर्नुहोस्" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "{domain} मा अपडेट गर्नुहोस्" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "कोट अट्याचमेन्ट अपडेट गर्न असफल" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "उत्तर दृश्यता अपडेट गर्न असफल" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "फोटो अपलोड गर्नुहोस्" @@ -12098,39 +12717,40 @@ msgstr "फोटो अपलोड गर्नुहोस्" msgid "Upload a text file to:" msgstr "टेक्स्ट फाइल अपलोड गर्नुहोस्:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "तस्विरहरू अपलोड गर्दै..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "लिंक थम्बनेल अपलोड गर्दै..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "भिडियो अपलोड गर्दै..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "{0} द्वारा प्रयोगकर्ता सूची" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "<0>@{0} द्वारा फलो गरिएका प्रय msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNS रेकर्ड प्रमाणित गर्नुहोस्" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "भिडियो" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "भिडियो प्रोसेस गर्न असफल" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "भिडियो फेला पारिएन।" msgid "Video settings" msgstr "भिडियो सेटिङ्गहरू" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "भिडियो अपलोड गरियो" @@ -12432,18 +13052,18 @@ msgstr "भिडियो: {0}" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "{0} को प्रोफाइल हेर्नुहोस्" @@ -12467,20 +13087,15 @@ msgstr "{0} को प्रोफाइल हेर्नुहोस्" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "अवरोधित प्रयोगकर्ताको प्रोफाइल हेर्नुहोस्" @@ -12503,10 +13118,18 @@ msgstr "विवरण हेर्नुहोस्" msgid "View full thread" msgstr "पूरा थ्रेड हेर्नुहोस्" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "यी लेबलहरूको जानकारी हेर्नुहोस्" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "प्रोफाइल हेर्नुहोस्" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "अवतार हेर्नुहोस्" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "@{0} द्वारा प्रदान गरिएको लेब msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "यो फिड मन पराउने प्रयोगकर्ताहरू हेर्नुहोस्" @@ -12596,8 +13219,8 @@ msgstr "तपाईंका म्युट गरिएको खाता msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "सामग्रीलाई चेतावनी दिनुहो msgid "Warn content and filter from feeds" msgstr "सामग्रीलाई चेतावनी दिनुहोस् र फीडहरूबाट फिल्टर गर्नुहोस्" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "हामी यो कुराकानी लोड गर्न असमर्थ भयौं।" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "हामी यो निर्धारण गर्न असमर्थ भयौं कि तपाईंलाई भिडियो अपलोड गर्न अनुमति छ कि छैन। कृपया पुन: प्रयास गर्नुहोस्।" @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "हामी तपाईंलाई तपाईंको खाता तयार भएपछि जानकारी दिनेछौं।" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "हामी नेटवर्क समस्या भोगिरहेका छौं, कृपया पुनः प्रयास गर्नुहोस्।" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "हामीलाई खेद छ! तपाईंले जवाफ दिइरहेको पोस्ट मेटाइ सकेको छ।" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "हामीलाई खेद छ! हामी तपाईंले खोजेको पृष्ठ फेला पार्न सक्दैनौं।" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "तपाईंको स्टार्टर प्याकलाई के भन्न चाहनुहुन्छ?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "के भइरहेको छ?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "यस पोस्टसँग को को अन्तरक्रिया गर्न सक्छ?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "को को जवाफ दिन सक्छ?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "वोप्स!" @@ -12939,7 +13566,7 @@ msgstr "यो स्टार्टर प्याक किन समीक msgid "Why should this user be reviewed?" msgstr "यो प्रयोगकर्ता किन समीक्षा गर्नुपर्छ?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "पोस्ट लेख्नुहोस्" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "तपाईंको जवाफ लेख्नुहोस्" @@ -12978,7 +13605,8 @@ msgstr "लेखकहरू" msgid "Wrong DID returned from server. Received: {0}" msgstr "सर्भरबाट गलत DID प्राप्त भयो। प्राप्त: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "हो, यो स्टार्टर प्याक मेटाउनुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "हो, अलग गर्नुहोस्" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "हो, लुकेको राख्नुहोस्" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "तपाईंलाई भिडियो अपलोड गर्न अनुमति छैन।" @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "तपाईंले जुन सेटिङ पनि छनोट गर्नुभएको भए पनि चलिरहेको वार्तालापलाई जारी राख्न सक्नुहुन्छ।" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "तपाईं अब नयाँ पासवर्डसँग साइन इन गर्न सक्नुहुन्छ।" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "तपाईं आफ्नो खाता पुनः सक्र 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "तपाईंको कुनै पनि बचत गरिएक msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "तपाईंले भिडियो अपलोडको लागि अस्थायी रूपमा सीमा पार गर्नुभयो। कृपया पछि पुनः प्रयास गर्नुहोस्।" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "तपाईं केवल ३ फीडहरू मात्र थप्न सक्नुहुन्छ।" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "तपाईंलाई कम्तिमा सात अन्य व्यक्तिहरूलाई फलो गर्नुपर्छ ताकि starter pack सिर्जना गर्न सकिन्छ।" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "QR कोड बचत गर्नको लागि तपाईंलाई आफ्नो फोटो लाइब्रेरीमा पहुँच दिनु पर्छ।" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "तपाईंलाई तपाईंका सबै खाता हरुबाट साइन आउट गरिनेछ।" @@ -13378,11 +14038,11 @@ msgstr "तपाईंलाई तपाईंका सबै खाता msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "तपाईं अब यस थ्रेडको लागि सूचनाहरू प्राप्त गर्न सक्नुहुन्न।" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "तपाईं अब यस थ्रेडको लागि सूचनाहरू प्राप्त गर्नुहुनेछ।" @@ -13390,12 +14050,12 @@ msgstr "तपाईं अब यस थ्रेडको लागि सू 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "तपाईं पंक्तिमा हुनुहुन्छ।" @@ -13463,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "तपाईंले आफ्नो फीडको अन्त्यमा पुग्नुभयो! थप खाता फलो गर्नको लागि खोजी गर्नुहोस्।" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै बाइट्स)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "तपाईंले भिडियो अपलोडको लागि आफ्नो दैनिक सीमा पुग्नुभयो (धेरै भिडियो)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "तपाईंको खाता अझै भिडियो अपलोड गर्नको लागि पर्याप्त पुरानो छैन। कृपया पछि पुनः प्रयास गर्नुहोस्।" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "तपाईंको खाता रिपोजिटोरी, जसमा सबै सार्वजनिक डेटा रेकर्डहरू समावेश छन्, \"CAR\" फाइलको रूपमा डाउनलोड गर्न सकिन्छ। यस फाइलमा मिडिया एम्बेडहरू (जस्तै चित्र) वा तपाईंको निजी डेटा समावेश छैन, जसलाई अलग गरेर ल्याउन आवश्यक छ।" @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "तपाईंको जन्म मिति" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "तपाईंको च्याटहरू अक्षम गरिएको छ" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "तपाईंको ईमेल अमान्य देखिन्छ।" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "तपाईंको फलोइङ फीड खाली छ! के msgid "Your full handle will be <0>@{0}" msgstr "तपाईंको पूर्ण ह्याण्डल हुनेछ <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "तपाईंका म्यूट शब्दहरू" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 9c77a25a43..786689d560 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(bevat ingesloten inhoud)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuut} other {# minuten}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# maand} other {# maanden}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# seconde} other {# seconden}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# ongelezen item} other {# ongelezen items}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>in <1>tekst en tags" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} van 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} heeft gereageerd met {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatar van {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# ongelezen item} other {# ongelezen items}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {uur} other {uur}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuut} other {minuten}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben je gevolgd" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} en <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben zich geregistreerd met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} volgde je" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} volgde je terug" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} vond je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} vond je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} heeft zijn/haar verificatie van je account verwijderd" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} heeft je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registreerde zich met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} heeft jou geverifieerd" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} volgden je" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} vonden je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} en {additionalAuthorsCount, plural, one {{formattedAuthorsCount} andere} other {{formattedAuthorsCount} anderen}} hebben zich geregistreerd met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} volgde je" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} volgde je terug" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} vond je gepersonaliseerde feed leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} vond je bericht leuk" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} heeft zijn/haar verificatie van je account verwijderd" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} heeft je bericht opnieuw geplaatst" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} heeft zich geregistreerd met je startpakket" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} heeft jou geverifieerd" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} heeft jou geverifieerd" msgid "{following} following" msgstr "{following} volgend" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} kan geen privébericht ontvangen" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# uur {minutesString}} other {# uur {minutesString} msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# uur} other {# uur}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# ongelezen item} other {# ongelezen items}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "{userName} is geverifieerd" msgid "{userName}'s verifications" msgstr "Verificaties van {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, en {2, plural, one {# ander} other {# anderen}} #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {volger} other {volgers}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {volgend} other {volgend}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {vind-ik-leuk} other {vind-ik-leuks}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citaat} other {citaten}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {herplaatsing} other {herplaatsingen}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} leden" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Een nieuwe vorm van verificatie" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Accepteren" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Accepteren" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Chatverzoek accepteren" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Verzoek accepteren" @@ -860,17 +950,26 @@ msgstr "Verzoek accepteren" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Toegankelijkheid" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Toegankelijkheidsinstellingen" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Toegankelijkheidsinstellingen" msgid "Account" msgstr "Account" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Account geblokkeerd" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Account gevolgd" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Account verwijderd uit snelle toegang" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Account gedeblokkeerd" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Account ontvolgd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Account negeren opgeheven" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Accounts met een blauw vinkje <0><1/> kunnen anderen verifiëren. Deze vertrouwde verifieerders worden geselecteerd door Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Toevoegen" @@ -999,8 +1094,8 @@ msgstr "Account toevoegen" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Optioneel alt-tekst toevoegen" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Nog een account toevoegen" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Nog een bericht toevoegen" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "App-wachtwoord toevoegen" msgid "Add App Password" msgstr "App-wachtwoord toevoegen" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Emoji-reactie toevoegen" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Voeg meer informatie toe (optioneel)" @@ -1091,6 +1186,10 @@ msgstr "Mensen toevoegen" msgid "Add people to list" msgstr "Personen toevoegen aan lijst" +#: 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 "Reactie toevoegen" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Aanvullende informatie (maximaal 300 tekens)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@voorbeeld.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Alle" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Geef toegang tot je privéberichten" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Al aangemeld als @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alt-tekst" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alt-tekst beschrijft afbeeldingen voor blinde en slechtziende gebruikers en biedt iedereen context." @@ -1387,7 +1486,7 @@ msgstr "Er is een fout opgetreden" msgid "An error occurred" msgstr "Er is een fout opgetreden" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Er is een fout opgetreden tijdens het comprimeren van de video." @@ -1421,7 +1520,8 @@ msgstr "Er is een fout opgetreden tijdens het laden van de video. Probeer het op msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Er is een fout opgetreden bij het opslaan van de QR-code!" @@ -1432,11 +1532,11 @@ msgstr "Er is een fout opgetreden bij het opslaan van de QR-code!" msgid "An error occurred while trying to follow all" msgstr "Er is een fout opgetreden tijdens het proberen om allen te volgen" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Een probleem niet vermeld in deze opties" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Er is een probleem opgetreden bij het openen van de chat" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Er is een probleem opgetreden. Probeer het opnieuw." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "App-wachtwoordnamen moeten minimaal 4 tekens lang zijn" msgid "App passwords" msgstr "App-wachtwoorden" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "App-wachtwoorden" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Bezwaar ingediend" @@ -1632,14 +1740,14 @@ msgstr "Bezwaar maken tegen schorsing" msgid "Appeal Suspension" msgstr "Bezwaar maken tegen schorsing" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Bezwaar maken tegen deze beslissing" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Gearchiveerd van {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Gearchiveerd bericht" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Weet je zeker dat je het app-wachtwoord \"{0}\" wilt verwijderen?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Weet je zeker dat je dit startpakket wilt verwijderen?" msgid "Are you sure you want to discard your changes?" msgstr "Weet je zeker dat je je wijzigingen ongedaan wilt maken?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Weet je zeker dat je dit gesprek wilt verlaten?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Weet je zeker dat je dit gesprek wilt verlaten? Je privéberichten worden voor jou verwijderd, maar niet voor de andere deelnemer." +#: src/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 "Weet je zeker dat je dit uit jouw feeds wilt verwijderen?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Weet je zeker dat je dit bericht wilt weggooien?" @@ -1724,8 +1838,8 @@ msgstr "Kunst" msgid "Artistic or non-erotic nudity." msgstr "Artistieke of niet-erotische naaktbeelden." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Onderwerp voor algoritme toewijzen" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Video's en GIF's automatisch afspelen" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Terug" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Terug naar chats" @@ -1832,7 +1948,7 @@ msgstr "Je moet eerst je e-mailadres bevestigen voordat je een bericht kunt plaa 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Je moet eerst je e-mailadres bevestigen voordat je dit chatverzoek kunt accepteren." @@ -1840,13 +1956,14 @@ msgstr "Je moet eerst je e-mailadres bevestigen voordat je dit chatverzoek kunt msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Je moet eerst je e-mailadres bevestigen voordat je een andere gebruiker een privébericht mag sturen." @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Verjaardag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blokkeren" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Account blokkeren" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Account blokkeren?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Accounts blokkeren" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Blokkeerlijst" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blokkeren of rapporteren" @@ -1936,9 +2047,9 @@ msgstr "Deze accounts blokkeren?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Gebruiker blokkeren" @@ -1946,9 +2057,9 @@ msgstr "Gebruiker blokkeren" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Gebruiker blokkeren" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Geblokkeerd" @@ -1964,14 +2075,12 @@ msgstr "Geblokkeerd" msgid "Blocked accounts" msgstr "Geblokkeerde accounts" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Geblokkeerde accounts" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je niet vermelden en niet op een andere manier met je communiceren." @@ -1987,7 +2096,7 @@ msgstr "Blokkeren voorkomt niet dat deze labeler labels op je account plaatst." msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokkeren is openbaar. Geblokkeerde accounts kunnen niet reageren op jouw gesprekken, je vermelden en niet anderszins met je communiceren." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blokkeren voorkomt niet dat er labels op jouw account worden toegepast, maar het zorgt er wel voor dat dit account niet meer op jouw gesprekken kan reageren en niet meer met je kan communiceren." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan de echtheid van de geclaimde datum niet bevestigen." @@ -2029,7 +2138,7 @@ msgstr "Bluesky is leuker met vrienden!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Servicevoorwaarden van Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky kiest een aantal aanbevolen accounts van personen in je netwerk. msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky toont je profiel en berichten niet aan afgemelde gebruikers. Andere apps honoreren dit verzoek mogelijk niet. Dit maakt je account niet privé." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky verifieert proactief bekende en authentieke accounts." @@ -2081,6 +2194,10 @@ msgstr "Boeken" 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" @@ -2137,24 +2254,34 @@ msgstr "Zakelijk" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Door {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Door <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Door een account aan te maken ga je akkoord met de <0>Servicevoorwaarden msgid "By you" msgstr "Door jou" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Camera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Camera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Camera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Camera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Annuleren" @@ -2248,9 +2384,9 @@ msgstr "Heractivering annuleren en afmelden" msgid "Cancel search" msgstr "Zoeken annuleren" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Kan geen interactie hebben met een geblokkeerde gebruiker" @@ -2264,7 +2400,7 @@ msgstr "Ondertiteling (.vtt)" msgid "Captions & alt text" msgstr "Ondertiteling en alt-tekst" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "App-taal wijzigen" msgid "Change Handle" msgstr "Handle wijzigen" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Moderatieservice wijzigen" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Reden van melding wijzigen" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chat verwijderd" @@ -2361,6 +2497,12 @@ msgstr "Chat verwijderd" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chat genegeerd" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Chatverzoeken" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Chatinstellingen" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Chatinstellingen" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chat niet meer genegeerd" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Deze kleur kiezen als je avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Klik hier om het verificatieproces opnieuw te starten." @@ -2567,7 +2718,7 @@ msgstr "Klik hier om het verificatieproces opnieuw te starten." msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Klik hier om je e-mailadres te wijzigen" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Klik om mislukt privébericht opnieuw te proberen" @@ -2594,28 +2745,30 @@ msgstr "Klik om mislukt privébericht opnieuw te proberen" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Klik om mislukt privébericht opnieuw te proberen" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Sluiten" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Actief dialoogvenster sluiten" @@ -2647,6 +2800,10 @@ msgstr "Actief dialoogvenster sluiten" msgid "Close alert" msgstr "Waarschuwing sluiten" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Paneel onderaan sluiten" @@ -2657,8 +2814,10 @@ msgstr "Paneel onderaan sluiten" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Dialoogvenster sluiten" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Afbeelding sluiten" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Menu sluiten" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Dit dialoogvenster sluiten" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Sluit waarschuwing voor bijwerken wachtwoord" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Gebruikerslijst inklappen" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Klapt de gebruikerslijst voor een bepaalde melding in" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Strips" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Gemeenschapsrichtlijnen" @@ -2740,12 +2915,12 @@ msgstr "Voltooi de uitdaging" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Nieuw bericht opstellen" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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}}" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Video comprimeren..." @@ -2780,7 +2955,7 @@ msgstr "Geconfigureerd in <0>moderatie-instellingen ." msgid "Confirm" msgstr "Bevestigen" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contact opnemen met ondersteuning" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Inhoud & media" msgid "Content and media" msgstr "Inhoud en media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Inhoud en media" @@ -2889,7 +3064,7 @@ msgstr "Contextmenu-achtergrond, klik om het menu te sluiten." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Verder lezen..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Doorgaan naar volgende stap" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Gesprek verwijderd" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Gesprek verwijderd" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Buildversie gekopieerd naar klembord" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Gekopieerd!" msgid "Copies build version to clipboard" msgstr "Kopieert buildversie naar klembord" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopiëren" @@ -2997,6 +3184,11 @@ msgstr "DID kopiëren" msgid "Copy host" msgstr "Host kopiëren" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Link naar lijst kopiëren" msgid "Copy link to post" msgstr "Link naar bericht kopiëren" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Tekst privébericht kopiëren" @@ -3037,12 +3229,12 @@ msgstr "Tekst privébericht kopiëren" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Berichttekst kopiëren" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR-code kopiëren" @@ -3052,11 +3244,15 @@ msgstr "TXT-recordwaarde kopiëren" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Auteursrechtbeleid" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Kan chat niet verlaten" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Kan feed niet laden" @@ -3100,7 +3308,11 @@ msgstr "Kan feed niet laden" msgid "Could not load list" msgstr "Kan lijst niet laden" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Kan chat niet negeren" @@ -3108,11 +3320,19 @@ msgstr "Kan chat niet negeren" msgid "Could not process your video" msgstr "Kon je video niet verwerken" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Aanmaken" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Maak een startpakket" @@ -3174,13 +3394,14 @@ msgstr "Maak een startpakket voor mij" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Een account aanmaken" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "In plaats daarvan een avatar maken" @@ -3206,7 +3427,7 @@ msgstr "In plaats daarvan een avatar maken" msgid "Create another" msgstr "Nog een aanmaken" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Account aanmaken" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Melding maken voor {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "{0} gemaakt" @@ -3270,6 +3492,10 @@ msgstr "Maker is geblokkeerd" msgid "Culture" msgstr "Cultuur" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Donker thema" msgid "Date of birth" msgstr "Geboortedatum" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Standaard" msgid "Default icons" msgstr "Standaardpictogrammen" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "App-wachtwoord verwijderen" msgid "Delete app password?" msgstr "App-wachtwoord verwijderen?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Chat verwijderen" @@ -3378,19 +3612,19 @@ msgstr "Chat verwijderen" msgid "Delete chat declaration record" msgstr "Chatdeclaratierecord verwijderen" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Gesprek verwijderen" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Voor mij verwijderen" @@ -3399,11 +3633,11 @@ msgstr "Voor mij verwijderen" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Privébericht verwijderen" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Privébericht voor mij verwijderen" @@ -3411,9 +3645,9 @@ msgstr "Privébericht voor mij verwijderen" msgid "Delete my account" msgstr "Mijn account verwijderen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Bericht verwijderen" @@ -3430,17 +3664,17 @@ msgstr "Startpakket verwijderen?" msgid "Delete this list?" msgstr "Deze lijst verwijderen?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Dit bericht verwijderen?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Verwijderd" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Verwijderd account" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Beschrijvende alt-tekst" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Citaat loskoppelen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Citaatbericht loskoppelen?" @@ -3507,13 +3741,13 @@ msgstr "Dialoog: aanpassen wie op dit bericht mag reageren" msgid "Dim" msgstr "Dimmen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Uitschakelen e-mail 2FA" msgid "Disable haptic feedback" msgstr "Uitschakelen voelbare feedback" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Uitgeschakeld" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Weggooien" msgid "Discard changes?" msgstr "Wijzigingen weggooien?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Bericht weggooien?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Ontdek nieuwe feeds" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Sluiten" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Fout negeren" @@ -3642,6 +3877,10 @@ msgstr "Deze sectie sluiten" 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" @@ -3673,7 +3912,7 @@ msgstr "Bevat geen bloot." msgid "Domain verified!" msgstr "Domein geverifieerd!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Gereed" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Dubbeltik om het dialoogvenster te sluiten" @@ -3737,19 +3981,14 @@ msgstr "Dubbeltik om het dialoogvenster te sluiten" 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 "Bluesky downloaden" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR-bestand downloaden" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR-bestand downloaden" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Duur: " +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "bijvoorbeeld alice" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Bewerken" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Avatar bewerken" @@ -3847,19 +4102,19 @@ msgstr "Avatar bewerken" msgid "Edit Feeds" msgstr "Feeds bewerken" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Afbeelding bewerken" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Interactie-instellingen bewerken" @@ -3868,7 +4123,16 @@ msgstr "Interactie-instellingen bewerken" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Mijn feeds bewerken" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Personen bewerken" @@ -3912,12 +4171,12 @@ msgstr "Berichtinteractie-instellingen bewerken" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Profiel bewerken" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Profiel bewerken" @@ -3925,7 +4184,8 @@ msgstr "Profiel bewerken" msgid "Edit starter pack" msgstr "Startpakket bewerken" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Bewerk wie kan reageren" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Je startpakket bewerken" @@ -3971,7 +4231,7 @@ msgstr "E-mailadres" msgid "Email Resent" msgstr "E-mail opnieuw verzonden" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Sluit dit bericht in op je website. Kopieer simpelweg het volgende fragm msgid "Embedded video player" msgstr "Geïntegreerde videospeler" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Inschakelen" @@ -4025,7 +4285,7 @@ msgstr "Inhoud voor volwassenen inschakelen" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "Externe media inschakelen" msgid "Enable media players for" msgstr "Mediaspelers inschakelen voor" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Vul een wachtwoord in" msgid "Enter a word or tag" msgstr "Vul een woord of tag in" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "Opent volledig scherm" msgid "Entertainment" msgstr "Entertainment" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fout" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Iedereen" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Iedereen" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Iedereen" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Gebruikers uitsluiten die je volgt" msgid "Exit fullscreen" msgstr "Volledig scherm afsluiten" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Alt-tekst uitklappen" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Gebruikerslijst uitklappen" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Uitklappen of inklappen van het volledige bericht waar je op reageert" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "Klapt berichttekst uit of in" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Verwacht werd dat uri omgezet kon worden naar een record" @@ -4277,10 +4536,10 @@ msgstr "Expliciete of mogelijk aanstootgevende media." msgid "Explicit sexual images." msgstr "Expliciete seksuele afbeeldingen." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Verkennen" @@ -4289,11 +4548,8 @@ msgstr "Verkennen" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Externe mediavoorkeuren" @@ -4331,18 +4587,22 @@ msgstr "Externe mediavoorkeuren" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Accepteren van chat mislukt" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Toevoegen van emoji-reactie mislukt" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Kon de handle niet wijzigen. Probeer het nog eens." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Kon app-wachtwoord niet aanmaken. Probeer het nog eens." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Aanmaken van gesprek mislukt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Het aanmaken van het startpakket is mislukt" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Verwijderen van chat mislukt" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Privébericht kan niet worden verwijderd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Bericht verwijderen mislukt, probeer het opnieuw" @@ -4394,24 +4655,24 @@ msgstr "Bericht verwijderen mislukt, probeer het opnieuw" msgid "Failed to delete starter pack" msgstr "Het verwijderen van het startpakket is mislukt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Het laden van feedvoorkeuren is mislukt" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Het laden van voorgestelde feeds is mislukt" msgid "Failed to load suggested follows" msgstr "Het is niet gelukt om een lijst te laden met volgsuggesties" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Vastzetten van bericht is mislukt" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "Verwijderen van verificatie mislukt" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Het indienen van bezwaar is mislukt, probeer het opnieuw." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Het wisselen tussen wel/niet-negeren van het gesprek is mislukt, probeer het opnieuw" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Het is niet gelukt om de feeds bij te werken" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Het is niet gelukt om de instellingen bij te werken" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed door {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Feedmenu" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Afronding" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Zoek accounts om te volgen" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Mensen zoeken om te volgen" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Zoek berichten, gebruikers en feeds op Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Volgen" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} volgen" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Account volgen" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Terugvolgen" @@ -4916,7 +5183,7 @@ msgstr "Terugvolgen" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Gevolgd door <0>{0} en <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Gevolgd door <0>{0}, <1>{1}, en {2, plural, one {# ander} other {# anderen}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Volgers van @{0} die je kent" @@ -4960,10 +5231,10 @@ msgstr "Volgers die je kent" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Volgend" @@ -4977,12 +5248,12 @@ msgstr "Volgend" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Volgt {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Je volgt {handle}" msgid "Following feed preferences" msgstr "Volgfeedvoorkeuren" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Volgfeedvoorkeuren" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Volgt jou" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Volgt jou" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Lettertype" @@ -5065,11 +5333,16 @@ msgstr "Wachtwoord vergeten?" msgid "Forgot?" msgstr "Vergeten?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "Van <0/>" msgid "Generate a starter pack" msgstr "Een startpakket genereren" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Hulp krijgen" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Aan de slag" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Geef je profiel een gezicht" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Terug" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Terug" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Terug naar de vorige stap" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Naar startpagina" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Naar startpagina" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Naar startpagina" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Ga naar het profiel van {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Naar gesprek met {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Naar volgende" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Naar profiel" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Naar gebruikersprofiel" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Handle te lang. Probeer een kortere." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Heb je een code? <0>Klik hier." @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Hulp" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Verborgen lijst" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Verborgen lijst" msgid "Hide" msgstr "Verbergen" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Verbergen" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Bericht voor mij verbergen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Reactie voor iedereen verbergen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Reactie voor mij verbergen" @@ -5577,19 +5875,19 @@ msgstr "Deze kaart verbergen" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Dit bericht verbergen?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Deze reactie verbergen?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Populaire onderwerpen verbergen?" msgid "Hide trending videos?" msgstr "Populaire video’s verbergen?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Gebruikerslijst verbergen" @@ -5620,6 +5918,10 @@ msgstr "Verificatiebadges verbergen" msgid "Hides the content" msgstr "Verbergt de inhoud" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Hmm, het lijkt erop dat we problemen hebben met het laden van deze gegev msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, we kunnen die moderatieservice niet laden." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Wacht even! We geven geleidelijk toegang tot video en je staat nog steeds in de rij. Kom snel terug!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Startpagina" @@ -5721,7 +6019,7 @@ msgstr "Ik begrijp het" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Als de alt-tekst lang is wordt de alt-tekst in- of uitgeklapt" @@ -5757,15 +6055,15 @@ msgstr "Als je deze lijst verwijdert kun je deze niet meer herstellen." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Als je een eigen domein hebt, kun je dat als handle gebruiken. Zo kun je je identiteit zelf verifiëren. <0>Klik hier voor meer informatie." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "<0>Klik hier als je je e-mailadres wilt wijzigen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Als je dit bericht verwijdert kun je het niet meer herstellen." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Als je je e-mailadres wijzigt, wordt 2FA via e-mail uitgeschakeld." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "Als je een ontwikkelaar bent, kun je je eigen server hosten." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Als je jouw handle of e-mailadres probeert te wijzigen, doe dit dan voordat je deactiveert." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Afbeelding" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Afbeeldingencache gewist, {0} vrijgemaakt" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Ongeldige 2FA-bevestigingscode." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Ongeldige handle. Probeer een andere." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Ongeldige verificatiecode" @@ -6001,8 +6315,15 @@ msgstr "Uitnodigingscode" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Nodig mensen uit voor dit startpakket!" +#: 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 "Nodig je vrienden uit om je favoriete feeds en personen te volgen" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Taak-ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Taak-ID: {0}" msgid "Jobs" msgstr "Vacatures" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Vacatures" msgid "Join Bluesky" msgstr "Lid worden van Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Aan het gesprek deelnemen" msgid "Journalism" msgstr "Journalistiek" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Labels op je account" msgid "Labels on your content" msgstr "Labels op je inhoud" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Taalinstellingen" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Nieuwste" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Leer meer over deze waarschuwing" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Leer meer over wat openbaar is op Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Leer meer." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Verlaten" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Chat verlaten" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Gesprek verlaten" @@ -6284,13 +6642,14 @@ msgstr "Gesprek verlaten" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Gesprek verlaten" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Je verlaat Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "nog te gaan." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Licht" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Leuk" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Leuk ({0, plural, one {# vind-ik-leuk} other {# vind-ik-leuks}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Vind deze feed leuk" @@ -6358,8 +6721,8 @@ msgstr "Vind deze feed leuk" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Leuk gevonden door" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {0, plural, one {# gebruiker} other {# gebruikers}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Leuk gevonden door {likeCount, plural, one {# gebruiker} other {# gebruikers}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Vind-ik-leuks" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Vind-ik-leuks op dit bericht" @@ -6409,11 +6768,11 @@ msgstr "Vind-ik-leuks op dit bericht" msgid "Linear" msgstr "Lineair" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lijst" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lijst niet-genegeerd" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Lijsten" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Laden..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Logboek" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo door @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo door <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Het lijkt erop dat je een feed mist die je volgt.<0>Klik hier om er een msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Beheer je genegeerde woorden en tags" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Markeren als gelezen" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "vermelde gebruikers" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Vermeldingen" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Privébericht verzenden naar {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Privébericht verwijderd" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Privébericht verwijderd" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "Privébericht is te lang" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Berichtopties" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Privéberichten" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderatie" @@ -6894,7 +7247,7 @@ msgstr "Moderatielijst bijgewerkt" msgid "Moderation lists" msgstr "Moderatielijsten" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderatielijsten" @@ -6903,7 +7256,7 @@ msgstr "Moderatielijsten" msgid "moderation settings" msgstr "moderatie-instellingen" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderatietoestanden" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Meer opties" @@ -6949,7 +7302,7 @@ msgstr "Films" msgid "Music" msgstr "Muziek" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Negeren" @@ -6965,8 +7318,8 @@ msgstr "Negeren" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Account negeren" msgid "Mute accounts" msgstr "Accounts negeren" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Gesprek negeren" @@ -6994,7 +7347,7 @@ msgstr "Negeerlijst" msgid "Mute these accounts?" msgstr "Deze accounts negeren?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Dit woord alleen in tags negeren" msgid "Mute this word until you unmute it" msgstr "Dit woord negeren totdat je het negeren opheft" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Gesprek negeren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Woorden en tags negeren" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Genegeerde accounts" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Genegeerde accounts" @@ -7062,6 +7419,10 @@ msgstr "Genegeerde woorden en tags" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Negeren is privé. Genegeerde accounts kunnen met je communiceren, maar je ziet hun berichten niet en ontvangt geen meldingen van hen." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Navigeert naar het volgende scherm" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navigeert naar je profiel" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Maakt niet uit, maak een handle voor mij aan" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nieuw" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nieuwe chat" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nieuw bericht" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nieuw bericht" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Nieuws" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Volgende" msgid "Next image" msgstr "Volgende afbeelding" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Je volgt {0} niet meer" @@ -7362,7 +7726,7 @@ msgstr "Je volgt {0} niet meer" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Nog geen privéberichten" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Nog geen meldingen!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Alleen de auteur mag dit bericht citeren." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Geen resultaat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Geen resultaten" @@ -7446,8 +7810,8 @@ msgstr "Geen resultaten" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Geen resultaten gevonden" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Niet-seksuele naaktbeelden" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Niet gevonden" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Opmerking over delen" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Meldinginstellingen" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Meldingsgeluiden" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Meldingen" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nu" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Uit" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Oké" @@ -7648,35 +8000,35 @@ msgstr "op<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Introductie opnieuw tonen" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Bij een of meer afbeeldingen ontbreekt de alt-tekst." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Alt-tekst ontbreekt bij een of meer video's." @@ -7685,6 +8037,26 @@ msgstr "Alt-tekst ontbreekt bij een of meer video's." msgid "Only {0} can reply." msgstr "Alleen {0} kan reageren." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Alleen afbeeldingsbestanden worden ondersteund" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Alleen WebVTT (.vtt)-bestanden worden ondersteund" @@ -7703,6 +8085,10 @@ msgstr "Alleen WebVTT (.vtt)-bestanden worden ondersteund" msgid "Oops, something went wrong!" msgstr "Oeps, er is iets misgegaan!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Oeps, er is iets misgegaan!" msgid "Oops!" msgstr "Oeps!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Avatar-maker openen" @@ -7720,12 +8106,17 @@ msgstr "Avatar-maker openen" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Gespreksopties openen" @@ -7739,16 +8130,16 @@ msgstr "Menu openen" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Emoji-kiezer openen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Menu Feedopties openen" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Link naar {niceUrl} openen" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Menu met berichtopties openen" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Verhalenboekpagina openen" msgid "Open system log" msgstr "Systeemlogboek openen" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Opent een dialoogvenster om een inhoudswaarschuwing aan je bericht toe t msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Opent aanvullende details voor een debug-item" @@ -7838,7 +8250,7 @@ msgstr "Opent aanvullende details voor een debug-item" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Opent camera op apparaat" @@ -7858,22 +8270,24 @@ msgstr "Opent composer" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Opent formulier om het wachtwoord opnieuw in te stellen" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Opent dit profiel" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Ons moderatieteam heeft je melding ontvangen." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Onze moderators hebben de meldingen bekeken en besloten je toegang tot chats op Bluesky uit te schakelen." @@ -8010,14 +8431,15 @@ msgstr "Onze moderators hebben de meldingen bekeken en besloten je toegang tot c msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Pagina niet gevonden" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Pagina niet gevonden" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Video pauzeren" msgid "People" msgstr "Personen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Personen gevolgd door @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Personen die @{0} volgen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Fotografie" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Afbeeldingen bedoeld voor volwassenen." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8152,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "Vastzetten op startpagina" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Vastzetten op startpagina" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Vastmaken aan je profiel" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Vastgezet" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} vastgemaakt aan startpagina" @@ -8236,7 +8662,7 @@ msgstr "Je handle kiezen." msgid "Please choose your password." msgstr "Kies je wachtwoord." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Vul de verificatie-captcha in." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Voer een unieke naam in voor dit app-wachtwoord of gebruik ons willekeurig gegenereerde wachtwoord." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Vul je e-mailadres in." msgid "Please enter your invite code." msgstr "Vul je uitnodigingscode in." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Leg uit waarom je denkt dat dit label onjuist is toegepast door {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Leg uit waarom je denkt dat je chats ten onrechte zijn uitgeschakeld" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "Meld je aan als @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Politiek" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Plaatsen" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Alles plaatsen" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Bericht door @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Bericht verwijderd" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Bericht kan niet worden geüpload. Controleer je internetverbinding en probeer het opnieuw." @@ -8454,18 +8884,22 @@ msgstr "Bericht verborgen door jou" msgid "Post interaction settings" msgstr "Instellingen voor berichtinteractie" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Druk om opnieuw verbinding te maken" -#: src/components/Error.tsx:61 +#: 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 "Druk om opnieuw te proberen" @@ -8536,7 +8966,7 @@ msgstr "Druk om opnieuw te proberen" msgid "Press to view followers of this account that you also follow" msgstr "Druk om de volgers van dit account te bekijken die je ook volgt" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "" msgid "Privacy and security" msgstr "Privacy en beveiliging" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Privacybeleid" @@ -8586,15 +9015,15 @@ msgstr "Privacybeleid" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Video verwerken..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Verwerken..." @@ -8602,10 +9031,10 @@ msgstr "Verwerken..." msgid "profile" msgstr "profiel" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profiel" @@ -8613,6 +9042,7 @@ msgstr "Profiel" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-code gekopieerd naar je klembord!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-code is gedownload!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-code opgeslagen in je camerarol!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Citaatbericht" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Citaatbericht is opnieuw toegevoegd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Citaatbericht is succesvol losgekoppeld" @@ -8711,12 +9138,12 @@ msgstr "Citaatberichten uitgeschakeld" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citaten" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citaten van dit bericht" @@ -8728,16 +9155,16 @@ msgstr "Snelheidslimiet overschreden - je hebt in korte tijd te vaak geprobeerd msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Citaat opnieuw toevoegen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "Opnieuw verbinden" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Gesprekken opnieuw laden" @@ -8863,6 +9304,8 @@ msgstr "Gesprekken opnieuw laden" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "{displayName} uit startpakket verwijderen" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Account verwijderen" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Bijlage verwijderen" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Avatar verwijderen" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Banner verwijderen" @@ -8914,8 +9362,9 @@ msgstr "Banner verwijderen" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Insluiting verwijderen" @@ -8929,12 +9378,12 @@ msgstr "Feed verwijderen" msgid "Remove feed?" msgstr "Feed verwijderen?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Afbeelding verwijderen" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Herplaatsing verwijderen" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Verwijderd door auteur" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Verwijderd door je" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Antwoorden" @@ -9104,14 +9552,14 @@ msgstr "Antwoorden uitgeschakeld" msgid "Replies to this post are disabled." msgstr "Antwoorden op dit bericht zijn uitgeschakeld." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Reageren" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "Reactie verborgen door auteur van gesprek" msgid "Reply Hidden by You" msgstr "Reactie verborgen door jou" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Reactie-instellingen worden gekozen door de auteur van het gesprek" @@ -9137,18 +9581,18 @@ msgstr "Reactie-instellingen worden gekozen door de auteur van het gesprek" msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Zichtbaarheid van reactie bijgewerkt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Reactie is succesvol verborgen" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Melden" @@ -9157,20 +9601,20 @@ msgstr "Melden" msgid "Report account" msgstr "Account melden" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Gesprek melden" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Dialoogvenster Melden" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Feed melden" @@ -9179,12 +9623,12 @@ msgstr "Feed melden" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Privébericht melden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Bericht melden" @@ -9199,8 +9643,8 @@ msgstr "Startpakket melden" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Deze feed melden" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Deze lijst melden" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Herplaatsen" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Herplaatst door jou" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Herplaatsingen van dit bericht" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Alt-tekst vereisen voor het plaatsen" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "Vereist voor deze provider" msgid "Required in your region" msgstr "Vereist in je regio" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "Introductie-status opnieuw instellen" msgid "Reset password" msgstr "Wachtwoord opnieuw instellen" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Probeert de laatste mislukte actie opnieuw" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Probeert de laatste mislukte actie opnieuw" msgid "Retry" msgstr "Opnieuw" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Terug naar vorige pagina" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Terug naar de startpagina" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Terug naar de vorige pagina" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Wijzigingen opslaan" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Afbeelding opslaan" msgid "Save new handle" msgstr "Nieuwe handle opslaan" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR-code opslaan" @@ -9518,13 +9994,13 @@ msgstr "QR-code opslaan" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "In mijn feeds opslaan" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Opgeslagen feeds" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Opgeslagen in je feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Zeg hallo!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Wetenschap" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Naar boven scrollen" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Zoeken" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Profielen zoeken" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Selecteer een kleur" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "GIF selecteren" msgid "Select GIF \"{0}\"" msgstr "GIF \"{0}\" selecteren" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Selecteer taal..." msgid "Select languages" msgstr "Selecteer talen" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "Selecteer je interesses uit de onderstaande opties" msgid "Select your preferred language for translations in your feed." msgstr "Selecteer de taal waarin je de vertalingen in je feed wilt weergeven." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "E-mail verzenden" @@ -9935,11 +10421,11 @@ msgstr "E-mail verzenden" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Feedback verzenden" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Privébericht verzenden" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Bericht verzenden naar..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Verzenden als privébericht" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Stelt e-mail in voor het opnieuw instellen van wachtwoorden" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Instellingen" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Seksuele activiteit of erotisch bloot." msgid "Sexually Suggestive" msgstr "Seksueel suggestief" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Delen" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Toch delen" @@ -10097,16 +10586,21 @@ msgstr "Toch delen" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Link delen" @@ -10114,6 +10608,11 @@ msgstr "Link delen" msgid "Share link dialog" msgstr "Dialoogvenster Link delen" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "at://-URI van bericht delen" msgid "Share QR code" msgstr "QR-code delen" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10142,8 +10641,8 @@ msgstr "Deel dit startpakket en help mensen lid te worden van je gemeenschap op #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Gedeelde voorkeuren-tester" @@ -10167,16 +10666,16 @@ msgstr "Toon alt-tekst" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Toch laten zien" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Minder hiervan tonen" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Meer tonen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Meer hiervan tonen" @@ -10246,8 +10745,8 @@ msgstr "Antwoorden tonen" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Reactie voor iedereen tonen" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Waarschuwing en filter uit feeds tonen" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Meld je aan of registreer een account aan om deel te nemen aan het gesprek!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10337,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Afmelden" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Afmelden?" @@ -10391,7 +10900,7 @@ msgstr "Overslaan" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Kleiner" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Er is iets misgegaan" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Er is iets fout gegaan!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Een nieuwe chat starten" @@ -10582,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Chat starten met {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpakket" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Verhalenboek" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Verzenden" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Abonneren" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Gelukt!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Ondersteuning" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Van account wisselen" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "Systeemlogboek" msgid "Tags only" msgstr "Alleen tags" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Tik om te sluiten" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Servicevoorwaarden" @@ -10939,7 +11484,7 @@ msgstr "Tekst en tags" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Tekstinvoerveld" @@ -10981,9 +11526,9 @@ msgstr "Dat is alles, mensen!" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Het account kan met je communiceren na het deblokkeren." @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Het bericht waarop je antwoordt, werd door de auteur gemarkeerd als geschreven in het {suggestedLanguageName}. Wil je antwoorden in het <0>{suggestedLanguageName}?" @@ -11057,9 +11607,9 @@ msgstr "Het bericht waarop je antwoordt, werd door de auteur gemarkeerd als gesc msgid "The Privacy Policy has been moved to <0/>" msgstr "Het privacybeleid is verplaatst naar <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Thema" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Er is een probleem opgetreden bij het bijwerken van je feeds. Controleer je internetverbinding en probeer het opnieuw." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Er is een probleem opgetreden! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Deze instellingen zijn alleen van toepassing op de volgende feed." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Deze {screenDescription} is gemarkeerd:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Dit bezwaar wordt verzonden naar <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Dit bezwaar wordt doorgestuurd naar de moderatieservice van Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Dit bezwaar wordt doorgestuurd naar de moderatieservice van Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Deze chat is verbroken" @@ -11310,7 +11881,11 @@ msgstr "Deze inhoud is niet beschikbaar omdat een van de betrokken gebruikers de msgid "This content is not viewable without a Bluesky account." msgstr "Deze inhoud is niet zichtbaar zonder een Bluesky-account." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Deze feed is leeg." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Deze feed is niet langer online. We tonen <0>Ontdekken in plaats van deze feed." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Dit handle is gereserveerd. Probeer een ander." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Dit bericht beweert te zijn gemaakt op <0>{0}, maar werd voor het eerst gezien door Bluesky op <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "De auteur van dit bericht heeft het plaatsen van citaten uitgeschakeld." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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 "Deze reactie wordt gesorteerd in een verborgen sectie onderaan het gesprek en negeert meldingen voor volgende reacties - zowel voor jou als voor anderen." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Deze gebruiker heeft geen volgers." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Hiermee wordt @{0} verwijderd uit de snelle toegangslijst." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Hiermee wordt je bericht voor alle gebruikers uit het citaat verwijderd en vervangen door een plaatshouder." @@ -11574,7 +12166,7 @@ msgstr "Gespreksvoorkeuren" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Gespreksvoorkeuren" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Je moet je toegang tot het e-mailadres verifiëren om de 2FA-methode voor e-mail uit te schakelen." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Populair" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Vertalen" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Opnieuw proberen" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Opnieuw proberen" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "" @@ -11763,11 +12369,15 @@ msgstr "Kan geen contact maken met je service. Controleer je internetverbinding. msgid "Unable to delete" msgstr "Kan niet verwijderen" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Deblokkeren" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Deblokkeren" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Account deblokkeren" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Account deblokkeren?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} ontvolgen" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Account ontvolgen" @@ -11872,7 +12487,7 @@ msgstr "Account ontvolgen" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Account niet meer negeren" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Gesprek niet meer negeren" @@ -11955,12 +12562,12 @@ msgstr "Gesprek niet meer negeren" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Gesprek niet meer negeren" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Losmaken" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Losmaken van startpagina" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Losmaken van profiel" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Moderatielijst losmaken" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -12030,14 +12637,18 @@ msgstr "Afmelden voor deze labeler" msgid "Unsubscribed from list" msgstr "Uitgeschreven voor lijst" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "<0>{displayName} bijwerken in lijsten" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Bijwerken naar {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Bijwerken van citaatbijlage is mislukt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Bijwerken van zichtbaarheid van reactie is mislukt" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "In plaats daarvan een foto uploaden" @@ -12098,39 +12717,40 @@ msgstr "In plaats daarvan een foto uploaden" msgid "Upload a text file to:" msgstr "Upload een tekstbestand naar:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Uploaden vanaf camera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Uploaden vanuit bestanden" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Uploaden vanuit bibliotheek" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Afbeeldingen uploaden..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Linkminiatuur uploaden..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Video uploaden..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Gebruikerslijst door {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "gebruikers gevolgd door <0>@{0}" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNS-record verifiëren" #. 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:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Video kan niet worden verwerkt" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "Video niet gevonden." msgid "Video settings" msgstr "Video-instellingen" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video geüpload" @@ -12432,18 +13052,18 @@ msgstr "" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Profiel van {0} bekijken" @@ -12467,20 +13087,15 @@ msgstr "Profiel van {0} bekijken" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Profiel van geblokkeerde gebruiker bekijken" @@ -12503,10 +13118,18 @@ msgstr "Details bekijken" msgid "View full thread" msgstr "Volledig gesprek bekijken" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Informatie over deze labels bekijken" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Profiel bekijken" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Bekijk de avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "De labelservice van @{0} bekijken" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Bekijk gebruikers die deze feed leuk vinden" @@ -12596,8 +13219,8 @@ msgstr "Je genegeerde accounts bekijken" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "Waarschuwen over inhoud" msgid "Warn content and filter from feeds" msgstr "Waarschuwen over inhoud en filteren uit feeds" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "We kunnen dit gesprek niet laden" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "We hebben niet kunnen bepalen of je video's mag uploaden. Probeer het opnieuw." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "We laten je weten wanneer je account klaar is." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Er zijn netwerkproblemen, probeer het opnieuw." -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Het spijt ons! Het bericht waarop je reageert is verwijderd." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Het spijt ons! We kunnen de pagina die je zocht niet vinden." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Hoe wil je jouw startpakket noemen?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Hoe gaat het?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Wie kan reageren op dit bericht?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Wie kan reageren" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Oeps!" @@ -12939,7 +13566,7 @@ msgstr "Waarom moet dit startpakket worden beoordeeld?" msgid "Why should this user be reviewed?" msgstr "Waarom moet deze gebruiker worden beoordeeld?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Bericht schrijven" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Schrijf je reactie" @@ -12978,7 +13605,8 @@ msgstr "Schrijvers" msgid "Wrong DID returned from server. Received: {0}" msgstr "Verkeerde DID teruggestuurd door server. Ontvangen: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Ja, dit startpakket verwijderen" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Ja, losmaken" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Ja, verbergen" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Het is niet toegestaan om video's te uploaden." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Je kunt lopende gesprekken voortzetten, ongeacht welke instelling je kiest." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Je kunt je nu aanmelden met je nieuwe wachtwoord." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Je kunt je account opnieuw activeren om door te kunnen gaan met aanmelde 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Je hebt geen opgeslagen feeds." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Je mag maximaal 3 feeds toevoegen" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Je moet ten minste 7 andere personen volgen om een startpakket te genereren." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Je moet toegang verlenen tot je fotobibliotheek om een QR-code op te slaan" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Je wordt afgemeld bij al je accounts." @@ -13378,11 +14038,11 @@ msgstr "Je wordt afgemeld bij al je accounts." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Je ontvangt geen meldingen meer voor dit gesprek" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Je ontvangt nu meldingen voor dit gesprek" @@ -13390,12 +14050,12 @@ msgstr "Je ontvangt nu meldingen voor dit gesprek" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Je ontvangt een e-mail met een 'resetcode'. Vul hier die code in en vul vervolgens je nieuwe wachtwoord in." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "Je blijft op de hoogte via deze feeds" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Je staat in de rij" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Je hebt je dagelijkse limiet voor video-uploads bereikt (te veel bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Je hebt je daglimiet voor het uploaden van video's bereikt (te veel video's)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Je account is nog niet oud genoeg om video's te uploaden. Probeer het later nog eens." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Je accountrepository, die alle openbare gegevensrecords bevat, kan worden gedownload als een \"CAR\"-bestand. Dit bestand bevat geen media-insluitingen zoals afbeeldingen, en geen privégegevens. Die moeten afzonderlijk worden opgehaald." @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "Je geboortedatum" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Je chats zijn uitgeschakeld" @@ -13527,11 +14199,11 @@ msgstr "Je chats zijn uitgeschakeld" 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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Je e-mailadres lijkt ongeldig te zijn." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "Je volgende feed is leeg! Volg meer gebruikers om te zien wat er gebeurt msgid "Your full handle will be <0>@{0}" msgstr "Je volledige handle wordt <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Je genegeerde woorden" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 5d99d5ad1b..b2d3a11452 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(zawiera załącznik)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# polubienie} few {# polubienia} other {# polubień}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuta} few {# minuty} other {# minut}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# miesiąc} few {# miesiące} other {# miesięcy}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# sekundę} few {# sekundy} other {# sekund}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>w <1>tekście i tagach" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Zdjęcie profilowe {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0} min." msgid "{0}s" msgstr "{0} sek." +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {godzina} few {godziny} other {godzin}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuta} few {minuty} other {minut}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zaczęli cię obserwować" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} repostowali twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} i <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zarejestrowali się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} obserwuje cię" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} również cię obserwuje" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} lubi twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} lubi twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} repostuje twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} rejestruje się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zaczęli cię obserwować" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} polubili twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} repostowali twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} i {additionalAuthorsCount, plural, one {{formattedAuthorsCount} inna osoba} few {{formattedAuthorsCount} inne osoby} other {{formattedAuthorsCount} innych osób}} zarejestrowali się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} obserwuje cię" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} również cię obserwuje" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} lubi twój kanał" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} lubi twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} repostuje twój wpis" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} rejestruje się z twoim pakietem startowym" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} obserwowanych" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "Nie możesz wysłać wiadomości do {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, i {2, plural, one {# inna osoba} few {# inne oso #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {obserwujący} other {obserwujących}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {obserwowany} other {obserwowanych}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {polubienie} few {polubienia} other {polubień}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {cytat} few {cytaty} other {cytatów}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repost} few {reposty} other {repostów}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {zakładka} few {zakładki} many {zakładek} other {zakładek}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} osób" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Ułatwienia dostępu" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Ustawienia ułatwień dostępu" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Ustawienia ułatwień dostępu" msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Konto zostało zablokowane" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Konto zostało zaobserwowane" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Konto zostało usunięte z szybkiego dostępu" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Konto zostało odblokowane" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Cofnięto obserwowanie konta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Cofnięto wyciszenie konta" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Dodaj" @@ -999,8 +1094,8 @@ msgstr "Dodaj konto" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Dodaj tekst alternatywny (opcjonalne)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Dodaj inne konto" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Dodaj inny wpis" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Dodaj hasło aplikacji" msgid "Add App Password" msgstr "Dodaj hasło aplikacji" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "Dodaj osoby" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Wszystkie" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Zezwalaj na dostęp do wiadomości bezpośrednich" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Już zalogowano jako @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Tekst alternatywny" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Tekst alternatywny opisuje zdjęcia dla użytkowników niewidomych i niedowidzących oraz pomaga określić kontekst." @@ -1387,7 +1486,7 @@ msgstr "Wystąpił błąd" msgid "An error occurred" msgstr "Wystąpił błąd" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Wystąpił błąd podczas kompresowania wideo." @@ -1421,7 +1520,8 @@ msgstr "Wystąpił błąd podczas wczytywania wideo. Spróbuj ponownie." msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Wystąpił błąd podczas zapisywania kodu QR!" @@ -1432,11 +1532,11 @@ msgstr "Wystąpił błąd podczas zapisywania kodu QR!" msgid "An error occurred while trying to follow all" msgstr "Wystąpił błąd podczas próby zaobserwowania wszystkich" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Inny problem" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Wystąpił błąd podczas otwierania czatu" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Wystąpił błąd, spróbuj ponownie." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "Każdy może wchodzić w interakcje" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Hasła aplikacji" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Odwołanie zostało złożone" @@ -1632,14 +1740,14 @@ msgstr "Zawieszenie odwołania" msgid "Appeal Suspension" msgstr "Zawieszenie odwołania" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Odwołaj się od tej decyzji" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Archiwum z dnia {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Wpis został zarchiwizowany" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Czy na pewno chcesz usunąć hasło aplikacji \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Czy na pewno chcesz usunąć ten pakiet startowy?" msgid "Are you sure you want to discard your changes?" msgstr "Czy na pewno chcesz odrzucić wprowadzone zmiany?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Czy na pewno chcesz opuścić tę rozmowę? Twoje wiadomości zostaną usunięte u ciebie, ale nie u odbiorcy." +#: src/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 "Czy na pewno chcesz to usunąć ze swoich kanałów?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Czy na pewno chcesz odrzucić ten wpis?" @@ -1724,8 +1838,8 @@ msgstr "Sztuka" msgid "Artistic or non-erotic nudity." msgstr "Nagość artystyczna lub nieerotyczna." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Autoodtwarzanie filmów i GIF-ów" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Powrót" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "Potwierdź swój adres email przed utworzeniem pakietu startowego." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Data urodzenia" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blokuj" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blokuj konto" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Zablokować konto?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blokuj konta" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Blokuj listę" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "Zablokować te konta?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Zablokuj osobę" @@ -1946,9 +2057,9 @@ msgstr "Zablokuj osobę" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Zablokuj osobę" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Zablokowane" @@ -1964,14 +2075,12 @@ msgstr "Zablokowane" msgid "Blocked accounts" msgstr "Zablokowane konta" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Zablokowane konta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować cię ani w inny sposób wchodzić z tobą w interakcje." @@ -1987,7 +2096,7 @@ msgstr "Blokowanie nie przeszkodzi moderacji w umieszczaniu ostrzeżeń na twoim msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blokowanie jest publiczne. Zablokowane konta nie mogą komentować twoich wpisów, wzmiankować cię ani w inny sposób wchodzić z tobą w interakcje." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blokowanie nie przeszkodzi w umieszczaniu ostrzeżeń na twoim koncie, ale uniemożliwi komentowanie twoich wpisów lub wchodzenie z tobą w interakcje." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nie może potwierdzić autentyczności podanej daty." @@ -2029,7 +2138,7 @@ msgstr "Bluesky jest lepszy ze znajomymi!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Regulamin Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky wybierze zestaw polecanych kont spośród osób w Twojej sieci." msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky nie pokaże twojego profilu i wpisów niezalogowanym użytkownikom. Inne aplikacje mogą nie respektować tej prośby. Nie spowoduje to, że twoje konto stanie się prywatne." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "Książki" 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" @@ -2137,24 +2254,34 @@ msgstr "Biznes" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Od {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Od <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Tworząc konto, akceptujesz <0>Regulamin." msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Aparat" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Aparat" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Aparat" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Aparat" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Anuluj" @@ -2248,9 +2384,9 @@ msgstr "Anuluj reaktywację i wyloguj się" msgid "Cancel search" msgstr "Anuluj wyszukiwanie" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Nie można wchodzić w interakcje z zablokowaną osobą" @@ -2264,7 +2400,7 @@ msgstr "Napisy (.vtt)" msgid "Captions & alt text" msgstr "Napisy i tekst alternatywny" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Zmień nazwę" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Czat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Czat został wyciszony" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Ustawienia czatu" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Ustawienia czatu" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Cofnięto wyciszenie czatu" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Wybierz ten kolor jako swoje zdjęcie profilowe" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie" @@ -2594,28 +2745,30 @@ msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Kliknij, aby spróbować wysłać wiadomość ponownie" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Zamknij" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Zamknij aktywne okno" @@ -2647,6 +2800,10 @@ msgstr "Zamknij aktywne okno" msgid "Close alert" msgstr "Zamknij ostrzeżenie" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Zamknij dolną szufladę" @@ -2657,8 +2814,10 @@ msgstr "Zamknij dolną szufladę" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Zamknij to okno" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Zamknij zdjęcie" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Zamknij to okno" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Zamyka ostrzeżenie o aktualizacji hasła" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Zwiń listę osób" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Zwija listę osób dla danego powiadomienia" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Komiksy" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Wytyczne dla społeczności" @@ -2740,12 +2915,12 @@ msgstr "Ukończ wyzwanie" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Utwórz nowy wpis" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "Skomentuj" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Kompresowanie wideo..." @@ -2780,7 +2955,7 @@ msgstr "Skonfigurowane w <0>ustawieniach moderacji." msgid "Confirm" msgstr "Potwierdź" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Skontaktuj się z pomocą techniczną" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "Treści i multimedia" msgid "Content and media" msgstr "Treści i multimedia" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Treści i multimedia" @@ -2889,7 +3064,7 @@ msgstr "Kliknij, aby zamknąć menu kontekstowe." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Kontynuuj wątek..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Przejdź do następnego kroku" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Rozmowa została usunięta" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Rozmowa została usunięta" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Numer wersji został skopiowany do schowka" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Skopiowano!" msgid "Copies build version to clipboard" msgstr "Kopiuje numer wersji do schowka" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopiuj" @@ -2997,6 +3184,11 @@ msgstr "Kopiuj DID" msgid "Copy host" msgstr "Kopiuj hosta" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Kopiuj link do listy" msgid "Copy link to post" msgstr "Kopiuj link do wpisu" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Kopiuj tekst wiadomości" @@ -3037,12 +3229,12 @@ msgstr "Kopiuj tekst wiadomości" msgid "Copy post at:// URI" msgstr "Skopiuj wpis:// URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Kopiuj tekst wpisu" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Kopiuj kod QR" @@ -3052,11 +3244,15 @@ msgstr "Kopiuj rekord TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Polityka praw autorskich" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Nie udało się opuścić czatu" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Nie udało się wczytać kanału" @@ -3100,7 +3308,11 @@ msgstr "Nie udało się wczytać kanału" msgid "Could not load list" msgstr "Nie udało się wczytać listy" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Nie udało się wyciszyć czatu" @@ -3108,11 +3320,19 @@ msgstr "Nie udało się wyciszyć czatu" msgid "Could not process your video" msgstr "Nie udało się przetworzyć wideo" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Utwórz" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Utwórz pakiet startowy" @@ -3174,13 +3394,14 @@ msgstr "Utwórz dla mnie pakiet startowy" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Utwórz konto" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Zamiast tego utwórz zdjęcie profilowe" @@ -3206,7 +3427,7 @@ msgstr "Zamiast tego utwórz zdjęcie profilowe" msgid "Create another" msgstr "Utwórz inne" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Utwórz nowe konto" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Zgłoś {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Utworzono {0}" @@ -3270,6 +3492,10 @@ msgstr "Autor został zablokowany" msgid "Culture" msgstr "Kultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Ciemny motyw" msgid "Date of birth" msgstr "Data urodzenia" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Domyślny" msgid "Default icons" msgstr "Domyślne ikony" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Usuń hasło aplikacji" msgid "Delete app password?" msgstr "Usunąć hasło aplikacji?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "Usuń rekord deklaracji czatu" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Usuń rozmowę" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Usuń dla mnie" @@ -3399,11 +3633,11 @@ msgstr "Usuń dla mnie" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Usuń wiadomość" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Usuń wiadomość dla mnie" @@ -3411,9 +3645,9 @@ msgstr "Usuń wiadomość dla mnie" msgid "Delete my account" msgstr "Usuń moje konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Usuń wpis" @@ -3430,17 +3664,17 @@ msgstr "Usunąć pakiet startowy?" msgid "Delete this list?" msgstr "Usunąć tę listę?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Usunąć ten wpis?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Usunięto" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Usunięto konto" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Opisowy tekst alternatywny" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Odłącz cytat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Odłączyć cytat?" @@ -3507,13 +3741,13 @@ msgstr "Okno dialogowe: dostosuj, kto może wchodzić w interakcje z tym wpisem" msgid "Dim" msgstr "Przyciemniony" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Wyłącz uwierzytelnianie dwuskładnikowe przez email" msgid "Disable haptic feedback" msgstr "Wyłącz haptykę" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Wyłączono" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Odrzuć" msgid "Discard changes?" msgstr "Odrzucić zmiany?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Odrzucić wpis?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Odkryj nowe kanały" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Pomiń" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Pomiń błąd" @@ -3642,6 +3877,10 @@ msgstr "Pomiń tę sekcję" 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" @@ -3673,7 +3912,7 @@ msgstr "Nie zawiera nagości." msgid "Domain verified!" msgstr "Domena zweryfikowana!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Gotowe" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Kliknij dwukrotnie, aby zamknąć to okno" @@ -3737,19 +3981,14 @@ msgstr "Kliknij dwukrotnie, aby zamknąć to okno" msgid "Double tap to like" msgstr "Kliknij dwukrotnie, aby polubić" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Pobierz Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Pobierz plik CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Pobierz plik CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Czas trwania:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "np. alicja" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Edytuj" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Edytuj zdjęcie profilowe" @@ -3847,19 +4102,19 @@ msgstr "Edytuj zdjęcie profilowe" msgid "Edit Feeds" msgstr "Edytuj kanały" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Edytuj obrazek" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Edytuj ustawienia interakcji" @@ -3868,7 +4123,16 @@ msgstr "Edytuj ustawienia interakcji" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Edytuj moje kanały" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Edytuj osoby" @@ -3912,12 +4171,12 @@ msgstr "Edytuj ustawienia interakcji z wpisem" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Edytuj profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Edytuj profil" @@ -3925,7 +4184,8 @@ msgstr "Edytuj profil" msgid "Edit starter pack" msgstr "Edytuj pakiet startowy" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Wybierz, kto może komentować" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Edytuj swój pakiet startowy" @@ -3971,7 +4231,7 @@ msgstr "Adres email" msgid "Email Resent" msgstr "Email został wysłany ponownie" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Osadź ten wpis na swojej stronie internetowej. Po prostu skopiuj poniż msgid "Embedded video player" msgstr "Wbudowany odtwarzacz wideo" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Włącz" @@ -4025,7 +4285,7 @@ msgstr "Pokazuj treści dla dorosłych" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "Pokazuj multimedia spoza aplikacji" msgid "Enable media players for" msgstr "Włącz odtwarzacze dla" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Wprowadź hasło" msgid "Enter a word or tag" msgstr "Wprowadź słowo lub tag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "Przechodzi do trybu pełnoekranowego" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Błąd" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Każdy" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Każdy" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Każdy" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Wyklucza obserwowane osoby" msgid "Exit fullscreen" msgstr "Wyłącz pełny ekran" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Rozwiń tekst alternatywny" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Rozwiń listę osób" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Rozwiń lub zwiń cały wpis, który komentujesz" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "Rozwija lub zwija tekst wpisu" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Adres uri powinien prowadzić do rekordu" @@ -4277,10 +4536,10 @@ msgstr "Nieodpowiednia lub niepokojąca treść." msgid "Explicit sexual images." msgstr "Obrazy o charakterze jednoznacznie seksualnym." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferencje multimediów spoza aplikacji" @@ -4331,18 +4587,22 @@ msgstr "Preferencje multimediów spoza aplikacji" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Nie udało się zmienić nazwy. Spróbuj ponownie." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Nie udało się utworzyć hasła aplikacji. Spróbuj ponownie." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Nie udało się utworzyć pakietu startowego" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Nie udało się usunąć wiadomości" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Nie udało się usunąć wpisu, spróbuj ponownie" @@ -4394,24 +4655,24 @@ msgstr "Nie udało się usunąć wpisu, spróbuj ponownie" msgid "Failed to delete starter pack" msgstr "Nie udało się usunąć pakietu startowego" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Nie udało się wczytać preferencji kanałów" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Nie udało się wczytać polecanych kanałów" msgid "Failed to load suggested follows" msgstr "Nie udało się wczytać polecanych osób" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Nie udało się przypiąć wpisu" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Nie udało się złożyć odwołania, spróbuj ponownie." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Nie udało się ustawić wyciszenia wątku, spróbuj ponownie" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Nie udało się zaktualizować kanałów" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Nie udało się zaktualizować ustawień" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Kanał" @@ -4649,7 +4914,7 @@ msgstr "Kanał" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Kanał od {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu kanału" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Opinie" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Kanały" @@ -4739,7 +5004,7 @@ msgstr "Filtruj wyszukiwanie według języka (aktywny: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Kończenie" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Znajdź konta do obserwowania" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Znajdź osoby do obserwowania" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Obserwuj" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Obserwuj {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Również obserwuj" @@ -4916,7 +5183,7 @@ msgstr "Również obserwuj" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Obserwowane przez <0>{0} i <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Obserwowane przez <0>{0}, <1>{1} i {2, plural, one {# inną osobę} few {# inne osoby} other {# innych osób}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Obserwujący @{0}, których znasz" @@ -4960,10 +5231,10 @@ msgstr "Obserwujący, których znasz" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Obserwujesz" @@ -4977,12 +5248,12 @@ msgstr "Obserwujesz" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Obserwowani {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Obserwujesz {handle}" msgid "Following feed preferences" msgstr "Preferencje kanału obserwowanych" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferencje kanału obserwowanych" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Obserwuje cię" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Obserwuje cię" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Czcionka" @@ -5065,11 +5333,16 @@ msgstr "Nie pamiętasz hasła?" msgid "Forgot?" msgstr "Nie pamiętasz?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "Od <0/>" msgid "Generate a starter pack" msgstr "Wygeneruj pakiet startowy" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Uzyskaj pomoc" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Zmień wygląd swojego profilu" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Wróć" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Wróć" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Wróć do poprzedniego kroku" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Wróć na stronę główną" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Wróć na stronę główną" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Wróć na stronę główną" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Przejdź do rozmowy z {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Przejdź dalej" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Przejdź do profilu" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Przejdź do profilu" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Nazwa jest zbyt długa. Spróbuj wybrać krótszą." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Pomoc" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Ukryta lista" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Ukryta lista" msgid "Hide" msgstr "Ukryj" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ukryj" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ukryj wpis dla mnie" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ukryj komentarz dla wszystkich" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ukryj komentarz dla mnie" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ukryć ten wpis?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ukryć ten komentarz?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Ukryć popularne?" msgid "Hide trending videos?" msgstr "Ukryć popularne klipy wideo?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ukryj listę osób" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "Ukrywa zawartość" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Wygląda na to, że mamy problem z wczytaniem tych danych. Więcej infor msgid "Hmmmm, we couldn't load that moderation service." msgstr "Nie mogliśmy wczytać tej usługi moderacji." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Poczekaj! Dostęp do materiałów wideo udostępniamy stopniowo, a ty wciąż czekasz na swoją kolej. Sprawdź ponownie za jakiś czas!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Główna" @@ -5721,7 +6019,7 @@ msgstr "Rozumiem" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Rozwija lub zwija długi tekst alternatywny" @@ -5757,15 +6055,15 @@ msgstr "Jeśli usuniesz tę listę, nie będziesz w stanie jej odzyskać." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Jeśli masz własną domenę, możesz jej użyć jako swojej nazwy. Pozwala to na samodzielną weryfikację tożsamości. <0>Dowiedz się więcej tutaj.." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Jeśli usuniesz ten wpis, nie będziesz w stanie go odzyskać." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "Jeśli jesteś deweloperem, możesz hostować własny serwer." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Jeśli próbujesz zmienić swoją nazwę lub adres email, zrób to przed dezaktywacją." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Zdjęcie" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Nieprawidłowy kod weryfikacyjny 2FA." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Nieprawidłowa nazwa. Spróbuj użyć innej." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Nieprawidłowy kod weryfikacyjny" @@ -6001,8 +6315,15 @@ msgstr "Kod zaproszenia" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Zaproś innych do tego pakietu startowego!" +#: 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 "Zaproś znajomych do śledzenia twoich ulubionych kanałów i osób" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID: {0}" msgid "Jobs" msgstr "Praca" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Praca" msgid "Join Bluesky" msgstr "Dołącz do Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Dołącz do rozmowy" msgid "Journalism" msgstr "Dziennikarstwo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Ostrzeżenia na twoim koncie" msgid "Labels on your content" msgstr "Ostrzeżenia na twoich treściach" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Ustawienia języka" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Najnowsze" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Dowiedz się więcej o tym ostrzeżeniu" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Dowiedz się więcej o tym, co jest publiczne na Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Dowiedz się więcej." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Opuść" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Opuść czat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Opuść rozmowę" @@ -6284,13 +6642,14 @@ msgstr "Opuść rozmowę" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Opuść rozmowę" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Opuszczasz Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "pozostałe." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Jasny" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Polub" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Polub ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Polub ten kanał" @@ -6358,8 +6721,8 @@ msgstr "Polub ten kanał" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Polubione przez" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Polubione przez {0, plural, one {# osobę} few {# osoby} other {# osób}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Polubienia" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Polubienia tego wpisu" @@ -6409,11 +6768,11 @@ msgstr "Polubienia tego wpisu" msgid "Linear" msgstr "W linii" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Cofnięto wyciszenie listy" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listy" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Wczytywanie..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Dziennik" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo autorstwa @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo autorstwa <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Wygląda na to, że brakuje kanału. <0>Kliknij tutaj, aby go dodać.{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Aktualności" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Kontynuuj" msgid "Next image" msgstr "Następne zdjęcie" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Już nie obserwujesz {0}" @@ -7362,7 +7726,7 @@ msgstr "Już nie obserwujesz {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Brak wiadomości" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Brak powiadomień!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Nikt poza autorem nie może cytować tego wpisu." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Brak wyników" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Brak wyników" @@ -7446,8 +7810,8 @@ msgstr "Brak wyników" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Nie znaleziono żadnych wyników" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Nieseksualna nagość" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Nie znaleziono" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Uwaga o udostępnianiu" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Ustawienia powiadomień" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Dźwięki powiadomień" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Powiadomienia" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "teraz" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Wył." @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Okej" @@ -7648,35 +8000,35 @@ msgstr "na<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Rozpocznij od nowa" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "W co najmniej jednym zdjęciu brakuje tekstu alternatywnego." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego." @@ -7685,6 +8037,26 @@ msgstr "W co najmniej jednym wideo brakuje tekstu alternatywnego." msgid "Only {0} can reply." msgstr "Tylko {0} mogą komentować." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Obsługiwane są tylko pliki obrazów" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Obsługiwane są tylko pliki WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Obsługiwane są tylko pliki WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Ups, coś poszło nie tak!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ups, coś poszło nie tak!" msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Otwórz kreator zdjęcia profilowego" @@ -7720,12 +8106,17 @@ msgstr "Otwórz kreator zdjęcia profilowego" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Zmień ustawienia rozmowy" @@ -7739,16 +8130,16 @@ msgstr "Otwórz menu" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Wybierz emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Zmień ustawienia kanału" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Otwórz link do {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Zmień ustawienia wpisu" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Otwórz historię aktywności" msgid "Open system log" msgstr "Otwórz dziennik systemowy" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Pozwala dodać ostrzeżenie o zawartości do twojego wpisu" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Otwiera dodatkowe szczegóły debugowania" @@ -7838,7 +8250,7 @@ msgstr "Otwiera dodatkowe szczegóły debugowania" msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Otwiera aplikację aparatu" @@ -7858,22 +8270,24 @@ msgstr "Otwiera kompozytor wpisu" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Otwiera proces tworzenia nowego konta Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Otwiera proces logowania do istniejącego konta Bluesky" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Zmień hasło" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Otwiera ten profil" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Nasz zespół moderatorów otrzymał twoje zgłoszenie." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nasi moderatorzy przeanalizowali zgłoszenia i zdecydowali o zablokowaniu dostępu do czatów na Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Nasi moderatorzy przeanalizowali zgłoszenia i zdecydowali o zablokowani msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Strona nie została odnaleziona" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Strona nie została odnaleziona" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Zatrzymaj wideo" msgid "People" msgstr "Osoby" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Osoby obserwowane przez @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Osoby obserwujące @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Fotografia" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Zdjęcia przeznaczone dla dorosłych." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Przypnij kanał" @@ -8152,12 +8578,12 @@ msgstr "Przypnij kanał" msgid "Pin to home" msgstr "Przypnij do głównej" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Przypnij do głównej" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Przypnij do swojego profilu" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Przypięte" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} przypięto do głównej" @@ -8236,7 +8662,7 @@ msgstr "Wybierz swoją nazwę." msgid "Please choose your password." msgstr "Wybierz swoje hasło." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Wypełnij formularz captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Wprowadź unikalną nazwę hasła aplikacji lub użyj losowo wygenerowanej." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Wprowadź swój adres email." msgid "Please enter your invite code." msgstr "Wprowadź swój kod zaproszenia." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "Wprowadź swoją nazwę użytkownika" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Wyjaśnij, dlaczego uważasz, że to ostrzeżenie zostało nieprawidłowo nadane przez {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Wyjaśnij, dlaczego uważasz, że czaty zostały wyłączone z niewłaściwych powodów." @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "Zaloguj się jako @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Polityka" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Opublikuj" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Opublikuj wszystko" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Wpis od @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Wpis usunięty" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Nie udało się opublikować wpisu. Sprawdź swoje połączenie internetowe i spróbuj ponownie." @@ -8454,18 +8884,22 @@ msgstr "Wpis został ukryty przez ciebie" msgid "Post interaction settings" msgstr "Ustawienia interakcji wpisu" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Ustawienia interakcji wpisu" +#: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Kliknij, aby ponowić próbę połączenia" -#: src/components/Error.tsx:61 +#: 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 "Kliknij, aby spróbować ponownie" @@ -8536,7 +8966,7 @@ msgstr "Kliknij, aby spróbować ponownie" msgid "Press to view followers of this account that you also follow" msgstr "Kliknij, aby wyświetlić obserwujących to konto, których również obserwujesz" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Prywatność" msgid "Privacy and security" msgstr "Prywatność i bezpieczeństwo" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Polityka prywatności" @@ -8586,15 +9015,15 @@ msgstr "Polityka prywatności" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Przetwarzanie wideo..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Przetwarzanie..." @@ -8602,10 +9031,10 @@ msgstr "Przetwarzanie..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Kod QR został skopiowany do schowka!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Kod QR został pobrany!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Kod QR został zapisany w galerii zdjęć!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Cytuj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Cytowany wpis został ponownie dołączony" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Cytowany wpis został odłączony pomyślnie" @@ -8711,12 +9138,12 @@ msgstr "Cytowanie wpisów zostało wyłączone" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Cytaty" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Cytowania tego wpisu" @@ -8728,16 +9155,16 @@ msgstr "Przekroczono limit – próbowano zmienić nazwę zbyt wiele razy w zbyt msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Dołącz cytat ponownie" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Powód odwołania" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "Polecane" msgid "Reconnect" msgstr "Połącz ponownie" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Odśwież rozmowy" @@ -8863,6 +9304,8 @@ msgstr "Odśwież rozmowy" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Usuń {displayName} z pakietu startowego" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Usuń konto" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Usuń załącznik" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Usuń zdjęcie profilowe" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Usuń tło profilu" @@ -8914,8 +9362,9 @@ msgstr "Usuń tło profilu" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Usuń osadzenie" @@ -8929,12 +9378,12 @@ msgstr "Usuń kanał" msgid "Remove feed?" msgstr "Usunąć kanał?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Usuń zdjęcie" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Usuń repost" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Usunięte przez autora" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Usunięte przez Ciebie" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Komentarze" @@ -9104,14 +9552,14 @@ msgstr "Komentarze zostały wyłączone" msgid "Replies to this post are disabled." msgstr "Komentarze do tego wpisu są wyłączone." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Skomentuj" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Skomentuj ({0, plural, one {# komentarz} few {# komentarze} other {# komentarzy}})" @@ -9125,10 +9573,6 @@ msgstr "Komentarz został ukryty przez autora wątku" msgid "Reply Hidden by You" msgstr "Komentarz został ukryty przez ciebie" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Ustawienia komentowania są wybierane przez autora wątku" @@ -9137,18 +9581,18 @@ msgstr "Ustawienia komentowania są wybierane przez autora wątku" msgid "Reply sorting" msgstr "Sortowanie komentarzy" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Widoczność komentarzy została zaktualizowana" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Komentarz został ukryty pomyślnie" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Zgłoś" @@ -9157,20 +9601,20 @@ msgstr "Zgłoś" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Zgłoś rozmowę" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Okno zgłoszenia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Zgłoś kanał" @@ -9179,12 +9623,12 @@ msgstr "Zgłoś kanał" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Zgłoś wiadomość" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Zgłoś wpis" @@ -9199,8 +9643,8 @@ msgstr "Zgłoś pakiet startowy" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Zgłoszenie zostało wysłane" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Zgłoś ten kanał" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Zgłoś tę listę" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Repostuj" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repostuj ({0, plural, one {# repost} few {# reposty} other {# repostów}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Repostowane przez ciebie" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Reposty tego wpisu" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Wymagaj tekstu alternatywnego przed opublikowaniem" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Wymagaj kodu z wiadomości email, aby zalogować się na swoje konto." @@ -9328,7 +9791,17 @@ msgstr "Wymagane w przypadku tego dostawcy" msgid "Required in your region" msgstr "Wymagane w twoim regionie" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "Zacznij od nowa" msgid "Reset password" msgstr "Zresetuj hasło" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Ponawia ostatnią akcję, która zakończyła się błędem" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Ponawia ostatnią akcję, która zakończyła się błędem" msgid "Retry" msgstr "Spróbuj ponownie" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Wróć do poprzedniej strony" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Wraca do poprzedniej strony" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Zapisz zmiany" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Zapisz zdjęcie" msgid "Save new handle" msgstr "Zapisz nową nazwę" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Zapisz kod QR" @@ -9518,13 +9994,13 @@ msgstr "Zapisz kod QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Dodaj do moich kanałów" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Zapisane kanały" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Dodano do twoich kanałów" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Przywitaj się!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Nauka" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Przewiń na górę" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Szukaj" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Szukaj wpisów od @{0}" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "Szukaj w moich wpisach" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Szukaj profili" msgid "Search..." msgstr "Szukaj..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Wyszukuje profile" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Wybierz kolor" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Wybierz GIF" msgid "Select GIF \"{0}\"" msgstr "Wybierz GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Wybierz język..." msgid "Select languages" msgstr "Wybierz języki" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "Wybierz swoje zainteresowania z poniższych opcji" msgid "Select your preferred language for translations in your feed." msgstr "Wybierz preferowany język tłumaczeń." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Wyślij email" @@ -9935,11 +10421,11 @@ msgstr "Wyślij email" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Wyślij opinię" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Wyślij wiadomość" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Wyślij wpis do..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Wyślij bezpośrednio" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Ustawia email do resetowania hasła" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ustawienia" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Aktywność seksualna lub nagość erotyczna." msgid "Sexually Suggestive" msgstr "Sugestywne seksualnie" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Udostępnij" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Udostępnij mimo to" @@ -10097,16 +10586,21 @@ msgstr "Udostępnij mimo to" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Udostępnij link" @@ -10114,6 +10608,11 @@ msgstr "Udostępnij link" msgid "Share link dialog" msgstr "Okno udostępniania linku" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Udostępnij kod QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Udostępnij ten kanał" @@ -10142,8 +10641,8 @@ msgstr "Udostępnij ten pakiet startowy i pomóż innym dołączyć do twojej sp #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Tester współdzielonych preferencji" @@ -10167,16 +10666,16 @@ msgstr "Pokaż tekst alternatywny" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Pokaż mimo to" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Pokazuj mniej podobnych treści" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Pokaż więcej" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Pokazuj więcej podobnych treści" @@ -10246,8 +10745,8 @@ msgstr "Pokaż komentarze" msgid "Show replies as" msgstr "Pokaż komentarze jako" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Pokaż komentarz każdemu" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Pokaż ostrzeżenie i odfiltruj z kanałów" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Pokazuje informacje o momencie utworzenia tego wpisu" @@ -10297,15 +10796,17 @@ msgstr "Pokazuje zawartość" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Zaloguj się lub utwórz konto, aby dołączyć do rozmowy!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Zaloguj się na konto, którego nie ma na liście" @@ -10337,8 +10842,12 @@ msgstr "Zaloguj się na konto, którego nie ma na liście" msgid "Sign in to Bluesky or create a new account" msgstr "Zaloguj się na Bluesky lub utwórz nowe konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Wyloguj się" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Wyloguj się" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Wylogować się?" @@ -10391,7 +10900,7 @@ msgstr "Pomiń" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Mniejszy" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Coś poszło nie tak" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Coś poszło nie tak!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Coś poszło nie tak? Daj nam znać." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Zacznij nowy czat" @@ -10582,17 +11101,17 @@ msgstr "Zacznij dodawać osoby" msgid "Start adding people!" msgstr "Zacznij dodawać osoby!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Zacznij czat z {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pakiet startowy" @@ -10654,12 +11173,12 @@ msgstr "Pamięć została wyczyszczona, uruchom aplikację ponownie." msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Historia aktywności" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Prześlij" @@ -10684,9 +11203,9 @@ msgstr "Złóż odwołanie" msgid "Submit Appeal" msgstr "Złóż odwołanie" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Subskrybuj" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Sukces!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Pomoc" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Przełącz konto" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Przełącz konto" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Przełącz na {0}" @@ -10824,11 +11347,15 @@ msgstr "Dziennik systemowy" msgid "Tags only" msgstr "Tylko tagi" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Kliknij, aby odrzucić" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Regulamin" @@ -10939,7 +11484,7 @@ msgstr "Tekst i tagi" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Pole wprowadzania tekstu" @@ -10981,9 +11526,9 @@ msgstr "To już wszystko!" msgid "That's everything!" msgstr "To wszystko!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "To konto będzie mogło wchodzić z tobą w interakcje po odblokowaniu." @@ -11049,6 +11594,11 @@ msgstr "Ustawienia te będą używane jako domyślne podczas tworzenia nowych wp 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Wpis, który komentujesz, został oznaczony przez autora jako napisany w języku {suggestedLanguageName}. Czy chcesz skomentować w języku <0>{suggestedLanguageName}?" @@ -11057,9 +11607,9 @@ msgstr "Wpis, który komentujesz, został oznaczony przez autora jako napisany w msgid "The Privacy Policy has been moved to <0/>" msgstr "Polityka prywatności została przeniesiona do <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Motyw" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "Wystąpił problem podczas łączenia z serwerem" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Wystąpił problem podczas aktualizacji kanałów, sprawdź połączenie internetowe i spróbuj ponownie." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Wystąpił problem! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Ustawienia te dotyczą tylko kanału obserwowanych." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Ten {screenDescription} został zgłoszony:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Odwołanie zostanie wysłane do <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Odwołanie zostanie wysłane do działu moderacji Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Odwołanie zostanie wysłane do działu moderacji Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Ten czat został rozłączony" @@ -11310,7 +11881,11 @@ msgstr "Ta zawartość jest niedostępna, ponieważ jeden z jej uczestników zab msgid "This content is not viewable without a Bluesky account." msgstr "Ta zawartość nie jest dostępna bez konta Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Ta rozmowa dotyczy usuniętego lub dezaktywowanego konta. Kliknij, aby wyświetlić opcje" @@ -11318,7 +11893,7 @@ msgstr "Ta rozmowa dotyczy usuniętego lub dezaktywowanego konta. Kliknij, aby w msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Ten kanał jest pusty." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Ten kanał nie jest już dostępny online. Zamiast niego wyświetlamy <0>kanał główny." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Ta nazwa jest zajęta. Wypróbuj inną." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "Ta lista jest pusta." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Ten wpis został utworzony <0>{0}, ale po raz pierwszy pojawił się na Bluesky <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Autor tego wpisu wyłączył możliwość cytowania." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Ten profil jest widoczny tylko dla zalogowanych. Nie będzie widoczny dla osób niezalogowanych." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Ten komentarz trafi do ukrytej sekcji na dole wątku. Spowoduje to wyciszenie powiadomień o kolejnych komentarzach – zarówno dla ciebie, jak i innych." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Ta osoba nie ma żadnych obserwujących." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Spowoduje to usunięcie @{0} z listy szybkiego dostępu." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Spowoduje to usunięcie twojego wpisu z tego cytatu dla wszystkich i zastąpi go placeholderem." @@ -11574,7 +12166,7 @@ msgstr "Ustawienia wątków" msgid "Threaded" msgstr "Tryb wątkowy" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Ustawienia wątków" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Aby wyłączyć uwierzytelnianie dwuskładnikowe (2FA) sprawdź, czy masz dostęp do swojego adresu email." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Najlepsze" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Temat" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Przetłumacz" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Popularne filmiki" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Spróbuj ponownie" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Spróbuj ponownie" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "TV" @@ -11763,11 +12369,15 @@ msgstr "Nie udało się skontaktować z usługą. Sprawdź połączenie internet msgid "Unable to delete" msgstr "Nie udało się usunąć" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Odblokuj" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Odblokuj" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Odblokuj konto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Odblokować konto?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Cofnij repost ({0, plural, one {# repost} few {# reposty} other {# repostów}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Nie obserwuj {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11872,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "Nie obserwuj" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Nie lubię" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Nie lubię ({0, plural, one {# polubienie} few {# polubienia} other {# polubień}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Anuluj wyciszenie" @@ -11955,12 +12562,12 @@ msgstr "Anuluj wyciszenie" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Anuluj wyciszenie" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Odepnij" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Odepnij kanał" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Odepnij od głównej" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Odepnij od profilu" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Odepnij listę moderacji" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} odpięto od głównej" @@ -12030,14 +12637,18 @@ msgstr "Nie subskrybuj tej moderacji" msgid "Unsubscribed from list" msgstr "Nie subskrybujesz już listy" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "Zaktualizuj <0>{displayName} w listach" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Zmień na {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Nie udało się zaktualizować dołączonego cytatu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Nie udało się zaktualizować widoczności komentarzy" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Zamiast tego prześlij zdjęcie" @@ -12098,39 +12717,40 @@ msgstr "Zamiast tego prześlij zdjęcie" msgid "Upload a text file to:" msgstr "Prześlij plik tekstowy do:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Prześlij z aparatu" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Prześlij z plików" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Prześlij z biblioteki" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Przesyłanie zdjęć..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Przesyłanie miniatury..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Przesyłanie wideo..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Lista od {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "obserwowani przez <0>@{0}" msgid "users following <0>@{0}" msgstr "obserwujący <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Zweryfikuj rekord DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Wideo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Przetwarzanie wideo nie powiodło się" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Kanał wideo" @@ -12419,7 +13039,7 @@ msgstr "Wideo nie zostało odnalezione." msgid "Video settings" msgstr "Ustawienia wideo" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Wideo zostało przesłane" @@ -12432,18 +13052,18 @@ msgstr "Wideo: {0}" msgid "Videos" msgstr "Filmiki" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Wyświetl profil {0}" @@ -12467,20 +13087,15 @@ msgstr "Wyświetl profil {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Wyświetl profil zablokowanej osoby" @@ -12503,10 +13118,18 @@ msgstr "Wyświetl szczegóły" msgid "View full thread" msgstr "Wyświetl cały wątek" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Wyświetl informacje o tych ostrzeżeniach" @@ -12522,7 +13145,7 @@ msgstr "Pokaż więcej" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Wyświetl profil" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Wyświetl zdjęcie profilowe" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Wyświetl usługę moderacji dostarczoną przez @{0}" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Wyświetl osoby, które lubią ten kanał" @@ -12596,8 +13219,8 @@ msgstr "Wyświetl wyciszone konta" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Wyświetla całe zdjęcie" @@ -12640,8 +13263,8 @@ msgstr "Ostrzegaj o zawartości" msgid "Warn content and filter from feeds" msgstr "Ostrzegaj o zawartości i odfiltruj z kanałów" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Nie znaleziono żadnych wyników dla tego tematu." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Nie udało się wczytać tej rozmowy" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nie udało nam się potwierdzić, czy możesz przesyłać wideo. Spróbuj ponownie." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Damy ci znać, gdy twoje konto będzie gotowe." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "Mamy problemy z siecią, spróbuj ponownie" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Przepraszamy! Wpis, który komentujesz, został usunięty." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Przepraszamy! Nie możemy znaleźć strony, której szukasz." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Jak chcesz nazwać swój pakiet startowy?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Jak się masz?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Kto może wchodzić w interakcje z tym wpisem?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Kto może komentować" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ups!" @@ -12939,7 +13566,7 @@ msgstr "Dlaczego ten pakiet startowy powinien zostać sprawdzony?" msgid "Why should this user be reviewed?" msgstr "Dlaczego ta osoba powinna zostać sprawdzona?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Utwórz wpis" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Skomentuj" @@ -12978,7 +13605,8 @@ msgstr "Pisarze" msgid "Wrong DID returned from server. Received: {0}" msgstr "Nieprawidłowy DID z serwera. Otrzymano: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Tak, usuń ten pakiet startowy" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Tak, odłącz" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Tak, ukryj" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Nie możesz przesyłać filmików." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Możesz kontynuować aktywne rozmowy niezależnie od wybranych opcji." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Możesz teraz logować się przy użyciu nowego hasła." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Możesz ponownie aktywować swoje konto, aby się zalogować. Twój prof 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Możesz to później zmienić w ustawieniach." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Nie masz żadnych zapisanych kanałów." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Możesz dodać maksymalnie 3 kanały" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Aby wygenerować pakiet startowy, musisz obserwować co najmniej siedem innych osób." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Aby zapisać kod QR, przyznaj dostęp do galerii zdjęć" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Nastąpi wylogowanie ze wszystkich kont." @@ -13378,11 +14038,11 @@ msgstr "Nastąpi wylogowanie ze wszystkich kont." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Nie będziesz już otrzymywać powiadomień z tego wątku" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Będziesz teraz otrzymywać powiadomienia z tego wątku" @@ -13390,12 +14050,12 @@ msgstr "Będziesz teraz otrzymywać powiadomienia z tego wątku" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Otrzymasz wiadomość email z \"kodem resetowania\". Wprowadź ten kod tutaj, a następnie ustaw nowe hasło." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "Dzięki tym kanałom będziesz na bieżąco" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Jesteś w kolejce" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo danych)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Dzienny limit przesyłania wideo został osiągnięty (zbyt dużo plików)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "Twoje konto zostało zawieszone" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Twoje konto jest jeszcze zbyt krótko aktywne, aby przesyłać filmiki. Spróbuj ponownie później." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Wszystkie publiczne dane konta można pobrać jako plik \"CAR\". Plik ten nie zawiera osadzonych multimediów, takich jak zdjęcia, ani prywatnych danych, które należy pobrać osobno." @@ -13519,7 +14191,7 @@ msgstr "Twoje odwołanie zostało złożone. Jeśli zakończy się pomyślnie, o msgid "Your birth date" msgstr "Twoja data urodzenia" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Twoje czaty zostały wyłączone" @@ -13527,11 +14199,11 @@ msgstr "Twoje czaty zostały wyłączone" 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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Twój adres email jest nieprawidłowy." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "Twój kanał obserwowanych jest pusty! Zaobserwuj więcej osób, aby zob msgid "Your full handle will be <0>@{0}" msgstr "Twoja nowa nazwa to <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Wyciszone przez ciebie słowa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 46f345c137..c07d39cf3f 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:45\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (ativa)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(link de convite para conversa)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(possui conteúdo incorporado)" @@ -72,9 +76,9 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# curtida} other {# curtidas}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" -msgstr "" +msgstr "{0, plural, one {# membro} other {# membros}}" #. placeholder {0}: diff.value #: src/lib/hooks/useTimeAgo.ts:149 @@ -86,11 +90,16 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mês} other {# meses}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# nova solicitação para entrar} other {# novas solicitações para entrar}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" -msgstr "" +msgstr "{0, plural, one {# pessoa reagiu} other {# pessoas reagiram}} – {1}" #. placeholder {0}: quoteCount ?? 0 #: src/screens/Post/PostQuotes.tsx:34 @@ -109,17 +118,17 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" -msgstr "" +msgstr "{0, plural, one {#me} other {#me}}" #. How many months have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -190,15 +199,15 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>em <1>texto e tags" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" -msgstr "" +msgstr "{0} adicionado à conversa" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" -msgstr "" +msgstr "{0} e {1} adicionados à conversa" #. placeholder {0}: profile.followsCount || 0 #: src/screens/Profile/Header/Metrics.tsx:49 @@ -206,9 +215,9 @@ msgid "{0} following" msgstr "{0} seguindo" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" -msgstr "" +msgstr "{0} está bloqueando você" #. placeholder {0}: sanitizeHandle(profile.handle) #: src/features/liveNow/components/LiveStatusDialog.tsx:84 @@ -228,12 +237,12 @@ msgstr "{0} não é suportado pelo seu dispositivo." #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:83 msgid "{0} joined" -msgstr "" +msgstr "{0} entrou" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:84 msgid "{0} joined the group" -msgstr "" +msgstr "{0} entrou no grupo" #. placeholder {0}: formatCount(i18n, JOINED_THIS_WEEK) #: src/screens/StarterPack/StarterPackLandingScreen.tsx:230 @@ -243,7 +252,7 @@ msgstr "{0} se juntou esta semana" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:96 msgid "{0} left" -msgstr "" +msgstr "{0} restantes" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:97 @@ -264,14 +273,14 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reagiu com {1}" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:57 msgid "{0} was added" -msgstr "" +msgstr "{0} foi adicionado" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:58 @@ -281,7 +290,7 @@ msgstr "{0} foi adicionado ao grupo" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:70 msgid "{0} was removed" -msgstr "" +msgstr "{0} foi removido" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:71 @@ -290,9 +299,9 @@ msgstr "{0} foi removido do grupo" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" -msgstr "" +msgstr "{0}, {1} e {memberCount, plural, one {mais #} other {mais #}} adicionados à conversa" #. placeholder {0}: feed.displayName #. placeholder {1}: sanitizeHandle(feed.creatorHandle, '@') @@ -309,15 +318,40 @@ msgstr "{0}, uma lista por {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Foto de perfil de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Avatar de {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {membro} other {membros}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} membros" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,31 +377,56 @@ msgstr "{0}min" msgid "{0}s" msgstr "{0}s" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Nenhuma solicitação para entrar} one {# solicitação para entrar} other {# solicitações para entrar}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" -msgstr "" +msgstr "{count, plural, one {# novidade} other {# novidades}} na conversa" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# nova solicitação para entrar} other {# novas solicitações para entrar}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" -msgstr "" +msgstr "{count, plural, one {# solicitação} other {# solicitações}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# item não lido} other {# itens não lidos}}" -#. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 -msgid "{count}+" -msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Atualize a página para vê-la.} other {Atualize a página para vê-las todas.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Este post tem # foto.} other {Este post tem # fotos.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Atualize seu app para vê-la.} other {Atualize seu app para vê-las todas.}}" + +#. 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 "{count, plural, other {#+ solicitações para entrar}}" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:56 +msgid "{count}+" +msgstr "{count}+" + +#. Displayed when the number of requests is greater than 20 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" -msgstr "" +msgstr "{count}+ solicitações" #: src/components/dms/DateDivider.tsx:60 msgid "{date} at {time}" -msgstr "" +msgstr "{date} às {time}" #: src/lib/generate-starterpack.ts:104 #: src/screens/StarterPack/Wizard/index.tsx:189 @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} te seguiram" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} juntaram-se ao seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram você" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} te seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} te seguiu de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} curtiu seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} curtiu sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} curtiu sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} removeu a verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} repostou sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} repostou sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} se juntou com o seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verificou você" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} te seguiram" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} curtiram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} repostaram sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} juntaram-se ao seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram você" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} te seguiu" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} te seguiu de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} curtiu seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} curtiu sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} curtiu sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} removeu a verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} repostou sua postagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} repostou sua repostagem" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} se juntou com o seu pacote inicial" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verificou você" @@ -538,16 +597,16 @@ msgstr "{firstAuthorName} verificou você" msgid "{following} following" msgstr "{following} seguindo" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" -msgstr "" +msgstr "Não foi possível adicionar {handle}" #: src/components/dialogs/SearchablePeopleList.tsx:459 msgid "{handle} can't be messaged" msgstr "Não é possível enviar mensagens a {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} não pode receber mensagens" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# hora e {minutesString}} other {# horas e {minutes msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# hora} other {# horas}}" +#. 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 "Mais de {JOIN_REQUESTS_THRESHOLD} novas solicitações para entrar" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "Mais de {JOIN_REQUESTS_THRESHOLD} novas solicitações para entrar" + #. 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!" @@ -570,20 +639,20 @@ msgstr "{MAX_ALT_TEXT, plural, other {O texto alternativo deve ter menos de # ca #: src/screens/Profile/Header/EditProfileDialog.tsx:380 msgid "{MAX_DESCRIPTION, plural, other {Description is too long. The maximum number of characters is #.}}" -msgstr "" +msgstr "{MAX_DESCRIPTION, plural, other {Descrição muito longa. O número máximo de caracteres é #.}}" #: 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 "" +msgstr "{MAX_DISPLAY_NAME, plural, other {Nome de exibição muito longo. O número máximo de caracteres é #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Você pode ocultar no máximo # respostas.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} reagiu com {0} a {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Feeds e usuários favoritos de {name} - junte-se a mim!" msgid "{name}'s starter pack" msgstr "O pacote inicial de {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contato encontrado} other {# contatos encontrados}}" @@ -629,14 +698,14 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" -msgstr "" +msgstr "{requestCount, plural, one {# solicitação} other {# solicitações}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" -msgstr "" +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 @@ -656,6 +725,12 @@ msgstr "{userName} foi verificado" msgid "{userName}'s verifications" msgstr "Verificações de {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, e {2, plural, one {# outro} other {outros #}} es #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {curtida} other {curtidas}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citação} other {citações}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repostagem} other {repostagens}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {salvo} other {salvos}}" @@ -736,9 +811,9 @@ msgid "<0>{0} members" msgstr "<0>{0} membros" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" -msgstr "" +msgstr "<0>{displayName}<1/><2> adicionou você" #: src/screens/Hashtag.tsx:226 #: src/screens/Search/SearchResults.tsx:315 @@ -747,7 +822,7 @@ msgstr "<0>Entre<1> ou <2>crie uma conta<3> <4>para procurar not #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 msgid "<0>Tap here to update your location with GPS." -msgstr "" +msgstr "<0>Toque aqui para atualizar sua localização com GPS." #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #: src/screens/StarterPack/Wizard/index.tsx:494 @@ -795,8 +870,13 @@ msgstr "Ocorreu um erro de rede. Verifique sua conexão com a internet" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Ocorreu um erro de rede. Verifique sua conexão com a internet." @@ -804,7 +884,7 @@ msgstr "Ocorreu um erro de rede. Verifique sua conexão com a internet." msgid "A new code has been sent" msgstr "Um novo código foi enviado" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Uma nova forma de verificação" @@ -827,11 +907,11 @@ msgstr "Uma captura de tela de uma página de perfil com um ícone de sino ao la 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Um destinatário selecionado não é seguido pelo remetente." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Comportamento abusivo ou discriminatório" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Aceitar" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Aceitar" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Aceitar pedido de conversa" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Aceitar solicitação para entrar" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Aceitar solicitação" @@ -860,17 +950,26 @@ msgstr "Aceitar solicitação" msgid "Accept this language suggestion" msgstr "Aceitar esta sugestão de idioma" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Conversas aceitas" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Acesso solicitado! O dono do grupo irá revisar sua solicitação." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Acessibilidade" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Acessibilidade" msgid "Account" msgstr "Conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Conta bloqueada" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Conta seguida" @@ -899,7 +998,7 @@ msgstr "A conta foi suspensa" msgid "Account is deactivated" msgstr "A conta está desativada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Provedor de conta" msgid "Account removed from quick access" msgstr "Conta removida do acesso rápido" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Conta desbloqueada" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Conta deixada de seguir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Conta dessilenciada" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Contas com um ponto de verificação azul ondulado <0><1/> podem verificar outras contas. Esses verificadores confiáveis são selecionados pelo Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Atividade de terceiros" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notificações de atividade" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Adicionar" @@ -999,8 +1094,8 @@ msgstr "Adicionar conta" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Adicionar texto alternativo (opcional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Adicionar outra postagem" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Adicionar outra postagem ao tópico" @@ -1035,7 +1130,7 @@ msgstr "Adicionar senha do app" msgid "Add App Password" msgstr "Adicionar senha do app" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Adicionar rótulo de automação à conta" @@ -1043,27 +1138,27 @@ msgstr "Adicionar rótulo de automação à conta" msgid "Add emoji reaction" msgstr "Adicionar reação de emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" -msgstr "" +msgstr "Adicionar membros à conversa em grupo" #: src/view/com/feeds/ComposerPrompt.tsx:224 msgid "Add image" msgstr "Adicionar imagem" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Adicionar mídia à postagem" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Adicionar membros" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Adicionar mais detalhes (opcional)" @@ -1091,6 +1186,10 @@ msgstr "Adicionar pessoas" msgid "Add people to list" msgstr "Adicionar pessoas à lista" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Adicionar pessoas com um link" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Adicionar Reação" @@ -1139,13 +1238,13 @@ msgid "Add your birthdate" msgstr "Adicione sua data de nascimento" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Adicionado por {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" -msgstr "" +msgstr "Adicionado com link de convite" #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:113 #: src/view/com/modals/UserAddRemoveLists.tsx:163 @@ -1165,12 +1264,12 @@ msgstr "Adicionando membros à lista..." msgid "Additional details (limit 1000 characters)" msgstr "Detalhes adicionais (limite de 1000 caracteres)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Detalhes adicionais (limite de 300 caracteres)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "A solicitação de verificação de idade foi submetida" msgid "Age assurance only takes a few minutes" msgstr "A verificação de idade leva apenas alguns minutos" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@exemplo.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,9 +1340,9 @@ msgstr "Tudo" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" -msgstr "" +msgstr "Todas {0}" #: src/screens/Onboarding/StepSuggestedStarterpacks/StarterPackCard.tsx:97 #: src/screens/StarterPack/StarterPackScreen.tsx:400 @@ -1278,15 +1377,15 @@ msgstr "Permitir acesso às minhas mensagens diretas" msgid "Allow anyone to reply" msgstr "Permitir que qualquer pessoa responda" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Permitir mensagens diretas de" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" -msgstr "" +msgstr "Permitir convites para conversas em grupo de" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:128 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:134 @@ -1338,12 +1437,12 @@ msgstr "Já tem uma conta?" msgid "Already signed in as @{0}" msgstr "Já registrado como @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Texto Alternativo" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "O texto alternativo descreve imagens para usuários cegos e com baixa visão, além de dar contexto a todos." @@ -1387,7 +1486,7 @@ msgstr "Ocorreu um erro" msgid "An error occurred" msgstr "Ocorreu um erro" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Ocorreu um erro ao compactar o vídeo." @@ -1421,7 +1520,8 @@ msgstr "Ocorreu um erro ao carregar o vídeo. Tente novamente." msgid "An error occurred while loading your lists :/" msgstr "Ocorreu um erro ao carregar suas listas :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Ocorreu um erro ao salvar o QR code!" @@ -1432,11 +1532,11 @@ msgstr "Ocorreu um erro ao salvar o QR code!" msgid "An error occurred while trying to follow all" msgstr "Ocorreu um erro ao tentar seguir todos" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Ocorreu um erro ao enviar o vídeo. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Ocorreu um erro ao carregar o vídeo. Por favor, verifique sua conexão de internet e tente novamente." @@ -1456,26 +1556,30 @@ msgstr "Uma ilustração retratando avatares de usuário fluindo de um livro de 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" +#: 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 "Uma ilustração do app Bluesky com um avião de papel saindo, representando o convite de amigos" + #: 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 "Uma ilustração mostrando que o Bluesky seleciona verificadores confiáveis e estes, por sua vez, verificam contas de usuário individuais." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -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 "Um link de convite permite que pessoas entrem nesta conversa em grupo sem serem adicionadas diretamente. Você controla quem pode entrar na conversa. Você pode desativar o link a qualquer momento." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "Outro problema" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Ocorreu um problema ao criar a conversa em grupo. Por favor, tente novamente." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Ocorreu um problema ao tentar abrir a conversa" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Ocorreu um problema, tente novamente." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Um mockup de um iPhone mostrando o aplicativo Bluesky aberto ao perfil de um usuário verificado com uma marca de seleção azul ao lado de seu nome de exibição." @@ -1539,13 +1643,17 @@ msgstr "Todos" msgid "Anyone can interact" msgstr "Qualquer um pode interagir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Qualquer pessoa pode entrar" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Qualquer um pode se juntar instantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Qualquer um pode pedir para se juntar" @@ -1555,11 +1663,11 @@ msgstr "Qualquer um pode pedir para se juntar" msgid "Anyone who follows me" msgstr "Qualquer um que me segue" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "" +msgstr "Qualquer pessoa que o tenha não poderá mais entrar ou solicitar entrada. Você sempre pode criar um novo." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "A senha do app deve conter no mínimo 4 caracteres" msgid "App passwords" msgstr "Senhas de aplicativo" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Senhas de Aplicativo" @@ -1618,7 +1726,7 @@ msgstr "Recorrer da suspensão de transmissão" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Recurso enviado" @@ -1632,14 +1740,14 @@ msgstr "Recorrer da suspensão" msgid "Appeal Suspension" msgstr "Recorrer da suspensão" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Recorrer desta decisão" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Postagem arquivada" @@ -1675,9 +1783,9 @@ msgstr "Você está realmente certo disso?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Deseja mesmo excluir a senha do app \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" +msgstr "Deseja mesmo excluir esta mensagem? A mensagem será excluída para você, mas não para os demais participantes." #: src/screens/StarterPack/StarterPackScreen.tsx:684 msgid "Are you sure you want to delete this starter pack?" @@ -1688,23 +1796,29 @@ msgstr "Deseja mesmo excluir este pacote inicial?" msgid "Are you sure you want to discard your changes?" msgstr "Deseja mesmo descartar suas alterações?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" -msgstr "" +msgstr "Tem certeza de que deseja sair de {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Tem certeza de que deseja sair desta conversa?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Deseja mesmo sair desta conversa? As mensagens serão excluídas apenas para você." +#: src/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 "Tem certeza de que deseja sair desta conversa? Suas mensagens serão excluídas para você, mas não para os outros participantes." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Deseja mesmo remover isso de seus feeds?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Tem certeza de que deseja descartar esta postagem?" @@ -1724,8 +1838,8 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudez artística ou não erótica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Atribuir tópico ao algoritmo" @@ -1735,7 +1849,7 @@ msgstr "No mínimo 8 caracteres" #: src/screens/Settings/components/DeleteAccountDialog.tsx:338 msgid "AT Protocol FAQ" -msgstr "" +msgstr "FAQ do Protocolo AT" #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:48 msgctxt "Name of app icon variant" @@ -1752,7 +1866,7 @@ msgstr "Conta automatizada" msgid "Automation label" msgstr "Rótulo de automação" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Rótulo de Automação" @@ -1767,12 +1881,12 @@ msgstr "Reproduzir vídeos e GIFs automaticamente" msgid "Available" msgstr "Disponível" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Disponível" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Disponível" msgid "Back" msgstr "Voltar" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Voltar às Conversas" @@ -1810,11 +1926,11 @@ msgstr "Usuário banido retornando" #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:259 msgid "Based on your device's location, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "Com base na localização do seu dispositivo, achamos que você está em <0>{region}. Essa estimativa pode não ser correta caso esteja usando uma VPN." #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:265 msgid "Based on your network, we think you're in <0>{region}. This estimate may be inaccurate if you're using a VPN." -msgstr "" +msgstr "Com base em sua rede, achamos que você está em <0>{region}. Essa estimativa pode não ser correta caso esteja usando uma VPN." #: src/view/screens/Lists.tsx:35 #: src/view/screens/ModerationModlists.tsx:35 @@ -1832,7 +1948,7 @@ msgstr "Para criar ou responder uma postagem, você deve primeiro verificar o se msgid "Before creating a starter pack, you must first verify your email." msgstr "Para criar um pacote inicial, você precisa verificar seu email." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Para aceitar este pedido de conversa, você deve primeiro verificar o seu email." @@ -1840,13 +1956,14 @@ msgstr "Para aceitar este pedido de conversa, você deve primeiro verificar o se msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Para que possa receber notificações das postagens de {name}, você deve primeiro verificar seu email." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Para enviar mensagens a outro usuário, você deve primeiro verificar o seu email." @@ -1874,59 +1991,53 @@ msgstr "Data de nascimento" msgid "Birthday" msgstr "Aniversário" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" -msgstr "" +msgstr "Bloquear {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloquear conta" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Bloquear conta?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Bloquear conta?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloquear contas" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Bloquear e excluir" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Bloquear e sair" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Lista de bloqueio" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bloquear ou denunciar" @@ -1936,9 +2047,9 @@ msgstr "Bloquear estas contas?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloquear usuário" @@ -1946,17 +2057,17 @@ msgstr "Bloquear usuário" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloquear usuário" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Bloquear usuário e/ou excluir esta conversa" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Bloquear usuário e/ou sair desta conversa" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloqueado" @@ -1964,14 +2075,12 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Contas bloqueadas não podem te responder, mencionar ou interagir." @@ -1987,7 +2096,7 @@ msgstr "Bloquear o rotulador não impede que ele adicione rótulos a sua conta." msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Os bloqueios são públicos. Contas bloqueadas não podem te responder, mencionar ou interagir com você." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Bloquear não impede que rótulos sejam colocados em sua conta, mas impedirá que esta conta responda aos seus tópicos e interaja com você." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar que a data mostrada é legítima." @@ -2029,7 +2138,7 @@ msgstr "O Bluesky é bem melhor com amigos!" msgid "Bluesky is more fun with friends" msgstr "O Bluesky é mais divertido com amigos" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "O Bluesky é mais divertido com os amigos! Importe seus contatos para ver quem já está aqui." @@ -2037,11 +2146,15 @@ msgstr "O Bluesky é mais divertido com os amigos! Importe seus contatos para ve msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "O Bluesky é mais divertido com amigos. Você quer convidar alguns dos seus? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "O Bluesky precisa de acesso à câmera para escanear QR codes de outros perfis." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Termos de Serviço do Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "O Bluesky selecionará um grupo de contas recomendadas da sua rede." 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 "O Bluesky não exibirá seu perfil e postagens a usuários desconectados. Outros apps talvez não respeitem esta solicitação. Isso não torna sua conta privada." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "O Bluesky irá proativamente verificar contas notáveis e autênticas." @@ -2081,6 +2194,10 @@ msgstr "Livros" msgid "Breaking site rules" msgstr "Violação das regras do site" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Reúna até 50 amigos em uma só conversa." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "Corporativo" msgid "Button to go back to the home timeline" msgstr "Botão para voltar à linha do tempo inicial" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Por {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Por <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Por <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Ao criar uma conta você concorda com os <0>Termos de Serviço." msgid "By you" msgstr "Por você" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Câmera" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Acesso à câmera necessário" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2192,15 +2323,18 @@ msgstr "Câmera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Câmera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Câmera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancelar" @@ -2248,9 +2384,9 @@ msgstr "Cancelar reativação e desconectar" msgid "Cancel search" msgstr "Cancelar pesquisa" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Não é possível interagir com um usuário bloqueado" @@ -2264,7 +2400,7 @@ msgstr "Legendas (.vtt)" msgid "Captions & alt text" msgstr "Legendas e texto alternativo" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carrossel" @@ -2297,7 +2433,7 @@ msgstr "Mudar idioma do aplicativo" msgid "Change Handle" msgstr "Alterar nome de usuário" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Alterar serviço de moderação" @@ -2310,11 +2446,11 @@ msgstr "Alterar senha" msgid "Change password dialog" msgstr "Janela de troca de senha" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Alterar categoria de relatório" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Alterar motivo da denúncia" @@ -2344,26 +2480,32 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Conversas" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Conversa excluída" #: src/components/dms/getSystemMessageInfo.ts:108 msgid "Chat ended" -msgstr "" +msgstr "Conversa encerrada" + +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Link de convite para conversa não está mais disponível" #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" -msgstr "" +msgstr "Conversa bloqueada" #: src/lib/hooks/useNotificationHandler.ts:148 msgid "Chat messages - silent" @@ -2373,59 +2515,68 @@ msgstr "Conversas — silêncio" msgid "Chat messages - sound" msgstr "Conversas — som" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Conversa não encontrada." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "Donos de conversas não podem sair de uma conversa em grupo." + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "O destinatário da conversa não é seguido pelo remetente." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Caixa de entrada de pedidos de conversa" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Pedidos de conversa" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Configurações de conversa" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Configurações de Conversa" #: src/components/dms/getSystemMessageInfo.ts:115 msgid "Chat title changed" -msgstr "" +msgstr "Título da conversa alterado" #. placeholder {0}: data.newName #: src/components/dms/getSystemMessageInfo.ts:114 msgid "Chat title changed to {0}" -msgstr "" +msgstr "Título da conversa alterado para {0}" #: src/components/dms/getSystemMessageInfo.ts:106 msgid "Chat unlocked" -msgstr "" +msgstr "Conversa desbloqueada" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Conversa dessilenciada" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Conversas" @@ -2479,9 +2630,9 @@ msgstr "Selecionar idiomas da postagem" msgid "Choose this color as your avatar" msgstr "Selecionar esta cor como sua foto de perfil" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." -msgstr "" +msgstr "Escolha quem pode entrar nesta conversa em grupo e como." #: src/components/contacts/components/InviteInfo.tsx:57 msgid "Choose who to invite" @@ -2535,7 +2686,7 @@ msgstr "clique aqui" #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:129 msgid "Click here to add people to this group chat" -msgstr "" +msgstr "Clique aqui para adicionar pessoas nesta conversa em grupo" #: src/ageAssurance/components/NoAccessScreen.tsx:129 msgid "Click here to contact our support team" @@ -2543,7 +2694,7 @@ msgstr "Clique aqui para contatar nossa equipe de suporte" #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:143 msgid "Click here to create or manage an invite link for this group chat" -msgstr "" +msgstr "Clique aqui para criar ou gerenciar um link de convite para esta conversa em grupo" #: src/ageAssurance/components/NoAccessScreen.tsx:263 msgid "Click here to delete your account" @@ -2558,7 +2709,7 @@ msgstr "Clique aqui para terminar sessão" msgid "Click here to resend the email" msgstr "Clique aqui para reenviar o email" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Clique aqui para reiniciar o processo de verificação." @@ -2567,20 +2718,20 @@ msgstr "Clique aqui para reiniciar o processo de verificação." msgid "Click here to update your birthdate" msgstr "Clique aqui para atualizar sua data de nascimento" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Clique aqui para atualizar seu email" #: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:144 msgid "Click here to view the invite link for this group chat" -msgstr "" +msgstr "Clique aqui para ver o link de convite para esta conversa em grupo" #. placeholder {0}: isCashtag ? tag : `#${tag}` #: src/components/RichTextTag.tsx:56 msgid "Click to open tag menu for {0}" msgstr "Clique para abrir o menu de tag para {0}" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Clique para tentar enviar novamente a mensagem" @@ -2594,28 +2745,30 @@ msgstr "Clique para tentar enviar novamente a mensagem" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Clique para tentar enviar novamente a mensagem" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Fechar" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Fechar janela ativa" @@ -2647,6 +2800,10 @@ msgstr "Fechar janela ativa" msgid "Close alert" msgstr "Fechar alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Fechar banner" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Fechar parte inferior" @@ -2657,8 +2814,10 @@ msgstr "Fechar parte inferior" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Fechar janela" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Fechar imagem" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Fechar menu" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Fechar leitor" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Fechar o banner de solicitações recebidas" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Fechar esta janela" @@ -2695,18 +2866,22 @@ msgstr "Fechar janela de boas-vindas" msgid "Closes password update alert" msgstr "Fecha o alerta de mudança de senha" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Fecha a janela de nova postagem e descarta o rascunho" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Esconder lista de usuários" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Fecha a lista de usuários de uma notificação" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Cor" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Quadrinhos" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -2740,12 +2915,12 @@ msgstr "Complete o captcha" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Escrever nova postagem" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Escreva postagens de até {0, plural, other {# caracteres}}" @@ -2753,11 +2928,11 @@ msgstr "Escreva postagens de até {0, plural, other {# caracteres}}" msgid "Compose reply" msgstr "Escrever resposta" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Comprimindo GIF..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Comprimindo vídeo..." @@ -2780,7 +2955,7 @@ msgstr "Configurável no <0>painel de moderação." msgid "Confirm" msgstr "Confirmar" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Entrar em contato com o suporte" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "A sincronização de contatos não está disponível neste dispositivo, pois o aplicativo não pode acessar seus contatos." @@ -2825,11 +3000,11 @@ msgstr "A sincronização de contatos não está disponível neste dispositivo, msgid "Contact us" msgstr "Fale conosco" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Contatos importados" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Contatos removidos" @@ -2842,7 +3017,7 @@ msgstr "Conteúdo e mídia" msgid "Content and media" msgstr "Conteúdo e mídia" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Conteúdo e mídia" @@ -2889,7 +3064,7 @@ msgstr "Fundo do menu, clique para fechá-lo." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Continuar tópico" msgid "Continue thread..." msgstr "Continuar tópico..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" -msgstr "" +msgstr "Prosseguir para o nome do grupo" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Continuar com o próximo passo" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Conversa" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversa excluída" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversa excluída" @@ -2939,15 +3114,22 @@ msgstr "Conversa excluída" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Você saiu da conversa" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Conversa não encontrada." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Número de versão do app copiada" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiado!" msgid "Copies build version to clipboard" msgstr "Copia o número de versão para a área de transferência" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Copia a URL canônica do perfil para a área de transferência" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiar" @@ -2997,6 +3184,11 @@ msgstr "Copiar DID" msgid "Copy host" msgstr "Copiar host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Copiar link de convite" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Copiar link da lista" msgid "Copy link to post" msgstr "Copiar link da postagem" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copiar link para o perfil" @@ -3027,8 +3219,8 @@ msgstr "Copiar link para o perfil" msgid "Copy link to starter pack" msgstr "Copiar link para o pacote inicial" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiar texto da mensagem" @@ -3037,12 +3229,12 @@ msgstr "Copiar texto da mensagem" msgid "Copy post at:// URI" msgstr "Copiar URI at:// da postagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiar texto da postagem" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiar QR code" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de direitos autorais" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Não foi possível capturar o QR code" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Não foi possível conectar ao feed personalizado" @@ -3065,31 +3261,43 @@ msgstr "Não foi possível conectar ao feed personalizado" msgid "Could not connect to feed service" msgstr "Não foi possível conectar ao serviço do feed" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "Não foi possível copiar – por favor, tente novamente" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "Não foi possível baixar – por favor, tente novamente" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" -msgstr "" +msgstr "Não foi possível obter o post" #: src/view/com/feeds/MissingFeed.tsx:183 msgid "Could not find profile" msgstr "Não foi possível encontrar o perfil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Não foi possível seguir todas as correspondências - por favor, verifique sua conexão de rede." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Não foi possível seguir todas as correspondências. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Não foi possível sair desta conversa" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "Não foi possível sair da conversa." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Não foi possível carregar o feed" @@ -3100,7 +3308,11 @@ msgstr "Não foi possível carregar o feed" msgid "Could not load list" msgstr "Não foi possível carregar a lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "Não foi possível carregar o perfil" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Não foi possível silenciar esta conversa" @@ -3108,11 +3320,19 @@ msgstr "Não foi possível silenciar esta conversa" msgid "Could not process your video" msgstr "Não foi possível processar seu vídeo" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "Não foi possível remover o membro." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Não foi possível salvar as alterações: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "Não foi possível compartilhar – por favor, tente novamente" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Não foi possível atualizar as configurações de notificação" @@ -3139,7 +3359,7 @@ msgstr "Código de país" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Criar" @@ -3153,13 +3373,13 @@ msgstr "Criar uma lista" msgid "Create a list from this starter pack" msgstr "Criar uma lista a partir deste pacote inicial" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Criar um pacote inicial" @@ -3174,13 +3394,14 @@ msgstr "Crie um pacote inicial para mim" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Adicionar uma foto de perfil" @@ -3206,7 +3427,7 @@ msgstr "Adicionar uma foto de perfil" msgid "Create another" msgstr "Criar outro" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Criar conversa em grupo" @@ -3228,19 +3449,20 @@ msgstr "Criar lista a partir de pacote inicial" msgid "Create moderation list" msgstr "Criar lista de moderação" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Criar nova conta" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" -msgstr "" +msgstr "Criar ou modificar um link de convite para esta conversa em grupo" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Criar denúncia para {0}" @@ -3256,8 +3478,8 @@ msgstr "Criar lista de usuários" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Criou {0}" @@ -3270,6 +3492,10 @@ msgstr "O criador foi bloqueado" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Conversa atual" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tema escuro" msgid "Date of birth" msgstr "Data de nascimento" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Amanhecer" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Dia" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3327,7 +3561,7 @@ msgstr "Painel de depuração" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:469 msgid "Decline this language suggestion" -msgstr "" +msgstr "Recusar esta sugestão de idioma" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:84 msgid "Deepfake adult content" @@ -3341,8 +3575,8 @@ msgstr "Padrão" msgid "Default icons" msgstr "Ícones padrão" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Excluir senha do app" msgid "Delete app password?" msgstr "Excluir senha do app?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Excluir conversa" @@ -3378,19 +3612,19 @@ msgstr "Excluir conversa" msgid "Delete chat declaration record" msgstr "Excluir registro da conversa" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Excluir contatos" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Excluir conversa" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Excluir para mim" @@ -3399,11 +3633,11 @@ msgstr "Excluir para mim" msgid "Delete list" msgstr "Excluir lista" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Excluir mensagem" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Excluir mensagem para mim" @@ -3411,9 +3645,9 @@ msgstr "Excluir mensagem para mim" msgid "Delete my account" msgstr "Excluir minha conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Excluir postagem" @@ -3430,17 +3664,17 @@ msgstr "Excluir pacote inicial?" msgid "Delete this list?" msgstr "Excluir esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Excluir esta postagem?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Excluído" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Conta excluída" @@ -3464,19 +3698,19 @@ msgstr "Descrição" #: src/components/SendErrorReportDialog.tsx:82 msgid "Description (1000 characters max)" -msgstr "" +msgstr "Descrição (máximo de 1000 caracteres)" #: src/view/com/composer/GifAltText.tsx:156 #: src/view/com/composer/photos/ImageAltTextDialog.tsx:124 msgid "Descriptive alt text" msgstr "Texto alternativo descritivo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Desanexar citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Desanexar citação?" @@ -3507,13 +3741,13 @@ msgstr "Ajuste quem pode interagir com esta postagem" msgid "Dim" msgstr "Menos escuro" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Desativar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Desabilitar 2FA" @@ -3521,7 +3755,7 @@ msgstr "Desabilitar 2FA" msgid "Disable captions" msgstr "Desativar legendas" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Desabilitar 2FA por e-mail" @@ -3534,10 +3768,10 @@ msgstr "Desativar 2FA por e-mail" msgid "Disable haptic feedback" msgstr "Desativar feedback tátil" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" -msgstr "" +msgstr "Desativar link" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:628 msgid "Disable quote posts of this post" @@ -3547,7 +3781,7 @@ msgstr "Desativar citações desta postagem" msgid "Disable replies entirely" msgstr "Desativar respostas completamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Desativar este link de convite?" @@ -3560,9 +3794,9 @@ msgstr "Desativado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alterações?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Descartar postagem?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Desconectar Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Descobrir novos feeds" msgid "Discover New Feeds" msgstr "Descobrir novos feeds" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Dispensar" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Dispensar banner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Dispensar erro" @@ -3642,6 +3877,10 @@ msgstr "Dispensar esta seção" msgid "Dismiss this suggestion" msgstr "Dispensar esta sugestão" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Fecha o leitor de QR code" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "Não inclui nudez." msgid "Domain verified!" msgstr "Domínio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui." @@ -3681,7 +3920,7 @@ msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui." msgid "Don’t see a code? <0>Click here to resend." msgstr "Não vê um código? <0>Clique aqui para reenviar." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Não viu o email? <0>Clique aqui para reenviar." @@ -3700,16 +3939,21 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes estão #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Concluído" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Toque duas vezes para fechar diálogo" @@ -3737,19 +3981,14 @@ msgstr "Toque duas vezes para fechar diálogo" msgid "Double tap to like" msgstr "Toque duas vezes para curtir" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Baixar" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Baixar o Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Baixar arquivo CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Baixar arquivo CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Baixar dados da conversa" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Baixar dados da conversa" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Baixar imagem" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Baixar QR code de convite" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Baixar dados do perfil" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Baixar dados do perfil" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Doxxing" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Devido a leis na sua região, certos recursos no Bluesky estão restrito msgid "Duration:" msgstr "Duração:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Anoitecer" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "p. e.x. Bruna" @@ -3823,9 +4079,8 @@ msgstr "ex.: Perfis que são irritantes." msgid "Eating disorders" msgstr "Transtornos alimentares" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editar foto de perfil" @@ -3847,19 +4102,19 @@ msgstr "Editar foto de perfil" msgid "Edit Feeds" msgstr "Editar feeds" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Editar nome do grupo" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editar imagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editar opções de interação" @@ -3868,9 +4123,18 @@ msgstr "Editar opções de interação" msgid "Edit interests" msgstr "Editar interesses" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Editar link de convite" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Editar link de convite" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" -msgstr "" +msgstr "Editar configurações do link" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:191 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:194 @@ -3886,20 +4150,15 @@ msgstr "Editar status ao vivo" msgid "Edit moderation list" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar meus feeds" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Editar nome" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Editar notificações de {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Pessoas" @@ -3912,12 +4171,12 @@ msgstr "Editar opções de interação de postagens" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Editar perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editar perfil" @@ -3925,7 +4184,8 @@ msgstr "Editar perfil" msgid "Edit starter pack" msgstr "Editar pacote inicial" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Editar o nome deste grupo" @@ -3937,7 +4197,7 @@ msgstr "Editar lista de usuários" msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Editar pacote inicial" @@ -3971,7 +4231,7 @@ msgstr "Endereço de e-mail" msgid "Email Resent" msgstr "E-mail reenviado" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Email enviado!" @@ -4006,8 +4266,8 @@ msgstr "Incorpore esta postagem no seu site. É só copiar o trecho seguinte e c msgid "Embedded video player" msgstr "Reprodutor interno de vídeo" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Ativar" @@ -4025,7 +4285,7 @@ msgstr "Habilitar conteúdo adulto" msgid "Enable captions" msgstr "Ativar legendas" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Habilitar 2FA por email" @@ -4038,13 +4298,12 @@ msgstr "Ativar mídia externa" msgid "Enable media players for" msgstr "Ativar reprodutores de mídia para" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Ative as notificações de uma conta ao visitar seu perfil e pressionar no <0>ícone de sino <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Ativar notificações no dispositivo" @@ -4091,8 +4350,8 @@ msgstr "Insira uma senha" msgid "Enter a word or tag" msgstr "Digite uma palavra ou tag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Inserir código" @@ -4143,12 +4402,12 @@ msgstr "Entra em tela cheia" msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Erro ao obter os dados mais recentes." @@ -4185,23 +4444,23 @@ msgstr "Todos podem responder" msgid "Everybody can reply to this post." msgstr "Todos podem responder esta postagem." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Demais itens" @@ -4217,16 +4476,16 @@ msgstr "Exclui usuários que você segue" msgid "Exit fullscreen" msgstr "Sair da tela cheia" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expandir texto alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expandir lista de usuário" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou esconder a postagem que você está respondendo" @@ -4238,7 +4497,7 @@ msgstr "Expandir texto da postagem" msgid "Expands or collapses post text" msgstr "Expande ou esconde o texto da postagem" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Era esperado que o URI fosse resolvido para um registro" @@ -4277,10 +4536,10 @@ msgstr "Mídia explícita ou pertubadora" msgid "Explicit sexual images." msgstr "Imagens sexualmente explícitas." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" @@ -4289,14 +4548,11 @@ msgstr "Explorar" msgid "Explore the app" msgstr "Explorar o aplicativo" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" -msgstr "" +msgstr "Exportar meus dados de conversa" #: src/screens/Settings/AccountSettings.tsx:170 #: src/screens/Settings/AccountSettings.tsx:174 @@ -4305,7 +4561,7 @@ msgstr "Exportar meus dados" #: src/screens/Settings/components/ExportCarDialog.tsx:97 msgid "Export my profile data" -msgstr "" +msgstr "Exportar meus dados de perfil" #: src/screens/Settings/ContentAndMediaSettings.tsx:86 #: src/screens/Settings/ContentAndMediaSettings.tsx:89 @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferências de Mídia Externa" @@ -4331,18 +4587,22 @@ msgstr "Preferências de Mídia Externa" msgid "Extremist content" msgstr "Conteúdo extremista" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Falha ao aceitar conversa" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Falha ao aceitar solicitação para entrar" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Falha ao adicionar reação de emoji" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Falha ao adicionar membros" @@ -4354,39 +4614,40 @@ msgstr "Falha ao adicionar ao pacote inicial" msgid "Failed to change handle. Please try again." msgstr "Não foi possível alterar o nome de usuário. Por favor tente novamente." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" -msgstr "" +msgstr "Falha ao copiar link" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:173 msgid "Failed to create app password. Please try again." msgstr "Não foi possível criar a senha de aplicativo. Por favor tente novamente." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Falha ao criar conversa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" -msgstr "" +msgstr "Falha ao criar link de convite" #: src/screens/StarterPack/Wizard/index.tsx:250 #: src/screens/StarterPack/Wizard/index.tsx:260 msgid "Failed to create starter pack" msgstr "Falha ao criar o pacote inicial" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Falha ao excluir conversa" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Não foi possível excluir esta mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Não foi possível excluir a postagem, por favor tente novamente." @@ -4394,24 +4655,24 @@ msgstr "Não foi possível excluir a postagem, por favor tente novamente." msgid "Failed to delete starter pack" msgstr "Falha ao excluir o pacote inicial" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" -msgstr "" +msgstr "Falha ao desativar link de convite" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Falha ao desconectar Germ DM. Erro: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Falha ao editar o nome do grupo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Falha ao editar o link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Falha ao ativar o link de convite" @@ -4427,19 +4688,27 @@ msgstr "Não foi possível seguir todos os amigos, por favor tente novamente" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Não foi possível ocultar a sugestão, verifique sua conexão com a internet" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Falha ao ignorar solicitação para entrar" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Falha ao entrar na conversa em grupo. Por favor, tente novamente." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Falha ao iniciar o aplicativo de SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Falha ao sair da conversa em grupo" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Falha ao carregar conversas" @@ -4456,17 +4725,8 @@ msgstr "Não foi possível carregar os feeds" msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferências de feeds" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Falha ao carregar configurações de notificação." @@ -4493,40 +4753,39 @@ msgstr "Falha ao carregar feeds sugeridos" msgid "Failed to load suggested follows" msgstr "Falha ao carregar sugestões a seguir" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" -msgstr "" +msgstr "Falha ao bloquear conversa em grupo" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Falha ao marcar todos os pedidos como lidos" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" -msgstr "" +msgstr "Falha ao silenciar conversa em grupo" #: src/state/queries/pinned-post.ts:75 msgid "Failed to pin post" msgstr "Falha ao fixar postagem" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Falha ao reconectar Germ DM. Erro: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Falha ao remover os dados devido a um erro de rede, verifique sua conexão com a internet." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Falha ao remover dados. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Falha ao remover reação de emoji" @@ -4534,23 +4793,29 @@ msgstr "Falha ao remover reação de emoji" msgid "Failed to remove from starter pack" msgstr "Falha ao remover do pacote inicial" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" -msgstr "" +msgstr "Falha ao remover membro da conversa em grupo" #: src/components/verification/VerificationRemovePrompt.tsx:34 msgid "Failed to remove verification" msgstr "Falha ao remover a verificação" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Falha ao cancelar sua solicitação. Por favor, tente novamente." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Falha ao determinar localização. Por favor, tente novamente." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Não foi possível salvar o rascunho" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Não foi possível salvar a imagem" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Falha ao salvar seus interesses." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Falha ao enviar email, por favor tente novamente." @@ -4580,29 +4845,29 @@ msgstr "Falha ao enviar relatório" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Falha ao enviar o recurso, tente novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Falha ao alterar o silenciamento do tópico, tente novamente" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" -msgstr "" +msgstr "Falha ao desbloquear conversa em grupo" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:107 msgid "Failed to unpin list" msgstr "Falha ao desafixar lista" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Falha ao atualizar configurações de 2FA por email" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Falha ao atualizar o email, por favor tente novamente." @@ -4614,7 +4879,7 @@ msgstr "Falha ao atualizar os feeds" msgid "Failed to update notification declaration" msgstr "Falha ao atualizar a declaração de notificação" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Falha ao atualizar as configurações" @@ -4641,7 +4906,7 @@ msgstr "Conta falsa ou bot" msgid "False information about elections" msgstr "Informações falsas sobre eleições" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed por {0}" @@ -4662,7 +4927,7 @@ msgstr "Criador do feed" msgid "Feed identifier" msgstr "Identificador do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu do feed" @@ -4676,25 +4941,25 @@ msgstr "Feed indisponível" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Comentários" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Comentários enviados para o operador do feed" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,7 @@ msgstr "Filtrar pesquisa por idioma (atual: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtre de quem você receberá notificações" @@ -4747,11 +5012,11 @@ msgstr "Filtre de quem você receberá notificações" msgid "Finalizing" msgstr "Finalizando" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Finalmente!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Finalmente! Guarde as postagens que importam para você. Salve-as para as rever a qualquer momento." @@ -4768,19 +5033,17 @@ msgstr "Finanças" msgid "Find accounts to follow" msgstr "Encontre contas para seguir" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Encontrar Contatos" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Encontrar Amigos" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Encontrar amigos a partir dos contatos" +msgid "Find and invite friends" +msgstr "Encontrar e convidar amigos" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Encontrar Contatos" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Encontrar meus amigos" msgid "Find people to follow" msgstr "Encontre pessoas para seguir" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Encontre pessoas que você conhece" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Encontre postagens, usuários e feeds no Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Encontrar seus amigos" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encontre seus amigos no Bluesky verificando o seu número de telefone e combinando com os seus contatos. Nós protegemos suas informações e você controla o que acontece a seguir. <0>Saiba mais" @@ -4847,24 +5114,24 @@ msgstr "Focar o campo de busca" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Seguir" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Seguir {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" -msgstr "" +msgstr "Seguir {displayName}" #: src/screens/VideoFeed/index.tsx:845 msgid "Follow {handle}" @@ -4892,8 +5159,8 @@ msgstr "Seguir conta" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Seguir todas as contas" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Seguir de volta" @@ -4916,7 +5183,7 @@ msgstr "Seguir de volta" msgid "Followed all accounts!" msgstr "Seguiu todas as contas!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Todas as correspondências foram seguidas" @@ -4944,8 +5211,12 @@ msgstr "Seguido por <0>{0} e <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1}, e {2, plural, one {# outro} other {outros #}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Seguidores podem entrar" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que você conhece" @@ -4960,10 +5231,10 @@ msgstr "Seguidores que você conhece" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Seguindo" @@ -4977,14 +5248,14 @@ msgstr "Seguindo" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Seguindo {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" -msgstr "" +msgstr "Seguindo {displayName}" #: src/screens/VideoFeed/index.tsx:844 msgid "Following {handle}" @@ -4995,19 +5266,16 @@ msgstr "Seguindo {handle}" msgid "Following feed preferences" msgstr "Preferências do feed principal" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferências do feed principal" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Segue você" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Segue Você" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Fonte" @@ -5065,11 +5333,16 @@ msgstr "Esqueceu a senha?" msgid "Forgot?" msgstr "Esqueceu?" +#. 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 "Quatro balões de mensagem representando uma conversa em grupo. Primeira mensagem: \"Você ouviu a novidade? O Bluesky agora tem conversas em grupo!\" Segunda mensagem: \"omg, 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 msgid "Free your feed" msgstr "Libere o seu feed" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "De" @@ -5086,82 +5359,86 @@ msgstr "Por <0/>" msgid "Generate a starter pack" msgstr "Gere um pacote inicial" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Gerar link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Gerar novo link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Gerar novo link" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM desconectado" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Link do Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM reconectado" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obter ajuda" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Seja notificado quando pessoas começam a te seguir." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Seja notificado quando pessoas curtem suas repostagens." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Seja notificado quando pessoas curtem suas postagens." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "Receba notificações quando pessoas curtirem seus reposts." + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Seja notificado quando pessoas te mencionarem." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Seja notificado quando pessoas citarem suas postagens." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Seja notificado quando pessoas responderem suas postagens." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Seja notificado quando pessoas repostam suas repostagens." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Seja notificado quando pessoas repostam suas postagens." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Receba notificações quando pessoas repostarem seus reposts." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "Receba notificações quando houver atividade em posts que você está acompanhando." + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Seja notificado sobre novas postagens" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Seja notificado sobre postagens e respostas das contas que você escolher." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Seja notificado de novas postagens de {name}" @@ -5174,27 +5451,27 @@ msgstr "Seja notificado da atividade desta conta" msgid "Get notified when {name} posts" msgstr "Seja notificado quando {name} postar" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Seja notificado quando alguém postar" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Vamos começar" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF enviado" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Dê uma cara nova pro seu perfil" @@ -5213,20 +5490,20 @@ msgstr "Glorificação da violência" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Voltar" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Voltar" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Voltar para a etapa anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Voltar para a tela inicial" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Voltar para a tela inicial" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Voltar para a tela inicial" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Entrar ao vivo (desabilitado)" msgid "Go live for" msgstr "Entrar ao vivo por" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Ir para perfil de {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Ir para as configurações da conta" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ir para a conversa com {0}" @@ -5296,35 +5571,42 @@ msgstr "Ir para o feed" msgid "Go to next" msgstr "Próximo" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ir para este perfil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" -msgstr "" +msgstr "Ir para a conversa em grupo chamada \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ir para o perfil deste usuário" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" -msgstr "" +msgstr "Ir para o perfil deste usuário" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 msgid "Going live is currently disabled for your account" msgstr "O modo Ao Vivo está desabilitado para a sua conta no momento" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Entendi" +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Conceder acesso" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5340,59 +5622,75 @@ msgstr "Conteúdo violento explícito" msgid "Grooming or predatory behavior" msgstr "Aliciamento (grooming) ou comportamento predatório" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Conversa em grupo" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" -msgstr "" +msgstr "Diálogo de link de convite da conversa em grupo" + +#: src/screens/Messages/ConversationSettings/index.tsx:417 +msgctxt "toast" +msgid "Group chat locked" +msgstr "Conversa em grupo bloqueada" + +#: src/screens/Messages/ConversationSettings/index.tsx:382 +msgctxt "toast" +msgid "Group chat muted" +msgstr "Conversa em grupo silenciada" + +#: src/screens/Messages/ConversationSettings/index.tsx:369 +msgctxt "toast" +msgid "Group chat name updated" +msgstr "Nome da conversa em grupo atualizado" + +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 +msgid "Group chat settings" +msgstr "Configurações da conversa em grupo" + +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 +msgctxt "toast" +msgid "Group chat unlocked" +msgstr "Conversa em grupo desbloqueada" #: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" -msgid "Group chat locked" -msgstr "" - -#: src/screens/Messages/ConversationSettings/index.tsx:352 -msgctxt "toast" -msgid "Group chat muted" -msgstr "" - -#: src/screens/Messages/ConversationSettings/index.tsx:340 -msgctxt "toast" -msgid "Group chat name updated" -msgstr "" - -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 -msgid "Group chat settings" -msgstr "" - -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 -msgctxt "toast" -msgid "Group chat unlocked" -msgstr "" - -#: src/screens/Messages/ConversationSettings/index.tsx:354 -msgctxt "toast" msgid "Group chat unmuted" -msgstr "" +msgstr "Conversa em grupo dessilenciada" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Conversas em grupo" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Conversas em grupo só estão disponíveis para usuários maiores de 18 anos." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Conversas em grupo só podem ter um máximo de {0, plural, other {# pessoas}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" -msgstr "" +msgstr "O grupo está bloqueado" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Nome do grupo" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 é #.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Hacking ou ataques de sistema" @@ -5421,14 +5719,14 @@ msgid "Handle too long. Please try a shorter one." msgstr "Nome de usuário muito longo. Por favor tente um nome de usuário mais curto." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Acontecendo agora" #. 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 "" +msgstr "GIFs felizes" #: src/screens/Settings/AccessibilitySettings.tsx:86 msgid "Haptics" @@ -5446,7 +5744,7 @@ msgstr "Atividades nocivas ou de alto risco" msgid "Harming or endangering minors" msgstr "Prejudicar ou colocar menores em perigo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,14 +5756,14 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "Discurso de ódio" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Tem um código? <0>Clique aqui." #: src/screens/Signup/StepInfo/index.tsx:320 msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." -msgstr "" +msgstr "Sua localização está errada? <0>Toque aqui para atualizar sua localização com GPS." #: src/screens/Signup/index.tsx:231 msgid "Having trouble?" @@ -5479,11 +5777,11 @@ msgstr "Mantido pelo Bluesky por 7 dias para evitar abusos, e depois excluído" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Lista oculta" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Lista oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -5553,18 +5851,18 @@ msgstr "Ocultar atualizações da conversa em grupo" msgid "Hide lists" msgstr "Ocultar listas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ocultar postagem para mim" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ocultar resposta para todos" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ocultar resposta para mim" @@ -5577,19 +5875,19 @@ msgstr "Ocultar este cartão" msgid "Hide this event" msgstr "Ocultar este evento" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ocultar esta postagem?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ocultar esta resposta?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Ocultar tradução" @@ -5606,7 +5904,7 @@ msgstr "Ocultar assuntos em alta?" msgid "Hide trending videos?" msgstr "Ocultar vídeos em alta?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ocultar lista de usuários" @@ -5620,6 +5918,10 @@ msgstr "Ocultar insígnias de verificação" msgid "Hides the content" msgstr "Oculta o conteúdo" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Oculta o banner promocional de convidar amigos" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Parece que você está conectado com uma <0>Senha de Aplicativo. Para definir sua data de nascimento, você precisará conectar com a sua senha principal da conta ou pedir a quem controla essa conta para que o faça." @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, parece que estamos com problemas pra carregar os dados. Veja mais msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, não foi possível carregar este serviço de moderação." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Espere! Estamos gradualmente dando acesso ao vídeo, e você ainda está esperando na fila. Volte em breve!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Página Inicial" @@ -5721,7 +6019,7 @@ msgstr "Entendi" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Estou no Bluesky como {0} — venha me encontrar! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Se o texto alternativo é longo, expande a área do texto alternativo" @@ -5757,15 +6055,15 @@ msgstr "Se você deletar esta lista, você não poderá recuperá-la." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se você tem um domínio próprio, você pode usá-lo como seu nome de usuário. Isso permite que você auto-verifique a sua identidade. <0>Saiba mais aqui." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Se precisar atualizar seu email, <0>clique aqui." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Se você remover esta postagem, você não poderá recuperá-la." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Se você atualizar seu endereço de email, o 2FA via email será desativado." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Se você deseja restringir quem pode receber notificações da atividade da sua conta, você pode alterar isto em <0>Configurações → Privacidade e Segurança." @@ -5786,25 +6083,25 @@ msgstr "Se você for um desenvolvedor, você pode hospedar seu próprio servidor msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Se você estiver tentando alterar seu nome de usuário ou e-mail, faça isso antes de desativar." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imagem" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" -msgstr "" +msgstr "Imagem {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Imagem {0} de {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" -msgstr "" +msgstr "Imagem {0} de {imageCount}" #: src/screens/Settings/AboutSettings.tsx:67 msgid "Image cache cleared" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Memória temporária de imagens removida, {0} liberados" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" -msgstr "" +msgstr "Galeria de imagens, {0} imagens" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." -msgstr "" +msgstr "A imagem está oculta devido às suas configurações de moderação." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." -msgstr "" +msgstr "Imagem indisponível." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Opções de imagem" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Falsa identidade/imitação" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importar contatos" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importar Contatos" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Importar contatos ou convidar seus amigos" + #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importar contatos para encontrar seus amigos" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importados em {0}" @@ -5881,40 +6182,40 @@ msgstr "Importados em {0}" 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 "Para fornecermos uma experiência apropriada para a idade, precisamos saber a sua data de nascimento. Esta é uma solicitação única, e seus dados serão mantidos privados." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "No app" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notificações no app" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "No app, Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "No app, todos" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "No app, Pessoas que você segue" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "No app, pessoas que você segue" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "No app, No dispositivo" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "No app, push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "No app, No dispositivo, Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "No app, push, todos" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "No app, No dispositivo, Pessoas que você segue" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "No app, push, pessoas que você segue" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Caixa de entrada vazia" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Caixa de entrada vazia!" @@ -5954,6 +6255,10 @@ msgstr "Apresentando os rascunhos" msgid "Introducing finding friends via contacts" msgstr "Apresentamos a busca de amigos através de contatos" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Apresentando as conversas em grupo" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "Apresentando as postagens salvas, ou favoritos" @@ -5963,11 +6268,15 @@ msgstr "Apresentando as postagens salvas, ou favoritos" msgid "Invalid 2FA confirmation code." msgstr "Código de confirmação da autenticação de dois fatores inválido." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Código de conversa em grupo inválido." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Nome de usuário inválido. Por favor tente um diferente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Configurações de interação inválidas." @@ -5977,10 +6286,15 @@ msgstr "Configurações de interação inválidas." msgid "Invalid phone number" msgstr "Número de telefone inválido" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Assunto da denúncia inválido" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Solicitação de cancelamento inválida." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Código de Verificação Inválido" @@ -6001,8 +6315,15 @@ msgstr "Convite" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Convidar amigos" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Convidar Amigos" @@ -6010,41 +6331,56 @@ msgstr "Convidar Amigos" msgid "Invite friends <0/>" msgstr "Convidar amigos <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Link de convite" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Link de convite" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Link de convite copiado" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Link de convite criado" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" -msgstr "" +msgstr "Link de convite desativado" #: src/components/dms/getSystemMessageInfo.ts:126 msgid "Invite link edited" -msgstr "" +msgstr "Link de convite editado" #: src/components/dms/getSystemMessageInfo.ts:132 msgid "Invite link enabled" -msgstr "" +msgstr "Link de convite ativado" #: src/components/StarterPack/ShareDialog.tsx:83 msgid "Invite people to this starter pack!" msgstr "Convide pessoas para este pacote inicial!" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Convide seus amigos" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Convide seus amigos para seguir seus feeds e pessoas favoritas" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Convidado" @@ -6054,7 +6390,7 @@ msgstr "Convites, mas pessoais" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "A sua localização não está correta? <0>Toque aqui para atualizar sua localização com GPS. " #: 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." @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID da requisição: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID da requisição: {0}" msgid "Jobs" msgstr "Carreiras" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Entrar" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Carreiras" msgid "Join Bluesky" msgstr "Crie uma conta no Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Entrar na conversa em grupo" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Solicitação para entrar cancelada." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Participar da conversa" msgid "Journalism" msgstr "Jornalismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuar editando" @@ -6109,6 +6460,11 @@ msgstr "Continuar editando" msgid "Keep me posted" msgstr "Mantenha-me informado" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Expulsar membro" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Página web do KWS" @@ -6143,7 +6499,7 @@ msgstr "Rótulos sobre sua conta" msgid "Labels on your content" msgstr "Rótulos sobre seu conteúdo" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Configurações de Idiomas" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Mais recentes" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Saiba mais sobre como o convite de amigos funciona" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Saiba mais sobre a importação de contatos" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Saiba mais sobre verificação no Bluesky (em inglês)" @@ -6239,7 +6595,7 @@ msgstr "Saiba mais sobre verificação no Bluesky (em inglês)" msgid "Learn more about what is public on Bluesky." msgstr "Saiba mais sobre o que é público no Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Saiba mais sobre o seu link para Germ DM" @@ -6252,31 +6608,33 @@ msgstr "Saiba mais nas suas <0>configurações da conta." msgid "Learn more." msgstr "Saiba mais." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Sair" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Sair da conversa" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Sair desta conversa" @@ -6284,21 +6642,30 @@ msgstr "Sair desta conversa" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Sair desta conversa" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" -msgstr "" +msgstr "Deixar conversa em grupo" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" -msgstr "" +msgstr "Sair desta conversa em grupo" #: src/components/dialogs/LinkWarning.tsx:83 #: src/components/dialogs/LinkWarning.tsx:91 msgid "Leaving Bluesky" msgstr "Saindo do Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Você saiu da conversa em grupo." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "na sua frente." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Curtir" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Curtidas ({0, plural, one {# curtida} other {# curtidas}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notificações de curtidas" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Curtir este feed" @@ -6358,8 +6721,8 @@ msgstr "Curtir este feed" msgid "Like this labeler" msgstr "Curtir este rotulador" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Curtido por" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Curtido por {0, plural, one {# usuário} other {# usuários}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Curtidas" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Curtidas das suas repostagens" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notificações de curtidas das suas repostagens" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Curtidas nesta postagem" @@ -6409,11 +6768,11 @@ msgstr "Curtidas nesta postagem" msgid "Linear" msgstr "Linear" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" -msgstr "" +msgstr "Link copiado para a área de transferência" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listas" @@ -6545,7 +6904,7 @@ msgstr "Ocultação de evento ao vivo removida" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Eventos ao vivo aparecem ocasionalmente quando algo interessante está acontecendo. Se quiser, você pode ocultar este evento em particular, ou todos os eventos para esta seção na interface do seu aplicativo." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "O recurso Ao Vivo está em fase de testes" @@ -6581,7 +6940,7 @@ msgstr "Carregar novas postagens" #: src/screens/Messages/components/MessageInput.web.tsx:202 msgctxt "placeholder" msgid "Loading chat…" -msgstr "" +msgstr "Carregando chat…" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 msgid "Loading lists..." @@ -6595,27 +6954,27 @@ msgstr "Carregando configurações de interações..." msgid "Loading..." msgstr "Carregando..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" -msgstr "" +msgstr "Bloquear" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" -msgstr "" +msgstr "Bloquear chat em grupo" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" -msgstr "" +msgstr "Bloquear chat em grupo?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" -msgstr "" +msgstr "Bloquear este chat em grupo" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" -msgstr "" +msgstr "Trancado" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Registros" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo por @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo por <0>@sawaratsuki.bsky.social" @@ -6660,9 +7019,9 @@ msgstr "Parece que está faltando um feed com as pessoas que você segue. <0>Cli #. 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 "" +msgstr "GIFs amorosos" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Faça ajustes nas configurações de email para sua conta" @@ -6687,24 +7046,22 @@ msgstr "Gerenciar configurações de verificação" msgid "Manage your muted words and tags" msgstr "Gerencie suas palavras/tags silenciadas" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Marcar todas como lidas" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcar como lida" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Todas foram marcadas como lidas" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Talvez mais tarde" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "Membro removido da conversa em grupo." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Membros" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." -msgstr "" - -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notificações de menção" +msgstr "Membros ainda podem ler o histórico do chat, mas não podem enviar novas mensagens." #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "usuários mencionados" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menções" @@ -6756,41 +7113,41 @@ msgstr "Menu" #: src/screens/Messages/components/MessageInput.tsx:178 msgid "Message" -msgstr "" +msgstr "Mensagem" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" -msgstr "" +msgstr "Mensagem" #. placeholder {0}: profile.handle #: src/components/dms/MessageProfileButton.tsx:99 msgid "Message {0}" msgstr "Mensagem {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" -msgstr "" +msgstr "Mensagem {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mensagem excluída" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mensagem excluída" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Falha ao enviar mensagem." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Mensagem de @{0}: {1}" @@ -6811,23 +7168,23 @@ msgstr "Mensagem longa demais" #: src/screens/Messages/components/MessageComposer.tsx:89 msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -msgstr "" +msgstr "A mensagem é muito longa ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Opções de mensagem" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mensagens" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." -msgstr "" +msgstr "Mensagens dessa pessoa são ocultas enquanto ela está bloqueando você." -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." -msgstr "" +msgstr "Mensagens dessa pessoa são ocultas enquanto ela está bloqueando você." #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" @@ -6838,10 +7195,6 @@ msgstr "Meia-noite" msgid "Minor harassment or bullying" msgstr "Assédio ou bullying de menores" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notificações diversas" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Enganoso" @@ -6850,7 +7203,7 @@ msgstr "Enganoso" msgid "Missing media" msgstr "Mídia ausente" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderação" @@ -6894,7 +7247,7 @@ msgstr "Lista de moderação atualizada" msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de Moderação" @@ -6903,7 +7256,7 @@ msgstr "Listas de Moderação" msgid "moderation settings" msgstr "configurações de Moderação" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderação" @@ -6928,8 +7281,8 @@ msgstr "Mais idiomas..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Mais opções" @@ -6949,7 +7302,7 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silenciar" @@ -6965,8 +7318,8 @@ msgstr "Silenciar" msgid "Mute {0}" msgstr "Silenciar {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Silenciar conta" msgid "Mute accounts" msgstr "Silenciar contas" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silenciar conversa" @@ -6994,7 +7347,7 @@ msgstr "Silenciar lista" msgid "Mute these accounts?" msgstr "Silenciar estas contas?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Silenciar esta conversa em grupo" @@ -7022,17 +7375,21 @@ msgstr "Silenciar esta palavra apenas nas tags de uma postagem" msgid "Mute this word until you unmute it" msgstr "Silenciar esta palavra até que você a reative" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silenciar tópico" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silenciar palavras/tags" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Silencie, saia ou remova pessoas a qualquer momento. A conversa é sua." + +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Muted" msgstr "Silenciado" @@ -7040,7 +7397,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7062,6 +7419,10 @@ msgstr "Palavras/tags silenciadas" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar é privado. Contas silenciadas podem interagir com você, mas você não verá postagens ou receberá notificações delas." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Conversas em grupo mútuas" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Navegar até o pacote inicial" msgid "Navigates to the next screen" msgstr "Navega para próxima tela" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navega para seu perfil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Precisa relatar uma violação de direitos autorais, uma solicitação legal ou um problema de conformidade regulatória?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Novo" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Nova postagem} other {Novas postagens}} de {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nova conversa" @@ -7161,9 +7523,9 @@ msgstr "Nova conversa com {0} e {1}" #. 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 "" +msgstr "Novo bate-papo com {0}, {1}e {memberCount, plural, one {{memberCount} mais} other {{memberCount} mais}}" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Novo endereço de e-mail" @@ -7171,32 +7533,30 @@ msgstr "Novo endereço de e-mail" #: 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 "Novo Recurso" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notificações de novo seguidor" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Novos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Nova conversa em grupo" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Nova conversa em grupo com:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Postar" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Postar" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Novas postagens de {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Novas postagens de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {outros {formattedAuthorsCount}}}" @@ -7262,8 +7622,8 @@ msgstr "Notícias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Próximo" msgid "Next image" msgstr "Próxima imagem" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Noite" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Ainda não há seguidores" @@ -7335,7 +7699,7 @@ msgstr "Sem GIFs encontrados para \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "Sem GIFs para mostrar agora. Tente novamente mais tarde." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Sem imagem" @@ -7353,8 +7717,8 @@ msgstr "Sem listas" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Você não está mais seguindo {0}" @@ -7362,7 +7726,7 @@ msgstr "Você não está mais seguindo {0}" msgid "No media yet" msgstr "Ainda não há mídia" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Nenhuma mensagem ainda" @@ -7378,12 +7742,12 @@ msgstr "Sem nome" msgid "No notifications yet!" msgstr "Nenhuma notificação!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Ninguém" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Ninguém" @@ -7399,7 +7763,7 @@ msgstr "Ninguém" msgid "No one but the author can quote this post." msgstr "Ninguém além do autor pode citar esta postagem." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Ninguém pode enviar mensagens" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Nenhum resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Nenhum resultados" @@ -7446,8 +7810,8 @@ msgstr "Nenhum resultados" msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Nenhum resultado encontrado" @@ -7509,12 +7873,12 @@ msgstr "Imagens íntimas não consensuais" msgid "Non-sexual Nudity" msgstr "Nudez não-erótica" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Nenhuma" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Indisponível nesta plataforma" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Indisponível nesta plataforma." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Não encontrado" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Não sente que é a hora certa para publicar? Guarde as suas melhores ideias nos Rascunhos para utilizar no momento certo." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sobre compartilhamento" @@ -7548,44 +7912,31 @@ msgstr "Nota: Esta postagem só é visível para usuários conectados." msgid "Nothing saved yet" msgstr "Nada foi salvo ainda" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Configurações de notificação" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sons de notificação" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificações" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notificações para outras coisas, como quando alguém se junta através de um dos seus pacotes iniciais." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -7601,7 +7952,7 @@ msgstr "O número deve ser um número de celular" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Desligado" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Ok" @@ -7648,35 +8000,35 @@ msgstr "no<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Resetar tutoriais" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Um dos destinatários selecionados não permite chats em grupo." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Um dos destinatários selecionados bloqueou você e não pode ser enviado." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estão sem texto alternativo." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Um ou mais arquivos selecionados não são suportados." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Um ou mais arquivos selecionados são muito grandes. O tamanho máximo é de 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Um ou mais vídeos estão sem texto alternativo." @@ -7685,6 +8037,26 @@ msgstr "Um ou mais vídeos estão sem texto alternativo." msgid "Only {0} can reply." msgstr "Apenas {0} pode responder." +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Apenas administradores podem aceitar solicitações para entrar." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Apenas administradores podem ignorar solicitações para entrar." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Apenas seguidores podem entrar nesta conversa em grupo." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Apenas seguidores que eu sigo" msgid "Only image files are supported" msgstr "Apenas arquivos de imagem são suportados" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Apenas pessoas que {0} segue podem entrar." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Apenas pessoas que o dono da conversa segue podem entrar" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Somente arquivos WebVTT (.vtt) são suportados" @@ -7703,6 +8085,10 @@ msgstr "Somente arquivos WebVTT (.vtt) são suportados" msgid "Oops, something went wrong!" msgstr "Ops, algo deu errado!" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7712,7 +8098,7 @@ msgstr "Ops, algo deu errado!" msgid "Oops!" msgstr "Ops!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Abrir criador de avatar" @@ -7720,12 +8106,17 @@ msgstr "Abrir criador de avatar" msgid "Open camera" msgstr "Abrir câmera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 -msgid "Open chat member options for {displayName}" -msgstr "" +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Abrir conversa" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 +msgid "Open chat member options for {displayName}" +msgstr "Abrir opções de membro do chat para {displayName}" + +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Abrir opções de conversa" @@ -7739,16 +8130,16 @@ msgstr "Abrir menu" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Abrir seletor de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Abrir opções do feed" @@ -7760,13 +8151,22 @@ msgstr "Abrir lista completa de emojis" msgid "Open Germ DM" msgstr "Abrir Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Abrir conversa em grupo" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Abrir configurações de conversa em grupo" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Abrir no Google Tradutor" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "Abrir link para {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Abrir pacote" msgid "Open post options menu" msgstr "Abrir opções da postagem" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Abrir perfil" +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "Abrir leitor de QR code" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "Abrir página do storybook" msgid "Open system log" msgstr "Abrir registros do sistema" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Abrir esta conversa em grupo" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Abre uma janela para adicionar um aviso de conteúdo para a sua postagem msgid "Opens a dialog to choose who can interact with this post" msgstr "Abre uma janela para escolher quem pode interagir com esta postagem" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "Abre uma lista de temas de cor para o cartão QR" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "Abre detalhes adicionais para um registro de depuração" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Abre a câmera do dispositivo" @@ -7858,22 +8270,24 @@ msgstr "Abre o editor de postagem" msgid "Opens device camera" msgstr "Abre a câmera do dispositivo" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Abre a galeria do dispositivo para selecionar até {MAX_IMAGES, plural, other {# imagens}} ou um único vídeo ou GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Abre a galeria do dispositivo para selecionar até {MAX_GALLERY_IMAGES, plural, other {# imagens}} ou um único vídeo ou GIF." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Abre a tela para entrar com uma conta Bluesky existente" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Abre imagem completa" @@ -7890,7 +8304,7 @@ msgstr "Abre seletor de imagens" msgid "Opens link {0}" msgstr "Abrir link {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Abrir janela de status ao vivo" @@ -7902,14 +8316,22 @@ msgstr "Abre o formulário de redefinição de senha" msgid "Opens post language settings" msgstr "Abre configurações de idioma da postagem" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Abre perfil" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "Abre as configurações de encontrar e convidar amigos" + #. 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 "" +msgstr "Abre o seletor de GIF" + +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "Abre a folha de convidar amigos para compartilhar seu perfil" #: src/view/com/feeds/ComposerPrompt.tsx:148 msgid "Opens the post composer" @@ -7919,9 +8341,8 @@ msgstr "Abrir o compositor de post" msgid "Opens this draft in the composer" msgstr "Abre este rascunho no editor" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Abre este perfil" @@ -7997,12 +8418,12 @@ msgstr "Nossa postagem no blog" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Nossa equipe de moderação recebeu sua denúncia." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Nossos moderadores analisaram os relatórios e decidiram desabilitar seu acesso às conversas no Bluesky." @@ -8010,20 +8431,21 @@ msgstr "Nossos moderadores analisaram os relatórios e decidiram desabilitar seu msgid "Owner" msgstr "Dono" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "O dono precisa bloquear o grupo antes de sair." + +#: 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 "Página não encontrada" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Página Não Encontrada" - #. 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 "" +msgstr "GIFs festivos" #: src/screens/Login/LoginForm.tsx:228 #: src/screens/Settings/AccountSettings.tsx:126 @@ -8068,36 +8490,36 @@ msgstr "Pausar vídeo" msgid "People" msgstr "Pessoas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" -msgstr "" +msgstr "Pessoas que {ownerName} segue podem entrar instantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" -msgstr "" +msgstr "Pessoas que {ownerName} segue podem pedir para entrar" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Pessoas que eu sigo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" -msgstr "" +msgstr "Pessoas que eu sigo podem entrar instantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" -msgstr "" +msgstr "Pessoas que eu sigo podem solicitar entrada" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:510 msgid "People you follow" @@ -8136,13 +8558,17 @@ msgstr "Número de telefone verificado" msgid "Photography" msgstr "Fotografia" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Escolha um tema de cor" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixar feed" @@ -8152,12 +8578,12 @@ msgstr "Fixar feed" msgid "Pin to home" msgstr "Fixar na tela inicial" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fixar na Tela Inicial" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fixar no seu perfil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} fixado na Tela Inicial" @@ -8236,7 +8662,7 @@ msgstr "Por favor, escolha seu nome de usuário." msgid "Please choose your password." msgstr "Por favor, escolha sua senha." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Por favor, clique no link do email que acabamos de enviar para verificar msgid "Please complete the verification captcha." msgstr "Por favor, complete o captcha de verificação." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Confirme o seu endereço de email para enviar vídeos." @@ -8265,14 +8691,14 @@ msgstr "Por favor, insira uma senha. Ela deve ter no mínimo 8 caracteres." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Por favor insira um nome único para esta senha de aplicativo ou use nosso nome gerado automaticamente." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Por favor, insira um código válido." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Por favor, insira um endereço de email válido." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Por favor insira um endereço de email válido e não temporário. Você pode precisar acessar este email no futuro." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Digite abaixo o código que enviamos para <0>{0}." @@ -8293,7 +8719,7 @@ msgstr "Digite abaixo o código que enviamos para <0>{0}." msgid "Please enter the code you received and the new password you would like to use." msgstr "Por favor insira o código que você recebeu e a nova senha que gostaria de usar." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Por favor, digite o seu e-mail." msgid "Please enter your invite code." msgstr "Por favor, insira seu código de convite." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Por favor, insira seu novo endereço de email." @@ -8323,7 +8749,7 @@ msgstr "Insira seu nome de usuário" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Por favor, explique por que você acredita que este rótulo foi aplicado incorretamente por {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Por favor, explique por que você acha que suas conversas foram desativadas incorretamente" @@ -8358,7 +8784,11 @@ msgstr "Por favor, escolha um motivo para esta denúncia" msgid "Please sign in as @{0}" msgstr "Por favor entre como @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "Por favor, use o app móvel do Bluesky para escanear um QR code." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "Por favor, use o aplicativo nativo para importar seus contatos." @@ -8366,7 +8796,7 @@ msgstr "Por favor, use o aplicativo nativo para importar seus contatos." msgid "Please use the native app to sync your contacts." msgstr "Por favor, use o aplicativo nativo para sincronizar seus contatos." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Por favor, verifique seu email" @@ -8383,7 +8813,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Postar" @@ -8403,12 +8833,12 @@ msgstr "Postar uma foto" msgid "Post a video" msgstr "Postar um vídeo" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Postar Tudo" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Postar mesmo assim" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Postagem bloqueada" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Postagem por @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Postagem excluída" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Falha ao enviar a postagem. Por favor verifique sua conexão de internet e tente novamente." @@ -8454,20 +8884,24 @@ msgstr "Postagem Escondida por Você" msgid "Post interaction settings" msgstr "Configurações de interação de postagem" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Opções de interação em postagens" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Poste no Bluesky ou compartilhe em qualquer lugar." + #. 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 "Selecionar idioma da postagem" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" -msgstr "" +msgstr "Link do post" #: src/screens/PostThread/components/ThreadError.tsx:33 #: src/screens/PostThread/components/ThreadItemPostTombstone.tsx:25 @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Postagens, Respostas" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potencialmente enganoso" @@ -8525,9 +8954,10 @@ msgstr "Idioma preferido" msgid "Press to attempt reconnection" msgstr "Tentar reconexão" -#: src/components/Error.tsx:61 +#: 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 "Tentar novamente" @@ -8536,7 +8966,7 @@ msgstr "Tentar novamente" msgid "Press to view followers of this account that you also follow" msgstr "Toque para ver os seguidores desta conta que você também segue" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Prévia" @@ -8559,26 +8989,25 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e segurança" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Política de Privacidade" @@ -8586,15 +9015,15 @@ 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:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Processando GIF..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Processando vídeo..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Processando..." @@ -8602,10 +9031,10 @@ msgstr "Processando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Perfil" @@ -8613,6 +9042,7 @@ msgstr "Perfil" msgid "Profile banner placeholder" msgstr "Espaço reservado para a imagem de capa do perfil" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Perfil não encontrado" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publicar postagem" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publicar postagens" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publicar resposta" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "No dispositivo" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notificações no dispositivo" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "No dispositivo, Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "Push, todos" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "No dispositivo, Pessoas que você segue" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "Push, pessoas que você segue" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR code copiado para sua área de transferência!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR code foi baixado!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR code salvo no rolo da sua câmera!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notificações de citação" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notificações de citação" msgid "Quote post" msgstr "Citar postagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "A postagem de citação foi anexada novamente" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "A postagem de citação foi desanexada com sucesso" @@ -8711,12 +9138,12 @@ msgstr "Citações desabilitadas" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citações" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citações desta postagem" @@ -8728,25 +9155,25 @@ msgstr "Limite de operações excedido – você tentou mudar seu nome de usuár msgid "Rate limit exceeded. Please try again later." msgstr "Limite de tentativas excedido. Por favor, tente novamente mais tarde." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Reanexar citação" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" -msgstr "" +msgstr "Reativar link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" -msgstr "" +msgstr "Reativar link" #: src/components/dms/EmojiReactionPicker.tsx:80 msgid "React with {emoji}" msgstr "Reagir com {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reações" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "ler sobre como usar os filtros de busca" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Ler postagem do blog (em inglês)" @@ -8812,11 +9239,11 @@ msgstr "Pessoas reais." msgid "Reason for appeal" msgstr "Motivo do recurso" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Receber notificações no app" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Receber notificações no dispositivo" @@ -8841,17 +9268,31 @@ msgstr "Recomendado" msgid "Reconnect" msgstr "Reconectar" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Atualize a página para vê-la." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Negar" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Negar" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Recusar pedido de conversa" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Recusar solicitação para entrar" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -8863,6 +9304,8 @@ msgstr "Recarregar conversas" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8872,15 +9315,20 @@ msgstr "Remover" #: src/components/dms/ChatProfileTabs.tsx:153 msgid "Remove {displayName} from group chat" -msgstr "" +msgstr "Remover {displayName} do chat em grupo" #: src/components/StarterPack/Wizard/WizardListCard.tsx:62 msgid "Remove {displayName} from starter pack" msgstr "Remover {displayName} do pacote inicial" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" -msgstr "" +msgstr "Remover {displayName} desta conversa em grupo" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Remover {displayName}?" #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Remover {historyItem}" msgid "Remove account" msgstr "Remover conta" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Remover todos os contatos" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Remover anexo" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Remover avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Remover banner" @@ -8914,8 +9362,9 @@ msgstr "Remover banner" msgid "Remove caption file" msgstr "Remover arquivo de legenda" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Remover incorporação" @@ -8929,12 +9378,12 @@ msgstr "Remover feed" msgid "Remove feed?" msgstr "Remover feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" -msgstr "" +msgstr "Remover da conversa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Remover das postagens salvas" msgid "Remove from your feeds?" msgstr "Remover dos seus feeds?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Remover imagem" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Desfazer repostagem" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Remover sugestão" @@ -9009,11 +9458,11 @@ msgstr "Remover verificação" msgid "Remove your verification for this account?" msgstr "Remover a sua verificação para essa conta?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Removido pelo autor" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Removido por você" @@ -9035,7 +9484,7 @@ msgstr "Removido das postagens salvas" msgid "Removed from starter pack" msgstr "Removido do pacote inicial" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Respondeu a você" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Respostas" @@ -9104,14 +9552,14 @@ msgstr "Respostas desabilitadas" msgid "Replies to this post are disabled." msgstr "Respostas para esta postagem estão desativadas." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Responder" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})" @@ -9125,10 +9573,6 @@ msgstr "Resposta Ocultada pelo Autor do Tópico" msgid "Reply Hidden by You" msgstr "Resposta ocultada por você" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notificações de resposta" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Configurações de resposta são escolhidas pelo autor do tópico" @@ -9137,18 +9581,18 @@ msgstr "Configurações de resposta são escolhidas pelo autor do tópico" msgid "Reply sorting" msgstr "Ordenamento de respostas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidade da resposta atualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Resposta foi ocultada com sucesso" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Denunciar" @@ -9157,20 +9601,20 @@ msgstr "Denunciar" msgid "Report account" msgstr "Denunciar conta" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Denunciar conversa" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Janela de denúncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Denunciar feed" @@ -9179,12 +9623,12 @@ msgstr "Denunciar feed" msgid "Report list" msgstr "Denunciar lista" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Denunciar mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Denunciar postagem" @@ -9199,8 +9643,8 @@ msgstr "Denunciar pacote inicial" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Denúncia enviada" @@ -9213,16 +9657,16 @@ msgstr "Denunciar conversa" msgid "Report this feed" msgstr "Denunciar este feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" -msgstr "" +msgstr "Denunciar esta conversa em grupo" #: src/components/moderation/ReportDialog/copy.ts:31 msgid "Report this list" msgstr "Denunciar esta lista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Denunciar essa transmissão" @@ -9256,10 +9700,6 @@ msgstr "Repostar" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repostar ({0, plural, one {# repostagem} other {# repostagens}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notificações de repostagem" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Repostado por você" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Repostagens" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Repostagens" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Repostagens das suas repostagens" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notificações de repostagens das suas repostagens" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Solicitar acesso à conversa em grupo" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Solicitação aprovada." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Solicitar código" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Solicitação ignorada." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Solicitar entrada" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Solicitado" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Solicitações" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Solicitações para entrar" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Exigir texto alternativo antes de postar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: 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." @@ -9328,7 +9791,17 @@ msgstr "Obrigatório para este provedor" msgid "Required in your region" msgstr "Obrigatório na sua região" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Cancelar solicitação" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Cancelar solicitação para entrar na conversa em grupo" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Reenviar" @@ -9373,8 +9846,8 @@ msgstr "Redefinir tutoriais" msgid "Reset password" msgstr "Redefinir senha" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Ressincronizar contatos" @@ -9391,17 +9864,18 @@ msgstr "Tenta a última ação, que deu erro" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Tenta a última ação, que deu erro" msgid "Retry" msgstr "Tente novamente" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Recarregar opções de denúncia" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Voltar para página anterior" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Voltar para página anterior" @@ -9444,17 +9918,17 @@ msgstr "Retorna à etapa anterior" #. 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 "" +msgstr "GIFs tristes" #: 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:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvar alterações" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvar alterações?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salvar rascunho" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvar rascunho?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Salvar imagem" msgid "Save new handle" msgstr "Salvar novo nome de usuário" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Salvar QR code" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Salvar nos meus feeds" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Salvos" @@ -9534,25 +10010,25 @@ msgstr "Salvos" msgid "Saved Feeds" msgstr "Feeds Salvos" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Postagens Salvas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Adicionado aos seus feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Diga olá!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Diga olá para alguém" @@ -9560,6 +10036,16 @@ msgstr "Diga olá para alguém" msgid "Scam" msgstr "Golpe" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Escanear" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Escanear QR code" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Ciência" @@ -9576,18 +10062,18 @@ msgstr "Rolar à direita" msgid "Scroll to top" msgstr "Ir para o topo" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Pesquisar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar postagens de @{0}" @@ -9651,7 +10137,7 @@ msgstr "A pesquisa está indisponível quando desconectado" #. 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 "" +msgstr "Pesquisar no KLIPY" #: src/components/dialogs/LanguageSelectDialog.tsx:232 #: src/components/dialogs/LanguageSelectDialog.tsx:233 @@ -9662,12 +10148,12 @@ msgstr "Procurar idiomas" msgid "Search my posts" msgstr "Pesquisar minhas postagens" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Pesquisar postagens" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Pesquisar por usuários" msgid "Search..." msgstr "Pesquisar..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Pesquisa por perfis" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Etapa de segurança necessária" @@ -9759,7 +10245,7 @@ msgstr "Selecionar {langName}" msgid "Select a color" msgstr "Selecione uma cor" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Selecione um motivo" @@ -9794,7 +10280,7 @@ msgstr "Selecione o arquivo de legenda (.vtt)" #: src/components/dialogs/SearchablePeopleList.tsx:501 msgid "Select chat \"{name}\"" -msgstr "" +msgstr "Selecione o chat \"{name}\"" #: src/screens/Settings/LanguageSettings.tsx:195 #: src/screens/Settings/LanguageSettings.tsx:233 @@ -9828,9 +10314,9 @@ msgstr "Selecionar GIF" msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" -msgstr "" +msgstr "Selecionar membros do grupo" #: src/components/dialogs/MutedWords.tsx:151 msgid "Select how long to mute this word for." @@ -9850,7 +10336,7 @@ msgstr "Selecione o idioma..." msgid "Select languages" msgstr "Selecionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Escolher serviço de moderação" @@ -9904,11 +10390,11 @@ msgstr "Selecione seus interesses" msgid "Select your preferred language for translations in your feed." msgstr "Selecione seu idioma preferido para as traduções no seu feed." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Selecione seus canais preferidos de notificação" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Não é possível selecionar múltiplos tipos de mídia." @@ -9921,9 +10407,9 @@ msgstr "Auto-mutilação ou comportamentos perigosos" msgid "Send code" msgstr "Enviar código" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Enviar e-mail" @@ -9933,13 +10419,13 @@ msgstr "Enviar e-mail" #: src/screens/Settings/AboutSettings.tsx:118 #: src/screens/Settings/AboutSettings.tsx:121 msgid "Send error report" -msgstr "" +msgstr "Enviar relatório de erro" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Enviar comentários" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Enviar mensagem" @@ -9952,7 +10438,7 @@ msgstr "Enviar postagem para {name}" msgid "Send post to..." msgstr "Enviar postagem para..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Enviar denúncia para {title}" @@ -9960,7 +10446,7 @@ msgstr "Enviar denúncia para {title}" msgid "Send the message from your phone" msgstr "Envie a mensagem do seu telefone" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Enviar por mensagem direta" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Enviado em {0}" @@ -10015,14 +10501,14 @@ msgstr "Defina sua data de nascimento abaixo e rapidinho você poderá voltar a msgid "Sets email for password reset" msgstr "Configura o e-mail para recuperação de senha" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Configurações" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Configurações para atividade de terceiros" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Configurações para notificações de curtidas" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Configurações para notificações de menções" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Configurações para notificações de novo seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Configurações para as demais notificações" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Configurações para notificações de curtidas das suas repostagens" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Configurações para notificações de citação" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Configurações para notificações de resposta" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Configurações para notificações de repostagem" @@ -10079,16 +10565,19 @@ msgstr "Atividade sexual ou nudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente Sugestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Compartilhar" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Compartilhar mesmo assim" @@ -10097,16 +10586,21 @@ msgstr "Compartilhar mesmo assim" msgid "Share author DID" msgstr "Compartilhar DID do autor" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Compartilhar imagem" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Compartilhar link de convite" + #: 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 "Compartilhar link" @@ -10114,6 +10608,11 @@ msgstr "Compartilhar link" msgid "Share link dialog" msgstr "Compartilhar Link de diálogo" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Compartilhar meu perfil" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Compartilhar URI at:// da postagem" msgid "Share QR code" msgstr "Compartilhar QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Compartilhar este feed" @@ -10142,8 +10641,8 @@ msgstr "Compartilhe este pacote inicial e ajude as pessoas a se juntarem à sua #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Compartilhar via..." @@ -10151,7 +10650,7 @@ msgstr "Compartilhar via..." msgid "Share your contacts to find friends" msgstr "Compartilhe os seus contatos para encontrar amigos" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Testador de Preferências Compartilhadas" @@ -10167,16 +10666,16 @@ msgstr "Mostrar texto alternativo" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Mostrar mesmo assim" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Mostrar rótulo de automação" @@ -10195,10 +10694,10 @@ msgstr "Mostrar opções de personalização" #: src/components/dms/SystemMessageGroup.tsx:57 msgid "Show group chat updates" -msgstr "" +msgstr "Mostrar atualizações do chat em grupo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Mostrar menos disso" @@ -10219,8 +10718,8 @@ msgstr "Mostrar eventos ao vivo no seu feed Descobrir" msgid "Show More" msgstr "Mostrar Mais" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mostrar mais disso" @@ -10246,8 +10745,8 @@ msgstr "Mostrar respostas" msgid "Show replies as" msgstr "Mostrar respostas como" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Mostrar resposta para todos" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Mostrar aviso e filtrar dos feeds" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Mostrar quando você estiver ao vivo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Mostra informações sobre quando esta postagem foi criada" @@ -10297,15 +10796,17 @@ msgstr "Exibe o conteúdo" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Entrar ou criar uma conta" msgid "Sign in or create your account to join the conversation!" msgstr "Entre ou crie a sua conta para participar da conversa!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Faça login para aceitar o convite." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Entrar em uma conta não listada" @@ -10337,8 +10842,12 @@ msgstr "Entrar em uma conta não listada" msgid "Sign in to Bluesky or create a new account" msgstr "Registre-se no Bluesky ou crie uma conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Faça login para solicitar acesso a esta conversa em grupo." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Faça login para ver a postagem" @@ -10348,9 +10857,9 @@ msgstr "Faça login para ver a postagem" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Sair" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Sair" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Sair?" @@ -10391,9 +10900,9 @@ 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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" -msgstr "" +msgstr "Pular publicações vazias?" #: src/screens/Onboarding/StepFinished/index.tsx:288 #: src/screens/Onboarding/StepFinished/index.tsx:314 @@ -10405,15 +10914,15 @@ msgstr "Pular introdução e começar a usar a sua conta" msgid "Skip to next step" msgstr "Pular para a próxima etapa" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" -msgstr "" +msgstr "slide" #: src/screens/Settings/AppearanceSettings.tsx:152 msgid "Smaller" msgstr "Menor" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Adiar o lembrete" @@ -10447,7 +10956,7 @@ msgstr "Algumas pessoas podem responder" #: src/components/dms/getSystemMessageInfo.ts:86 msgid "Someone joined" -msgstr "" +msgstr "Alguém entrou" #: src/components/dms/getSystemMessageInfo.ts:87 msgid "Someone joined the group" @@ -10455,14 +10964,14 @@ msgstr "Alguém entrou no grupo" #: src/components/dms/getSystemMessageInfo.ts:99 msgid "Someone left" -msgstr "" +msgstr "Alguém saiu" #: src/components/dms/getSystemMessageInfo.ts:100 msgid "Someone left the group" msgstr "Alguém saiu do grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Alguém reagiu com {0}" @@ -10473,7 +10982,7 @@ msgstr "Alguém reagiu com {0} a {target}" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" -msgstr "" +msgstr "Alguém foi adicionado" #: src/components/dms/getSystemMessageInfo.ts:61 msgid "Someone was added to the group" @@ -10481,23 +10990,28 @@ msgstr "Alguém foi adicionado ao grupo" #: src/components/dms/getSystemMessageInfo.ts:73 msgid "Someone was removed" -msgstr "" +msgstr "Alguém foi removido" #: src/components/dms/getSystemMessageInfo.ts:74 msgid "Someone was removed from the group" msgstr "Alguém foi removido do grupo" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Algo novo está aqui" + +#: 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 "Algo não estava certo com os dados que você está tentando relatar. Entre em contato com o suporte." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Algo deu errado" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Algo deu errado!" msgid "Something went wrong. Please try again in a moment." msgstr "Algo deu errado. Por favor, tente novamente mais tarde." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Algo deu errado. Por favor, tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Algo de errado? Nos avise." @@ -10564,11 +11078,16 @@ msgstr "Spam ou outros comportamentos inautênticos ou enganosos" msgid "Sports" msgstr "Esportes" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Inicie uma conversa e ela aparecerá aqui." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Iniciar uma conversa em grupo" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Começar uma nova conversa" @@ -10582,17 +11101,17 @@ msgstr "Comece a adicionar pessoas" msgid "Start adding people!" msgstr "Comece a adicionar pessoas!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Iniciar conversa" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Comece a conversar com {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacote Inicial" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Transmitindo na Twitch? Defina seu status ao vivo no Bluesky para adicionar um emblema ao seu avatar. Tocar nele leva as pessoas direto para a sua transmissão." @@ -10671,8 +11190,8 @@ msgstr "Transmitindo na Twitch? Defina seu status ao vivo no Bluesky para adicio #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Enviar" @@ -10684,9 +11203,9 @@ msgstr "Enviar recurso" msgid "Submit Appeal" msgstr "Enviar Recurso" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Enviar denúncia" @@ -10695,15 +11214,15 @@ msgid "Subscribe" msgstr "Inscrever-se" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" -msgstr "" +msgstr "Inscreva-se em {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" -msgstr "" +msgstr "Inscrever-se para {publicationTitle} em {0}" #. placeholder {0}: labelerInfo.creator.handle #: src/screens/Profile/Sections/Labels.tsx:231 @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Sucesso" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Sucesso!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Você entrou na conversa em grupo com sucesso!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificado com sucesso" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Sugestões" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Entardecer" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Suporte" msgid "Support for this feature in your country has not been enabled yet! Please check back later." 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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Contas suspensas não podem participar de um chat em grupo." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Contas suspensas não podem participar de um chat em grupo." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Alterar conta" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Trocar de conta " #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Alterar para {0}" @@ -10824,13 +11347,17 @@ msgstr "Log do sistema" msgid "Tags only" msgstr "Apenas Tags" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Leve a conversa para o privado." + #: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" -msgstr "" +msgstr "Toque para mais detalhes" #: src/view/com/feeds/MissingFeed.tsx:90 msgid "Tap for information" @@ -10842,7 +11369,7 @@ msgstr "Toque para mais informações" #: src/screens/Signup/StepInfo/index.tsx:323 msgid "Tap here to update your location with GPS." -msgstr "" +msgstr "Toque aqui para atualizar sua localização com GPS." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" @@ -10854,35 +11381,53 @@ msgstr "Toque para confirmar que você entende e concorda com essas atualizaçõ msgid "Tap to close context menu" msgstr "Toque para fechar o menu de contexto" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Toque para copiar este link de convite" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Toque para dispensar" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Toque para entrar nesta conversa em grupo imediatamente" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Toque para abrir esta conversa em grupo" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Toque para remover" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" -msgstr "" +msgstr "Toque para remover sua reação {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Toque para tentar novamente" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" -msgstr "" +msgstr "Toque para mostrar reações {0}" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Toque para mostrar todas as reações" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" -msgstr "" +msgstr "Toque para ver as reações" #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:107 msgid "Targeted harassment" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Termos de Serviço" @@ -10939,7 +11484,7 @@ msgstr "Texto e tags" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campo de entrada de texto" @@ -10981,9 +11526,9 @@ msgstr "Isso é tudo, pessoal!" msgid "That's everything!" msgstr "Isso é tudo!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderá interagir com você após o desbloqueio." @@ -11049,6 +11594,11 @@ msgstr "As opções a seguir serão utilizadas como padrão ao criar postagens n msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "As leis em sua localização exigem que você verifique que é adulto para acessar certos recursos. Toque para saber mais." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "O limite de membros foi atingido." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "A postagem que você está respondendo foi marcada como sido escrita em {suggestedLanguageName} por seu autor. Gostaria de responder em <0>{suggestedLanguageName}?" @@ -11057,10 +11607,10 @@ msgstr "A postagem que você está respondendo foi marcada como sido escrita em msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "" +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "O vídeo selecionado é maior que {VIDEO_MAX_SIZE_MB} MB. Tente novamente com um arquivo menor." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,9 +11651,9 @@ msgstr "Tema" 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 "Há um limite de quantas vezes você pode alterar sua data de nascimento. Aguarde um ou dois dias antes de atualizá-la novamente." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." -msgstr "" +msgstr "Não há nenhum link de convite para esse chat em grupo." #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." @@ -11112,13 +11662,16 @@ msgstr "Não há limite de tempo para desativação da conta, volte quando quise #. 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 "" +msgstr "Houve um problema ao carregar GIFs. Verifique sua conexão e tente novamente." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Houve um problema ao atualizar seus feeds, por favor verifique sua conexão de internet e tente novamente." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Tivemos um problema! {0}" @@ -11221,6 +11774,14 @@ msgstr "Estas são as suas configurações padrão" msgid "These settings only apply to the Following feed." msgstr "Estas configurações só se aplicam ao feed principal (Following)." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "Eles são donos desta conversa" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "Este {screenDescription} foi reportado:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Este recurso será enviado para <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Este recurso será enviado ao serviço de moderação do Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Este recurso será enviado ao serviço de moderação do Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Este autor escolheu tornar suas postagens visíveis apenas para as pessoas que estão conectadas." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Este botão permite que outros abram o aplicativo Germ DM para lhe enviar uma mensagem. Você pode gerenciar a visibilidade dele através do aplicativo Germ DM, ou você pode desconectar completamente o Germ DM da sua conta Bluesky ao clicar no botão abaixo." @@ -11271,10 +11832,20 @@ msgstr "Este botão permite que outros abram o aplicativo Germ DM para lhe envia msgid "This chat has ended" msgstr "Esta conversa terminou" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Esta conversa está cheia" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" -msgstr "" +msgstr "Esta conversa está bloqueada" + +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "Esta conversa está bloqueada por uma ação de moderação" #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" @@ -11310,7 +11881,11 @@ msgstr "Este conteúdo não está disponível porque um dos usuários envolvidos msgid "This content is not viewable without a Bluesky account." msgstr "Este conteúdo não é visível sem uma conta do Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Esta conversa está bloqueada." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Esta conversa é com uma conta desativada ou excluída. Pressione para ver as ações" @@ -11318,7 +11893,7 @@ msgstr "Esta conversa é com uma conta desativada ou excluída. Pressione para v msgid "This draft will be permanently deleted." msgstr "Este rascunho será excluído permanentemente." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Este email já está associado à sua conta." @@ -11356,11 +11931,15 @@ msgstr "Este feed está vazio." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Este feed não funciona mais. Estamos te mostrando o conteúdo do <0>Discover." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "Este grupo está bloqueado por uma ação de moderação sobre o dono" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Não foi possível usar essa imagem. Tente um formato diferente como .jp msgid "This information is private and not shared with other users." msgstr "Esta informação é privada e não é compartilhada com outros usuários." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Este link de convite foi desativado." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Este link de convite é inválido" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Este é um estado vazio" @@ -11377,7 +11964,7 @@ msgstr "Este é um estado vazio" msgid "This is not a valid link" msgstr "Este não é um link válido" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Este rótulo deixa o mundo saber que esta conta é automatizada. Se ativado, este rótulo aparece ao lado do nome da conta em seu perfil e postagens. Pode ser ativado ou desativado a qualquer momento." @@ -11410,15 +11997,19 @@ msgstr "Esta lista – criada por você – contém possíveis violações das d msgid "This list is empty." msgstr "Esta lista está vazia." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 -msgid "This message is hidden because this user is blocking you." -msgstr "" +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Esta mensagem está oculta" +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." -msgstr "" +msgstr "Esta mensagem está oculta porque você está bloqueando este usuário." #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." @@ -11426,15 +12017,15 @@ msgstr "Este serviço de moderação está indisponível. Veja mais detalhes aba #: src/components/moderation/ModerationDetailsDialog.tsx:161 msgid "This moderation was applied to the entire user account and will appear on all posts." -msgstr "" +msgstr "Esta moderação foi aplicada a toda a conta de usuário e aparecerá em todas as publicações." #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "This person is blocking you" -msgstr "" +msgstr "Esta pessoa está bloqueando você" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Esta postagem alega ter sido criada em <0>{0}, mas ela apareceu no Bluesky em <1>{1}." @@ -11450,25 +12041,26 @@ msgstr "Esta postagem só é visível para usuários conectados." msgid "This post was deleted by its author" msgstr "Esta postagem foi excluída pelo autor" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "O autor desta postagem desabilitou as postagens de citação." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil será visível apenas para usuários registrados. Ele não será visível para usuários desconectados." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Esta resposta será classificada em uma seção oculta na parte inferior do seu tópico e silenciará as notificações para respostas subsequentes, tanto para você quanto para outras pessoas." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." -msgstr "" +msgstr "Esta tela está disponível apenas para conversas em grupo." #: src/screens/Signup/StepInfo/Policies.tsx:32 msgid "This service has not provided terms of service or a privacy policy." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 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:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Este usuário bloqueou você e não pode receber mensagens." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Este usuário desativou conversas e não pode receber mensagens." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11531,7 +12123,7 @@ msgstr "Este usuário não segue ninguém ainda." #: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 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 "" +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)." #: 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." @@ -11551,7 +12143,7 @@ msgstr "Isso irá excluir irreversivelmente sua conta Bluesky <0>{currentHandle} msgid "This will remove @{0} from the quick access list." msgstr "Isso removerá @{0} da lista de acesso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Isso removerá sua postagem desta postagem de citação para todos os usuários e a substituirá por um espaço reservado." @@ -11574,7 +12166,7 @@ msgstr "Preferências dos Tópicos" msgid "Threaded" msgstr "Aninhado" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferências dos Tópicos" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Para desabilitar o 2FA via e-mail, por favor verifique seu acesso a este endereço de e-mail." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Para desabilitar o 2FA via email, por favor verifique que você tem acesso a <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Principais" msgid "Top replies first" msgstr "Respostas populares primeiro" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Assunto" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traduzir" @@ -11667,14 +12259,14 @@ msgstr "Traduzido" msgid "Translating" msgstr "Traduzindo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Traduzindo…" #: src/lib/translation/index.tsx:305 msgid "Translation to the same language is unavailable on your device." -msgstr "" +msgstr "Tradução para o mesmo idioma não está disponível no seu dispositivo." #: src/screens/Settings/ThreadPreferences.tsx:87 #: src/screens/Settings/ThreadPreferences.tsx:92 @@ -11702,7 +12294,7 @@ msgstr "Vídeos em alta" msgid "Trolling" msgstr "Trollagem" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A confiança emerge de relacionamentos, comunidades e contexto compartilhado, por isso também estamos permitindo <0>verificadores confiáveis: organizações que podem conceder verificação diretamente." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Experimente um termo de pesquisa diferente, ou <0>leia sobre como usar os filtros de busca." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Tentar novamente" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Tentar novamente" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Tente novamente em um momento." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Tentar o Google Tradutor" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Experimente" + #: src/lib/interests.ts:74 msgid "TV" msgstr "TV" @@ -11763,13 +12369,17 @@ msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifi msgid "Unable to delete" msgstr "Não foi possível excluir" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Não foi possível obter as solicitações para entrar." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +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 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Não foi possível encontrar o destinatário selecionado." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Indisponível" msgid "Unavailable feed information" msgstr "Informação do feed indisponível" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" -msgstr "" +msgstr "Desbloquear {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desbloquear Conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Desbloquear conta?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Desbloquear Conta?" @@ -11837,8 +12452,8 @@ msgstr "Desbloquear lista" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Desfazer" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Desfazer repostagem ({0, plural, one {# repostagem} other {# repostagens}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Parar de seguir conta" @@ -11872,7 +12487,7 @@ msgstr "Parar de seguir conta" msgid "Unfollows the user" msgstr "Para de seguir o usuário" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Infelizmente, nenhum dos rotuladores em que você se inscreveu suporta esse tipo de denúncia." @@ -11884,14 +12499,6 @@ msgstr "Infelizmente, a data de aniversário que você salvou no seu perfil torn msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Infelizmente, a sua idade declarada indica que você não tem idade suficiente para acessar o Bluesky na sua região." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Verificador desconhecido" @@ -11904,23 +12511,23 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Descurtir" #. 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Descurtir ({0, plural, one {# curtida} other {# curtidas}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" -msgstr "" +msgstr "Desbloquear conversa" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" -msgstr "" +msgstr "Desbloquear esta conversa em grupo" #: src/screens/ProfileList/components/Header.tsx:180 #: src/screens/ProfileList/components/Header.tsx:187 @@ -11939,14 +12546,14 @@ msgstr "Dessilenciar" msgid "Unmute {0}" msgstr "Dessilenciar {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Dessilenciar conta" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Dessilenciar conversa" @@ -11955,12 +12562,12 @@ msgstr "Dessilenciar conversa" msgid "Unmute list" msgstr "Dessilenciar lista" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" -msgstr "" +msgstr "Dessilenciar esta conversa em grupo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Dessilenciar tópico" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Desafixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desafixar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Desafixar da tela inicial" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Desafixar do seu perfil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Desafixar lista de moderação" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} desafixado da Tela Inicial" @@ -12030,14 +12637,18 @@ msgstr "Cancelar inscrição deste rotulador" msgid "Unsubscribed from list" msgstr "Cancelada inscrição na lista" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" -msgstr "" +msgstr "Conteúdo da área de transferência não suportado" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Formato de vídeo não suportado: {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Até 50 pessoas" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,29 +12658,37 @@ msgstr "Atualizar" msgid "Update <0>{displayName} in Lists" msgstr "Atualizar <0>{displayName} nas Listas" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Atualizar app" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Atualizar email" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" +msgstr "Atualizar link de convite" #: src/screens/Settings/components/ChangeHandleDialog.tsx:544 #: src/screens/Settings/components/ChangeHandleDialog.tsx:565 msgid "Update to {domain}" msgstr "Alterar para {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Atualize seu app" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Atualize seu app para vê-la." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Atualizar seu email" @@ -12078,19 +12697,19 @@ msgstr "Atualizar seu email" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 msgid "Update your location" -msgstr "" +msgstr "Atualizar sua localização" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Falha na atualização da citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falha na atualização da visibilidade da resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Enviar uma foto" @@ -12098,39 +12717,40 @@ msgstr "Enviar uma foto" msgid "Upload a text file to:" msgstr "Carregar um arquivo de texto para:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Tirar uma foto" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Carregar um arquivo" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Carregar da galeria" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Enviando GIF..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Enviando imagens..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Enviando prévia de link..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Enviando vídeo..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "usuário" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Usuário bloqueado" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Lista de usuários por {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Lista de Usuários por {0}" @@ -12255,12 +12875,12 @@ msgstr "usuários seguidos por <0>@{0}" msgid "users following <0>@{0}" msgstr "usuários seguindo <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Usuários que eu sigo" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Usuários que eu sigo" @@ -12277,7 +12897,7 @@ msgstr "Falha na verificação, por favor tente novamente." msgid "Verification settings" msgstr "Configurações de verificação" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Configurações de Verificação" @@ -12304,8 +12924,8 @@ msgstr "Verificar novamente" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Verificar código" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificar registro DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Código para verificar o email" @@ -12349,7 +12969,7 @@ msgstr "Verificar esta conta?" msgid "Verify your age" msgstr "Verificar sua idade" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Versão {0}" msgid "Video" msgstr "Vídeo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Falha no processamento do vídeo" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Feed de vídeos" @@ -12419,7 +13039,7 @@ msgstr "Vídeo não encontrado." msgid "Video settings" msgstr "Configurações de vídeo" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Vídeo enviado" @@ -12432,20 +13052,20 @@ msgstr "Vídeo: {0}" msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visualizar" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" -msgstr "" +msgstr "Ver {0}" #. placeholder {0}: profile.handle #: src/screens/Profile/Header/Shell.tsx:257 @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -12467,19 +13087,14 @@ msgstr "Ver perfil de {0}" msgid "View {0}’s profile" msgstr "Ver o perfil de {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" -msgstr "" +msgstr "Ver perfil de {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" -msgstr "" - -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" +msgstr "Ver {publicationTitle}" #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" @@ -12503,9 +13118,17 @@ msgstr "Ver detalhes" msgid "View full thread" msgstr "Ver tópico completo" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" -msgstr "" +msgstr "Ver solicitações recebidas para a conversa em grupo" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Ver solicitações recebidas" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Ver solicitações recebidas para entrar nesta conversa em grupo" #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" @@ -12522,7 +13145,7 @@ msgstr "Ver mais" msgid "View more trending videos" msgstr "Ver mais vídeos em alta" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Visualizar postagem" @@ -12539,20 +13162,20 @@ msgstr "Ver perfil" msgid "View profile banner" msgstr "Ver imagem de capa do perfil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" -msgstr "" +msgstr "Ver publicação" #: src/view/com/profile/ProfileSubpageHeader.tsx:108 msgid "View the avatar" msgstr "Ver o avatar" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" -msgstr "" +msgstr "Ver o link de convite para esta conversa em grupo" #. placeholder {0}: labeler.creator.handle #: src/components/LabelingServiceCard/index.tsx:164 @@ -12563,7 +13186,7 @@ msgstr "Ver este rotulador fornecido por @{0}" msgid "View this user's verifications" msgstr "Ver as verificações deste usuário" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Ver usuários que curtiram este feed" @@ -12596,8 +13219,8 @@ msgstr "Veja suas contas silenciadas" msgid "View your verifications" msgstr "Ver suas verificações" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Ver imagem completa" @@ -12640,8 +13263,8 @@ msgstr "Avisar" msgid "Warn content and filter from feeds" msgstr "Avisar e filtrar dos feeds" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Assistir agora" @@ -12651,7 +13274,7 @@ msgstr "Aplicamos os mais altos padrões de privacidade e nunca compartilhamos o #: 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 "" +msgstr "Não foi possível conectar ao serviço que fornece este feed personalizado. Ele pode estar com problemas temporários ou permanentemente indisponível." #: src/view/com/feeds/MissingFeed.tsx:147 msgid "We could not find this list. It was probably deleted." @@ -12665,13 +13288,17 @@ msgstr "Não encontramos nenhum resultado para esta tag." msgid "We couldn't find any results for that topic." msgstr "Nós não encontramos nenhum resultado para este assunto." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Não foi possível carregar esta conversa" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Não foi possível carregar as solicitações para entrar nesta conversa" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" -msgstr "" +msgstr "Não foi possível carregar as configurações desta conversa" #: src/components/contacts/screens/GetContacts.tsx:244 msgid "We delete hashes after matches are made" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Recomendamos a escolha de pelo menos dois interesses." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Enviamos um email para <0>{0} contendo um link. Clique nele para concluir o processo de verificação de email." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Não conseguimos determinar se você tem permissão para enviar vídeos. Tente novamente." @@ -12744,12 +13371,12 @@ msgstr "Não foi possível obter a verificação devido a problemas de conexão. msgid "We will let you know when your account is ready." msgstr "Avisaremos quando sua conta estiver pronta." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Nós lhe notificaremos quando encontrarmos seus amigos." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Enviaremos um email para <0>{0} contendo um link. Clique nele para concluir o processo de verificação de email." @@ -12779,18 +13406,18 @@ msgstr "Estamos com problemas para iniciar o processo de verificação de idade msgid "We're having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" -msgstr "" +msgstr "Estamos com problemas de rede, tente novamente" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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:136 msgid "We’re so excited to have you join us!" -msgstr "" +msgstr "Estamos muito contentes em receber você!" #: src/ageAssurance/components/NoAccessScreen.tsx:416 #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:241 @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Sentimos muito! A postagem que você está respondendo foi excluída." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Sentimos muito! Não conseguimos encontrar a página que você estava procurando." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Como você quer chamar seu pacote inicial?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "E aí, qual é a boa?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Quando você tocar em uma verificação, verá quais organizações concederam verificação." @@ -12878,22 +13505,22 @@ msgstr "Quando você tocar em uma verificação, verá quais organizações conc msgid "Who can interact with this post?" msgstr "Quem pode interagir com esta postagem?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" -msgstr "" +msgstr "Quem pode entrar nesta conversa e como" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:427 #: src/components/WhoCanReply.tsx:116 msgid "Who can reply" msgstr "Quem pode responder" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ops!" @@ -12939,19 +13566,19 @@ msgstr "Por que este pacote inicial deve ser analisado?" msgid "Why should this user be reviewed?" msgstr "Por que este usuário deve ser analisado?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Você gostaria de bloquear esse usuário e/ou excluir esta conversa?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Gostaria de bloquear este usuário e/ou sair desta conversa?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Gostaria de salvar isto como um rascunho para editar mais tarde?" msgid "Write a post" msgstr "Escrever uma postagem" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Escrever postagem" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Escreva sua resposta" @@ -12978,9 +13605,10 @@ msgstr "Escritores" msgid "Wrong DID returned from server. Received: {0}" msgstr "DID incorreto recebido do servidor. Recebido: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" -msgstr "" +msgstr "Tipo de conversa incorreto" #: src/features/liveNow/components/EditLiveDialog.tsx:154 #: src/features/liveNow/components/GoLiveDialog.tsx:136 @@ -12990,7 +13618,7 @@ msgstr "p. ex. www.minhalive.tv" #. 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 "" +msgstr "GIFs de sim" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:105 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:107 @@ -13005,11 +13633,11 @@ msgstr "Sim, excluir minha conta" msgid "Yes, delete this starter pack" msgstr "Sim, excluir este pacote inicial" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Sim, desvincular" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Sim, ocultar" @@ -13030,17 +13658,17 @@ 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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" -msgstr "" +msgstr "Você está bloqueando {0}" #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "You are blocking the chat owner" -msgstr "" +msgstr "Você está bloqueando o dono da conversa" #: src/components/dms/MessagesListBlockedFooter.tsx:83 msgid "You are blocking this person" -msgstr "" +msgstr "Você está bloqueando esta pessoa" #: src/components/forms/HostingProvider.tsx:46 msgid "You are creating an account on" @@ -13068,7 +13696,7 @@ msgstr "Você está ao vivo" msgid "You are no longer live" msgstr "Você não está mais ao vivo" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Você não tem permissão para enviar vídeos." @@ -13117,21 +13745,30 @@ msgstr "Você sempre pode escolher não usar e excluir seus dados" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Você pode escolher se as notificações de conversa terão som nas configurações de conversa dentro do app" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Você pode continuar conversando, independentemente da configuração que escolher." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Agora você pode escolher ser notificado quando pessoas específicas postarem. Se houver alguém de quem você queira atualizações regulares, vá até o perfil de interesse e encontre o novo ícone de sino próximo ao botão de seguir." +#: src/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 "Agora você pode convidar amigos com um link ou QR code. Compartilhe o link em qualquer lugar ou deixe que eles escaneiem o código para se juntar a você no Bluesky." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Agora você pode entrar com a sua nova senha." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "Você só pode adicionar até {MAX_GALLERY_IMAGES, plural, other {# imagens}} por post" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Você só pode salvar rascunhos com até 1000 caracteres." @@ -13139,11 +13776,11 @@ msgstr "Você só pode salvar rascunhos com até 1000 caracteres." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Você só pode salvar rascunhos de até 1000 caracteres. Gostaria de descartar esta postagem antes de visualizar seus rascunhos?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Você só pode selecionar um GIF por vez." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Você só pode selecionar um vídeo por vez." @@ -13153,12 +13790,12 @@ msgstr "Você pode reativar sua conta para continuar fazendo login. Seu perfil e #: src/components/dms/MessagesListBlockedFooter.tsx:93 msgid "You can read chat history but can’t send new messages." -msgstr "" +msgstr "Você pode ler o histórico da conversa, mas não pode enviar novas mensagens." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Você pode selecionar até {MAX_IMAGES, plural, other {# imagens}} no total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "Você pode selecionar até {MAX_IMAGES, plural, other {# imagens}} no to msgid "You can update this later from your settings." msgstr "Você pode alterar esta opção depois nas suas configurações." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +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 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Você ainda não pode criar uma conversa em grupo." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "Você não tem feeds salvos." msgid "You got here first" msgstr "Você chegou aqui primeiro" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Você foi removido deste grupo anteriormente e não pode entrar usando este link." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "Você precisa ser dono da conversa para remover um membro." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Você deve ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviço para obter mais informações." @@ -13332,11 +13982,12 @@ msgstr "Você deve ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Você deve estar seguindo pelo menos sete outras pessoas para gerar um pacote inicial." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Você deve conceder acesso à sua galeria de fotos para salvar o QR code" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Você precisa permitir acesso à sua biblioteca de mídia." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "Você é dono desta conversa" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Você reagiu com {0}" @@ -13368,8 +14023,13 @@ msgstr "Você reagiu com {0} a {target}" msgid "You recently changed your birthdate" msgstr "Você alterou sua data de nascimento recentemente" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Você solicitou entrada" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Você será desconectado de todas as suas contas." @@ -13378,11 +14038,11 @@ msgstr "Você será desconectado de todas as suas contas." msgid "You will no longer receive notifications for {0}" msgstr "Você não receberá mais notificações de {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Você não vai mais receber notificações deste tópico" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Você vai receber notificações deste tópico" @@ -13390,12 +14050,12 @@ msgstr "Você vai receber notificações deste tópico" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Você receberá um e-mail com um \"código de redefinição\". Digite este código aqui, e então digite sua nova senha." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." -msgstr "" +msgstr "Você não poderá voltar a entrar a menos que seja convidado." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Você: {message}" @@ -13429,6 +14089,10 @@ msgstr "Você vai começar a receber notificações de {0}!" msgid "You'll stay updated with these feeds" msgstr "Você se manterá atualizado com estes feeds" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "Você está no controle" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Você está na fila" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Você atingiu o número máximo de rascunhos" @@ -13475,11 +14139,11 @@ msgstr "Você atingiu o número máximo de solicitações permitidas. Tente nova msgid "You've reached the start of the active content." msgstr "Você chegou ao início do conteúdo ativo." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Você atingiu seu limite diário de uploads de vídeo (muitos bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Você atingiu seu limite diário de uploads de vídeos (muitos vídeos)" @@ -13499,10 +14163,18 @@ msgstr "Sua conta foi excluída. Até mais✌️" msgid "Your account has been suspended" msgstr "Sua conta foi suspensa" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Sua conta ainda não tem idade suficiente para enviar vídeos. Por favor, tente novamente mais tarde." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Sua conta é muito nova" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "O repositório da sua conta, contendo todos os seus dados públicos, pode ser baixado como um arquivo \"CAR\". Este arquivo não inclui imagens ou dados privados, estes devem ser exportados separadamente." @@ -13519,7 +14191,7 @@ msgstr "Seu recurso foi enviado. Se o seu recurso for aceito, você receberá um msgid "Your birth date" msgstr "Sua data de nascimento" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Suas conversas foram desativadas" @@ -13527,11 +14199,11 @@ msgstr "Suas conversas foram desativadas" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Sua escolha será lembrada para links futuros. Você pode alterá-la a qualquer momento nas configurações." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Seu contato {firstAuthorLink} está no Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Seu contato {firstAuthorName} está no Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Seu email" msgid "Your email appears to be invalid." msgstr "Seu e-mail parece ser inválido." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Seu email ainda não foi verificado. Por favor, verifique seu email para aproveitar todos os recursos do Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Seu feed principal está vazio! Siga mais usuários para acompanhar o qu msgid "Your full handle will be <0>@{0}" msgstr "Seu nome de usuário completo será <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Sua localização foi atualizada." msgid "Your muted words" msgstr "Suas palavras silenciadas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -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 "Seu nome, avatar, o nome da conversa em grupo e o número de membros estarão visíveis para todos." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Sua postagem foi enviada" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Suas postagens foram enviadas" @@ -13635,7 +14307,7 @@ msgstr "Suas postagens foram enviadas" msgid "Your preferred language" msgstr "Seu idioma de preferência" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Sua foto de perfil" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Sua resposta foi enviada" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Sua denúncia será enviada para <0>{0}." @@ -13661,9 +14333,9 @@ msgstr "Sua denúncia será enviada para <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Seus interesses escolhidos nos ajudam a entregar o conteúdo que interessa a você." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." -msgstr "" +msgstr "Sua thread tem posts vazios que serão ignorados. Os posts restantes serão publicados como uma thread." #: src/components/verification/VerificationsDialog.tsx:67 msgid "Your verifications" diff --git a/src/locale/locales/pt-PT/messages.po b/src/locale/locales/pt-PT/messages.po index 4ea2f77f56..9ec3917973 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria \"{interestsDisplayName}\" (ativo)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(link de convite da conversa)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(contém conteúdo incorporado)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# gosto} other {# gostos}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# membro} other {# membros}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minuto} other {# minutos}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# mês} other {# meses}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# novo pedido de adesão} other {# novos pedidos de adesão}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# pessoa} other {# pessoas}} reagiu – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# segundo} other {# segundos}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# item não lido} other {# itens não lidos}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {#m} other {#m}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>em <1>texto e etiquetas" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} foi adicionado/a à conversa" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} e {1} adicionados à conversa" @@ -206,9 +215,9 @@ msgid "{0} following" msgstr "{0} a seguir" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" -msgstr "" +msgstr "Está bloqueado por {0}" #. placeholder {0}: sanitizeHandle(profile.handle) #: src/features/liveNow/components/LiveStatusDialog.tsx:84 @@ -264,7 +273,7 @@ msgstr "{0} de 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reagiu com {1}" @@ -290,7 +299,7 @@ msgstr "{0} foi removido/a do grupo" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, uma lista de {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Foto de perfil de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Foto de perfil de {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {membro} other {membros}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} membros" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}min" msgid "{0}s" msgstr "{0}seg" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Nenhum pedido de adesão} one {# pedido de adesão} other {# pedidos de adesão}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# atualização da conversa} other {# atualizações da conversa}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# novo pedido de adesão} other {# novos pedidos de adesão}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# pedido} other {# pedidos}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# item não lido} other {# itens não lidos}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Recarregue a página para vê-la.} other {Recarregue a página para vê-las.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Esta publicação tem # imagem.} other {Esta publicação tem # imagens.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Atualize a sua aplicação para vê-la.} other {Atualize a sua aplicação para vê-las.}}" + +#. 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 "{count, plural, one {}other {+ # pedidos de adesão}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "+ de {count} pedidos" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} seguiram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram as suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} repostaram a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} republicaram a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} registaram-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} seguiu-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} seguiu-te de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} gostou do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gostou da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} gostou da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} removeu a sua verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} republicou a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} republicou a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registou-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verificou-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} seguiram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} gostaram da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} removeram as suas verificações da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} republicaram a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} republicaram a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} registaram-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} verificaram-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} seguiu-te" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} seguiu-te de volta" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} gostou do seu feed personalizado" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gostou da sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} gostou da sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} removeu a sua verificação da sua conta" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} republicou a sua publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} republicou a sua republicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registou-se com o seu pacote de iniciante" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verificou-te" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} verificou-te" msgid "{following} following" msgstr "{following} a seguir" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} não pode ser adicionado/a" @@ -547,7 +606,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:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "Não é possível enviar mensagens a {handle}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# hora {minutesString}} other {# horas {minutesStri msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# hora} other {# horas}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}+ novos pedidos de adesão" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ novos pedidos de adesão" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {A descrição é demasiado longa. O nú msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {O nome de exibição é demasiado longo. O número máximo de caracteres é #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, one {}other {Você pode esconder um máximo de # respostas.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} reagiu com {0} a {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Feeds e utilizadores favoritos de {name} - junte-se a mim!" msgid "{name}'s starter pack" msgstr "Pacote de iniciante de {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# item não lido} other {# itens não lidos}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# contacto encontrado} other {# contactos encontrados}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# pedido} other {# pedidos}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ pedidos" @@ -656,6 +725,12 @@ msgstr "{userName} é verificado" msgid "{userName}'s verifications" msgstr "Verificações de {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, {2, plural, one {# outro} other {# outros}} est #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {a seguir} other {a seguir}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {gosto} other {gostos}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citação} other {citações}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {republicação} other {republicações}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {guardado} other {guardados}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} membros" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> adicionou-te" @@ -747,7 +822,7 @@ msgstr "<0>Inicie sessão<1> ou <2>crie uma conta<3> <4>para pro #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 msgid "<0>Tap here to update your location with GPS." -msgstr "" +msgstr "<0>Toque aqui para atualizar a sua localização com o GPS." #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #: src/screens/StarterPack/Wizard/index.tsx:494 @@ -795,8 +870,13 @@ msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexão à internet #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexão à internet." @@ -804,7 +884,7 @@ msgstr "Ocorreu um erro de rede. Por favor, verifique a sua conexão à internet msgid "A new code has been sent" msgstr "Um novo código foi enviado" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Uma nova forma de verificação" @@ -827,11 +907,11 @@ msgstr "Uma captura de ecrã de uma página de perfil com um ícone de sino ao l 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Um destinatário selecionado não é seguido pelo remetente." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Comportamento abusivo ou discriminatório" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Aceitar" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Aceitar" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Aceitar pedido de conversa" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Aceitar pedido de adesão" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Aceitar Pedido" @@ -860,17 +950,26 @@ msgstr "Aceitar Pedido" msgid "Accept this language suggestion" msgstr "Aceitar esta sugestão de idioma" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Conversas aceites" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Acesso solicitado! O proprietário do grupo irá rever o seu pedido." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Acessibilidade" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Definições de acessibilidade" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Definições de acessibilidade" msgid "Account" msgstr "Conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Conta bloqueada" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Conta seguida" @@ -899,7 +998,7 @@ msgstr "Esta conta foi suspensa" msgid "Account is deactivated" msgstr "Esta conta está desativada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Fornecedor de conta" msgid "Account removed from quick access" msgstr "Conta removida do acesso rápido" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Conta desbloqueada" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Deixou de seguir conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Removeu silenciamento da conta" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Contas com um selo de verificação azul recortado <0><1/> podem verificar outras. Estes verificadores confiáveis são selecionados pelo Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Atividade de outros" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notificações de atividade" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Adicionar" @@ -999,8 +1094,8 @@ msgstr "Adicionar conta" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Adicionar texto alternativo (opcional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Adicionar outra conta" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Adicionar outra publicação" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Adicionar outra publicação ao fio" @@ -1035,7 +1130,7 @@ msgstr "Adicionar palavra-passe da aplicação" msgid "Add App Password" msgstr "Adicionar Palavra-passe da Aplicação" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Adicionar rótulo de automação à conta" @@ -1043,7 +1138,7 @@ msgstr "Adicionar rótulo de automação à conta" msgid "Add emoji reaction" msgstr "Adicionar reação de emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Adicionar membros à conversa de grupo" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Adicionar imagem" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Adicionar conteúdo multimédia à publicação" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Adicionar membros" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Adicionar mais detalhes (opcional)" @@ -1091,6 +1186,10 @@ msgstr "Adicionar pessoas" msgid "Add people to list" msgstr "Adicionar pessoas à lista" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Adicione pessoas com um link" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Adicionar Reação" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Adicionar a sua data de nascimento" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Adicionado por {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Adicionado por link de convite" @@ -1165,12 +1264,12 @@ msgstr "A adicionar membros à lista..." msgid "Additional details (limit 1000 characters)" msgstr "Detalhes adicionais (máximo de 1000 caracteres)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Detalhes adicionais (limite de 300 caracteres)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Administrador" @@ -1228,12 +1327,12 @@ msgstr "O inquérito de verificação de idade foi enviado" msgid "Age assurance only takes a few minutes" msgstr "A verificação de idade demora apenas alguns minutos" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@exemplo.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Tudo" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Todas {0}" @@ -1278,13 +1377,13 @@ msgstr "Permitir acesso às suas mensagens diretas" msgid "Allow anyone to reply" msgstr "Permitir que qualquer pessoa responda" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Permitir mensagens de" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Permitir convites para conversas de grupo de" @@ -1338,12 +1437,12 @@ msgstr "Já possui uma conta?" msgid "Already signed in as @{0}" msgstr "Já iniciou sessão como @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Texto Alternativo" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "O texto alternativo descreve conteúdo multimédia para utilizadores de visão reduzida ou cegos, e ajuda a dar contexto para todos." @@ -1387,7 +1486,7 @@ msgstr "Ocorreu um erro" msgid "An error occurred" msgstr "Ocorreu um erro" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Ocorreu um erro ao comprimir o vídeo." @@ -1421,7 +1520,8 @@ msgstr "Ocorreu um erro enquanto carregava o vídeo. Tente novamente." msgid "An error occurred while loading your lists :/" msgstr "Ocorreu um erro ao carregar as suas listas :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Ocorreu um erro enquanto guardava o Código QR!" @@ -1432,11 +1532,11 @@ msgstr "Ocorreu um erro enquanto guardava o Código QR!" msgid "An error occurred while trying to follow all" msgstr "Ocorreu um erro enquanto tentava seguir todos" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Ocorreu um erro ao carregar o vídeo. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Ocorreu um erro ao carregar o vídeo. Por favor, verifique a sua conexão à internet e tente novamente." @@ -1456,26 +1556,30 @@ msgstr "Uma ilustração que retrata avatares de utilizadores a fluir de um livr 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" +#: 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 "Uma ilustração da aplicação Bluesky com um avião de papel a voar para fora dela, a representar amigos convidados" + #: 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 "Uma imagem a mostrar que o Bluesky seleciona verificadores confiáveis e, por sua vez, verificadores confiáveis verificam contas de utilizadores individuais." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Um link de convite permite que pessoas entrem nesta conversa de grupo sem serem adicionadas diretamente. Quem pode usar o link e se eles precisam da sua aprovação é controlado por si. Pode desativar o link a qualquer momento." +#: 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 "Um link de convite permite que pessoas entrem nesta conversa de grupo sem serem adicionadas diretamente. O controlo de quem pode entrar na conversa é seu. Pode desativar o link a qualquer momento." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "Um problema não incluído nestas opções" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Ocorreu um problema ao criar a conversa de grupo. Por favor, tente novamente." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Ocorreu um problema ao tentar abrir a conversa" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Ocorreu um problema, tente novamente." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Uma réplica de um iPhone a mostrar a aplicação Bluesky aberta no perfil de um utilizador verificado com um selo de verificação azul ao lado do seu nome de exibição." @@ -1539,13 +1643,17 @@ msgstr "Todos" msgid "Anyone can interact" msgstr "Qualquer um pode interagir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Qualquer pessoa pode aderir" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Qualquer pessoa pode entrar instantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Qualquer pessoa pode pedir para se juntar" @@ -1555,11 +1663,11 @@ msgstr "Qualquer pessoa pode pedir para se juntar" msgid "Anyone who follows me" msgstr "Qualquer um que me segue" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "Qualquer pessoa que o tenha deixará de poder entrar ou pedir para entrar. Pode sempre criar um novo." -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Palavras-passe da Aplicação" @@ -1618,7 +1726,7 @@ msgstr "Recorrer da suspensão da transmissão ao vivo" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Recurso submetido" @@ -1632,14 +1740,14 @@ msgstr "Recorrer da suspensão" msgid "Appeal Suspension" msgstr "Recorrer da Suspensão" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Recorrer desta decisão" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Aplicar Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arquivado desde {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Publicação arquivada" @@ -1675,7 +1783,7 @@ msgstr "Tem mesmo a certeza?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Tem a certeza que deseja eliminar a palavra-passe da aplicação \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Tem a certeza de que deseja eliminar esta mensagem? A mensagem será eliminada para si, mas não para os outros participantes." @@ -1688,23 +1796,29 @@ msgstr "Tem a certeza que deseja eliminar este pacote de iniciante?" msgid "Are you sure you want to discard your changes?" msgstr "Tem a certeza que deseja descartar as suas alterações?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Tem a certeza de que deseja sair de {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Tem a certeza que deseja sair desta conversa?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Tem a certeza que deseja sair desta conversa? As suas mensagens serão eliminadas para si, mas não para o outro participante." +#: src/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 "Tem a certeza de que quer sair desta conversa? As suas mensagens serão eliminadas para si, mas não para os outros participantes." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Tem a certeza que deseja eliminar isto dos seus feeds?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Tem a certeza que deseja descartar esta publicação?" @@ -1724,8 +1838,8 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudez artística ou não erótica." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Atribuir tópico para o algoritmo" @@ -1752,7 +1866,7 @@ msgstr "Conta automatizada" msgid "Automation label" msgstr "Rótulo de automação" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Rótulo de Automação" @@ -1767,12 +1881,12 @@ msgstr "Reproduzir vídeos e GIFs automaticamente" msgid "Available" msgstr "Disponível" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Disponível" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Disponível" msgid "Back" msgstr "Voltar" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Voltar às Conversas" @@ -1832,7 +1948,7 @@ msgstr "Antes de criar uma publicação ou responder, deve verificar o seu e-mai 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Antes de poder aceitar este pedido de conversa, precisa de verificar o seu e-mail." @@ -1840,13 +1956,14 @@ msgstr "Antes de poder aceitar este pedido de conversa, precisa de verificar o s msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Antes de poder receber notificações de publicações de {name}, primeiro tem de confirmar o seu e-mail." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Antes de poder enviar mensagens a outro utilizador, precisa de verificar o seu e-mail." @@ -1874,59 +1991,53 @@ msgstr "Data de nascimento" msgid "Birthday" msgstr "Aniversário" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Bloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Bloquear {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Bloquear conta" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Bloquear conta?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Bloquear conta?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Bloquear contas" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Bloquear e apagar" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Bloquear e sair" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Bloquear lista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Bloquear ou Denunciar" @@ -1936,9 +2047,9 @@ msgstr "Bloquear estas contas?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Bloquear utilizador" @@ -1946,17 +2057,17 @@ msgstr "Bloquear utilizador" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Bloquear utilizador" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Bloquear utilizador e/ou eliminar esta conversa" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Bloquear utilizador e/ou sair desta conversa" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Bloqueado" @@ -1964,14 +2075,12 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Contas bloqueadas não conseguem responder aos seus fios, mencionar ou interagir de qualquer outra forma consigo." @@ -1987,7 +2096,7 @@ msgstr "Bloquear não impede o rotulador de aplicar rótulos na sua conta." msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "A lista de contas que bloqueou é pública. Contas bloqueadas não podem responder aos seus fios, mencionar ou interagir de qualquer outra forma consigo." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Bloquear não impedirá a aplicação de rótulos na sua conta, mas impedirá esta conta de responder aos seus fios ou de interagir consigo." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "O Bluesky não pode confirmar a veracidade da data aplicada." @@ -2029,7 +2138,7 @@ msgstr "Bluesky é melhor com amigos!" msgid "Bluesky is more fun with friends" msgstr "O Bluesky é mais divertido com amigos" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "O Bluesky é mais divertido com os amigos! Importe os seus contactos para ver quem já cá está." @@ -2037,11 +2146,15 @@ msgstr "O Bluesky é mais divertido com os amigos! Importe os seus contactos par msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "O Bluesky é mais divertido com amigos. Deseja convidar alguns dos seus? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "O Bluesky precisa de acesso à câmara para ler códigos QR de outros perfis." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Termos de Serviço de Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "O Bluesky escolherá um conjunto de contas recomendadas de pessoas na su 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 "O Bluesky não exibirá o seu perfil e publicações para utilizadores que não tenham sessão iniciada. Outras aplicações talvez não respeitem esta solicitação. Isto não torna a sua conta privada." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "O Bluesky irá verificar proativamente contas notáveis e autênticas." @@ -2081,6 +2194,10 @@ msgstr "Livros" msgid "Breaking site rules" msgstr "Violação das regras do site" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Junte até 50 amigos numa só conversa." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "Emprego" msgid "Button to go back to the home timeline" msgstr "Botão para voltar à cronologia do início" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Por {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Por <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "por <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Por <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Ao criar uma conta, concorda com os <0>Termos de Aplicação." msgid "By you" msgstr "Por si" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Câmara" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Acesso à câmara necessário" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2192,15 +2323,18 @@ msgstr "Câmara" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Câmara" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Câmara" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Cancelar" @@ -2248,9 +2384,9 @@ msgstr "Cancelar reativação e terminar sessão" msgid "Cancel search" msgstr "Cancelar pesquisa" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Não pode interagir com um utilizador bloqueado" @@ -2264,7 +2400,7 @@ msgstr "Legendas (.vtt)" msgid "Captions & alt text" msgstr "Legendas e texto alternativo" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carrossel" @@ -2297,7 +2433,7 @@ msgstr "Alterar idioma da aplicação" msgid "Change Handle" msgstr "Alterar Nome de Utilizador" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Alterar serviço de moderação" @@ -2310,11 +2446,11 @@ msgstr "Alterar palavra-passe" msgid "Change password dialog" msgstr "Janela de diálogo de alteração da palavra-passe" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Alterar categoria da denúncia" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Alterar motivo da denúncia" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Conversas" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Conversa eliminada" @@ -2361,6 +2497,12 @@ msgstr "Conversa eliminada" msgid "Chat ended" msgstr "Conversa encerrada" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "O link de convite para a conversa já não está disponível" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Conversa trancada" @@ -2373,35 +2515,44 @@ msgstr "Mensagens de conversas - silencioso" msgid "Chat messages - sound" msgstr "Mensagens de conversas - com som" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Conversa silenciada" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Conversa não encontrada." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +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 +msgid "Chat recipient is not followed by the sender." +msgstr "O destinatário da conversa não é seguido pelo remetente." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Caixa de pedidos de conversa" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Pedidos de conversa" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Definições da conversa" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Definições da Conversa" @@ -2418,14 +2569,14 @@ msgstr "Título da conversa alterado para {0}" msgid "Chat unlocked" msgstr "Conversa destrancada" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Removeu o silenciamento da conversa" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Conversas" @@ -2479,7 +2630,7 @@ msgstr "Escolher idiomas da publicação" msgid "Choose this color as your avatar" msgstr "Escolher esta cor como a sua foto de perfil" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Escolha quem pode entrar nesta conversa de grupo e como." @@ -2558,7 +2709,7 @@ msgstr "Clique aqui para terminar sessão" msgid "Click here to resend the email" msgstr "Clique aqui para reenviar o e-mail" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Clique aqui para reiniciar o processo de verificação." @@ -2567,7 +2718,7 @@ msgstr "Clique aqui para reiniciar o processo de verificação." msgid "Click here to update your birthdate" msgstr "Clique aqui para atualizar a sua data de nascimento" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Clique aqui para atualizar o seu e-mail" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Clique para reenviar a mensagem falha" @@ -2594,28 +2745,30 @@ msgstr "Clique para reenviar a mensagem falha" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Clique para reenviar a mensagem falha" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Fechar" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Fechar janela de diálogo em execução" @@ -2647,6 +2800,10 @@ msgstr "Fechar janela de diálogo em execução" msgid "Close alert" msgstr "Fechar aviso" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Fechar banner" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Fechar parte inferior" @@ -2657,8 +2814,10 @@ msgstr "Fechar parte inferior" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Fechar janela de diálogo" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Fechar imagem" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Fechar menu" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Fechar leitor" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Fechar o banner de pedidos de adesão" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Fechar esta janela de diálogo" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Fecha o compositor de publicação e descarta o rascunho de publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Colapsar lista de utilizadores" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Colapsa lista de utilizadores para uma notificação" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Cor" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Banda Desenhada" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -2740,12 +2915,12 @@ msgstr "Conclua o desafio" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Escrever nova publicação" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Compor publicações com até {0, plural, other {# caracteres}} de comprimento" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "A comprimir GIF..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "A comprimir vídeo..." @@ -2780,7 +2955,7 @@ msgstr "Configurado nas <0>definições de moderação." msgid "Confirm" msgstr "Confirmar" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contactar suporte" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "A sincronização de contactos não está disponível neste dispositivo, pois a aplicação não pode aceder aos seus contactos." @@ -2825,11 +3000,11 @@ msgstr "A sincronização de contactos não está disponível neste dispositivo, msgid "Contact us" msgstr "Contacte-nos" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Contactos importados" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Contactos removidos" @@ -2842,7 +3017,7 @@ msgstr "Conteúdo e Multimédia" msgid "Content and media" msgstr "Conteúdo e multimédia" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Conteúdo e Multimédia" @@ -2889,7 +3064,7 @@ msgstr "Backdrop do menu de contexto, toque para fechar o ecrã." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Continuar fio" msgid "Continue thread..." msgstr "Continuar fio..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 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:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Continuar para o próximo passo" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Conversa" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversa eliminada" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversa eliminada" @@ -2939,15 +3114,22 @@ msgstr "Conversa eliminada" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Saiu da conversa" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Conversa não encontrada." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Versão de compilação copiada para a área de transferência" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiado!" msgid "Copies build version to clipboard" msgstr "Copia a versão de compilação para a área de transferência" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Copia o URL canónico do perfil para a área de transferência" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiar" @@ -2997,6 +3184,11 @@ msgstr "Copiar DID" msgid "Copy host" msgstr "Copiar host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Copiar link de convite" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Copiar Link para a Lista" msgid "Copy link to post" msgstr "Copiar Link para a Publicação" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copiar link para o perfil" @@ -3027,8 +3219,8 @@ msgstr "Copiar link para o perfil" msgid "Copy link to starter pack" msgstr "Copiar link para pacote de iniciante" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiar texto da mensagem" @@ -3037,12 +3229,12 @@ msgstr "Copiar texto da mensagem" msgid "Copy post at:// URI" msgstr "Copiar at:// URI da publicação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiar texto da publicação" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiar código QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Política de Direitos de Autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Não foi possível capturar o código QR" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Não foi possível conectar com o feed personalizado" @@ -3065,7 +3261,15 @@ msgstr "Não foi possível conectar com o feed personalizado" msgid "Could not connect to feed service" msgstr "Não foi possível conectar com o serviço do feed" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "Não foi possível copiar – por favor, tente novamente" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "Não foi possível transferir – por favor, tente novamente" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Não foi possível recuperar a publicação" @@ -3073,23 +3277,27 @@ msgstr "Não foi possível recuperar a publicação" msgid "Could not find profile" msgstr "Não foi possível encontrar o perfil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Não foi possível seguir todas as correspondências - verifique a sua conexão de rede." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Não foi possível seguir todas as correspondências. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Não foi possível sair da conversa" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "Não foi possível sair da conversa." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Não foi possível carregar o feed" @@ -3100,7 +3308,11 @@ msgstr "Não foi possível carregar o feed" msgid "Could not load list" msgstr "Não foi possível carregar a lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "Não foi possível carregar o perfil" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Não foi possível silenciar a conversa" @@ -3108,11 +3320,19 @@ msgstr "Não foi possível silenciar a conversa" msgid "Could not process your video" msgstr "Não foi possível processar o seu vídeo" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "Não foi possível remover o membro." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Não foi possível guardar as alterações: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "Não foi possível partilhar – por favor, tente novamente" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Não foi possível atualizar as definições de notificações" @@ -3139,7 +3359,7 @@ msgstr "Código do país" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Criar" @@ -3153,13 +3373,13 @@ msgstr "Criar uma Lista" msgid "Create a list from this starter pack" msgstr "Criar uma lista a partir deste pacote de iniciante" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Criar um pacote de iniciante" @@ -3174,13 +3394,14 @@ msgstr "Criar um pacote de iniciante para mim" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Criar uma foto de perfil" @@ -3206,7 +3427,7 @@ msgstr "Criar uma foto de perfil" msgid "Create another" msgstr "Criar outra" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Criar conversa de grupo" @@ -3228,19 +3449,20 @@ msgstr "Criar lista a partir de pacote de iniciante" msgid "Create moderation list" msgstr "Criar lista de moderação" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Criar conta nova" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Criar ou modificar um link de convite para esta conversa de grupo" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Criar um relatório para {0}" @@ -3256,8 +3478,8 @@ msgstr "Criar lista de utilizadores" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Criado {0}" @@ -3270,6 +3492,10 @@ msgstr "O criador foi bloqueado" msgid "Culture" msgstr "Cultura" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Conversa atual" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Tema escuro" msgid "Date of birth" msgstr "Data de nascimento" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Madrugada" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Dia" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Padrão" msgid "Default icons" msgstr "Ícones padrões" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Eliminar palavra-passe da aplicação" msgid "Delete app password?" msgstr "Eliminar palavra-passe da aplicação?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Eliminar conversa" @@ -3378,19 +3612,19 @@ msgstr "Eliminar conversa" msgid "Delete chat declaration record" msgstr "Eliminar registo da conversa" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Apagar contactos" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Eliminar conversa" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Eliminar para mim" @@ -3399,11 +3633,11 @@ msgstr "Eliminar para mim" msgid "Delete list" msgstr "Eliminar lista" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Eliminar mensagem" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Eliminar mensagem para mim" @@ -3411,9 +3645,9 @@ msgstr "Eliminar mensagem para mim" msgid "Delete my account" msgstr "Eliminar a minha conta" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Eliminar publicação" @@ -3430,17 +3664,17 @@ msgstr "Eliminar pacote de iniciante?" msgid "Delete this list?" msgstr "Eliminar esta lista?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Eliminar esta publicação?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Eliminado" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Conta Eliminada" @@ -3471,12 +3705,12 @@ msgstr "Descrição (1000 caracteres no máximo)" msgid "Descriptive alt text" msgstr "Texto alternativo descritivo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Desvincular citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Desvincular citação?" @@ -3507,13 +3741,13 @@ msgstr "Janela de diálogo: ajustar quem pode interagir com esta publicação" msgid "Dim" msgstr "Escuro" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Desativar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Desativar 2FA" @@ -3521,7 +3755,7 @@ msgstr "Desativar 2FA" msgid "Disable captions" msgstr "Desativar legendas" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Desativar 2FA por e-mail" @@ -3534,8 +3768,8 @@ msgstr "Desativar 2FA por e-mail" msgid "Disable haptic feedback" msgstr "Desativar feedback tátil" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Desativar link" @@ -3547,7 +3781,7 @@ msgstr "Desativar citações desta publicação" msgid "Disable replies entirely" msgstr "Desativar respostas completamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Desativar este link de convite?" @@ -3560,9 +3794,9 @@ msgstr "Desativado" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Descartar" msgid "Discard changes?" msgstr "Descartar alterações?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Descartar publicação?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Desconectar Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Descobrir novos feeds" msgid "Discover New Feeds" msgstr "Descobrir Feeds Novos" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Ignorar" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Ignorar banner" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Ignorar falha" @@ -3642,6 +3877,10 @@ msgstr "Ignorar esta secção" msgid "Dismiss this suggestion" msgstr "Ignorar esta sugestão" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Fecha o leitor de QR" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "Não inclui nudez." msgid "Domain verified!" msgstr "Domínio verificado!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui." @@ -3681,7 +3920,7 @@ msgstr "Não tem um código ou precisa de um novo? <0>Clique aqui." msgid "Don’t see a code? <0>Click here to resend." msgstr "Não vê um código? <0>Clique aqui para reenviar." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Não vê um e-mail? <0>Clique aqui para reenviar." @@ -3700,16 +3939,21 @@ msgstr "Não se preocupe! Todas as mensagens e configurações existentes serão #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Concluído" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Toque duplo para fechar janela de diálogo" @@ -3737,19 +3981,14 @@ msgstr "Toque duplo para fechar janela de diálogo" msgid "Double tap to like" msgstr "Toque duplo para dar um gosto" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Transferir" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Transferir Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Transferir ficheiro CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Transferir ficheiro CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Descarregar dados de conversas" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Descarregar dados de conversas" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Descarregar imagem" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Transferir código QR de convite" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Descarregar dados do perfil" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Descarregar dados do perfil" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Doxxing" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Devido à legislação em vigor na sua região, certas funcionalidades n msgid "Duration:" msgstr "Duração:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Anoitecer" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "p. ex. Alice" @@ -3823,9 +4079,8 @@ msgstr "p. ex. Utilizadores que repetidamente respondem com anúncios." msgid "Eating disorders" msgstr "Desordens alimentares" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editar foto de perfil" @@ -3847,19 +4102,19 @@ msgstr "Editar foto de perfil" msgid "Edit Feeds" msgstr "Editar feeds" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Editar nome do grupo" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editar imagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editar definições de interação" @@ -3868,7 +4123,16 @@ msgstr "Editar definições de interação" msgid "Edit interests" msgstr "Editar interesses" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Editar link de convite" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Editar link de convite" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Editar definições do link" @@ -3886,20 +4150,15 @@ msgstr "Editar estado \"em direto\"" msgid "Edit moderation list" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editar os Meus Feeds" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Editar nome" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Editar notificações de {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Editar Pessoas" @@ -3912,12 +4171,12 @@ msgstr "Editar definições de interação da publicação" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Editar perfil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editar Perfil" @@ -3925,7 +4184,8 @@ msgstr "Editar Perfil" msgid "Edit starter pack" msgstr "Editar pacote de iniciante" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Editar nome da conversa de grupo" @@ -3937,7 +4197,7 @@ msgstr "Editar lista de utilizadores" msgid "Edit who can reply" msgstr "Editar quem pode responder" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Editar o seu pacote de iniciante" @@ -3971,7 +4231,7 @@ msgstr "Endereço de e-mail" msgid "Email Resent" msgstr "E-mail reenviado" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-mail enviado!" @@ -4006,8 +4266,8 @@ msgstr "Incorpore esta publicação no seu site. Simplesmente copie o seguinte e msgid "Embedded video player" msgstr "Reprodutor de vídeos incorporado" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Ativar" @@ -4025,7 +4285,7 @@ msgstr "Permitir conteúdo adulto" msgid "Enable captions" msgstr "Ativar legendas" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Ativar 2FA por e-mail" @@ -4038,13 +4298,12 @@ 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:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Ative as notificações de uma conta visitando o perfil desta e pressionando o <0>ícone de sino <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Ativar notificações push" @@ -4091,8 +4350,8 @@ msgstr "Insira uma palavra-passe" msgid "Enter a word or tag" msgstr "Insira uma palavra ou tag" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Insira o código" @@ -4143,12 +4402,12 @@ msgstr "Entra em ecrã cheio" msgid "Entertainment" msgstr "Entretenimento" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Erro" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Erro ao obter os dados mais recentes." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Todos" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Todos" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Tudo o resto" @@ -4217,16 +4476,16 @@ msgstr "Exclui utilizadores que sigo" msgid "Exit fullscreen" msgstr "Sair do ecrã cheio" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Expandir texto alternativo" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Expandir lista de utilizadores" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Expandir ou colapsar a publicação completa a que está a responder" @@ -4238,7 +4497,7 @@ msgstr "Expandir texto da publicação" msgid "Expands or collapses post text" msgstr "Expande ou colapsa o texto da publicação" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Era esperado que o URI fosse resolvido para um registo" @@ -4277,10 +4536,10 @@ msgstr "Conteúdo multimédia explícito ou perturbador." msgid "Explicit sexual images." msgstr "Imagens sexuais explícitas." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorar" @@ -4289,11 +4548,8 @@ msgstr "Explorar" msgid "Explore the app" msgstr "Explorar a aplicação" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Descarregar dados de conversas" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Descarregar dados das minhas conversas" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferências de Conteúdo Multimédia Externo" @@ -4331,18 +4587,22 @@ msgstr "Preferências de Conteúdo Multimédia Externo" msgid "Extremist content" msgstr "Conteúdo extremista" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Falha ao aceitar solicitação de conversa" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Falha ao aceitar pedido de adesão" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Falha ao adicionar reação de emoji" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Falha ao adicionar membros" @@ -4354,7 +4614,8 @@ msgstr "Falha ao adicionar ao pacote de iniciante" msgid "Failed to change handle. Please try again." msgstr "Falha ao tentar alterar nome de utilizador. Tente novamente." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Falha ao copiar o link" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Falha ao criar uma palavra-passe da aplicação. Tente novamente." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Falha ao criar conversa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Falha ao criar link de convite" @@ -4376,17 +4637,17 @@ msgstr "Falha ao criar link de convite" msgid "Failed to create starter pack" msgstr "Falha ao criar o pacote de iniciante" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Falha ao eliminar conversa" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Falha ao eliminar mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Falha ao eliminar a publicação, tente novamente" @@ -4394,24 +4655,24 @@ msgstr "Falha ao eliminar a publicação, tente novamente" msgid "Failed to delete starter pack" msgstr "Falha ao eliminar o pacote de iniciante" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Falha ao desativar link de convite" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Falha ao desconectar Germ DM. Erro: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Falha ao editar o nome da conversa de grupo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Falha ao editar link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Falha ao ativar o link de convite" @@ -4427,19 +4688,27 @@ msgstr "Falha ao seguir todos os seus amigos. Por favor, tente novamente" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Falha ao ocultar sugestão. Por favor, verifique a sua conexão à internet" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Falha ao ignorar pedido de adesão" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Falha ao entrar na conversa de grupo. Por favor, tente novamente." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Falha ao iniciar a aplicação de SMS" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Falha ao sair da conversa de grupo" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Falha ao carregar as conversas" @@ -4456,17 +4725,8 @@ msgstr "Falha ao carregar feeds" msgid "Failed to load feeds preferences" msgstr "Falha ao carregar preferências de feeds" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Falha ao carregar definições de notificações." @@ -4493,16 +4753,15 @@ msgstr "Falha ao carregar feeds sugeridos" msgid "Failed to load suggested follows" msgstr "Falha ao carregar contas sugeridas" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Falha ao trancar a conversa de grupo" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Falha ao marcar todas as solicitações como lidas" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Falha ao silenciar conversa de grupo" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Falha ao afixar a publicação" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Falha ao reconectar Germ DM. Erro: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Falha ao remover dados devido a um erro de rede. Por favor, verifique a sua conexão à internet." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Falha ao remover dados. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Falha ao remover reação emoji" @@ -4534,7 +4793,8 @@ msgstr "Falha ao remover reação emoji" msgid "Failed to remove from starter pack" msgstr "Falha ao remover do pacote de iniciante" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Falha ao remover membro da conversa de grupo" @@ -4542,15 +4802,20 @@ msgstr "Falha ao remover membro da conversa de grupo" msgid "Failed to remove verification" msgstr "Falha ao remover verificação" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Falha ao rescindir o seu pedido. Por favor, tente novamente." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Falha ao determinar localização. Por favor, tente novamente." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Falha ao guardar rascunho" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Falha ao guardar a imagem" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Falha ao guardar os seus interesses." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Falha ao enviar o e-mail. Por favor, tente novamente." @@ -4580,16 +4845,16 @@ msgstr "Falha ao enviar o relatório" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Falha ao submeter recurso. Por favor, tente novamente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Falha ao alterar o estado de silenciamento do fio de discussão, por favor tente novamente" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Falha ao destrancar a conversa de grupo" @@ -4597,12 +4862,12 @@ msgstr "Falha ao destrancar a conversa de grupo" msgid "Failed to unpin list" msgstr "Falha ao desafixar lista" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Falha ao atualizar as definições de 2FA por e-mail" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Falha ao atualizar o e-mail. Por favor, tente novamente." @@ -4614,7 +4879,7 @@ msgstr "Falha ao atualizar feeds" msgid "Failed to update notification declaration" msgstr "Falha ao atualizar declaração de notificação" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Falha ao atualizar definições" @@ -4641,7 +4906,7 @@ msgstr "Conta falsa ou bot" msgid "False information about elections" msgstr "Informação falsa sobre eleições" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Feed" @@ -4649,7 +4914,7 @@ msgstr "Feed" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Feed por {0}" @@ -4662,7 +4927,7 @@ msgstr "Criador do feed" msgid "Feed identifier" msgstr "Identificador do feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu de feed" @@ -4676,25 +4941,25 @@ msgstr "Feed indisponível" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback enviado ao operador do feed" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Feeds" @@ -4739,7 +5004,7 @@ msgstr "Filtrar pesquisa por idioma (atualmente: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtrar de quem você recebe notificações" @@ -4747,11 +5012,11 @@ msgstr "Filtrar de quem você recebe notificações" msgid "Finalizing" msgstr "A finalizar" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Finalmente!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Finalmente! Acompanhe as publicações que são importantes para si. Guarde-as para as revisitar a qualquer momento." @@ -4768,19 +5033,17 @@ msgstr "Finanças" msgid "Find accounts to follow" msgstr "Encontrar contas para seguir" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Encontrar Contactos" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Encontrar Amigos" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Encontrar amigos a partir dos contactos" +msgid "Find and invite friends" +msgstr "Encontrar e convidar amigos" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Encontrar Contactos" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Encontrar os meus amigos" msgid "Find people to follow" msgstr "Encontrar pessoas para seguir" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Encontre as pessoas que conhece" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Procure publicações, utilizadores, e feeds no Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Encontre os seus amigos" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Encontre os seus amigos no Bluesky verificando o seu número de telefone e estabelecendo correspondências com o dos seus contactos. Nós protegemos a sua informação e o que acontece a seguir é controlado por si. <0>Saiba mais" @@ -4847,22 +5114,22 @@ msgstr "Focar o campo de pesquisa" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Seguir" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Seguir {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Seguir {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Seguir conta" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Seguir todas as contas" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Seguir de volta" @@ -4916,7 +5183,7 @@ msgstr "Seguir de volta" msgid "Followed all accounts!" msgstr "Seguiu todas as contas!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Todas as correspondências foram seguidas" @@ -4944,8 +5211,12 @@ msgstr "Seguido por <0>{0} e <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguido por <0>{0}, <1>{1} e {2, plural, one {# outro} other {# outros}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Seguidores podem aderir" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Seguidores de @{0} que conhece" @@ -4960,10 +5231,10 @@ msgstr "Seguidores que conhece" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "A seguir" @@ -4977,12 +5248,12 @@ msgstr "A seguir" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "A seguir {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "A seguir {displayName}" @@ -4995,19 +5266,16 @@ msgstr "A seguir {handle}" msgid "Following feed preferences" msgstr "Preferências do feed A seguir" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferências do feed A seguir" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Segue-te" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Segue-te" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Tipo de letra" @@ -5065,11 +5333,16 @@ msgstr "Esqueceu-se da palavra-passe?" msgid "Forgot?" msgstr "Esqueceu?" +#. 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 "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 msgid "Free your feed" msgstr "Liberte o seu feed" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "De" @@ -5086,82 +5359,86 @@ msgstr "De <0/>" msgid "Generate a starter pack" msgstr "Gerar um pacote de iniciante" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Gerar link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Gerar novo link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Gerar novo link" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM desconectada" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Link Germ DM" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM reconectada" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obter ajuda" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Receber notificações quando pessoas te seguirem." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Receber notificações quando pessoas gostarem de publicações que tenha republicado." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Receber notificações quando pessoas gostarem das suas publicações." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +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:285 msgid "Get notifications when people mention you." msgstr "Receber notificações quando pessoas te mencionarem." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Receber notificações quando pessoas citarem suas publicações." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Receber notificações quando pessoas responderem às suas publicações." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Receber notificações quando pessoas republicarem publicações que tenha republicado." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 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:333 +msgid "Get notifications when people repost your reposts." +msgstr "Receber notificações quando as pessoas republicarem as suas republicações." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Receber notificações de novas publicações" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Receber notificações de publicações e respostas de contas que escolher." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Receber notificações de novas publicações de {name}" @@ -5174,27 +5451,27 @@ msgstr "Receber notificações da atividade desta conta" msgid "Get notified when {name} posts" msgstr "Receber notificações quando {name} fizer uma publicação" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Receber notificações quando alguém fizer uma publicação" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Vamos começar" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF carregado" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Dê um rosto ao seu perfil" @@ -5213,20 +5490,20 @@ msgstr "Glorificação de violência" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Voltar" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Voltar" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Voltar ao passo anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ir para o início" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ir para o início" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ir para o Início" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Entrar em direto (desativado)" msgid "Go live for" msgstr "Entrar em direto por" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Ir para o perfil de {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Ir para as definições da conta" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Ir para a conversa com {0}" @@ -5296,23 +5571,23 @@ msgstr "Ir para o feed" msgid "Go to next" msgstr "Ir para o próximo" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Ir para o perfil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Ir para a conversa de grupo chamada \"{chatName}\"" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Ir para o perfil do utilizador" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Ir para o perfil do utilizador" @@ -5320,11 +5595,18 @@ msgstr "Ir para o perfil do utilizador" msgid "Going live is currently disabled for your account" msgstr "A funcionalidade \"Entrar em direto\" está desativada para a sua conta" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Entendido" +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Conceder acesso" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5340,59 +5622,75 @@ msgstr "Conteúdo violento gráfico" msgid "Grooming or predatory behavior" msgstr "Grooming ou comportamento predatório" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Conversa de grupo" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Janela de diálogo do link de convite para a conversa de grupo" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Conversa de grupo trancada" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Conversa de grupo silenciada" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Nome da conversa de grupo atualizado" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Definições de conversa de grupo" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Conversa de grupo destrancada" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Removeu o silenciamento da conversa de grupo" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Conversas de grupo ainda não estão disponíveis" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Conversas de Grupo" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Conversas de grupo já estão disponíveis" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "As conversas de grupo só estão disponíveis para utilizadores com 18 anos ou mais." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "As conversas de grupo podem ter no máximo {0, plural, one {}other {# pessoas}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "O grupo está trancado" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Nome do grupo" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 é #.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Hacking ou ataques de sistema" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Nome de utilizador demasiado longo. Por favor, tente um mais curto." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "A acontecer agora" @@ -5446,7 +5744,7 @@ msgstr "Atividades perigosas ou de alto risco" msgid "Harming or endangering minors" msgstr "Prejudicar ou colocar menores em perigo" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,14 +5756,14 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "Discurso de ódio" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Tem um código? <0>Clique aqui." #: src/screens/Signup/StepInfo/index.tsx:320 msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." -msgstr "" +msgstr "A sua localização está errada? <0>Toque aqui para atualizar a sua localização com o GPS." #: src/screens/Signup/index.tsx:231 msgid "Having trouble?" @@ -5479,11 +5777,11 @@ msgstr "Retido pelo Bluesky por 7 dias para evitar abusos, e depois eliminado" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Ajuda" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Lista oculta" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Lista oculta" msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -5553,18 +5851,18 @@ msgstr "Ocultar atualizações da conversa de grupo" msgid "Hide lists" msgstr "Esconder listas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ocultar publicação para mim" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ocultar resposta para todos" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ocultar resposta para mim" @@ -5577,19 +5875,19 @@ msgstr "Ocultar este cartão" msgid "Hide this event" msgstr "Ocultar este evento" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ocultar esta publicação?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ocultar essa resposta?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Ocultar tradução" @@ -5606,7 +5904,7 @@ msgstr "Ocultar tendências?" msgid "Hide trending videos?" msgstr "Ocultar vídeos do momento?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ocultar lista de utilizadores" @@ -5620,6 +5918,10 @@ msgstr "Ocultar selos de verificação" msgid "Hides the content" msgstr "Oculta o conteúdo" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Oculta o banner promocional de convidar amigos" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, parece que tem sessão iniciada com uma <0>Palavra-passe da Aplicação. Para definir a sua data de nascimento, terá de iniciar sessão com a senha principal da sua conta ou pedir a quem controla essa conta para o fazer." @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, parece que estamos com dificuldade em carregar estes dados. Veja msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, não foi possível carregar esse serviço de moderação." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Aguarde! Estamos a dar acesso a vídeo gradualmente e ainda está em fila de espera. Volte mais tarde!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Esta funcionalidade ainda não está disponível para si. Por favor, volte mais tarde." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Início" @@ -5721,7 +6019,7 @@ msgstr "Entendo" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Estou no Bluesky como {0} - vem ter comigo! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Se o texto alternativo for longo, alterna para o estado de texto alternativo expandido" @@ -5757,15 +6055,15 @@ msgstr "Se eliminar esta lista, não será capaz de a recuperar." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Se tiver o seu próprio domínio, pode usá-lo como nome de utilizador. Isso permite-lhe auto-verificar a sua identidade. <0>Saiba mais aqui." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Se precisa de atualizar o seu e-mail, <0>clique aqui." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Se remover esta publicação, não será capaz de a recuperar." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Se atualizar o seu endereço de e-mail, a 2FA por e-mail será desativada." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Se quer restringir quem pode receber notificações da atividade da sua conta, pode alterar isso em <0>Definições → Privacidade e Segurança." @@ -5786,23 +6083,23 @@ msgstr "Se é programador, pode hospedar o seu próprio servidor." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Se está a tentar alterar o seu nome de utilizador ou e-mail, faça-o antes de desativar." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imagem" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Imagem {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Imagem {0} de {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Imagem {0} de {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Cache de imagem limpa, {0} libertado" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Galeria de imagens, {0} imagens" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "A imagem está oculta devido às suas definições de moderação." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Imagem indisponível." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Opções de imagem" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Impersonação" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importar contactos" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importar Contactos" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Importe contactos ou convide os seus amigos" + #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importe contactos para encontrar os seus amigos" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importado em {0}" @@ -5881,40 +6182,40 @@ msgstr "Importado em {0}" 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 "De modo a fornecer uma experiência apropriada à sua idade, precisamos de saber a sua data de nascimento. Isto só lhe será pedido uma vez, e os seus dados serão mantidos privados." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Na aplicação" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notificações na aplicação" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Na aplicação, Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "Na aplicação, de todos" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Na aplicação, Pessoas que segue" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "Na aplicação, de pessoas que sigo" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Na aplicação, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "Na aplicação, push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Na aplicação, Push, Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "Na aplicação, push, de todos" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Na aplicação, Push, Pessoas que segue" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "Na aplicação, push, de pessoas que sigo" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Caixa de entrada vazia" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Caixa de entrada vazia!" @@ -5954,6 +6255,10 @@ msgstr "Introduzindo rascunhos" msgid "Introducing finding friends via contacts" msgstr "Apresentamos a procura de amigos através dos contactos" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Apresentamos as conversas de grupo" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "Introduzindo publicações guardadas" @@ -5963,11 +6268,15 @@ msgstr "Introduzindo publicações guardadas" msgid "Invalid 2FA confirmation code." msgstr "Código de confirmação de 2FA inválido." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Código de conversa de grupo inválido." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Nome de utilizador inválido. Por favor, tente um diferente." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Definições de interação inválidas." @@ -5977,10 +6286,15 @@ msgstr "Definições de interação inválidas." msgid "Invalid phone number" msgstr "Número de telefone inválido" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Motivo de denúncia inválido" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Pedido de rescisão inválido." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Código de Verificação Inválido" @@ -6001,8 +6315,15 @@ msgstr "Código de convite" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Convidar amigos" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Convide Amigos" @@ -6010,21 +6331,31 @@ msgstr "Convide Amigos" msgid "Invite friends <0/>" msgstr "Convide amigos <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Link de convite" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Link de convite" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Link de convite copiado" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Link de convite criado" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Link de convite desativado" @@ -6040,11 +6371,16 @@ msgstr "Link de convite ativado" msgid "Invite people to this starter pack!" msgstr "Convide pessoas para este pacote de iniciante!" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Convide os seus amigos" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Convide os seus amigos para seguirem os seus feeds e pessoas favoritas" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Convidado" @@ -6054,7 +6390,7 @@ msgstr "Convites, mas pessoais" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "A sua localização não está suficientemente precisa? <0>Toque aqui para atualizar a sua localização com o GPS. " #: 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." @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID do trabalho: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID do trabalho: {0}" msgid "Jobs" msgstr "Empregos" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Aderir" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Empregos" msgid "Join Bluesky" msgstr "Junte-se ao Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Aderir à conversa de grupo" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Pedido de adesão rescindido." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Junte-se à conversa" msgid "Journalism" msgstr "Jornalismo" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuar a editar" @@ -6109,6 +6460,11 @@ msgstr "Continuar a editar" msgid "Keep me posted" msgstr "Mantenha-me informado" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Expulsar membro" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Website da KWS" @@ -6143,7 +6499,7 @@ msgstr "Rótulos na sua conta" msgid "Labels on your content" msgstr "Rótulos no seu conteúdo" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Definições de Idioma" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Mais recentes" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Saiba mais sobre como convidar amigos funciona" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Saiba mais sobre importar contactos" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Saiba mais sobre a verificação no Bluesky (em inglês)" @@ -6239,7 +6595,7 @@ msgstr "Saiba mais sobre a verificação no Bluesky (em inglês)" msgid "Learn more about what is public on Bluesky." msgstr "Saiba mais sobre o que é público no Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Saiba mais sobre o seu link Germ DM" @@ -6252,31 +6608,33 @@ msgstr "Saiba mais nas suas <0>definições de conta." msgid "Learn more." msgstr "Saber mais." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Sair" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Sair da conversa" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Sair da conversa" @@ -6284,13 +6642,14 @@ msgstr "Sair da conversa" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Sair da conversa" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Sair da conversa de grupo" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Sair desta conversa de grupo" @@ -6299,6 +6658,14 @@ msgstr "Sair desta conversa de grupo" msgid "Leaving Bluesky" msgstr "Sair do Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Saiu da conversa de grupo." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "à sua frente na fila." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Claro" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Gostar" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gosto ({0, plural, one {# gosto} other {# gostos}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notificações de gostos" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Gostar deste feed" @@ -6358,8 +6721,8 @@ msgstr "Gostar deste feed" msgid "Like this labeler" msgstr "Gostar deste rotulador" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Gostado por" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gostado por {0, plural, one {# utilizador} other {# utilizadores}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gostado por {likeCount, plural, one {# utilizador} other {# utilizadores}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Gostos" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Gostos das suas republicações" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notificações de gostos nas suas republicações" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Gostos nesta publicação" @@ -6409,11 +6768,11 @@ msgstr "Gostos nesta publicação" msgid "Linear" msgstr "Linear" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Link copiado para área de transferência" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Silenciamento da lista removido " -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listas" @@ -6545,7 +6904,7 @@ msgstr "Evento ao vivo a ser exibido" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Eventos ao vivo surgem ocasionalmente quando algo emocionante está a acontecer. Se quiser, pode ocultar este evento em particular, ou todos os eventos para esta secção na interface do seu aplicativo." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "A funcionalidade \"Entrar em direto\" está em beta" @@ -6595,27 +6954,27 @@ msgstr "A carregar definições de interação da publicação..." msgid "Loading..." msgstr "A carregar..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Trancar" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Trancar conversa de grupo" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Trancar conversa de grupo?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Trancar esta conversa de grupo" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Trancada" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Registo" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logótipo por @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logótipo por <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Parece que está sem um feed \"A seguir\". <0>Clique aqui para adicionar msgid "Love GIFs" msgstr "GIFs de amor" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Ajustar as definições de e-mail para a sua conta" @@ -6687,24 +7046,22 @@ msgstr "Gerir definições de verificação" msgid "Manage your muted words and tags" msgstr "Gerir as suas palavras silenciadas e tags" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Marcar tudo como lido" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcar como lido" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Tudo marcado como lido" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Talvez mais tarde" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "Membro removido da conversa de grupo." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Membros" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Membros ainda podem ler o histórico da conversa, mas não podem enviar novas mensagens." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notificações de menções" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "utilizadores mencionados" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Menções" @@ -6761,7 +7118,7 @@ msgstr "Mensagem" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Mensagem" @@ -6771,26 +7128,26 @@ msgstr "Mensagem" msgid "Message {0}" msgstr "Mensagem {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Enviar mensagem a {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mensagem eliminada" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mensagem eliminada" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Falha ao enviar mensagem." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Mensagem de @{0}: {1}" @@ -6813,21 +7170,21 @@ msgstr "A mensagem é demasiado longa" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "A mensagem é demasiado longa ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Opções de mensagem" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mensagens" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." -msgstr "" +msgstr "As mensagens desta pessoa estão ocultas enquanto estiver bloqueado por ela." -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." -msgstr "" +msgstr "As mensagens desta pessoa estão ocultas enquanto a estiver a bloquear." #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" @@ -6838,10 +7195,6 @@ msgstr "Meia-noite" msgid "Minor harassment or bullying" msgstr "Assédio ou bullying de menores" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notificações diversas" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Enganador" @@ -6850,7 +7203,7 @@ msgstr "Enganador" msgid "Missing media" msgstr "Conteúdo multimédia em falta" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderação" @@ -6894,7 +7247,7 @@ msgstr "Lista de moderação atualizada" msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Listas de Moderação" @@ -6903,7 +7256,7 @@ msgstr "Listas de Moderação" msgid "moderation settings" msgstr "definições de moderação" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Estados de moderação" @@ -6928,8 +7281,8 @@ msgstr "Mais idiomas..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Mais opções" @@ -6949,7 +7302,7 @@ msgstr "Filmes" msgid "Music" msgstr "Música" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Silenciar" @@ -6965,8 +7318,8 @@ msgstr "Silenciar" msgid "Mute {0}" msgstr "Silenciar {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Silenciar conta" msgid "Mute accounts" msgstr "Silenciar contas" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Silenciar conversa" @@ -6994,7 +7347,7 @@ msgstr "Silenciar lista" msgid "Mute these accounts?" msgstr "Silenciar estas contas?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Silenciar esta conversa de grupo" @@ -7022,17 +7375,21 @@ msgstr "Silenciar esta palavra em tags apenas" msgid "Mute this word until you unmute it" msgstr "Silenciar esta palavra até que a deixe de silenciar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Silenciar fio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Silenciar palavras e tags" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Silencie, saia ou remova pessoas a qualquer momento. A conversa é sua." + +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Muted" msgstr "Silenciado" @@ -7040,7 +7397,7 @@ msgstr "Silenciado" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -7062,6 +7419,10 @@ msgstr "Palavras e tags silenciadas" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Silenciar é privado. Contas silenciadas podem interagir consigo, mas não verá as publicações nem receberá notificações delas." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Conversas de grupo em comum" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Navegar até ao pacote de iniciante" msgid "Navigates to the next screen" msgstr "Navega para o próximo ecrã" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navega para o seu perfil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Precisa de denunciar uma violação de direitos de autor, uma solicitação legal ou um problema de conformidade regulatória?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Novo" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Nova publicação} other {Novas publicações}} de {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Nova publicação} other {Novas publicações}} de {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Nova conversa" @@ -7163,7 +7525,7 @@ msgstr "Nova conversa com {0} e {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Nova conversa com {0}, {1} e {memberCount, plural, one {mais {memberCount}} other {mais {memberCount}}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Novo endereço de e-mail" @@ -7171,32 +7533,30 @@ msgstr "Novo endereço de e-mail" #: 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 "Nova Funcionalidade" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notificações de novo seguidor" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Novos seguidores" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Nova conversa de grupo" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Nova conversa de grupo com:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nova publicação" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nova publicação" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Novas publicações de {firstAuthorLink} e <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Novas publicações de {firstAuthorName} e {additionalAuthorsCount, plural, one {{formattedAuthorsCount} outro} other {{formattedAuthorsCount} outros}}" @@ -7262,8 +7622,8 @@ msgstr "Notícias" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Próximo" msgid "Next image" msgstr "Imagem seguinte" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Noite" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Sem seguidores ainda" @@ -7335,7 +7699,7 @@ msgstr "Nenhum GIF encontrado para \"{query}\"." msgid "No GIFs to show right now. Try again in a moment." msgstr "Sem GIFs para mostrar de momento. Tente novamente daqui a pouco." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Sem imagem" @@ -7353,8 +7717,8 @@ msgstr "Nenhuma lista" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Já não segue {0}" @@ -7362,7 +7726,7 @@ msgstr "Já não segue {0}" msgid "No media yet" msgstr "Sem conteúdo multimédia ainda" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Sem mensagens ainda" @@ -7378,12 +7742,12 @@ msgstr "Sem nome" msgid "No notifications yet!" msgstr "Sem notificações ainda!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Ninguém" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Ninguém" @@ -7399,7 +7763,7 @@ msgstr "Ninguém" msgid "No one but the author can quote this post." msgstr "Ninguém, para além do autor, pode citar esta publicação." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Ninguém pode enviar mensagens" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Nenhum resultado" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sem resultados" @@ -7446,8 +7810,8 @@ msgstr "Sem resultados" msgid "No results for \"{0}\"." msgstr "Sem resultados para \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Nenhum resultado encontrado" @@ -7509,12 +7873,12 @@ msgstr "Imagens íntimas não consensuais" msgid "Non-sexual Nudity" msgstr "Nudez não sexual" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Nenhuma" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Indisponível nesta plataforma" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Indisponível nesta plataforma." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Não Encontrado" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Não está pronto para publicar? Mantenha as suas melhores ideias nos Rascunhos até o timing ser perfeito." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Nota sobre partilhar" @@ -7548,44 +7912,31 @@ msgstr "Nota: Esta publicação é apenas visível para utilizadores com sessão msgid "Nothing saved yet" msgstr "Nada foi guardado ainda" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Definições de notificações" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sons de notificações" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificações" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notificações de tudo o resto, como quando alguém adere através de um dos seus pacotes de iniciante." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "agora" @@ -7601,7 +7952,7 @@ msgstr "O número deve ser um número de telemóvel/telefone" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Desligado" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "OK" @@ -7648,35 +8000,35 @@ msgstr "em<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Reiniciar a introdução" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Um dos destinatários selecionados não permite conversas de grupo." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Foi bloqueado por um dos destinatários selecionados e não o pode contactar." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "Um ou mais GIFs sem texto alternativo." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens sem texto alternativo." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Um ou mais dos seus ficheiros selecionados não são suportados." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Um ou mais dos seus ficheiros selecionados é demasiado grande. O tamanho máximo é 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Um ou mais vídeos sem texto alternativo." @@ -7685,6 +8037,26 @@ msgstr "Um ou mais vídeos sem texto alternativo." msgid "Only {0} can reply." msgstr "Apenas {0} pode responder." +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Apenas administradores podem aceitar pedidos de adesão." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Apenas administradores podem ignorar pedidos de adesão." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Apenas seguidores podem aderir a esta conversa de grupo." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Apenas seguidores que eu sigo" msgid "Only image files are supported" msgstr "Apenas ficheiros de imagem são suportados" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Apenas pessoas seguidas por {0} podem aderir." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Apenas pessoas seguidas pelo proprietário da conversa podem aderir" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Apenas ficheiros WebVTT (.vtt) são suportados" @@ -7703,6 +8085,10 @@ msgstr "Apenas ficheiros WebVTT (.vtt) são suportados" msgid "Oops, something went wrong!" msgstr "Ups! Algo de errado aconteceu!" +#: src/features/inviteFriends/InviteScannerScreen.tsx:218 +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 @@ -7712,7 +8098,7 @@ msgstr "Ups! Algo de errado aconteceu!" msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Abrir criador de foto de perfil" @@ -7720,12 +8106,17 @@ msgstr "Abrir criador de foto de perfil" msgid "Open camera" msgstr "Abrir câmara" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Abrir conversa" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Abrir opções de membro da conversa para {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Abrir opções de conversa" @@ -7739,16 +8130,16 @@ msgstr "Abrir menu lateral" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Abrir selecionador de emojis" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Abrir menu de opções de feed" @@ -7760,13 +8151,22 @@ msgstr "Abrir lista completa de emojis" msgid "Open Germ DM" msgstr "Abrir Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Abrir conversa de grupo" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Abrir definições da conversa de grupo" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:556 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 +msgid "Open in Google Translate" +msgstr "Abrir no Google Tradutor" + +#: src/components/Post/Embed/ExternalEmbed/index.tsx:88 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:141 msgid "Open link to {niceUrl}" msgstr "Abrir link para {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Abrir pacote" msgid "Open post options menu" msgstr "Abrir menu de opções de publicação" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Abrir perfil" +#: src/features/inviteFriends/components/ActionButtons.tsx:39 +msgid "Open QR code scanner" +msgstr "Abrir leitor de códigos QR" + #: src/components/BotAccountAlert.tsx:62 #: src/components/BotAccountAlert.tsx:71 msgid "Open settings" @@ -7817,6 +8221,10 @@ msgstr "Abrir página do storybook" msgid "Open system log" msgstr "Abrir registo do sistema" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Abrir esta conversa de grupo" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Abre uma janela de diálogo para adicionar aviso de conteúdo à sua pub msgid "Opens a dialog to choose who can interact with this post" msgstr "Abre uma janela de diálogo para escolher quem pode interagir com esta publicação" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +msgid "Opens a list of color themes for the QR card" +msgstr "Abre uma lista de temas de cores para o cartão QR" + #: src/screens/Log.tsx:74 msgid "Opens additional details for a debug entry" msgstr "Abre detalhes adicionais para uma entrada de debug" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Abre câmara no dispositivo" @@ -7858,22 +8270,24 @@ msgstr "Abre o compositor" msgid "Opens device camera" msgstr "Abre a câmara do dispositivo" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Abre a galeria do dispositivo para selecionar até {MAX_IMAGES, plural, one{# imagem}other {# imagens}} ou um único vídeo ou GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Abre a galeria do dispositivo para selecionar até {MAX_GALLERY_IMAGES, plural, one{# imagem}other {# imagens}} ou um único vídeo ou GIF." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Abre processo para criar uma nova conta no Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Abre a imagem completa" @@ -7890,7 +8304,7 @@ msgstr "Abre o selecionador de imagens" msgid "Opens link {0}" msgstr "Abre link {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Abre janela de diálogo do estado \"em direto\"" @@ -7902,15 +8316,23 @@ msgstr "Abre formulário de redefinição de palavra-passe" msgid "Opens post language settings" msgstr "Abre as definições de idioma da publicação" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Abre perfil" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:50 +msgid "Opens the find and invite friends settings" +msgstr "Abre as definições de encontrar e convidar amigos" + #. 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 "Abre a janela de diálogo do selecionador de GIFs" +#: src/view/shell/Drawer.tsx:123 +msgid "Opens the invite friends sheet to share your profile" +msgstr "Abre a folha de convidar amigos para partilhar o seu perfil" + #: src/view/com/feeds/ComposerPrompt.tsx:148 msgid "Opens the post composer" msgstr "Abre o compositor de publicação" @@ -7919,9 +8341,8 @@ msgstr "Abre o compositor de publicação" msgid "Opens this draft in the composer" msgstr "Abre este rascunho no compositor" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Abre este perfil" @@ -7997,12 +8418,12 @@ msgstr "A nossa publicação no blog" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "A nossa equipa de moderação recebeu a sua denúncia." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Os nossos moderadores analisaram as denúncias e decidiram desativar o seu acesso a conversas no Bluesky." @@ -8010,16 +8431,17 @@ msgstr "Os nossos moderadores analisaram as denúncias e decidiram desativar o s msgid "Owner" msgstr "Proprietário" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "O proprietário tem de trancar o grupo antes de sair." + +#: 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 "Página não encontrada" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Página Não Encontrada" - #. 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" @@ -8068,34 +8490,34 @@ msgstr "Pausar vídeo" msgid "People" msgstr "Pessoas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Pessoas seguidas por {ownerName} podem se juntar instantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Pessoas a seguir @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Pessoas que eu sigo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Pessoas que eu sigo podem se juntar instantaneamente" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Pessoas que eu sigo podem pedir para se juntar" @@ -8136,13 +8558,17 @@ msgstr "Número de telefone verificado" msgid "Photography" msgstr "Fotografia" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Escolher um tema de cor" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Afixar feed" @@ -8152,12 +8578,12 @@ msgstr "Afixar feed" msgid "Pin to home" msgstr "Afixar a início" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Afixar a Início" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Afixar ao seu perfil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Afixado" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} afixado a Início" @@ -8236,7 +8662,7 @@ msgstr "Por favor, escolha o seu nome de utilizador." msgid "Please choose your password." msgstr "Por favor, escolha a sua palavra-passe." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Por favor, clique no link contido no e-mail que lhe acabamos de enviar p msgid "Please complete the verification captcha." msgstr "Por favor complete o captcha de verificação." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Por favor, confirme o seu endereço de e-mail para carregar vídeos." @@ -8265,14 +8691,14 @@ msgstr "Por favor, introduza uma palavra-passe. Esta deve ter pelo menos 8 carac msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Por favor, insira um nome único para esta palavra-passe de aplicação ou use um gerado aleatoriamente por nós." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Por favor, introduza um código válido." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Por favor, introduza um endereço de e-mail válido." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Por favor, insira um endereço de e-mail válido e não temporário. Pode precisar de aceder a este e-mail no futuro." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Por favor, introduza o código que enviámos para <0>{0} abaixo." @@ -8293,7 +8719,7 @@ msgstr "Por favor, introduza o código que enviámos para <0>{0} abaixo." msgid "Please enter the code you received and the new password you would like to use." msgstr "Por favor, introduza o código que recebeu e a nova palavra-passe que gostaria de usar." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Por favor, introduza o seu e-mail." msgid "Please enter your invite code." msgstr "Por favor, introduza o seu código de convite." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Por favor, introduza o seu novo endereço de e-mail." @@ -8323,7 +8749,7 @@ msgstr "Por favor, introduza o seu nome de utilizador" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Por favor, explique por que pensa que este rótulo foi aplicado incorretamente por {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Por favor, explique por que pensa que as suas conversas foram incorretamente desativadas" @@ -8358,7 +8784,11 @@ msgstr "Selecione um motivo para esta denúncia" msgid "Please sign in as @{0}" msgstr "Por favor, inicie sessão como @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "Por favor, utilize a aplicação móvel do Bluesky para ler um código QR." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "Por favor, use a aplicação nativa para importar os seus contactos." @@ -8366,7 +8796,7 @@ msgstr "Por favor, use a aplicação nativa para importar os seus contactos." msgid "Please use the native app to sync your contacts." msgstr "Por favor, use a aplicação nativa para sincronizar os seus contactos." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Por favor, verifique o seu e-mail" @@ -8383,7 +8813,7 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Publicação" @@ -8403,12 +8833,12 @@ msgstr "Publicar uma foto" msgid "Post a video" msgstr "Publicar um vídeo" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publicar tudo" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Publicar mesmo assim" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Publicação bloqueada" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Publicação por @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Publicação eliminada" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Falha no carregamento da publicação. Por favor, verifique a sua conexão à internet e tente novamente." @@ -8454,18 +8884,22 @@ msgstr "Publicação ocultada por si" msgid "Post interaction settings" msgstr "Definições de interação com publicação" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Definições de Interação com Publicação" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Publique no Bluesky ou partilhe em qualquer lado." + #. 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 "Seleção de idioma da publicação" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Publicar link" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Publicações, Respostas" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Link potencialmente enganador" @@ -8525,9 +8954,10 @@ msgstr "Idioma preferido" msgid "Press to attempt reconnection" msgstr "Pressione para tentar reconectar-se" -#: src/components/Error.tsx:61 +#: 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 "Pressione para tentar novamente" @@ -8536,7 +8966,7 @@ msgstr "Pressione para tentar novamente" msgid "Press to view followers of this account that you also follow" msgstr "Pressione para ver os seguidores desta conta que também segue" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Pré-visualizar" @@ -8559,26 +8989,25 @@ msgstr "Privacidade" msgid "Privacy and security" msgstr "Privacidade e segurança" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Política de Privacidade" @@ -8586,15 +9015,15 @@ 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:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "A processar GIF..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "A processar o vídeo..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "A processar..." @@ -8602,10 +9031,10 @@ msgstr "A processar..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Perfil" @@ -8613,6 +9042,7 @@ msgstr "Perfil" msgid "Profile banner placeholder" msgstr "Espaço reservado para o banner do perfil" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Perfil não encontrado" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publicar publicação" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Publicar publicações" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publicar respostas" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publicar resposta" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notificações Push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Push, Todos" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "Push, de todos" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Push, Pessoas que segue" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "Push, de pessoas que sigo" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Código QR copiado para a sua área de transferência!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "O código QR foi transferido!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "O código QR foi guardado no rolo da sua câmara!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notificações de citação" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notificações de citação" msgid "Quote post" msgstr "Citar publicação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "A citação foi novamente vinculada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "A citação foi desvinculada com sucesso" @@ -8711,12 +9138,12 @@ msgstr "Citações desativadas" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citações" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citações desta publicação" @@ -8728,16 +9155,16 @@ msgstr "Limite excedido — tentou alterar o seu nome de utilizador muitas vezes msgid "Rate limit exceeded. Please try again later." msgstr "Limite de pedidos excedido. Por favor, tente novamente mais tarde." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Vincular citação de novo" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Reativar link de convite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Reativar link" @@ -8745,8 +9172,8 @@ msgstr "Reativar link" msgid "React with {emoji}" msgstr "Reagir com {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reações" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "leia sobre como usar os filtros de pesquisa" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Ler a publicação do blog (em inglês)" @@ -8812,11 +9239,11 @@ msgstr "Pessoas reais." msgid "Reason for appeal" msgstr "Motivo do recurso" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Receber notificações na aplicação" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Receber notificações push" @@ -8841,17 +9268,31 @@ msgstr "Recomendados" msgid "Reconnect" msgstr "Reconectar" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Atualize a página para vê-la." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Rejeitar" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Rejeitar" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Rejeitar solicitação de conversa" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Rejeitar pedido de adesão" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Recarregar conversas" @@ -8863,6 +9304,8 @@ msgstr "Recarregar conversas" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Remover {displayName} da conversa de grupo" msgid "Remove {displayName} from starter pack" msgstr "Remover {displayName} do pacote de iniciante" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Remover {displayName} desta conversa de grupo" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Remover {displayName}?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Remover {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Remover {historyItem}" msgid "Remove account" msgstr "Remover conta" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Remover todos os contactos" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Remover anexo" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Remover foto de perfil" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Remover Banner" @@ -8914,8 +9362,9 @@ msgstr "Remover Banner" msgid "Remove caption file" msgstr "Remover ficheiro de legendas" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Remover incorporação" @@ -8929,12 +9378,12 @@ msgstr "Remover feed" msgid "Remove feed?" msgstr "Remover feed?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Remover da conversa" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Remover das publicações salvas" msgid "Remove from your feeds?" msgstr "Remover dos seus feeds?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Remover imagem" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Remover republicação" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Remover sugestão" @@ -9009,11 +9458,11 @@ msgstr "Remover verificação" msgid "Remove your verification for this account?" msgstr "Remover a sua verificação para esta conta?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Removido pelo autor" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Removido por si" @@ -9035,7 +9484,7 @@ msgstr "Removida das publicações salvas" msgid "Removed from starter pack" msgstr "Removido do pacote de iniciante" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Respondeu-te" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Respostas" @@ -9104,14 +9552,14 @@ msgstr "Respostas desativadas" msgid "Replies to this post are disabled." msgstr "As respostas a esta publicação estão desativadas." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Responder" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Responder ({0, plural, one {# resposta} other {# respostas}})" @@ -9125,10 +9573,6 @@ msgstr "Resposta ocultada pelo autor do fio" msgid "Reply Hidden by You" msgstr "Resposta ocultada por você" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notificações de respostas" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "As definições de resposta são escolhidas pelo autor do fio" @@ -9137,18 +9581,18 @@ msgstr "As definições de resposta são escolhidas pelo autor do fio" msgid "Reply sorting" msgstr "Ordenação de respostas" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Visibilidade da resposta atualizada" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "A resposta foi ocultada com sucesso" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Denunciar" @@ -9157,20 +9601,20 @@ msgstr "Denunciar" msgid "Report account" msgstr "Denunciar conta" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Denunciar conversa" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Janela de denúncia" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Denunciar feed" @@ -9179,12 +9623,12 @@ msgstr "Denunciar feed" msgid "Report list" msgstr "Denunciar lista" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Denunciar mensagem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Denunciar publicação" @@ -9199,8 +9643,8 @@ msgstr "Denunciar pacote de iniciante" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Denúncia enviada" @@ -9213,7 +9657,7 @@ msgstr "Denunciar esta conversa" msgid "Report this feed" msgstr "Denunciar este feed" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Denunciar esta conversa de grupo" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Denunciar esta lista" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Denunciar esta transmissão ao vivo" @@ -9256,10 +9700,6 @@ msgstr "Republicar" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Republicar ({0, plural, one {# republicação} other {# republicações}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notificações de republicações" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Republicado por si" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Republicações" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Republicações desta publicação" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Republicações das suas republicações" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notificações de republicações das suas republicações" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Pedir para aceder à conversa de grupo" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Pedido aprovado." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Solicitar código" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Pedido ignorado." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Pedir para aderir" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Solicitado" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Pedidos" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Pedidos de adesão" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Exigir texto alternativo antes de publicar" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Requerer um código de e-mail para iniciar sessão com a sua conta." @@ -9328,7 +9791,17 @@ msgstr "Obrigatório para este fornecedor" msgid "Required in your region" msgstr "Obrigatório na sua região" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Rescindir pedido" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Rescindir pedido para aderir à conversa grupo" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Reenviar" @@ -9373,8 +9846,8 @@ msgstr "Redefinir estado da introdução" msgid "Reset password" msgstr "Redefinir palavra-passe" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Ressincronizar contactos" @@ -9391,17 +9864,18 @@ msgstr "Repete a última ação, que resultou em erro" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Repete a última ação, que resultou em erro" msgid "Retry" msgstr "Tentar novamente" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Recarregar opções de denúncia" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Voltar à página anterior" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Volta à página anterior" @@ -9451,10 +9925,10 @@ msgstr "GIFs tristes" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Guardar alterações" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Guardar alterações?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Guardar rascunho" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Guardar rascunho?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Guardar imagem" msgid "Save new handle" msgstr "Guardar novo nome de utilizador" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Guardar código QR" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Guardar nos meus feeds" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Guardados" @@ -9534,25 +10010,25 @@ msgstr "Guardados" msgid "Saved Feeds" msgstr "Feeds Guardados" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Publicações Guardadas" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Guardado nos seus feeds" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Diga olá!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Diga olá a alguém" @@ -9560,6 +10036,16 @@ msgstr "Diga olá a alguém" msgid "Scam" msgstr "Burla" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Ler" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Ler código QR" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Ciência" @@ -9576,18 +10062,18 @@ msgstr "Scroll para a direita" msgid "Scroll to top" msgstr "Voltar ao topo" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Procurar" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Pesquisar nas publicações de @{0}" @@ -9662,12 +10148,12 @@ msgstr "Procurar idiomas" msgid "Search my posts" msgstr "Procurar nas minhas publicações" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Procurar publicações" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Procurar perfis" msgid "Search..." msgstr "Procurar..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Procura por perfis" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Passo de segurança necessário" @@ -9759,7 +10245,7 @@ msgstr "Selecionar {langName}" msgid "Select a color" msgstr "Selecionar uma cor" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Selecione um motivo" @@ -9828,7 +10314,7 @@ msgstr "Selecionar GIF" msgid "Select GIF \"{0}\"" msgstr "Selecionar GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Selecionar membros da conversa de grupo" @@ -9850,7 +10336,7 @@ msgstr "Selecionar idioma..." msgid "Select languages" msgstr "Selecionar idiomas" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Selecionar um serviço de moderação" @@ -9904,11 +10390,11 @@ msgstr "Selecione os seus interesses entre as opções abaixo" msgid "Select your preferred language for translations in your feed." msgstr "Selecione o seu idioma preferido para traduções no seu feed." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Selecione os seus canais de notificação preferidos" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "A seleção de vários tipos de conteúdo multimédia não é suportada." @@ -9921,9 +10407,9 @@ msgstr "Automutilação ou comportamentos perigosos" msgid "Send code" msgstr "Enviar código" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Enviar e-mail" @@ -9935,11 +10421,11 @@ msgstr "Enviar e-mail" msgid "Send error report" msgstr "Enviar relatório de erro" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Enviar feedback" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Enviar mensagem" @@ -9952,7 +10438,7 @@ msgstr "Enviar publicação para {name}" msgid "Send post to..." msgstr "Enviar publicação para..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Enviar denúncia para {title}" @@ -9960,7 +10446,7 @@ msgstr "Enviar denúncia para {title}" msgid "Send the message from your phone" msgstr "Enviar mensagem a partir do seu telefone" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Enviar através de mensagem direta" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Enviada às {0}" @@ -10015,14 +10501,14 @@ msgstr "Defina a sua data de nascimento abaixo e poderá voltar a publicar e a e msgid "Sets email for password reset" msgstr "Define o e-mail para recuperação de senha" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Definições" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Definições de atividade de outros" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Definições para notificações de gostos" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Definições para notificações de menções" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Definições para notificações de novo seguidor" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Definições para notificações de tudo o resto" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Definições para notificações de gostos nas suas republicações" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Definições para notificações de citações" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Definições para notificações de respostas" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Definições para notificações de republicações" @@ -10079,16 +10565,19 @@ msgstr "Atividade sexual ou nudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente Sugestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Partilhar" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Partilhar mesmo assim" @@ -10097,16 +10586,21 @@ msgstr "Partilhar mesmo assim" msgid "Share author DID" msgstr "Partilhar DID do autor" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Partilhar imagem" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Partilhar link de convite" + #: 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 "Partilhar link" @@ -10114,6 +10608,11 @@ msgstr "Partilhar link" msgid "Share link dialog" msgstr "Janela de diálogo para partilha de link" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Partilhar o meu perfil" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Partilhar publicação em:// URI" msgid "Share QR code" msgstr "Partilhar código QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Partilhar este feed" @@ -10142,8 +10641,8 @@ msgstr "Partilhe este pacote de iniciante e ajude pessoas a juntarem-se à sua c #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Partilhar via..." @@ -10151,7 +10650,7 @@ msgstr "Partilhar via..." msgid "Share your contacts to find friends" msgstr "Partilhe os seus contactos para encontrar amigos" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Testador de Preferências Partilhadas" @@ -10167,16 +10666,16 @@ msgstr "Mostrar texto alternativo" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Mostrar mesmo assim" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Mostrar rótulo de automação" @@ -10197,8 +10696,8 @@ msgstr "Exibir definições de personalização" msgid "Show group chat updates" msgstr "Mostrar atualizações da conversa de grupo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Mostrar menos como esta" @@ -10219,8 +10718,8 @@ msgstr "Mostrar eventos ao vivo no feed \"Descobrir\"" msgid "Show More" msgstr "Mostrar Mais" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Mostrar mais como esta" @@ -10246,8 +10745,8 @@ msgstr "Mostrar respostas" msgid "Show replies as" msgstr "Mostrar respostas como" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Mostrar resposta para todos" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Mostrar aviso e filtrar de feeds" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Mostre quando você estiver ao vivo" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Mostra informação sobre quando esta publicação foi criada" @@ -10297,15 +10796,17 @@ msgstr "Mostra o conteúdo" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Iniciar sessão ou criar uma conta" msgid "Sign in or create your account to join the conversation!" msgstr "Inicie sessão ou crie a sua conta para aderir à conversa!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Inicie sessão para aceitar o convite." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Iniciar sessão com uma conta que não está na lista" @@ -10337,8 +10842,12 @@ msgstr "Iniciar sessão com uma conta que não está na lista" msgid "Sign in to Bluesky or create a new account" msgstr "Inicie sessão no Bluesky ou crie uma conta nova" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Inicie sessão para pedir para aderir a esta conversa de grupo." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Inicie sessão para ver esta publicação" @@ -10348,9 +10857,9 @@ msgstr "Inicie sessão para ver esta publicação" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Terminar sessão" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Terminar Sessão" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Terminar sessão?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Ignorar publicações vazias?" @@ -10405,7 +10914,7 @@ msgstr "Saltar introdução e começar a usar a sua conta" msgid "Skip to next step" msgstr "Saltar para o próximo passo" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "slide" @@ -10413,7 +10922,7 @@ msgstr "slide" msgid "Smaller" msgstr "Menor" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Adia o lembrete" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Alguém saiu do grupo" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Alguém reagiu {0}" @@ -10487,17 +10996,22 @@ msgstr "Alguém foi removido" msgid "Someone was removed from the group" msgstr "Alguém foi removido do grupo" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Há algo de novo aqui" + +#: 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 "Houve um problema com os dados que tentou denunciar. Por favor, contacte o suporte." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Aconteceu algo de errado" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Aconteceu algo de errado!" msgid "Something went wrong. Please try again in a moment." msgstr "Aconteceu algo de errado. Por favor, tente novamente dentro de um momento." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Aconteceu algo de errado. Por favor, tente novamente." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Aconteceu algo de errado? Informe-nos." @@ -10564,11 +11078,16 @@ msgstr "Spam ou outros comportamentos inautênticos ou enganadores" msgid "Sports" msgstr "Desportos" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Inicie uma conversa, e ela aparecerá aqui." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Iniciar uma conversa de grupo" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Iniciar uma nova conversa" @@ -10582,17 +11101,17 @@ msgstr "Comece a adicionar pessoas" msgid "Start adding people!" msgstr "Comece a adicionar pessoas!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Iniciar conversa" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Iniciar conversa com {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pacote de Iniciante" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Ao vivo na Twitch? Defina o seu estado \"em direto\" no Bluesky para adicionar um emblema à sua foto de perfil. Tocar nele leva as pessoas diretamente para a sua transmissão." @@ -10671,8 +11190,8 @@ msgstr "Ao vivo na Twitch? Defina o seu estado \"em direto\" no Bluesky para adi #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Submeter" @@ -10684,9 +11203,9 @@ msgstr "Submeter recurso" msgid "Submit Appeal" msgstr "Submeter Recurso" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Submeter denúncia" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Subscrever" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "Subscrever no {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "Subscrever a {publicationTitle} no {0}" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Sucesso" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Sucesso!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Aderiu à conversa de grupo com sucesso!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificado com sucesso" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Sugeridos" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Pôr do sol" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Suporte" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Esta funcionalidade ainda não está disponível no seu país! Por favor, volte mais tarde." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Contas suspensas não podem participar na conversa de grupo." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Contas suspensas não podem participar na conversa." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Mudar de conta" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Trocar de conta" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Trocar para {0}" @@ -10824,13 +11347,17 @@ msgstr "Registo do sistema" msgid "Tags only" msgstr "Apenas tags" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Torne a conversa privada." + #: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" -msgstr "" +msgstr "Toque para mais detalhes" #: src/view/com/feeds/MissingFeed.tsx:90 msgid "Tap for information" @@ -10842,7 +11369,7 @@ msgstr "Toque para mais informação" #: src/screens/Signup/StepInfo/index.tsx:323 msgid "Tap here to update your location with GPS." -msgstr "" +msgstr "Toque aqui para atualizar a sua localização com o GPS." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" @@ -10854,33 +11381,51 @@ msgstr "Toque para confirmar que entende e concorda com estas atualizações e c msgid "Tap to close context menu" msgstr "Toque para fechar menu de contexto" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Toque para copiar este link de convite" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Toque para ignorar" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Toque para entrar na conversa de grupo imediatamente" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Toque para abrir esta conversa de grupo" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Toque para remover" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Toque para remover a sua reação {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Toque para tentar novamente" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Toque para mostrar reações {0}" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Toque para mostrar todas as reações" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Toque para ver as reações" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Termos de Serviço" @@ -10939,7 +11484,7 @@ msgstr "Texto e tags" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Campo de introdução de texto" @@ -10981,9 +11526,9 @@ msgstr "É tudo!" msgid "That's everything!" msgstr "É tudo!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "A conta poderá interagir consigo após a desbloquear." @@ -11049,6 +11594,11 @@ msgstr "As seguintes definições serão usadas como definições padrão ao cri msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "As leis na sua região exigem que verifique se é adulto para aceder a certas funcionalidades. Toque para saber mais." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "O limite de membros foi atingido." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "A publicação a que está a responder foi marcado como estando escrita em {suggestedLanguageName} pelo seu autor. Gostaria de responder em <0>{suggestedLanguageName}?" @@ -11057,10 +11607,10 @@ msgstr "A publicação a que está a responder foi marcado como estando escrita msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "" +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "O vídeo selecionado é maior que {VIDEO_MAX_SIZE_MB} MB. Por favor, tente novamente com um ficheiro menor." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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 "Há um limite para o quão frequentemente pode alterar a sua data de nascimento. Talvez tenha de aguardar um ou dois dias antes de a atualizar novamente." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Não há nenhum link de convite para esta conversa de grupo." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Houve um problema ao carregar os GIFs. Verifique a sua conexão à internet e tente novamente." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Ocorreu um problema ao atualizar os seus feeds. Por favor, verifique a sua conexão de internet e tente novamente." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Ocorreu um problema! {0}" @@ -11221,6 +11774,14 @@ msgstr "Estas são as suas definições padrão" msgid "These settings only apply to the Following feed." msgstr "Estas definições só se aplicam ao feed \"A seguir\"." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "São proprietários desta conversa" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "Este {screenDescription} foi sinalizado:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Este recurso será enviado para <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Este recurso será enviado para o serviço de moderação do Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Este recurso será enviado para o serviço de moderação do Bluesky." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Este autor optou por tornar as suas publicações visíveis apenas para as pessoas com sessão iniciada." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Este botão permite que outros abram a aplicação Germ DM para lhe enviar uma mensagem. Pode gerir a visibilidade da aplicação Germ DM, ou pode desconectar a sua conta do Bluesky da Germ DM por completo ao clicar no botão abaixo." @@ -11271,11 +11832,21 @@ msgstr "Este botão permite que outros abram a aplicação Germ DM para lhe envi msgid "This chat has ended" msgstr "Esta conversa terminou" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Esta conversa está cheia" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Esta conversa está trancada" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "Esta conversa está bloqueada por uma ação de moderação" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Este conversa foi desconectada" @@ -11310,7 +11881,11 @@ msgstr "Este conteúdo não está disponível porque um dos utilizadores envolvi msgid "This content is not viewable without a Bluesky account." msgstr "Este conteúdo não pode ser visualizado sem uma conta Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Esta conversa está trancada." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Esta conversa é com uma conta eliminada ou desativada. Pressione para opções" @@ -11318,7 +11893,7 @@ msgstr "Esta conversa é com uma conta eliminada ou desativada. Pressione para o msgid "This draft will be permanently deleted." msgstr "Este rascunho será permanentemente eliminado." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Este e-mail já está associado à sua conta." @@ -11356,11 +11931,15 @@ msgstr "Este feed está vazio." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Este feed já não se encontra online. Em vez disso, estamos a mostrar <0>\"Descobrir\"." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "Este grupo está bloqueado por uma ação de moderação sobre o proprietário" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Esta imagem não pôde ser usada. Tente um formato diferente como .jpg o msgid "This information is private and not shared with other users." msgstr "Esta informação é privada e não é partilhada com outros utilizadores." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Este link de convite foi desativado." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Este link de convite é inválido" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Este é um estado vazio" @@ -11377,7 +11964,7 @@ msgstr "Este é um estado vazio" msgid "This is not a valid link" msgstr "Este não é um link válido" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Este rótulo deixa as pessoas saberem que esta conta é automatizada. Se estiver ativo, este rótulo aparece ao lado do nome da conta no perfil e publicações da mesma. O rótulo pode ser ativado ou desativado a qualquer momento." @@ -11410,15 +11997,19 @@ msgstr "Esta lista - criada por si - contém possíveis violações das diretriz msgid "This list is empty." msgstr "Esta lista está vazia." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 -msgid "This message is hidden because this user is blocking you." -msgstr "" +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Esta mensagem está oculta" +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." -msgstr "" +msgstr "Esta mensagem está oculta porque tem este utilizador bloqueado." #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." @@ -11434,7 +12025,7 @@ msgstr "Está bloqueado por esta pessoa" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Este post afirma ter sido criado em <0>{0}, mas foi primeiro visto por Bluesky em <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Esta publicação é apenas visível para utilizadores com sessão inici msgid "This post was deleted by its author" msgstr "Esta publicação foi eliminada pelo seu autor" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "O autor desta publicação desativou as citações." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Este perfil é apenas visível para utilizadores com sessão iniciada. Não será visível para quem não tenha sessão iniciada." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Esta resposta será colocada numa secção oculta no final do seu fio de discussão e silenciará notificações de futuras respostas - tanto para si como para outros." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Este ecrã só está disponível para conversas de grupo." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Este utilizador não tem seguidores." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Foi bloqueado por este utilizador e não o pode contactar." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Este utilizador desativou as conversas e não o pode contactar." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Isto irá eliminar de forma irreversível a sua conta no Bluesky <0>{cur msgid "This will remove @{0} from the quick access list." msgstr "Isto irá remover @{0} da lista de acesso rápido." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Isto irá remover a sua publicação desta citação para todos os utilizadores e substituí-la por um espaço reservado." @@ -11574,7 +12166,7 @@ msgstr "Preferências de Resposta" msgid "Threaded" msgstr "Em fio" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferências de Fios" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Para desativar o método de 2FA por e-mail, verifique o seu acesso ao endereço de e-mail." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Para desativar o método de 2FA por e-mail, verifique o seu acesso a <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Melhor" msgid "Top replies first" msgstr "Respostas principais primeiro" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Tópico" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traduzir" @@ -11667,8 +12259,8 @@ msgstr "Tradução" msgid "Translating" msgstr "A traduzir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "A traduzir…" @@ -11702,7 +12294,7 @@ msgstr "Vídeos do Momento" msgid "Trolling" msgstr "Trolling" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "A confiança surge de relações, comunidades e contexto compartilhado, por isso também estamos a permitir <0>verificadores de confiança: organizações que podem fornecer verificações diretamente." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Tente usar um termo de pesquisa diferente, ou <0>leia sobre como usar os filtros de pesquisa." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Tente novamente" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Tente novamente" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Tente novamente daqui a um momento." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Tente usar o Google Tradutor" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Experimente" + #: src/lib/interests.ts:74 msgid "TV" msgstr "Televisão" @@ -11763,13 +12369,17 @@ msgstr "Não foi possível contactar o seu serviço. Verifique a sua conexão à msgid "Unable to delete" msgstr "Não é possível eliminar" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Não foi possível obter pedidos de adesão." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +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 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Não foi possível encontrar o destinatário selecionado." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Indisponível" msgid "Unavailable feed information" msgstr "Informação do feed indisponível" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Desbloquear" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Desbloquear {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Desbloquear conta" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Desbloquear conta?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Desbloquear conta?" @@ -11837,8 +12452,8 @@ msgstr "Desbloquear lista" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Desfazer" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Reverter ({0, plural, one {# republicação} other {# republicações}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Deixar de seguir {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Deixar de seguir conta" @@ -11872,7 +12487,7 @@ msgstr "Deixar de seguir conta" msgid "Unfollows the user" msgstr "Deixa de seguir o utilizador" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Infelizmente, nenhum dos rotuladores que subscreve suportam este tipo de denúncia." @@ -11884,14 +12499,6 @@ msgstr "Infelizmente, a data de aniversário que guardou no seu perfil indica qu msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Infelizmente, a sua idade declarada indica que não tem idade suficiente para aceder ao Bluesky na sua região." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Cancelar o convite" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Cancelar o convite de {displayName} para a conversa de grupo" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Verificador desconhecido" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Remover gosto" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Remover gosto ({0, plural, one {# gosto} other {# gostos}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Destrancar conversa" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Destrancar esta conversa de grupo" @@ -11939,14 +12546,14 @@ msgstr "Remover silenciamento" msgid "Unmute {0}" msgstr "Remover silenciamento de {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Remover silenciamento da conta" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Remover silenciamento da conversa" @@ -11955,12 +12562,12 @@ msgstr "Remover silenciamento da conversa" msgid "Unmute list" msgstr "Remover silenciamento da lista" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Remover silenciamento desta conversa de grupo" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Deixar de silenciar fio" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Desafixar" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Desafixar feed" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Desafixar de início" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Desafixar do perfil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Desafixar lista de moderação" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} desafixado de início" @@ -12030,14 +12637,18 @@ msgstr "Deixar de subscrever este rotulador" msgid "Unsubscribed from list" msgstr "Removeu subscrição da lista" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Conteúdo da área de transferência não suportado" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Tipo de vídeo não suportado: {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Até 50 pessoas" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,16 +12658,20 @@ msgstr "Atualizar" msgid "Update <0>{displayName} in Lists" msgstr "Atualizar <0>{displayName} nas Listas" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Atualizar a aplicação" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Atualizar e-mail" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Atualizar link de convite" @@ -12065,11 +12680,15 @@ msgstr "Atualizar link de convite" msgid "Update to {domain}" msgstr "Atualizar para {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Atualize a sua aplicação para a versão mais recente para entrar!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Atualize a sua aplicação" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Atualize a sua aplicação para vê-la." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Atualize o seu e-mail" @@ -12078,19 +12697,19 @@ msgstr "Atualize o seu e-mail" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 msgid "Update your location" -msgstr "" +msgstr "Atualize a sua localização" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Falha ao atualizar o anexo de citação" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Falha ao atualizar a visibilidade da resposta" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Carregar uma foto em vez disso" @@ -12098,39 +12717,40 @@ msgstr "Carregar uma foto em vez disso" msgid "Upload a text file to:" msgstr "Carregue um ficheiro de texto para:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Carregar da Câmara" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Carregar de Ficheiros" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Carregar da Biblioteca" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "A carregar GIF..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "A carregar imagens..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "A carregar miniatura do link..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "A carregar vídeo..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "utilizador" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Utilizador bloqueado" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Lista de utilizadores por {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Lista de utilizadores por {0}" @@ -12255,12 +12875,12 @@ msgstr "utilizadores seguidos por <0>@{0}" msgid "users following <0>@{0}" msgstr "utilizadores que seguem <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Utilizadores que eu sigo" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Utilizadores que eu sigo" @@ -12277,7 +12897,7 @@ msgstr "Falha na verificação. Por favor, tente novamente." msgid "Verification settings" msgstr "Definições de verificação" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Definições de Verificação" @@ -12304,8 +12924,8 @@ msgstr "Verificar novamente" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Verificar código" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificar Registo DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verificar o código de e-mail" @@ -12349,7 +12969,7 @@ msgstr "Verificar esta conta?" msgid "Verify your age" msgstr "Verifique a sua idade" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Versão {0}" msgid "Video" msgstr "Vídeo" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Falha ao processar o vídeo" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Feed de Vídeo" @@ -12419,7 +13039,7 @@ msgstr "Vídeo não encontrado." msgid "Video settings" msgstr "Definições de vídeo" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Vídeo carregado" @@ -12432,18 +13052,18 @@ msgstr "Vídeo: {0}" msgid "Videos" msgstr "Vídeos" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visualizar" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "Ver {0}" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Ver perfil de {0}" @@ -12467,20 +13087,15 @@ msgstr "Ver perfil de {0}" msgid "View {0}’s profile" msgstr "Ver perfil de {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Ver perfil de {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "Ver {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "Ver perfil de {0}" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Ver perfil de utilizador bloqueado" @@ -12503,10 +13118,18 @@ msgstr "Ver detalhes" msgid "View full thread" msgstr "Ver fio completo" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Ver solicitações de conversa de grupo" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Ver pedidos de adesão" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Ver pedidos de adesão para participar nesta conversa de grupo" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "Ver informação acerca destes rótulos" @@ -12522,7 +13145,7 @@ msgstr "Ver mais" msgid "View more trending videos" msgstr "Ver mais vídeos do momento" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Visualizar publicação" @@ -12539,10 +13162,10 @@ msgstr "Ver perfil" msgid "View profile banner" msgstr "Ver banner do perfil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Ver publicação" @@ -12550,7 +13173,7 @@ msgstr "Ver publicação" msgid "View the avatar" msgstr "Ver a foto de perfil" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Ver o link de convite para esta conversa de grupo" @@ -12563,7 +13186,7 @@ msgstr "Ver o serviço de rotulação fornecido por @{0}" msgid "View this user's verifications" msgstr "Ver as verificações deste utilizador" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Ver utilizadores que gostaram deste feed" @@ -12596,8 +13219,8 @@ msgstr "Ver as contas que silenciou" msgid "View your verifications" msgstr "Ver as suas verificações" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Mostra a imagem em tamanho completo" @@ -12640,8 +13263,8 @@ msgstr "Avisar em conteúdo" msgid "Warn content and filter from feeds" msgstr "Avisar em conteúdo e filtrar dos feeds" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Ver agora" @@ -12665,11 +13288,15 @@ msgstr "Não conseguimos encontrar nenhum resultado para esta tag." msgid "We couldn't find any results for that topic." msgstr "Não conseguimos encontrar nenhum resultado para esse tópico." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Não conseguimos carregar esta conversa" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Não foi possível carregar os pedidos de adesão desta conversa" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Não foi possível carregar as definições desta conversa" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Recomendamos a seleção de pelo menos dois interesses." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Enviámos um e-mail com um link para <0>{0}. Clique nele para concluir o processo de verificação de e-mail." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Não conseguimos determinar se tem permissão para carregar vídeos. Por favor, tente novamente." @@ -12744,12 +13371,12 @@ msgstr "Não conseguimos receber a verificação devido a um problema de conexã msgid "We will let you know when your account is ready." msgstr "Iremos avisá-lo quando a sua conta estiver pronta." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Será notificado quando encontrarmos os seus amigos." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Iremos enviar um e-mail com um link para <0>{0}. Clique nele para concluir o processo de verificação de e-mail." @@ -12779,12 +13406,12 @@ msgstr "Estamos a ter problemas ao iniciar o processo de verificação de idade msgid "We're having network issues, try again" msgstr "Estamos com problemas de rede, tente novamente" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Estamos a ter problemas de rede, tente novamente" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Pedimos desculpa! A publicação à qual está a responder foi eliminada." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Pedimos desculpa! Não conseguimos encontrar a página que procurava." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Que nome quer dar ao seu pacote de iniciante?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Como está?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Quando tocar num selo, verá quais organizações concederam a verificação." @@ -12878,7 +13505,7 @@ msgstr "Quando tocar num selo, verá quais organizações concederam a verifica msgid "Who can interact with this post?" msgstr "Quem pode interagir com esta publicação?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Quem pode se juntar a esta conversa de grupo e como" @@ -12887,13 +13514,13 @@ msgstr "Quem pode se juntar a esta conversa de grupo e como" msgid "Who can reply" msgstr "Quem pode responder" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Quem pode verificar?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ups!" @@ -12939,19 +13566,19 @@ msgstr "Por que motivo deve este pacote de iniciante ser revisto?" msgid "Why should this user be reviewed?" msgstr "Por que motivo deve este utilizador ser revisto?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Deseja bloquear este utilizador e/ou eliminar esta conversa?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Gostaria de bloquear este utilizador e/ou deixar esta conversa?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "Gostaria de guardar isto como rascunho para editar mais tarde?" @@ -12960,12 +13587,12 @@ msgstr "Gostaria de guardar isto como rascunho para editar mais tarde?" msgid "Write a post" msgstr "Escrever uma publicação" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Escrever publicação" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Escreva a sua resposta" @@ -12978,7 +13605,8 @@ msgstr "Escritores" msgid "Wrong DID returned from server. Received: {0}" msgstr "O servidor devolveu um DID errado. Recebido: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Tipo de conversa errado" @@ -13005,11 +13633,11 @@ msgstr "Sim, eliminem a minha conta" msgid "Yes, delete this starter pack" msgstr "Sim, eliminar este pacote de iniciante" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Sim, desvincular" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Sim, ocultar" @@ -13030,13 +13658,13 @@ 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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" -msgstr "" +msgstr "{0} está bloqueado por si" #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "You are blocking the chat owner" -msgstr "" +msgstr "O proprietário da conversa está bloqueado por si" #: src/components/dms/MessagesListBlockedFooter.tsx:83 msgid "You are blocking this person" @@ -13068,7 +13696,7 @@ msgstr "Está em direto" msgid "You are no longer live" msgstr "Já não está em direto" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Não tem permissão para carregar vídeos." @@ -13117,21 +13745,30 @@ msgstr "Pode sempre optar por não participar e eliminar os seus dados" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Pode escolher se as notificações de conversas têm som ou não nas definições de conversas na aplicação" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Pode continuar com as conversas que tem em curso, independentemente da definição que escolher." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Agora pode optar por ser notificado quando pessoas específicas fizerem uma publicação. Se houver alguém de quem queira atualizações oportunas, vá até o perfil desta e encontre o novo ícone de sino junto ao botão seguir." +#: src/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 "Agora pode convidar amigos com um link ou código QR. Partilhe o link em qualquer lado ou deixe-os ler o código para se juntarem a si no Bluesky." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Agora pode iniciar sessão com a sua nova palavra-passe." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Só pode guardar rascunhos com um máximo de 1000 caracteres." @@ -13139,11 +13776,11 @@ msgstr "Só pode guardar rascunhos com um máximo de 1000 caracteres." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Só pode guardar rascunhos com um máximo de 1000 caracteres. Gostaria de descartar esta publicação antes de ver os seus rascunhos?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Só pode selecionar um GIF de cada vez." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Só pode selecionar um vídeo de cada vez." @@ -13155,10 +13792,10 @@ msgstr "Pode reativar a sua conta para continuar o início de sessão. As suas p msgid "You can read chat history but can’t send new messages." msgstr "Pode ler o histórico da conversa, mas não pode enviar novas mensagens." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Pode selecionar {MAX_IMAGES, plural, one {# imagem}other {# imagens}} no total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "Pode selecionar {MAX_IMAGES, plural, one {# imagem}other {# imagens}} no msgid "You can update this later from your settings." msgstr "Pode atualizar isto mais tarde a partir das suas definições." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +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 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Ainda não pode criar uma conversa de grupo." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "Não tem nenhum feed salvo." msgid "You got here first" msgstr "Chegou aqui primeiro" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Foi removido deste grupo anteriormente. Não se pode juntar a ele usando este link." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "Tem de ser proprietário da conversa para remover um membro." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Tem de ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Termos de Serviço para mais informação." @@ -13332,11 +13982,12 @@ msgstr "Tem de ter pelo menos 13 anos para usar o Bluesky. Leia os nossos <0>Ter msgid "You must be following at least seven other people to generate a starter pack." msgstr "Deve seguir pelo menos sete outras pessoas para gerar um pacote de iniciante." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Precisa de conceder acesso à sua biblioteca de fotos para guardar um código QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Precisa de conceder acesso à sua biblioteca de conteúdo multimédia." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "Você é o proprietário desta conversa" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Reagiu {0}" @@ -13368,8 +14023,13 @@ msgstr "Reagiu {0} a {target}" msgid "You recently changed your birthdate" msgstr "Alterou recentemente a sua data de nascimento" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Pediu para aderir" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "A sua sessão será terminada em todas as suas contas." @@ -13378,11 +14038,11 @@ msgstr "A sua sessão será terminada em todas as suas contas." msgid "You will no longer receive notifications for {0}" msgstr "Deixará de receber notificações de {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Deixará de receber notificações deste fio" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Passará a receber notificações deste fio" @@ -13390,12 +14050,12 @@ msgstr "Passará a receber notificações deste fio" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Irá receber um e-mail com um \"código de redefinição\". Introduza esse código aqui e, depois, introduza a sua nova palavra-passe." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Não poderá voltar a entrar sem ser convidado." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Você: {message}" @@ -13429,6 +14089,10 @@ msgstr "Irá começar a receber notificações de {0}!" msgid "You'll stay updated with these feeds" msgstr "Ficará atualizado com estes feeds" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "O controlo é seu" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Encontra-se na fila" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Alcançou o número máximo de rascunhos" @@ -13475,11 +14139,11 @@ msgstr "Atingiu o número máximo de solicitações permitidas. Tente novamente msgid "You've reached the start of the active content." msgstr "Chegou ao início do conteúdo ativo." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados bytes)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Atingiu o seu limite diário de carregamento de vídeos (demasiados vídeos)" @@ -13499,10 +14163,18 @@ msgstr "A sua conta foi eliminada! ✌️" msgid "Your account has been suspended" msgstr "A sua conta foi suspensa" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "A sua conta não tem antiguidade suficiente para carregar vídeos. Por favor, tente novamente mais tarde." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "A sua conta é demasiado recente" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "O repositório da sua conta, que contém todos os registos de dados públicos, pode ser descarregado como um ficheiro \"CAR\". Este ficheiro não inclui conteúdo multimédia incorporado, como imagens, ou os seus dados privados, que devem ser obtidos separadamente." @@ -13519,7 +14191,7 @@ msgstr "O seu recurso foi enviado. Se o seu recurso for bem-sucedido, receberá msgid "Your birth date" msgstr "A sua data de nascimento" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "As suas conversas foram desativadas" @@ -13527,11 +14199,11 @@ msgstr "As suas conversas foram desativadas" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "A sua escolha será lembrada para links futuros. Pode alterá-la a qualquer momento nas definições." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "O seu contacto {firstAuthorLink} está no Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "O seu contacto {firstAuthorName} está no Bluesky" @@ -13561,7 +14233,7 @@ msgstr "O seu e-mail" msgid "Your email appears to be invalid." msgstr "O seu e-mail parece ser inválido." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "O seu email ainda não foi verificado. Por favor, verifique o seu email para poder usufruir de todas as funcionalidades do Bluesky." @@ -13582,7 +14254,7 @@ msgstr "O seu feed \"A seguir\" está vazio! Siga mais utilizadores para ver o q msgid "Your full handle will be <0>@{0}" msgstr "O seu nome de utilizador completo será <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "A sua localização foi atualizada." msgid "Your muted words" msgstr "As suas palavras silenciadas" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "O seu nome, foto de perfil e o nome da conversa de grupo serão visíveis para todos." +#: 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 "O seu nome, foto de perfil, o nome da conversa de grupo e o número de membros serão visíveis para todos." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "A sua publicação foi enviada" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "As suas publicações foram enviadas" @@ -13635,7 +14307,7 @@ msgstr "As suas publicações foram enviadas" msgid "Your preferred language" msgstr "O seu idioma preferido" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "A sua foto de perfil" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "A sua resposta foi enviada" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "A sua denúncia será enviada para <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "A sua denúncia será enviada para <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Os seus interesses selecionados ajudam-nos a servir-lhe conteúdo com o qual se importa." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 d27c06b4f9..48e4c9d312 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Categoria „{interestsDisplayName}” (activă)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(conține conținut încorporat)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {O apreciere} few {# aprecieri} other {# de aprecieri}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {un membru} few {# membrii} other {# de membrii}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {un minut} few {# minute} other {# de minute}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {o lună} few {# luni} other {# de luni}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {o cerere nouă de alăturare} few {# cereri noi de alăturare} other {# de cereri noi de alăturare}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 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}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {o secundă} few {# secunde} other {# de secunde}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {# min} few {# min} other {# de min}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>în <1>text & etichete" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} a fost adăugat la conversație" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} și {1} au fost adăugați la conversație" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} urmăriți" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} vă blochează" @@ -264,7 +273,7 @@ msgstr "{0} din 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} a reacționat {1}" @@ -290,7 +299,7 @@ msgstr "{0} a fost eliminat din grup" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, o listă de {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Avatarul folosit de {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "Avatarul lui {0}" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, one {membru} few {membrii} other {de membrii}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} membrii" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}m" msgid "{0}s" msgstr "{0}s" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Nicio cerere de alăturare} one {o cerere de alăturare} few {# cereri de alăturare} other {# de cereri de alăturare}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {o actualizare de grup} few {# actualizări de grup} other {# de actualizări de grup}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {o cerere nouă de alăturare} few {# cereri noi de alăturare} other {# de cereri noi de alăturare}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {o cerere} few {# cereri} other {# de cereri}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Reîmprospătați pagina pentru a o vedea.} few {Reîmprospătați pagina pentru a le vedea pe toate.} other {Reîmprospătați pagina pentru a le vedea pe toate.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Această postare are o fotografie.} few {Această postare are # fotografii.} other {Această postare are # de fotografii.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Actualizați-vă aplicația pentru a o vedea.} few {Actualizați-vă aplicația pentru a le vedea pe toate.} other {Actualizați-vă aplicația pentru a le vedea pe toate.}}" + +#. 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 "{count, plural, one {} few {Peste # cereri de alăturare}other {Peste # de cereri de alăturare}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "Peste {count}" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "peste {count} de cereri" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {oră} few {ore} other {de ore}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} few {minute} other {de minute}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au urmărit" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat fluxul personalizat" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} și-au eliminat verificările din contul dvs." -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} s-au înscris folosind pachetul tău de început" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} v-a urmărit" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} v-a urmărit înapoi" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} v-a apreciat fluxul personalizat" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} v-a apreciat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} v-a apreciat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} și-a eliminat verificarea din contul dvs." -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} v-a repostat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} v-a repostat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} s-a înregistrat cu pachetul dvs. de pornire" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} v-a verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au urmărit" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat fluxul personalizat" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au apreciat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} și-au eliminat verificările din contul dvs." -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au repostat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} s-au înregistrat cu pachetul dvs. de pornire" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} și {additionalAuthorsCount, plural, one {un alt utilizator} few {alți {formattedAuthorsCount} utilizatori} other {alți {formattedAuthorsCount} de utilizatori}} v-au verificat" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} v-a urmărit" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} v-a urmărit înapoi" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} v-a apreciat fluxul personalizat" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} v-a apreciat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} v-a apreciat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} și-a eliminat verificarea din contul dvs." -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} v-a repostat postarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} v-a repostat repostarea" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} s-a înregistrat cu pachetul dvs. de pornire" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} v-a verificat" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} v-a verificat" msgid "{following} following" msgstr "{following} urmăriți" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} nu poate fi adăugat(ă)" @@ -547,7 +606,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:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "Nu se pot trimite mesaje către {handle}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# oră {minutesString}} few {# ore {minutesString}} msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# oră } few {# ore} other {# de ore}}" +#. 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 "Peste {JOIN_REQUESTS_THRESHOLD} de cereri noi de alăturare" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "Peste {JOIN_REQUESTS_THRESHOLD} de cereri noi de alăturare" + #. 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!" @@ -576,14 +645,14 @@ msgstr "Descrierea listei este prea lungă. {MAX_DESCRIPTION, plural, one {Numă msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, one {} few {Numele afișat este prea lung. Numărul maxim de caracter este #.}other {Numele afișat este prea lung. Numărul maxim de caracter este de #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, one {} few {Puteți ascunde maxim # răspunsuri.}other {Puteți ascunde maxim # de răspunsuri.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} a reacționat {0} la {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "Fluxurile și persoanele preferate ale lui {name} - alăturați-vă!" msgid "{name}'s starter pack" msgstr "Pachetul de pornire al lui {name}" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {Un element necitit} few {# elemente necitite} other {# de elemente necitite}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 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}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {o cerere} few {# cereri} other {# de cereri}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "Încă {requestCount} de cereri" @@ -656,6 +725,12 @@ msgstr "{userName} este verificat" msgid "{userName}'s verifications" msgstr "Verificările utilizatorului {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, și {2, plural, one {un alt utilizator} few {al #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {urmăritor} few {urmăritori} other {de urmăritori}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {urmărit} few {urmăriți} other {de urmăriți}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {apreciere} few {aprecieri} other {de aprecieri}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} few {citate} other {de citate}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {repostare} few {repostări} other {de repostări}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {salvare} few {salvări} other {de salvări}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} membri" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> v-a adăugat" @@ -795,8 +870,13 @@ msgstr "A apărut o eroare de rețea. Vă rugăm să verificați conexiunea la i #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "A apărut o eroare de rețea. Vă rugăm să verificați conexiunea la internet." @@ -804,7 +884,7 @@ msgstr "A apărut o eroare de rețea. Vă rugăm să verificați conexiunea la i msgid "A new code has been sent" msgstr "A fost trimis un nou cod" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "O nouă formă de verificare" @@ -827,11 +907,11 @@ msgstr "O captură de ecran a unei pagini de profil cu o pictogramă clopoțel, 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Un destinatar selectat nu este urmărit de expeditor." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "Comportament abuziv sau discriminatoriu" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Acceptare" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Acceptare" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Acceptare cerere de conversație" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Acceptare cererea de alăturare" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Acceptare cerere" @@ -860,17 +950,26 @@ msgstr "Acceptare cerere" msgid "Accept this language suggestion" msgstr "Acceptați această sugestie de limbă" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Conversații acceptate" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Acces solicitat! Proprietarul grupului va analiza cererea dvs." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Accesibilitate" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Setări de accesibilitate" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Setări de accesibilitate" msgid "Account" msgstr "Cont" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Cont blocat" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Cont urmărit" @@ -899,7 +998,7 @@ msgstr "Contul a fost suspendat" msgid "Account is deactivated" msgstr "Contul este dezactivat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Furnizor cont" msgid "Account removed from quick access" msgstr "Cont eliminat din acces rapid" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Cont deblocat" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Nu mai urmăriți acest cont" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Cont dezamuțit" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Conturile cu bifa albastră în formă de feston <0><1/> pot verifica alte persoane. Acești verificatori de încredere sunt selectați de Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Activitate de la alții" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Notificări de activitate" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Adăugare" @@ -999,8 +1094,8 @@ msgstr "Adăugați un cont" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Adăugați text alternativ (opțional)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Adăugați un alt cont" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Adăugați o altă postare" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Adăugați o altă postare firului" @@ -1035,7 +1130,7 @@ msgstr "Adăugare parolă de aplicație" msgid "Add App Password" msgstr "Adăugare parolă de aplicație" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Adăugați o etichetă de automatizare contului" @@ -1043,7 +1138,7 @@ msgstr "Adăugați o etichetă de automatizare contului" msgid "Add emoji reaction" msgstr "Adăugați reacție emoji" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Adăugați membrii la conversația de grup" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Adăugare imagine" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Adăugare conținut media la postare" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Adăugare membri" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Adăugați mai multe detalii (opțional)" @@ -1091,6 +1186,10 @@ msgstr "Adăugare persoane" msgid "Add people to list" msgstr "Adăugați persoane la listă" +#: 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 "Adăugare Reacție" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Adăugați data nașterii" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Adăugat(ă) de {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Adăugat(ă) prin linkul de invitație" @@ -1165,12 +1264,12 @@ msgstr "Se adaugă membrii la listă..." msgid "Additional details (limit 1000 characters)" msgstr "Detalii suplimentare (limită de 1000 de caractere)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Detalii suplimentare (limită de 300 de caractere)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Administrator" @@ -1228,12 +1327,12 @@ msgstr "Cererea de verificare a vârstei a fost înregistrată" msgid "Age assurance only takes a few minutes" msgstr "Verificarea vârstei durează doar câteva minute" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "andreea@exemplu.ro" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Toate" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Toate {0}" @@ -1278,13 +1377,13 @@ msgstr "Permiteți accesul la mesajele dvs. directe" msgid "Allow anyone to reply" msgstr "Permiteți oricui să răspundă" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Permiteți mesaje directe de la" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Permiteți invitații în conversații de grup de la" @@ -1338,12 +1437,12 @@ msgstr "Aveți deja un cont?" msgid "Already signed in as @{0}" msgstr "Deja conectat ca @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Text alternativ" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Textul alternativ descrie imaginile pentru utilizatorii cu deficiențe de vedere și oferă context pentru toată lumea." @@ -1387,7 +1486,7 @@ msgstr "A apărut o eroare" msgid "An error occurred" msgstr "A apărut o eroare" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "A apărut o eroare la comprimarea videoclipului." @@ -1421,7 +1520,8 @@ msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să încerc msgid "An error occurred while loading your lists :/" msgstr "A apărut o eroare la încărcarea listelor dvs. :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "A apărut o eroare la salvarea codului QR!" @@ -1432,11 +1532,11 @@ msgstr "A apărut o eroare la salvarea codului QR!" msgid "An error occurred while trying to follow all" msgstr "A apărut o eroare în timp ce se încerca urmărirea tuturor" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "A apărut o eroare la încărcarea videoclipului. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "A apărut o eroare la încărcarea videoclipului. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou." @@ -1456,26 +1556,30 @@ msgstr "O ilustrație care prezintă avataruri de utilizator care se transferă 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" +#: 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 "O ilustrație care arată că Bluesky selectează verificatori de încredere, iar verificatorii de încredere verifică la rândul lor conturile de utilizator individuale." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Un link de invitație permite utilizatorilor să se alăture acestei conversații de grup fără a fi adăugați direct. Dvs. controlați cine poate folosi linkul și dacă au nevoie de aprobare. Puteți dezactiva linkul oricând." +#: 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 "Un link de invitație permite utilizatorilor să se alăture acestei conversații de grup fără a fi adăugați direct. Dvs. controlați cine se poate alătura conversației. Puteți dezactiva linkul oricând." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "A apărut o problemă în timp ce se încerca deschiderea conversației" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "A apărut o problemă, vă rugăm să încercați din nou." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "O machetă a unui iPhone care arată aplicația Bluesky deschisă la profilul unui utilizator verificat cu o bifă albastră lângă numele afișat." @@ -1539,13 +1643,17 @@ msgstr "Oricine" msgid "Anyone can interact" msgstr "Oricine poate interacționa" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Oricine se poate alătura" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Oricine se poate alătura instant" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Oricine poate solicita să se alăture" @@ -1555,11 +1663,11 @@ msgstr "Oricine poate solicita să se alăture" msgid "Anyone who follows me" msgstr "Oricine mă urmărește" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Parole de aplicație" @@ -1618,7 +1726,7 @@ msgstr "Contestați suspendarea transmisiunii în direct" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Contestație depusă" @@ -1632,14 +1740,14 @@ msgstr "Contestare suspendare" msgid "Appeal Suspension" msgstr "Contestare suspendare" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Contestați această decizie" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Aplicați solicitarea de tragere" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arhivat de la {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Postare arhivată" @@ -1675,7 +1783,7 @@ msgstr "Sunteți foarte, foarte sigur?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Sigur doriți să ștergeți parola de aplicație „{0}”?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Sunteți sigur că doriți să ștergeți acest mesaj? Mesajul va fi șters pentru dvs., dar nu și pentru ceilalți participanți." @@ -1688,23 +1796,29 @@ msgstr "Sunteți sigur că doriți să ștergeți acest pachet de pornire?" msgid "Are you sure you want to discard your changes?" msgstr "Sunteți sigur că doriți să renunțați la modificările dvs.?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Sunteți sigur că doriți să părăsiți {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Sunteți sigur că doriți să părăsiți această conversație?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Sunteți sigur că doriți să părăsiți această conversație? Mesajele dvs. vor fii șterse pentru dvs. dar nu și pentru celălalt participant." +#: src/components/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 "Sunteți sigur că doriți să părăsiți această conversație? Mesajele dvs. vor fii șterse pentru dvs. dar nu și pentru ceilalți participanți." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Sunteți sigur că doriți să eliminați asta din fluxurile dvs.?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 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?" @@ -1724,8 +1838,8 @@ msgstr "Artă" msgid "Artistic or non-erotic nudity." msgstr "Nuditate artistică sau non-erotică." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Atribuiți subiectul pentru algoritm" @@ -1752,7 +1866,7 @@ msgstr "Cont automatizat" msgid "Automation label" msgstr "Etichetă cont automatizat" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Etichetă cont automatizat" @@ -1767,12 +1881,12 @@ msgstr "Redare automată videoclipuri și GIF-uri" msgid "Available" msgstr "Disponibil" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Disponibil" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Disponibil" msgid "Back" msgstr "Înapoi" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Înapoi la conversații" @@ -1832,7 +1948,7 @@ msgstr "Înainte de a crea o postare sau un răspuns, trebuie să vă verificaț 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Înainte de a putea accepta această cerere de conversație, trebuie mai întâi să vă verificați adresa de e-mail." @@ -1840,13 +1956,14 @@ msgstr "Înainte de a putea accepta această cerere de conversație, trebuie mai msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Înainte de a primi notificări despre postările noi de la {name}, trebuie mai întâi să vă verificați e-mailul." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Înainte de a putea trimite mesaje unui alt utilizator, trebuie mai întâi să vă verificați adresa de e-mail." @@ -1874,59 +1991,53 @@ msgstr "Data nașterii" msgid "Birthday" msgstr "Zi de naștere" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blocare" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Blocați pe {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blocare cont" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Blocați contul?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Blocați contul?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blocare conturi" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Blocare și ștergere" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Blocare și părăsire" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Listă de blocări" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blocare sau raportare" @@ -1936,9 +2047,9 @@ msgstr "Blocați aceste conturi?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blocare utilizator" @@ -1946,17 +2057,17 @@ msgstr "Blocare utilizator" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blocare utilizator" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Blocați utilizatorul și/sau ștergeți această conversație" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Blocați utilizatorului și/sau părăsiți această conversație" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blocat" @@ -1964,14 +2075,12 @@ msgstr "Blocat" msgid "Blocked accounts" msgstr "Conturi blocate" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Conturi blocate" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, sau să interacționeze într-un fel cu dvs." @@ -1987,7 +2096,7 @@ msgstr "Blocarea nu împiedică acest etichetator să plaseze etichete pe contul msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blocarea este publică. Conturile blocate nu pot răspunde în firele dvs., să vă menționeze, sau să interacționeze într-un fel cu dvs." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blocarea nu va împiedica aplicarea etichetelor pe contul dvs., dar va împiedica acest cont să răspundă în firele dvs. sau să interacționeze cu dvs." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky nu poate confirma autenticitatea datei revendicate." @@ -2029,7 +2138,7 @@ msgstr "Bluesky este mai bun cu prietenii!" msgid "Bluesky is more fun with friends" msgstr "Bluesky este mai distractiv cu prietenii" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky este mai distractiv cu prietenii! Importați-vă contactele pentru a vedea cine este deja aici." @@ -2037,11 +2146,15 @@ msgstr "Bluesky este mai distractiv cu prietenii! Importați-vă contactele pent msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky este mai distractiv cu prietenii. Doriți să vă invitați câțiva dintre prietenii dvs.? <0/>" +#: 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 "Termenii de Serviciu a Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky va alege un set de conturi recomandate de la persoanele din reț msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky nu va afișa profilul și postările dvs. pentru utilizatorii deconectați. Este posibil ca alte aplicații să nu onoreze această cerere. Acest lucru nu face contul dvs. privat." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky va verifica proactiv conturile notabile și autentice." @@ -2081,6 +2194,10 @@ msgstr "Cărți" msgid "Breaking site rules" msgstr "Încălcarea regulilor site-ului" +#: 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" @@ -2137,25 +2254,35 @@ msgstr "Afaceri" msgid "Button to go back to the home timeline" msgstr "Buton pentru a reveni la cronologia principală" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "De {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "de <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "de <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "De <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Prin crearea unui cont sunteți de acord cu <0>Termenii de Serviciu. msgid "By you" msgstr "De dvs." -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Cameră" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Cameră" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Cameră" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Cameră" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Anulare" @@ -2248,9 +2384,9 @@ msgstr "Anulați reactivarea și deconectați-vă" msgid "Cancel search" msgstr "Anulare căutare" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Nu se poate interacționa cu un utilizator blocat" @@ -2264,7 +2400,7 @@ msgstr "Subtitrări (.vtt)" msgid "Captions & alt text" msgstr "Subtitrări și text alternativ" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "carusel" @@ -2297,7 +2433,7 @@ msgstr "Schimbați limba aplicației" msgid "Change Handle" msgstr "Modificare identificator" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Schimbați serviciul de moderare" @@ -2310,11 +2446,11 @@ msgstr "Modificare parolă" msgid "Change password dialog" msgstr "Dialog modificare parolă" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Modificați categoria raportului" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Modificați motivul raportului" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Conversații" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Conversație ștearsă" @@ -2361,6 +2497,12 @@ msgstr "Conversație ștearsă" msgid "Chat ended" msgstr "Conversație încheiată" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Linkul de invitație la conversație nu mai este disponibil" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Conversație blocată" @@ -2373,35 +2515,44 @@ msgstr "Conversații - silențios" msgid "Chat messages - sound" msgstr "Conversații - sunet" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Conversație amuțită" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "Destinatarul conversației nu este urmărit de expeditor." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Inbox cerere de conversație" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Cereri de conversație" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Setări conversație" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Setări conversație" @@ -2418,14 +2569,14 @@ msgstr "Titlul conversației a fost modificat în {0}" msgid "Chat unlocked" msgstr "Conversație deblocată" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Conversație dezamuțită" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Conversații" @@ -2479,7 +2630,7 @@ msgstr "Selectați limbile postării" msgid "Choose this color as your avatar" msgstr "Alegeți această culoare ca avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Alegeți cine se poate alătura acestei conversații de grup și cum." @@ -2558,7 +2709,7 @@ msgstr "Faceți clic aici pentru a vă deconecta" msgid "Click here to resend the email" msgstr "Faceți clic aici pentru a retrimite e-mailul" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Faceți clic aici pentru a reporni procesul de verificare." @@ -2567,7 +2718,7 @@ msgstr "Faceți clic aici pentru a reporni procesul de verificare." msgid "Click here to update your birthdate" msgstr "Faceți clic aici pentru a vă actualiza data nașterii" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Faceți clic aici pentru a vă actualiza e-mailul" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Faceți clic pentru a reîncerca mesajul eșuat" @@ -2594,28 +2745,30 @@ msgstr "Faceți clic pentru a reîncerca mesajul eșuat" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Faceți clic pentru a reîncerca mesajul eșuat" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Închidere" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Închideți dialogul activ" @@ -2647,6 +2800,10 @@ msgstr "Închideți dialogul activ" msgid "Close alert" msgstr "Închideți alerta" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Închidere banner" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Închideți sertarul de jos" @@ -2657,8 +2814,10 @@ msgstr "Închideți sertarul de jos" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Închideți dialogul" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Închideți imaginea" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Închideți meniul" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Închideți bannerul cu cereri primite" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Închideți acest dialog" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Închide compozitorul de postări și elimină ciorna" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Restrângeți lista de utilizatori" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Restrânge lista de utilizatori pentru o anumită notificare" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Benzi Desenate" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Regulile Comunității" @@ -2740,12 +2915,12 @@ msgstr "Finalizați provocarea" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Compuneți o nouă postare" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Se comprimă GIF-ul..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Se comprimă videoclipul..." @@ -2780,7 +2955,7 @@ msgstr "Configurat în <0>setările de moderare." msgid "Confirm" msgstr "Confirmare" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Contactați asistența" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Sincronizarea contactelor nu este disponibilă pe acest dispozitiv, deoarece aplicația nu vă poate accesa contactele." @@ -2825,11 +3000,11 @@ msgstr "Sincronizarea contactelor nu este disponibilă pe acest dispozitiv, deoa msgid "Contact us" msgstr "Contactați-ne" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Contacte importate" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Contacte eliminate" @@ -2842,7 +3017,7 @@ msgstr "Conținut & media" msgid "Content and media" msgstr "Conținut și media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Conținut și media" @@ -2889,7 +3064,7 @@ msgstr "Fundal meniu contextual, faceți clic pentru a închide meniul." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Continuați firul" msgid "Continue thread..." msgstr "Continuați firul..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Continuați la numele grupului" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Continuați la pasul următor" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Conversație" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Conversație ștearsă" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Conversație ștearsă" @@ -2939,15 +3114,22 @@ msgstr "Conversație ștearsă" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Conversație părăsită" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Conversația nu a fost găsită." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Versiunea de compilare a fost copiată în clipboard" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Copiat!" msgid "Copies build version to clipboard" msgstr "Copiază versiunea de compilare în clipboard" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Copiere" @@ -2997,6 +3184,11 @@ msgstr "Copiere DID" msgid "Copy host" msgstr "Copiere gazdă" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Copiere link listă" msgid "Copy link to post" msgstr "Copiere link postare" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Copiere link profil" @@ -3027,8 +3219,8 @@ msgstr "Copiere link profil" msgid "Copy link to starter pack" msgstr "Copiere link pachet de pornire" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Copiere mesaj text" @@ -3037,12 +3229,12 @@ msgstr "Copiere mesaj text" msgid "Copy post at:// URI" msgstr "Copiere at:// URI postare" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Copiere text postare" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Copiere cod QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Politica Privind Drepturile de Autor" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Nu ne-am putut conecta la fluxul personalizat" @@ -3065,7 +3261,15 @@ msgstr "Nu ne-am putut conecta la fluxul personalizat" msgid "Could not connect to feed service" msgstr "Nu ne-am putut conecta la serviciul de fluxuri" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Nu s-a putut prelua postarea" @@ -3073,23 +3277,27 @@ msgstr "Nu s-a putut prelua postarea" msgid "Could not find profile" msgstr "Nu s-a putut găsi profilul" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Nu s-au putut urmări toate potrivirile - vă rugăm să verificați conexiunea la rețea." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Nu s-au putut urmări toate potrivirile. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Nu s-a putut părăsi conversația" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Nu s-a putut încărca fluxul" @@ -3100,7 +3308,11 @@ msgstr "Nu s-a putut încărca fluxul" msgid "Could not load list" msgstr "Nu s-a putut încărca lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Nu s-a putut amuții conversația" @@ -3108,11 +3320,19 @@ msgstr "Nu s-a putut amuții conversația" msgid "Could not process your video" msgstr "Videoclipul nu a putut fi procesat" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Nu s-au putut salva modificările: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Nu s-au putut actualiza setările de notificare" @@ -3139,7 +3359,7 @@ msgstr "Prefix țară" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Creare" @@ -3153,13 +3373,13 @@ msgstr "Creați o listă" msgid "Create a list from this starter pack" msgstr "Creați o listă din acest pachet de pornire" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Creați un pachet de pornire" @@ -3174,13 +3394,14 @@ msgstr "Creați un pachet de pornire pentru mine" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Creați un avatar în schimb" @@ -3206,7 +3427,7 @@ msgstr "Creați un avatar în schimb" msgid "Create another" msgstr "Creați altul" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Creare conversație de grup" @@ -3228,19 +3449,20 @@ msgstr "Creare listă din pachet de pornire" msgid "Create moderation list" msgstr "Creare listă de moderare" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Creare cont nou" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Creați sau modificați un link de invitație pentru această conversație de grup" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Creați un raport pentru {0}" @@ -3256,8 +3478,8 @@ msgstr "Creare listă de utilizatori" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Creat {0}" @@ -3270,6 +3492,10 @@ msgstr "Creatorul a fost blocat" msgid "Culture" msgstr "Cultură" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Temă întunecată" msgid "Date of birth" msgstr "Data nașterii" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Implicit" msgid "Default icons" msgstr "Pictograme implicite" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Ștergere parolă de aplicație" msgid "Delete app password?" msgstr "Ștergeți parola de aplicație?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Ștergere conversație" @@ -3378,19 +3612,19 @@ msgstr "Ștergere conversație" msgid "Delete chat declaration record" msgstr "Ștergeți înregistrarea declarației de conversație" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Ștergere contacte" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Ștergere conversație" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Ștergeți pentru mine" @@ -3399,11 +3633,11 @@ msgstr "Ștergeți pentru mine" msgid "Delete list" msgstr "Ștergere listă" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Ștergere mesaj" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Ștergere mesaj pentru mine" @@ -3411,9 +3645,9 @@ msgstr "Ștergere mesaj pentru mine" msgid "Delete my account" msgstr "Șterge-mi contul" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Ștergere postare" @@ -3430,17 +3664,17 @@ msgstr "Ștergeți pachetul de pornire?" msgid "Delete this list?" msgstr "Ștergeți această listă?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Ștergeți această postare?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Șters" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Cont șters" @@ -3471,12 +3705,12 @@ msgstr "Descriere (maxim 1000 de caractere)" msgid "Descriptive alt text" msgstr "Text alternativ descriptiv" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Detașare citat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Detașați postarea citat?" @@ -3507,13 +3741,13 @@ msgstr "Dialog: ajustați cine poate interacționa cu această postare" msgid "Dim" msgstr "Luminozitate redusă" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Dezactivare" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Dezactivați A2F" @@ -3521,7 +3755,7 @@ msgstr "Dezactivați A2F" msgid "Disable captions" msgstr "Dezactivare subtitrări" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Dezactivați e-mailul A2F" @@ -3534,8 +3768,8 @@ msgstr "Dezactivare A2F prin e-mail" msgid "Disable haptic feedback" msgstr "Dezactivați feedback-ul haptic" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Dezactivare link" @@ -3547,7 +3781,7 @@ msgstr "Dezactivați postările citat ale acestei postări" msgid "Disable replies entirely" msgstr "Dezactivați răspunsurile în întregime" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Dezactivați acest link de invitație?" @@ -3560,9 +3794,9 @@ msgstr "Dezactivat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Renunțare" msgid "Discard changes?" msgstr "Renunțați la modificări?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Renunțați la postare?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Deconectare conversație Germ" @@ -3609,15 +3843,16 @@ msgstr "Descoperiți fluxuri noi" msgid "Discover New Feeds" msgstr "Descoperiți fluxuri noi" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Închidere" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Închideți bannerul" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Închidere eroare" @@ -3642,6 +3877,10 @@ msgstr "Închideți această secțiune" msgid "Dismiss this suggestion" msgstr "Respingeți această sugestie" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Nu include nuditate." msgid "Domain verified!" msgstr "Domeniu verificat!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Nu aveți un cod sau aveți nevoie de unul nou? <0>Faceți clic aici." @@ -3681,7 +3920,7 @@ msgstr "Nu aveți un cod sau aveți nevoie de unul nou? <0>Faceți clic aici.Click here to resend." msgstr "Nu vedeți un cod? <0>Faceți clic aici pentru a-l retrimite." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Nu vezi un e-mail? <0>Faceți clic aici pentru a-l retrimite." @@ -3700,16 +3939,21 @@ msgstr "Nu vă faceți griji! Toate mesajele existente și setările sunt salvat #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Finalizare" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Atingeți de două ori pentru a închide dialogul" @@ -3737,38 +3981,46 @@ msgstr "Atingeți de două ori pentru a închide dialogul" msgid "Double tap to like" msgstr "Atingeți de două ori pentru a aprecia" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Descărcați Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Descărcare fișier CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Descărcare fișier CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" -msgstr "Descărcați datele de conversație" +msgstr "Descărcare date de conversație" #: src/screens/Settings/components/ExportCarDialog.tsx:154 msgctxt "button" msgid "Download chat data" -msgstr "Descărcați datele de conversație" +msgstr "Descărcare date de conversație" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Descărcare imagine" +#: 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 "Descărcare date profil" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Descărcare date profil" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Doxxing" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Datorită legislației din regiunea dvs., anumite caracteristici ale Blu msgid "Duration:" msgstr "Durată:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "de ex. andreea" @@ -3823,9 +4079,8 @@ msgstr "de ex. Utilizatori care răspund în mod repetat cu reclame." msgid "Eating disorders" msgstr "Tulburări de alimentație" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Editare" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Editare avatar" @@ -3847,19 +4102,19 @@ msgstr "Editare avatar" msgid "Edit Feeds" msgstr "Editare fluxuri" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Editare nume grup" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Editare imagine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Editare setări de interacțiune" @@ -3868,7 +4123,16 @@ msgstr "Editare setări de interacțiune" msgid "Edit interests" msgstr "Editare interese" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Editare link de invitație" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Editare link de invitație" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Editare setări link" @@ -3886,20 +4150,15 @@ msgstr "Editare stare în direct" msgid "Edit moderation list" msgstr "Editare listă de moderare" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Editați fluxurile mele" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Editare nume" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -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" @@ -3912,12 +4171,12 @@ msgstr "Editați setările de interacțiune ale postărilor" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Editare profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Editare profil" @@ -3925,7 +4184,8 @@ msgstr "Editare profil" msgid "Edit starter pack" msgstr "Editare pachet de pornire" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Editați numele acestei conversații de grup" @@ -3937,7 +4197,7 @@ msgstr "Editare listă de utilizatori" msgid "Edit who can reply" msgstr "Editați cine poate răspunde" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Editați-vă pachetul de pornire" @@ -3971,7 +4231,7 @@ msgstr "Adresă de e-mail" msgid "Email Resent" msgstr "E-mailul a fost retrimis" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-mailul a fost trimis!" @@ -4006,8 +4266,8 @@ msgstr "Încorporați această postare în website-ul dvs. Pur și simplu copia msgid "Embedded video player" msgstr "Cititor video încorporat" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Activare" @@ -4025,7 +4285,7 @@ msgstr "Activare conținut pentru adulți" msgid "Enable captions" msgstr "Activare subtitrări" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Activare A2F prin e-mail" @@ -4038,13 +4298,12 @@ msgstr "Activare conținut media extern" msgid "Enable media players for" msgstr "Activare cititor media pentru" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Activați notificările pentru un cont accesând profilul acestuia și apăsând pe <0>pictograma clopoțel <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Activare notificări push" @@ -4091,8 +4350,8 @@ msgstr "Introduceți o parolă" msgid "Enter a word or tag" msgstr "Introduceți un cuvânt sau o etichetă" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Introduceți codul" @@ -4143,12 +4402,12 @@ msgstr "Intrați în modul Ecran complet" msgid "Entertainment" msgstr "Divertisment" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Eroare" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Eroare la obținerea celor mai recente date." @@ -4185,23 +4444,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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Toți" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Toți" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Toți" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Toate celelalte" @@ -4217,16 +4476,16 @@ msgstr "Exclude utilizatorii pe care îi urmăriți" msgid "Exit fullscreen" msgstr "Ieșire ecran complet" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Extindere text alternativ" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Extindeți lista de utilizatori" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 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" @@ -4238,7 +4497,7 @@ msgstr "Extindeți textul postării" msgid "Expands or collapses post text" msgstr "Extinde sau restrânge text postare" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Se așteaptă de la uri pentru a rezolva la o înregistrare" @@ -4277,10 +4536,10 @@ msgstr "Conținut media explicit sau potențial deranjant." msgid "Explicit sexual images." msgstr "Imagini sexuale explicite." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Explorare" @@ -4289,11 +4548,8 @@ msgstr "Explorare" msgid "Explore the app" msgstr "Explorați aplicația" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Exportare date conversație" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Exportați datele mele de conversație" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Preferințe conținut media extern" @@ -4331,18 +4587,22 @@ msgstr "Preferințe conținut media extern" msgid "Extremist content" msgstr "Conținut extremist" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Acceptarea conversației a eșuat" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Nu s-a putut accepta cererea de alăturare" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Adăugarea reacției emoji a eșuat" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Adăugarea membrilor a eșuat" @@ -4354,7 +4614,8 @@ msgstr "Adăugarea la pachetul de pornire a eșuat" msgid "Failed to change handle. Please try again." msgstr "Nu s-a putut modifica identificatorul. Vă rugăm să încercați din nou." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Copierea link-ului a eșuat" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Nu s-a reușit crearea parolei de aplicație. Încercați din nou." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Crearea conversației a eșuat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Crearea linkului de invitație a eșuat" @@ -4376,17 +4637,17 @@ msgstr "Crearea linkului de invitație a eșuat" msgid "Failed to create starter pack" msgstr "Creare pachetului de pornire a eșuat" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Ștergerea conversației a eșuat" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Ștergerea mesajului a eșuat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Ștergerea postării a eșuat, vă rugăm să încercați din nou" @@ -4394,24 +4655,24 @@ msgstr "Ștergerea postării a eșuat, vă rugăm să încercați din nou" msgid "Failed to delete starter pack" msgstr "Ștergerea pachetului de pornire a eșuat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Dezactivarea linkului de invitație a eșuat" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Nu s-a reușit deconectarea conversației Germ. Eroare: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Eroare la editarea numelui conversației de grup" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Editarea linkului de invitație a eșuat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Activarea linkului de invitație a eșuat" @@ -4427,19 +4688,27 @@ msgstr "Nu s-a reușit urmărirea tuturor prietenilor, vă rugăm să încercaț msgid "Failed to hide suggestion, please check your internet connection" msgstr "Nu s-a reușit ascunderea sugestiei, vă rugăm să vă verificați conexiunea la internet" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Nu s-a putut ignora cererea de alăturare" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Nu s-a putut alătura conversației de grup. Vă rugăm să încercați din nou." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Lansarea aplicației SMS a eșuat" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 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:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Încărcarea conversațiilor a eșuat" @@ -4456,17 +4725,8 @@ msgstr "Încărcarea fluxurilor a eșuat" msgid "Failed to load feeds preferences" msgstr "Încărcarea preferințelor fluxurilor a eșuat" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Setările de notificare nu au putut fi încărcate." @@ -4493,16 +4753,15 @@ msgstr "Încărcarea fluxurilor sugerate a eșuat" msgid "Failed to load suggested follows" msgstr "Încărcarea sugestiilor de urmărire a eșuat" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Blocarea conversației de grup a eșuat" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Nu s-a reușit marcarea tuturor cererilor ca fiind citite" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Nu s-a reușit amuțirea conversației de grup" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Nu s-a reușit fixarea postării" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Nu s-a reușit reconectarea la conversația Germ. Eroare: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Nu s-au putut șterge datele din cauza unei erori de rețea, vă rugăm să vă verificați conexiunea la internet." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Eroare la ștergerea datelor. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Ștergerea reacției emoji a eșuat" @@ -4534,7 +4793,8 @@ msgstr "Ștergerea reacției emoji a eșuat" msgid "Failed to remove from starter pack" msgstr "Nu s-a putut elimina din pachetul de pornire" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Eliminarea membrului din conversația de grup a eșuat" @@ -4542,15 +4802,20 @@ msgstr "Eliminarea membrului din conversația de grup a eșuat" msgid "Failed to remove verification" msgstr "Eliminarea verificării a eșuat" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Nu s-a putut anula solicitarea. Vă rugăm să încercați din nou." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Nu s-a putut salva schița" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Salvarea imaginii a eșuat" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Salvarea intereselor a eșuat." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Trimiterea e-mailului a eșuat, încercați din nou." @@ -4580,16 +4845,16 @@ msgstr "Trimiterea raportului a eșuat" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Nu s-a putut trimite contestația, vă rugăm să încercați din nou." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Nu s-a putut comuta amuțirea firului, vă rugăm încercați din nou" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Deblocarea conversației de grup a eșuat" @@ -4597,12 +4862,12 @@ msgstr "Deblocarea conversației de grup a eșuat" msgid "Failed to unpin list" msgstr "Anularea fixării listei a eșuat" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Nu s-au actualizat setările de e-mail A2F" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "E-mailul nu a fost actualizat, vă rugăm să încercați din nou." @@ -4614,7 +4879,7 @@ msgstr "Actualizarea fluxurilor a eșuat" msgid "Failed to update notification declaration" msgstr "Nu s-a putut actualiza declarația de notificare" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Nu s-a reușit actualizarea setărilor" @@ -4641,7 +4906,7 @@ msgstr "Cont fals sau bot" msgid "False information about elections" msgstr "Informații false despre alegeri" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Flux" @@ -4649,7 +4914,7 @@ msgstr "Flux" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Flux creat de {0}" @@ -4662,7 +4927,7 @@ msgstr "Creator flux" msgid "Feed identifier" msgstr "Identificator flux" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Meniu flux" @@ -4676,25 +4941,25 @@ msgstr "Flux indisponibil" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback trimis operatorului fluxului" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Fluxuri" @@ -4739,7 +5004,7 @@ msgstr "Filtrați căutarea după limbă (în prezent: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtrați de la cine primiți notificări" @@ -4747,11 +5012,11 @@ msgstr "Filtrați de la cine primiți notificări" msgid "Finalizing" msgstr "Se finalizează" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "În sfârșit!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "În sfârșit! Țineți evidența postărilor care contează pentru dvs. Salvați-le pentru a le revizui oricând." @@ -4768,19 +5033,17 @@ msgstr "Finanțe" msgid "Find accounts to follow" msgstr "Găsiți conturi de urmărit" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Găsiți contacte" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Găsiți prieteni" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Găsiți prieteni din contacte" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Găsire contacte" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Găsiți-mi prietenii" msgid "Find people to follow" msgstr "Găsiți persoane pe care să le urmăriți" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Găsiți postări, utilizatori și fluxuri pe Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Găsiți-vă prietenii" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Găsiți-vă prietenii pe Bluesky verificându-vă numărul de telefon și potrivindu-vă cu contactele. Noi vă protejăm informațiile, iar dvs. controlați ce se întâmplă în continuare. <0>Aflați mai multe" @@ -4847,22 +5114,22 @@ msgstr "Focalizați câmpul de căutare" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Urmărire" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Urmăriți pe {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Urmărire pe {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Urmăriți contul" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Urmăriți toate conturile" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Urmăriți înapoi" @@ -4916,7 +5183,7 @@ msgstr "Urmăriți înapoi" msgid "Followed all accounts!" msgstr "Toate conturile au fost urmărite!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Au fost urmărite toate potrivirile" @@ -4944,8 +5211,12 @@ msgstr "Urmărit de <0>{0} și <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Urmărit de <0>{0}, <1>{1} și de {2, plural, one {un alt utilizator} few {alți # utilizatori} other {alți # de utilizatori}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Urmăritorii se pot alătura" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Urmăritori ai lui @{0} pe care îi știți" @@ -4960,10 +5231,10 @@ msgstr "Urmăritori pe care îi știți" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Urmăriți" @@ -4977,12 +5248,12 @@ msgstr "Urmăriți" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Urmăriți pe {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Urmăriți pe {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Urmăriți pe {handle}" msgid "Following feed preferences" msgstr "Preferințe flux Urmăriți" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Preferințe flux urmăriți" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Vă urmărește" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Vă urmărește" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Font" @@ -5065,11 +5333,16 @@ msgstr "Ați uitat parola?" msgid "Forgot?" msgstr "Ați uitat parola?" +#. 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:12 msgid "Free your feed" msgstr "Eliberați-vă fluxul" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "De la" @@ -5086,82 +5359,86 @@ msgstr "De la <0/>" msgid "Generate a starter pack" msgstr "Generați un pachet de pornire" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Generare link de invitație" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Generare link de invitație nou" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Generare link nou" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Conversație Germ" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Conversație Germ deconectată" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Link conversație Germ" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Conversație Germ reconectată" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Obțineți ajutor" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Primiți notificări când oamenii vă urmăresc." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Primiți notificări când oamenii apreciază postările pe care le-ați repostat." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Primiți notificări când oamenii apreciază postările dvs." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +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:285 msgid "Get notifications when people mention you." msgstr "Primiți notificări când oamenii vă menționează." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Primiți notificări când oamenii citează postările dvs." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Primiți notificări când oamenii răspund la postările dvs." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Primiți notificări când oamenii repostează postările pe care le-ați repostat." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 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:333 +msgid "Get notifications when people repost your reposts." +msgstr "Primiți notificări când oamenii vă repostează repostările." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Primiți notificări despre postări noi" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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}" @@ -5174,27 +5451,27 @@ msgstr "Primiți notificări despre activitatea acestui cont" msgid "Get notified when {name} posts" msgstr "Primește notificări când {name} postează" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Primiți notificări când cineva postează" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Începeți" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF încărcat" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Oferiți profilului dvs. o față" @@ -5213,20 +5490,20 @@ msgstr "Glorificarea violenței" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Mergeți înapoi" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Mergeți înapoi" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Reveniți la pasul anterior" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Mergeți la pagina acasă" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Mergeți la pagina acasă" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Mergeți la pagina acasă" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Intrați în direct (dezactivat)" msgid "Go live for" msgstr "Intrați în direct pentru" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Mergeți la profilul lui {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Mergeți la setările contului" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Mergeți la conversația cu {0}" @@ -5296,23 +5571,23 @@ msgstr "Mergeți la flux" msgid "Go to next" msgstr "Mergeți la următorul" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Mergeți la profil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Mergeți la conversația de grup numită „{chatName}”" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Mergeți la profilul utilizatorului" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Mergeți la profilul utilizatorului" @@ -5320,11 +5595,18 @@ msgstr "Mergeți la profilul utilizatorului" msgid "Going live is currently disabled for your account" msgstr "Intrarea în direct este momentan dezactivată pentru contul dvs." -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Am înțeles" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Conținut violent grafic" msgid "Grooming or predatory behavior" msgstr "Comportament de seducere și manipulare a minorilor (grooming)" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Conversație de grup" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Dialog link de invitație in conversație de grup" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Conversație de grup blocată" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Conversație de grup amuțită" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Numele conversației de grup a fost actualizat" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Setări conversație în grup" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Conversație de grup deblocată" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Conversație de grup dezamuțită" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Conversațiile de grup nu sunt încă disponibile" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Conversațiile de grup sunt acum disponibile" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Conversațiile de grup pot avea maximum {0, plural, one {} few {# persoane}other {# de persoane}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Grupul este blocat" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Numele grupului" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 #.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Hacking sau atacuri de sistem" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Identificator prea lung. Vă rugăm să încercați unul mai scurt." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Se întâmplă acum" @@ -5446,7 +5744,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:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "Discurs de ură" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Aveți un cod? <0>Faceți clic aici." @@ -5479,11 +5777,11 @@ msgstr "Păstrat de Bluesky timp de 7 zile pentru a preveni abuzurile, apoi ște #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Ajutor" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Listă ascunsă" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Listă ascunsă" msgid "Hide" msgstr "Ascundere" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ascundere" @@ -5553,18 +5851,18 @@ msgstr "Ascundere actualizări conversației de grup" msgid "Hide lists" msgstr "Ascundere liste" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ascundere postare pentru mine" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ascundere răspuns pentru toată lumea" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ascundere răspuns pentru mine" @@ -5577,19 +5875,19 @@ msgstr "Ascundeți acest card" msgid "Hide this event" msgstr "Ascundeți acest eveniment" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ascundeți această postare?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ascundeți acest răspuns?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Ascundere traducere" @@ -5606,7 +5904,7 @@ msgstr "Ascundeți subiectele în tendințe?" msgid "Hide trending videos?" msgstr "Ascundeți videoclipurile în tendințe?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ascundere listă de utilizatori" @@ -5620,6 +5918,10 @@ msgstr "Ascundere insigne de verificare" msgid "Hides the content" msgstr "Ascundere conținut" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, se pare că sunteți conectat cu o <0>Parolă de aplicație. Pentru a vă seta data nașterii, va trebui să vă conectați cu parola principală a contului sau să întrebați persoana care controlează acest cont să facă acest lucru." @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, se pare că avem probleme la încărcarea acestor date. Vedeți m msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, nu am putut încărca acest serviciu de moderare." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "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/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Țineți-vă caii în frâu! Această caracteristică nu vă este încă disponibilă. Vă rugăm să verificați din nou mai târziu." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Acasă" @@ -5721,7 +6019,7 @@ msgstr "Am înțeles" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Sunt pe Bluesky ca {0} - vino și găsește-mă! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Dacă textul alternativ este lung, comutați starea extinsă a textului alternativ" @@ -5757,15 +6055,15 @@ msgstr "Dacă ștergeți această listă, nu o veți putea recupera." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Dacă aveți propriul domeniu, îl puteți folosi ca identificator. Acest lucru vă permite să vă verificați identitatea automat. <0>Aflați mai multe aici." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Dacă trebuie să vă actualizați adresa de e-mail, <0>faceți clic aici." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Dacă eliminați această postare, nu o veți putea recupera." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Dacă vă actualizați adresa de e-mail, e-mailul A2F va fi dezactivat." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Dacă doriți să restricționați cine poate primi notificări pentru activitatea contului dvs., puteți modifica acest lucru în <0>Setări → Confidențialitate și securitate." @@ -5786,23 +6083,23 @@ msgstr "Dacă sunteți dezvoltator, vă puteți găzdui propriul server." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Dacă încercați să vă modificați identificatorul sau adresa de e-mail, faceți acest lucru înainte de a dezactiva." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Imagine" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Imagine {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Imaginea {0} din {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Imaginea {0} din {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Cache-ul imaginilor a fost golit, s-au eliberat {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Galerie imagini, {0} imagini" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Imaginea este ascunsă din cauza setărilor dvs. de moderare." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Imaginea nu este disponibilă." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Opțiuni imagine" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Impersonare" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importare contacte" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importare contacte" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importați contacte pentru a vă găsi prietenii" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importate pe {0}" @@ -5881,40 +6182,40 @@ msgstr "Importate pe {0}" 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 "Pentru a oferi o experiență adecvată vârstei, trebuie să vă știm data nașterii. Acest proces este un lucru unic, iar datele dvs. vor fi private." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "În aplicație" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notificări în aplicație" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "În aplicație, Toată lumea" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "În aplicație, Persoane pe care le urmăriți" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "În aplicație, Push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "În aplicație, Push, Toată lumea" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "În aplicație, Push, Persoane pe care le urmăriți" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Inbox gol" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Inbox zero!" @@ -5954,6 +6255,10 @@ msgstr "Vă prezentăm schițe" msgid "Introducing finding friends via contacts" msgstr "Vă prezentăm găsirea prietenilor prin intermediul contactelor" +#: 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 "Vă prezentăm salvarea postărilor adică marcaje" @@ -5963,11 +6268,15 @@ msgstr "Vă prezentăm salvarea postărilor adică marcaje" msgid "Invalid 2FA confirmation code." msgstr "Cod de confirmare A2F invalid." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Cod de conversație de grup invalid." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Identificator nevalid. Vă rugăm să încercați unul diferit." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Setări de interacțiune invalide." @@ -5977,10 +6286,15 @@ msgstr "Setări de interacțiune invalide." msgid "Invalid phone number" msgstr "Număr de telefon invalid" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Subiect raport nevalid" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Cerere de anulare invalidă." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Cod de verificare nevalid" @@ -6001,8 +6315,15 @@ msgstr "Cod de invitație" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Invitați prieteni" @@ -6010,21 +6331,31 @@ msgstr "Invitați prieteni" msgid "Invite friends <0/>" msgstr "Invitați prieteni <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Link de invitație" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Link de invitație" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Link de invitație creat" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Link de invitație dezactivat" @@ -6040,11 +6371,16 @@ msgstr "Link de invitație activat" msgid "Invite people to this starter pack!" msgstr "Invitați persoane la acest pachet de pornire!" +#: 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 "Invitați-vă prietenii să vă urmărească fluxurile și persoanele preferate" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Invitat(ă)" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID loc de muncă: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID loc de muncă: {0}" msgid "Jobs" msgstr "Locuri de muncă" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Alăturați-vă" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Locuri de muncă" msgid "Join Bluesky" msgstr "Alăturați-vă la Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Alăturați-vă conversație de grup" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Cererea de alăturare a fost anulată." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Alăturați-vă conversației" msgid "Journalism" msgstr "Jurnalism" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Continuați editarea" @@ -6109,6 +6460,11 @@ msgstr "Continuați editarea" msgid "Keep me posted" msgstr "Ține-mă la curent" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Website-ul KWS" @@ -6143,7 +6499,7 @@ msgstr "Etichete de pe contul dvs." msgid "Labels on your content" msgstr "Etichete pe conținutul dvs." -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Setări limbă" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Cele mai recente" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Aflați mai multe despre cum funcționează invitarea prietenilor" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Aflați mai multe despre importarea contactelor" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Aflați mai multe despre acest avertisment" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Aflați mai multe despre verificarea pe Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Aflați mai multe despre verificarea pe Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Aflați mai multe despre ce este public pe Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Aflați mai multe despre link-ul dvs. de conversație Germ" @@ -6252,31 +6608,33 @@ msgstr "Aflați mai multe în <0>setările contului." msgid "Learn more." msgstr "Aflați mai multe." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Părăsire" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Părăsiți conversația" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Părăsire conversație" @@ -6284,13 +6642,14 @@ msgstr "Părăsire conversație" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Părăsire conversație" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Părăsiți conversația de grup" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Părăsiți conversația de grup" @@ -6299,6 +6658,14 @@ msgstr "Părăsiți conversația de grup" msgid "Leaving Bluesky" msgstr "Părăsiți Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "rămas de făcut." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Luminoasă" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Apreciere" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Apreciere ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notificări pentru aprecieri" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Apreciați acest flux" @@ -6358,8 +6721,8 @@ msgstr "Apreciați acest flux" msgid "Like this labeler" msgstr "Apreciați acest etichetator" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Apreciat de" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Apreciat de {0, plural, one {un utilizator} few {# utilizatori} other {# de utilizatori}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Aprecieri" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Aprecieri pentru repostările dvs." -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notificări privind aprecierile postărilor dvs." - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Aprecieri la această postare" @@ -6409,11 +6768,11 @@ msgstr "Aprecieri la această postare" msgid "Linear" msgstr "Liniar" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Link copiat în clipboard" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Listă" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Listă dezamuțită" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Liste" @@ -6545,7 +6904,7 @@ msgstr "Eveniment în direct afișat" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Evenimentele în direct apar ocazional, când se întâmplă ceva interesant. Dacă doriți, puteți ascunde acest eveniment sau toate evenimentele pentru această plasare în interfața aplicației." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Caracteristica „în direct” este în beta" @@ -6595,27 +6954,27 @@ msgstr "Se încarcă setările de interacțiune pentru postări..." msgid "Loading..." msgstr "Se Încarcă..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Blocare" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Blocare conversație de grup" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Blocați conversația de grup?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Blocați această conversație de grup" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Blocat" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Jurnal" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo de @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo de <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Se pare că vă lipsește un flux urmărit. <0>Faceți clic aici pentru msgid "Love GIFs" msgstr "GIF-uri dragoste" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Ajustați setările de e-mail pentru contul dvs." @@ -6687,24 +7046,22 @@ msgstr "Gestionați setările de verificare" msgid "Manage your muted words and tags" msgstr "Gestionați-vă cuvintele și etichetele amuțite" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Marcați toate ca citite" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Marcare ca citit" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Marcate toate ca citite" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Poate mai târziu" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Membri" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Membrii încă pot citi istoricul conversațiilor, dar nu pot trimite mesaje noi." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notificări pentru mențiuni" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "utilizatori menționați" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Mențiuni" @@ -6761,7 +7118,7 @@ msgstr "Mesaj" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Mesaj" @@ -6771,26 +7128,26 @@ msgstr "Mesaj" msgid "Message {0}" msgstr "Trimiteți mesaj lui {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Trimiteți mesaj lui {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mesaj șters" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mesaj șters" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Mesajul nu a putut fi trimis." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Mesaj de la @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Mesajul este prea lung" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Mesajul este prea lung ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Opțiuni mesaj" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mesaje" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 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." @@ -6838,10 +7195,6 @@ msgstr "Miezul nopții" msgid "Minor harassment or bullying" msgstr "Hărțuire minoră sau bullying" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Notificări diverse" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Conținut înșelător" @@ -6850,7 +7203,7 @@ msgstr "Conținut înșelător" msgid "Missing media" msgstr "Conținut media lipsă" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderare" @@ -6894,7 +7247,7 @@ msgstr "Listă de moderare actualizată" msgid "Moderation lists" msgstr "Liste de moderare" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Liste de moderare" @@ -6903,7 +7256,7 @@ msgstr "Liste de moderare" msgid "moderation settings" msgstr "setări de moderare" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Stări moderare" @@ -6928,8 +7281,8 @@ msgstr "Mai multe limbi..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Mai multe opțiuni" @@ -6949,7 +7302,7 @@ msgstr "Filme" msgid "Music" msgstr "Muzică" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Dezactivare sunet" @@ -6965,8 +7318,8 @@ msgstr "Dezactivare sunet" msgid "Mute {0}" msgstr "Amuțiți {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Amuțire cont" msgid "Mute accounts" msgstr "Amuțire conturi" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Amuțire conversație" @@ -6994,7 +7347,7 @@ msgstr "Amuțire listă" msgid "Mute these accounts?" msgstr "Amuțiți aceste conturi?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Amuțiți conversația de grup" @@ -7022,17 +7375,21 @@ msgstr "Amuțiți acest cuvânt doar în etichete" msgid "Mute this word until you unmute it" msgstr "Amuțiți acest cuvânt până îl dezamuțiți" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Amuțire fir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Amuțire cuvinte & etichete" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "Amuțită" @@ -7040,7 +7397,7 @@ msgstr "Amuțită" msgid "Muted accounts" msgstr "Conturi amuțite" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Conturi Amuțite" @@ -7062,6 +7419,10 @@ msgstr "Cuvinte & etichete amuțite" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Amuțirea este privată. Conturile amuțite pot interacționa cu dvs., dar nu veți vedea postările lor și nu veți primi notificări de la ele." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Navigați la pachetul de pornire" msgid "Navigates to the next screen" msgstr "Navighează la următorul ecran" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navighează la profilul dvs." -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Doriți să raportați o încălcare a drepturilor de autor, o solicitare legală sau o problemă de conformitate cu reglementările?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Nou" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Postare nouă} few {Postări noi} other {Postări noi}} de la {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Postare nouă} few {Postări noi} other {Postări noi}} de la {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Conversație nouă" @@ -7163,7 +7525,7 @@ msgstr "Conversație nouă cu {0} și {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Conversație nouă cu {0}, {1}, și {memberCount, plural, one {încă {memberCount} utilizatori} few {încă {memberCount} utilizatori} other {încă {memberCount} de utilizatori}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Adresă e-mail nouă" @@ -7171,32 +7533,30 @@ msgstr "Adresă e-mail nouă" #: 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 "Caracteristică nouă" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notificări pentru urmăritori nou" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Urmăritori noi" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Conversație de grup nouă" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Conversație de grup nouă cu:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Postare nouă" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Postare nouă" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Postare nouă de la {firstAuthorLink} și <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} un alt utilizator} few {{formattedAuthorsCount} alți utilizatori} other {{formattedAuthorsCount} alți utilizatori}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Postare nouă de la {firstAuthorName} și {additionalAuthorsCount, plural, one {{formattedAuthorsCount} un alt utilizator} few {{formattedAuthorsCount} alți utilizatori} other {{formattedAuthorsCount} alți utilizatori}}" @@ -7262,8 +7622,8 @@ msgstr "Știri" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Următorul" msgid "Next image" msgstr "Imaginea următoare" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Niciun urmăritor încă" @@ -7335,7 +7699,7 @@ msgstr "Nu s-au găsit GIF-uri pentru „{query}”." msgid "No GIFs to show right now. Try again in a moment." msgstr "Nu există GIF-uri de afișat momentan. Încercați din nou imediat." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Nici o imagine" @@ -7353,8 +7717,8 @@ msgstr "Nicio listă" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Nu mai urmăriți pe {0}" @@ -7362,7 +7726,7 @@ msgstr "Nu mai urmăriți pe {0}" msgid "No media yet" msgstr "Niciun conținut media încă" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Niciun mesaj încă" @@ -7378,12 +7742,12 @@ msgstr "Niciun nume" msgid "No notifications yet!" msgstr "Nu există notificări încă!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Nimeni" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Nimeni" @@ -7399,7 +7763,7 @@ msgstr "Nimeni" msgid "No one but the author can quote this post." msgstr "Nimeni în afară de autor nu poate cita această postare." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Nimeni nu poate trimite mesaje" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Niciun rezultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Niciun rezultat" @@ -7446,8 +7810,8 @@ msgstr "Niciun rezultat" msgid "No results for \"{0}\"." msgstr "Niciun rezultat pentru „{0}”." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Nu s-au găsit rezultate" @@ -7509,12 +7873,12 @@ msgstr "Imagini intime neconsensuale" msgid "Non-sexual Nudity" msgstr "Nuditate non-sexuală" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Nimic" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Indisponibil pe această platformă." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Nu a fost găsit" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Nu sunteți gata să postați? Păstrați-vă cele mai bune idei în schițe până când va veni momentul potrivit." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Notă despre partajare" @@ -7548,44 +7912,31 @@ msgstr "Notă: Această postare este vizibilă numai pentru utilizatorii conecta msgid "Nothing saved yet" msgstr "Nimic salvat încă" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Setări pentru notificări" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Sunete notificare" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notificări" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notificări pentru orice altceva, cum ar fi atunci când cineva se alătură prin intermediul unuia dintre pachetele dvs. de pornire." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "acum" @@ -7601,7 +7952,7 @@ msgstr "Numărul trebuie să fie un număr de telefon" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Dezactivat" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Ok" @@ -7648,35 +8000,35 @@ msgstr "pe<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Resetare înregistrare" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Unul dintre destinatarii selectați nu permite conversații de grup." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Unul dintre destinatarii selectați v-a blocat și nu-i se pot scrie mesaje." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Unei sau mai multor imagini le lipsește textul alternativ." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Unul sau mai multe dintre fișierele selectate nu sunt acceptate." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Unul sau mai multe dintre fișierele selectate sunt prea mari. Dimensiunea maximă este de 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ." @@ -7685,6 +8037,26 @@ msgstr "Unei sau mai multor videoclipuri le lipsește textul alternativ." msgid "Only {0} can reply." msgstr "Doar {0} poate răspunde." +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Doar administratorii pot accepta cereri de alăturare." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Doar administratorii pot ignora cereri de alăturare." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Doar urmăritorii se pot alătura acestei conversații de grup." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Doar urmăritorii pe care îi urmăresc" msgid "Only image files are supported" msgstr "Doar fișierele imagine sunt acceptate" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Doar persoanele urmărite de {0} se pot alătura." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +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/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Doar fișierele WebVTT (.vtt) sunt acceptate" @@ -7703,6 +8085,10 @@ msgstr "Doar fișierele WebVTT (.vtt) sunt acceptate" msgid "Oops, something went wrong!" msgstr "Hopa, ceva nu a mers bine!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Hopa, ceva nu a mers bine!" msgid "Oops!" msgstr "Hopa!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Deschideți creatorul de avatar" @@ -7720,12 +8106,17 @@ msgstr "Deschideți creatorul de avatar" msgid "Open camera" msgstr "Deschidere cameră" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Deschidere conversație" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Deschideți opțiunile pentru membrii conversației pentru {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Deschideți opțiunile conversației" @@ -7739,16 +8130,16 @@ msgstr "Deschideți meniul sertar" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Deschideți selectorul de emoji" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Deschideți meniul de opțiuni flux" @@ -7760,13 +8151,22 @@ msgstr "Deschideți lista completă de emoji-uri" msgid "Open Germ DM" msgstr "Deschidere conversație Germ" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Deschidere conversație de grup" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Deschideți setările de conversație de grup" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Deschideți link-ul către {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Deschidere pachet" msgid "Open post options menu" msgstr "Deschideți meniul de opțiuni de postare" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Deschidere profil" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Deschideți pagina storybook" msgid "Open system log" msgstr "Deschideți jurnalul sistemului" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Deschideți această conversație de grup" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Deschide un dialog pentru a adăuga un avertisment de conținut postări msgid "Opens a dialog to choose who can interact with this post" msgstr "Deschide un dialog pentru a alege cine poate interacționa cu această postare" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Deschide detalii suplimentare pentru o intrare de depanare" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Deschide camera pe dispozitiv" @@ -7858,22 +8270,24 @@ msgstr "Deschide compozitorul" msgid "Opens device camera" msgstr "Deschide camera foto a dispozitivului" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Deschide galeria dispozitivului pentru a selecta până la {MAX_IMAGES, plural, one {} few {# imagini}other {# de imagini}}, sau un singur videoclip sau GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Deschide galeria dispozitivului pentru a selecta până la {MAX_GALLERY_IMAGES, plural, one {} few {# imagini}other {# de imagini}}, sau un singur videoclip sau GIF." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Deschide procesul pentru a vă conecta la contul dvs. Bluesky existent" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Deschide imaginea completă" @@ -7890,7 +8304,7 @@ msgstr "Deschide selectorul de imagini" msgid "Opens link {0}" msgstr "Deschidere link {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Deschide dialogul de stare în direct" @@ -7902,15 +8316,23 @@ msgstr "Deschide formularul de resetare a parolei" msgid "Opens post language settings" msgstr "Deschide setările de limbă pentru postări" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Deschide profilul" +#: 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 "Deschide dialogul de selectare a GIF-urilor" +#: 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 "Deschide compozitorul de postări" @@ -7919,9 +8341,8 @@ msgstr "Deschide compozitorul de postări" msgid "Opens this draft in the composer" msgstr "Deschideți această schiță în compozitor" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Deschide acest profil" @@ -7997,12 +8418,12 @@ msgstr "Postarea noastră de pe blog" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Echipa noastră de moderare a primit raportul dvs." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderatorii noștri au analizat rapoartele și au decis să dezactiveze accesul dvs. la conversații pe Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Moderatorii noștri au analizat rapoartele și au decis să dezactiveze msgid "Owner" msgstr "Proprietar" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Pagina nu a fost găsită" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Proprietarul trebuie să blocheze grupul înainte de al părăsii." -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Pagina nu a fost găsită" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Pauză videoclip" msgid "People" msgstr "Persoane" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Persoanele urmărite de {ownerName} se pot alătura imediat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Persoane urmărite de @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Persoane care urmăresc @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Persoane pe care le urmăriți" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Persoanele pe care le urmăresc se pot alătura imediat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Persoanele pe care le urmăresc pot solicita să se alăture" @@ -8136,13 +8558,17 @@ msgstr "Număr de telefon verificat" msgid "Photography" msgstr "Fotografie" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Imagini destinate adulților." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fixați fluxul" @@ -8152,12 +8578,12 @@ msgstr "Fixați fluxul" msgid "Pin to home" msgstr "Fixare la acasă" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fixare la Acasă" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fixați la profilul dvs." @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fixat" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Fixat {0} la pagina acasă" @@ -8236,7 +8662,7 @@ msgstr "Vă rugăm să vă alegeți identificatorul." msgid "Please choose your password." msgstr "Vă rugăm să vă alegeți parola." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Vă rugăm faceți clic pe linkul din e-mailul pe care tocmai vi l-am tr msgid "Please complete the verification captcha." msgstr "Vă rugăm să completați verificarea captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Vă rugăm să vă confirmați adresa de e-mail pentru a încărca videoclipuri." @@ -8265,14 +8691,14 @@ msgstr "Vă rugăm să introduceți o parolă. Trebuie să aibă cel puțin 8 ca msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Vă rugăm să introduceți un nume unic pentru această parolă de aplicație sau să utilizați unul generat la întâmplare." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Vă rugăm să introduceți un cod valid." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Vă rugăm să introduceți o adresă de e-mail validă." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Vă rugăm să introduceți o adresă de e-mail validă, ne-temporară. Este posibil să fie nevoie să accesați această adresă de e-mail în viitor." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Vă rugăm să introduceți mai jos codul pe care l-am trimis către <0>{0}." @@ -8293,7 +8719,7 @@ msgstr "Vă rugăm să introduceți mai jos codul pe care l-am trimis către <0> msgid "Please enter the code you received and the new password you would like to use." msgstr "Vă rugăm să introduceți codul primit și noua parolă pe care doriți să o utilizați." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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ă." @@ -8306,7 +8732,7 @@ msgstr "Vă rugăm să introduceți adresa dvs. de e-mail." msgid "Please enter your invite code." msgstr "Vă rugăm să introduceți codul de invitație." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Vă rugăm să introduceți noua adresă de e-mail." @@ -8323,7 +8749,7 @@ msgstr "Vă rugăm să vă introduceți numele de utilizator" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Vă rugăm să explicați de ce credeți că această etichetă a fost aplicată incorect de {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Vă rugăm să explicați de ce credeți că conversațiile dvs. au fost dezactivate incorect" @@ -8358,7 +8784,11 @@ msgstr "Vă rugăm să selectați un motiv pentru acest raport" msgid "Please sign in as @{0}" msgstr "Vă rugăm conectați-vă ca @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Vă rugăm să folosiți aplicația nativă pentru a vă importa contactele." @@ -8366,7 +8796,7 @@ msgstr "Vă rugăm să folosiți aplicația nativă pentru a vă importa contact msgid "Please use the native app to sync your contacts." msgstr "Vă rugăm să folosiți aplicația nativă pentru a sincroniza contactele." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Vă rugăm să vă verificați adresa de e-mail" @@ -8383,7 +8813,7 @@ msgstr "Politică" msgid "Porn" msgstr "Pornografie" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Postare" @@ -8403,12 +8833,12 @@ msgstr "Postați o fotografie" msgid "Post a video" msgstr "Postați un videoclip" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Postați-le pe toate" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Postați oricum" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Postare blocată" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Postare de @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Postare ștearsă" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Postarea nu a putut fi încărcată. Vă rugăm să vă verificați conexiunea la internet și să încercați din nou." @@ -8454,18 +8884,22 @@ msgstr "Postare ascunsă de dvs." msgid "Post interaction settings" msgstr "Setări interacțiune postare" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Setări de interacțiune postare" +#: 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 "Selectare limbă postare" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Postați linkul" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -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" @@ -8525,9 +8954,10 @@ msgstr "Limba dvs. preferată" msgid "Press to attempt reconnection" msgstr "Apăsați pentru a încerca reconectarea" -#: src/components/Error.tsx:61 +#: 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 "Apăsați pentru a reîncerca" @@ -8536,7 +8966,7 @@ msgstr "Apăsați pentru a reîncerca" msgid "Press to view followers of this account that you also follow" msgstr "Apăsați pentru a vedea urmăritorii acestui cont pe care îi urmăriți și dvs." -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Previzualizare" @@ -8559,26 +8989,25 @@ msgstr "Confidențialitate" msgid "Privacy and security" msgstr "Confidențialitate și securitate" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Politica de Confidențialitate" @@ -8586,15 +9015,15 @@ 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:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Se procesează GIF-ul..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Se procesează videoclipul..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Se procesează..." @@ -8602,10 +9031,10 @@ msgstr "Se procesează..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "Substituent banner profil" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profilul nu a fost găsit" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publicați postarea" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 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:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publicați răspunsurile" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publicați răspunsul" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Notificări push" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "Push, Toată lumea" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "Push, Persoane pe care le urmăriți" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Cod QR copiat în clipboard!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Codul QR a fost descărcat!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Cod QR salvat în galeria dvs!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notificări pentru citate" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notificări pentru citate" msgid "Quote post" msgstr "Citați postarea" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Postarea citat a fost reatașată" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Postarea citat a fost detașată cu succes" @@ -8711,12 +9138,12 @@ msgstr "Postări citat dezactivate" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citate" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citatele acestei postări" @@ -8728,16 +9155,16 @@ msgstr "Limita ratei a fost depășită – ați încercat să vă modificați i msgid "Rate limit exceeded. Please try again later." msgstr "Limită de solicitări depășită. Vă rugăm încercați din nou mai târziu." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Reatașați citatul" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Reactivați linkul de invitație" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Reactivați linkul" @@ -8745,8 +9172,8 @@ msgstr "Reactivați linkul" msgid "React with {emoji}" msgstr "Reacționează cu {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reacții" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "citiți despre cum să utilizați filtrele de căutare" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Citiți postarea de pe blog" @@ -8812,11 +9239,11 @@ msgstr "Oameni reali." msgid "Reason for appeal" msgstr "Motivul contestației" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Primiți notificări în aplicație" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Primiți notificări push" @@ -8841,17 +9268,31 @@ msgstr "Recomandat" msgid "Reconnect" msgstr "Reconectare" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Reîmprospătați pagina pentru al vedea." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Respingere" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Respingere" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Respingere cerere de conversație" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Reîncărcați conversațiile" @@ -8863,6 +9304,8 @@ msgstr "Reîncărcați conversațiile" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Eliminați pe {displayName} din conversația de grup" msgid "Remove {displayName} from starter pack" msgstr "Eliminați pe {displayName} din pachetul de pornire" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Eliminați pe {displayName} din această conversație de grup" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Eliminați {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Eliminați {historyItem}" msgid "Remove account" msgstr "Eliminare cont" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Eliminați toate contactele" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Eliminare atașament" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Eliminare avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Eliminare banner" @@ -8914,8 +9362,9 @@ msgstr "Eliminare banner" msgid "Remove caption file" msgstr "Eliminare fișier subtitrare" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Eliminare încorporarea" @@ -8929,12 +9378,12 @@ msgstr "Eliminați fluxul" msgid "Remove feed?" msgstr "Eliminați fluxul?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Eliminare din conversație" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Eliminare din postări salvate" msgid "Remove from your feeds?" msgstr "Eliminați din fluxurile dvs.?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Eliminare imagine" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Eliminare repostare" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Eliminați sugestia" @@ -9009,11 +9458,11 @@ msgstr "Eliminați verificarea" msgid "Remove your verification for this account?" msgstr "Eliminați verificarea dvs. pentru acest cont?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Eliminat de autor" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Eliminat de dvs." @@ -9035,7 +9484,7 @@ msgstr "Eliminat din postări salvate" msgid "Removed from starter pack" msgstr "Eliminat din pachetul de pornire" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Răspuns la dvs." #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Răspunsuri" @@ -9104,14 +9552,14 @@ msgstr "Răspunsuri dezactivate" msgid "Replies to this post are disabled." msgstr "Răspunsurile la această postare sunt dezactivate." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Răspundeți" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Răspundeți ({0, plural, one {# răspuns} few {# răspunsuri} other {# de răspunsuri}})" @@ -9125,10 +9573,6 @@ msgstr "Răspuns ascuns de autorul firului" msgid "Reply Hidden by You" msgstr "Răspuns ascuns de dvs." -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notificări pentru răspunsuri" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Setările pentru răspunsuri sunt alese de autorul firului" @@ -9137,18 +9581,18 @@ msgstr "Setările pentru răspunsuri sunt alese de autorul firului" msgid "Reply sorting" msgstr "Sortare răspunsuri" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Vizibilitatea răspunsului actualizată" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Răspunsul a fost ascuns cu succes" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Raportare" @@ -9157,20 +9601,20 @@ msgstr "Raportare" msgid "Report account" msgstr "Raportare cont" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Raportați conversația" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Dialog raportare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Raportați fluxul" @@ -9179,12 +9623,12 @@ msgstr "Raportați fluxul" msgid "Report list" msgstr "Raportare listă" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Raportare mesaj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Raportare postare" @@ -9199,8 +9643,8 @@ msgstr "Raportare pachet de pornire" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Raport trimis" @@ -9213,7 +9657,7 @@ msgstr "Raportați această conversație" msgid "Report this feed" msgstr "Raportați acest flux" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Raportați această conversație de grup" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Raportați această listă" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Raportați această transmisiune în direct" @@ -9256,10 +9700,6 @@ msgstr "Repostare" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Repostare ({0, plural, one {O repostare} few {# repostări} other {# de repostări}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notificări pentru repostări" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Repostat de dvs." #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Repostări" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Repostări ale acestei postări" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Repostări ale repostărilor dvs." -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notificări pentru repostări ale repostărilor dvs." +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Cereți acces la conversația de grup" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Cerere aprobată." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Solicitare cod" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Cerere ignorată." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Cereți să vă alăturați" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Solicitat" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Cereri" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Cereri de alăturare" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Solicitați text alternativ înainte de a posta" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Solicitați un cod de e-mail pentru a vă conecta la contul dvs." @@ -9328,7 +9791,17 @@ msgstr "Necesar pentru acest furnizor" msgid "Required in your region" msgstr "Necesar în regiunea dvs." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Anulare cerere" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Anulați cererea de alăturare la conversația de grup" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Retrimitere" @@ -9373,8 +9846,8 @@ msgstr "Resetare stare înregistrare" msgid "Reset password" msgstr "Resetați parola" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Resincronizați contactele" @@ -9391,17 +9864,18 @@ msgstr "Reîncearcă ultima acțiune, care a eșuat" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Reîncearcă ultima acțiune, care a eșuat" msgid "Retry" msgstr "Încercați din nou" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Reîncercați să încărcați opțiunile de raport" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Reveniți la pagina anterioară" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Revine la acasă" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Revine la pagina anterioară" @@ -9451,10 +9925,10 @@ msgstr "GIF-uri triste" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Salvare modificări" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Salvați modificările?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Salvare schiță" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Salvați schița?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Salvați imaginea" msgid "Save new handle" msgstr "Salvați noul identificator" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Salvați codul QR" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Salvare în fluxurile mele" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Salvate" @@ -9534,25 +10010,25 @@ msgstr "Salvate" msgid "Saved Feeds" msgstr "Fluxuri salvate" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Postări salvate" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Salvat în fluxurile dvs." #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Spuneți salut!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Spuneți salut cuiva" @@ -9560,6 +10036,16 @@ msgstr "Spuneți salut cuiva" msgid "Scam" msgstr "Înșelătorie" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Știință" @@ -9576,18 +10062,18 @@ msgstr "Derulați spre dreapta" msgid "Scroll to top" msgstr "Derulați până sus" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Căutare" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Căutați în postările lui @{0}" @@ -9662,12 +10148,12 @@ msgstr "Căutați limbi" msgid "Search my posts" msgstr "Căutați în postările mele" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Căutare postări" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Căutați profile" msgid "Search..." msgstr "Căutare..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Cautați profiluri" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Pas de securitate necesar" @@ -9759,7 +10245,7 @@ msgstr "Selectați {langName}" msgid "Select a color" msgstr "Selectați o culoare" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Selectați un motiv" @@ -9828,7 +10314,7 @@ msgstr "Selectare GIF" msgid "Select GIF \"{0}\"" msgstr "Selectare GIF „{0}”" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Selectați membrii de conversație de grup" @@ -9850,7 +10336,7 @@ msgstr "Selectare limbă..." msgid "Select languages" msgstr "Selectați limbile" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Selectați serviciul de moderare" @@ -9904,11 +10390,11 @@ msgstr "Selectați interesele dvs. din opțiunile de mai jos" msgid "Select your preferred language for translations in your feed." msgstr "Selectați limba preferată pentru traduceri în flux." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Selectați canalele de notificare preferate" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Selectarea mai multor tipuri de conținut media nu este acceptată." @@ -9921,9 +10407,9 @@ msgstr "Comportamente periculoase sau autovătămare" msgid "Send code" msgstr "Trimitere cod" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Trimitere e-mail" @@ -9935,11 +10421,11 @@ msgstr "Trimitere e-mail" msgid "Send error report" msgstr "Trimitere raport de eroare" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Trimiteți feedback" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Trimitere mesaj" @@ -9952,7 +10438,7 @@ msgstr "Trimitere postare către {name}" msgid "Send post to..." msgstr "Trimitere postare către..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Trimitere raport către {title}" @@ -9960,7 +10446,7 @@ msgstr "Trimitere raport către {title}" msgid "Send the message from your phone" msgstr "Trimiteți mesajul de pe telefonul dvs." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Trimitere prin mesaj direct" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Trimis pe {0}" @@ -10015,14 +10501,14 @@ msgstr "Stabiliți data nașterii mai jos și vă veți întoarce la creat post msgid "Sets email for password reset" msgstr "Setează e-mailul pentru resetarea parolei" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Setări" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Setări pentru activitate de la alții" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Setări pentru notificări de aprecieri" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Setări pentru notificări de mențiuni" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Setări pentru notificări de urmăritor nou" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Setări pentru notificări pentru orice altceva" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Setări pentru notificări de aprecieri ale repostărilor dvs." -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 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:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Setări pentru notificări de citate" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Setări pentru notificări de răspuns" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Setări pentru notificări de repostare" @@ -10079,16 +10565,19 @@ msgstr "Activitate sexuală sau nuditate erotică." msgid "Sexually Suggestive" msgstr "Sugestiv Sexual" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Distribuiți" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Distribuiți oricum" @@ -10097,16 +10586,21 @@ msgstr "Distribuiți oricum" msgid "Share author DID" msgstr "Partajare DID autor" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Partajați imaginea" +#: 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 "Distribuiți link-ul" @@ -10114,6 +10608,11 @@ msgstr "Distribuiți link-ul" msgid "Share link dialog" msgstr "Dialogul de distribuire link" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Distribuiți postarea at:// URI" msgid "Share QR code" msgstr "Distribuiți codul QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Distribuiți acest flux" @@ -10142,8 +10641,8 @@ msgstr "Distribuiți acest pachet de pornire și ajutați oamenii să se alătur #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Partajare via..." @@ -10151,7 +10650,7 @@ msgstr "Partajare via..." msgid "Share your contacts to find friends" msgstr "Partajați-vă contactele pentru a găsi prieteni" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Tester Preferințe Partajate" @@ -10167,16 +10666,16 @@ msgstr "Afișare text alternativ" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Afișați oricum" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Afișare etichetă de automatizare" @@ -10197,8 +10696,8 @@ msgstr "Afișare opțiuni de personalizare" msgid "Show group chat updates" msgstr "Afișare actualizări conversație de grup" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Afișați mai puține asemănătoare" @@ -10219,8 +10718,8 @@ msgstr "Afișați evenimente în direct în fluxul dvs. Descoperiți" msgid "Show More" msgstr "Afișați mai multe" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Afișați mai multe asemănătoare" @@ -10246,8 +10745,8 @@ msgstr "Afișați răspunsurile" msgid "Show replies as" msgstr "Afișați răspunsurile ca" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Afișați răspunsul pentru toată lumea" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Afișează avertismente și filtrează din fluxuri" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Afișați când sunteți în direct" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Afișează informații despre când a fost creată această postare" @@ -10297,15 +10796,17 @@ msgstr "Afișează conținutul" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Conectați-vă sau creați un cont" msgid "Sign in or create your account to join the conversation!" msgstr "Conectați-vă sau creați-vă un cont pentru a vă alătura conversației!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Conectați-vă pentru a accepta invitație." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Conectați-vă la un cont care nu este listat" @@ -10337,8 +10842,12 @@ msgstr "Conectați-vă la un cont care nu este listat" msgid "Sign in to Bluesky or create a new account" msgstr "Conectați-vă la Bluesky sau creați un cont nou" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Conectați-vă pentru a solicita acces la această conversație de grup." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Conectați-vă pentru a vizualiza postarea" @@ -10348,9 +10857,9 @@ msgstr "Conectați-vă pentru a vizualiza postarea" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Deconectare" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Deconectare" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Deconectare?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Omiteți postările goale?" @@ -10405,7 +10914,7 @@ msgstr "Omiteți introducerea și începeți să vă folosiți contul" msgid "Skip to next step" msgstr "Omiteți la pasul următor" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "glisare" @@ -10413,7 +10922,7 @@ msgstr "glisare" msgid "Smaller" msgstr "Mai mic" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Amânare memento" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Cineva a părăsit grupul" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Cineva a reacționat cu {0}" @@ -10487,17 +10996,22 @@ msgstr "Cineva a fost eliminat(ă)" msgid "Someone was removed from the group" msgstr "Cineva a fost eliminat din grup" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Ceva nou este aici" + +#: 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 "Ceva nu a fost în regulă cu datele pe care încercați să le raportați. Vă rugăm să contactați asistența." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Ceva nu a mers bine" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Ceva nu a mers bine!" msgid "Something went wrong. Please try again in a moment." msgstr "Ceva nu a mers bine, vă rugăm încercați din nou." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 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:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "E ceva în neregulă? Anunțați-ne." @@ -10564,11 +11078,16 @@ msgstr "Spam sau alt comportament inautentic sau înșelăciune" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Începeți o conversație și ea va apărea aici." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Începeți o conversație nouă" @@ -10582,17 +11101,17 @@ msgstr "Începeți să adaugați persoane" msgid "Start adding people!" msgstr "Începeți să adaugați persoane!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Începeți conversația" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Începeți conversația cu {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Pachet de pornire" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Transmiteți în direct pe Twitch? Setați-vă starea în direct pe Bluesky pentru a adăuga o insignă avatarului dvs. Atingând-o, utilizatorii vor fi redirecționați direct către transmisiunea dvs." @@ -10671,8 +11190,8 @@ msgstr "Transmiteți în direct pe Twitch? Setați-vă starea în direct pe Blue #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Trimitere" @@ -10684,9 +11203,9 @@ msgstr "Depuneți contestație" msgid "Submit Appeal" msgstr "Depuneți contestație" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Trimiteți raportul" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Abonare" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "Abonați-vă pe {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "Abonați-vă la {publicationTitle} pe {0}" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Succes" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Succes!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "V-ați alăturat cu succes conversației de grup!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verificat cu succes" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Sugerate" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Apus de soare" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Suport" msgid "Support for this feature in your country has not been enabled yet! Please check back later." 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:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Conturile suspendate nu pot participa la o conversație de grup." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Conturile suspendate nu pot participa la conversație." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Comutare cont" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Comutare conturi" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Comutați la {0}" @@ -10824,11 +11347,15 @@ msgstr "Jurnal de sistem" msgid "Tags only" msgstr "Doar etichete" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Atingeți pentru detalii" @@ -10854,33 +11381,51 @@ msgstr "Atingeți pentru a confirma că înțelegeți și sunteți de acord cu a msgid "Tap to close context menu" msgstr "Atingeți pentru a închide meniul contextual" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Atingeți pentru a copia acest link de invitație" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Atingeți pentru a închide" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Atingeți pentru a vă alătura imediat acestei conversații de grup" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Atingeți pentru a deschide această conversație de grup" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Atingeți pentru a elimina" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Atingeți pentru a vă elimina reacția {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Atingeți pentru a reîncerca" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Atingeți pentru a afișa {0} reacții" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Atingeți pentru a afișa toate reacțiile" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Atingeți pentru a vizualiza reacțiile" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Termenii de Serviciu" @@ -10939,7 +11484,7 @@ msgstr "Text & etichete" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Câmp introducere text" @@ -10981,9 +11526,9 @@ msgstr "Asta-i tot, oameni buni!" msgid "That's everything!" msgstr "Asta e tot!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Contul va putea interacționa cu dvs. după deblocare." @@ -11049,6 +11594,11 @@ msgstr "Următoarele setări vor fi utilizate ca valori implicite atunci când c msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Legislația din regiunea dvs. necesită verificarea vârstei pentru a accesa unele caracteristici. Atingeți pentru a afla mai multe." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "Limita de membri a fost atinsă." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Postarea la care răspundeți a fost marcată ca fiind scrisă în {suggestedLanguageName} de către autorul său. Doriții să răspundeți în <0>{suggestedLanguageName}?" @@ -11057,10 +11607,10 @@ msgstr "Postarea la care răspundeți a fost marcată ca fiind scrisă în {sugg msgid "The Privacy Policy has been moved to <0/>" msgstr "Politica de Confidențialitate a fost mutată la <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "Videoclipul selectat este mai mare de {videoSize} MB. Vă rugăm să încercați din nou cu un fișier mai mic." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "Videoclipul selectat este mai mare de {VIDEO_MAX_SIZE_MB} MB. Vă rugăm să încercați din nou cu un fișier mai mic." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Temă" 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 "Există o limită pentru cât de des vă puteți schimba data nașterii. Poate fi necesar să așteptați o zi sau două înainte de a o actualiza din nou." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Nu există niciun link de invitație pentru această conversație de grup." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "A apărut o problemă la încărcarea GIF-urilor. Verificați-vă conexiunea și încercați din nou." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "A apărut o problemă la actualizarea fluxurilor dvs., vă rugăm să vă verificați conexiunea la internet și să încercați din nou." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "A apărut o problemă! {0}" @@ -11221,6 +11774,14 @@ msgstr "Acestea sunt setările dvs. implicite" msgid "These settings only apply to the Following feed." msgstr "Aceste setări se aplică numai fluxului Urmăriți." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Acest {screenDescription} a fost etichetat:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Această contestație va fi trimisă la <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Această contestație va fi trimisă la serviciul de moderare al companiei Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Această contestație va fi trimisă la serviciul de moderare al compani msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Acest autor a ales să facă postările vizibile doar persoanelor care sunt conectate." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Acest buton permite celorlalți să deschidă aplicația Germ DM pentru a vă trimite un mesaj. Puteți gestiona vizibilitatea din aplicația Germ DM, sau puteți deconecta contul Bluesky de la Germ DM apăsând butonul de mai jos." @@ -11271,11 +11832,21 @@ msgstr "Acest buton permite celorlalți să deschidă aplicația Germ DM pentru msgid "This chat has ended" msgstr "Această conversație s-a încheiat" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Această conversație este plină" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Această conversație este blocată" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Această conversație a fost deconectată" @@ -11310,7 +11881,11 @@ msgstr "Acest conținut nu este disponibil deoarece unul dintre utilizatorii imp msgid "This content is not viewable without a Bluesky account." msgstr "Acest conținut nu poate fi vizualizat fără un cont Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Această conversație este blocată." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Această conversație este cu un cont șters sau dezactivat. Apăsați pentru opțiuni" @@ -11318,7 +11893,7 @@ msgstr "Această conversație este cu un cont șters sau dezactivat. Apăsați p msgid "This draft will be permanently deleted." msgstr "Această schiță va fi ștearsă permanent." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Acest e-mail este deja asociat contului dvs." @@ -11356,11 +11931,15 @@ msgstr "Acest flux este gol." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Acest flux nu mai este online. În schimb, afișăm <0>Descoperă." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Acest identificator este rezervat. Vă rugăm să încercați unul diferit." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Această imagine nu a putut fi utilizată. Încercați un alt format ca msgid "This information is private and not shared with other users." msgstr "Această informație este privată și nu este partajată cu alți utilizatori." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Acest link de invitație a fost dezactivat." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Acest link de invitație este invalid" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Aceasta este o stare goală" @@ -11377,7 +11964,7 @@ msgstr "Aceasta este o stare goală" msgid "This is not a valid link" msgstr "Acesta nu este un link valid" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Această etichetă anunță lumea că acest cont este automatizat. Dacă este activată, această etichetă apare lângă numele contului în profilul și postările acestuia. Poate fi activată sau dezactivată oricând." @@ -11410,13 +11997,17 @@ msgstr "Această listă - creată de dvs. - conține posibile încălcări ale r msgid "This list is empty." msgstr "Această listă este goală." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Acest mesaj este ascuns deoarece blocați acest utilizator." @@ -11434,7 +12025,7 @@ msgstr "Această persoană vă blochează" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Această postare pretinde că a fost creată pe <0>{0}, dar a fost văzută prima dată de Bluesky pe <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Această postare este vizibilă numai pentru utilizatorii conectați." msgid "This post was deleted by its author" msgstr "Această postare a fost ștearsă de autorul său" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Autorul acestei postări a dezactivat postările citate." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Acest profil este vizibil numai pentru utilizatorii conectați. Nu va fi vizibil pentru persoanele care nu sunt conectate." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Acest răspuns va fi sortat într-o secțiune ascunsă în partea de jos a firului dvs. și va amuții notificările pentru răspunsurile ulterioare - atât pentru dvs., cât și pentru ceilalți." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Acest ecran este disponibil doar pentru conversațiile de grup." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Acest utilizator nu are urmăritori." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Acest utilizator v-a blocat și nu-i se pot scrie mesaje." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Acest utilizator a dezactivat conversația și nu-i se pot scrie mesaje." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Această acțiune va șterge ireversibil contul dvs. Bluesky <0>{current msgid "This will remove @{0} from the quick access list." msgstr "Aceasta va elimina @{0} din lista de acces rapid." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Aceasta va elimina postarea dvs. din această postare citat pentru toți utilizatorii și o va înlocui cu un substituent." @@ -11574,7 +12166,7 @@ msgstr "Preferințe fir" msgid "Threaded" msgstr "Fire" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Preferințe fire" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Pentru a dezactiva metoda A2F prin e-mail, vă rugăm să verificați accesul la adresa de e-mail." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Pentru a dezactiva metoda A2F prin e-mail, verificați accesul la <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Sus" msgid "Top replies first" msgstr "Răspunsurile de top primele" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Subiect" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Traducere" @@ -11667,8 +12259,8 @@ msgstr "Tradus" msgid "Translating" msgstr "Se traduce" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Se traduce…" @@ -11702,7 +12294,7 @@ msgstr "Videoclipuri în tendințe" msgid "Trolling" msgstr "Trolling" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Încrederea rezultă din relații, comunități și context comun, așa că activăm și <0>verificatori de încredere: organizații care pot emite în mod direct verificări." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Încercați un alt termen de căutare, sau <0>citiți despre cum să utilizați filtrele de căutare." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Încercați din nou" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Încercați din nou" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Încercați Google Translate" +#: 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 "TV" @@ -11763,13 +12369,17 @@ msgstr "Serviciul dvs. nu poate fi contactat. Vă rugăm să vă verificați con msgid "Unable to delete" msgstr "Imposibil de șters" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Imposibil de preluat cererile de alăturare." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Imposibil de găsit destinatarul selectat." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Imposibil de găsit destinatarul selectat." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Indisponibil" msgid "Unavailable feed information" msgstr "Informații flux indisponibile" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Deblocare" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Deblocare" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Deblocați pe {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Deblocare cont" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Deblocare cont?" @@ -11837,8 +12452,8 @@ msgstr "Deblocare listă" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Anulare" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Refacere repostare ({0, plural, one {o repostare} few {# repostări} other {# de repostări}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Nu mai urmăriți pe {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Nu mai urmăriți contul" @@ -11872,7 +12487,7 @@ msgstr "Nu mai urmăriți contul" msgid "Unfollows the user" msgstr "Anulează urmărirea utilizatorului" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Din păcate, niciunul dintre etichetatorii la care sunteți abonat nu acceptă acest tip de raport." @@ -11884,14 +12499,6 @@ msgstr "Din păcate, data nașterii pe care ați salvat-o în profilul dvs. vă msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Din păcate, vârsta declarată indică faptul că nu aveți vârsta necesară pentru a accesa Bluesky în regiunea dvs." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Anulați invitația" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Anulați invitația utilizatorului {displayName} din această conversație de grup" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Verificator necunoscut" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Nu mai apreciați" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Nu mai apreciați ({0, plural, one {o apreciere} few {# aprecieri} other {# de aprecieri}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Deblocare conversație" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Deblocați această conversație de grup" @@ -11939,14 +12546,14 @@ msgstr "Dezamuțire" msgid "Unmute {0}" msgstr "Dezamuțiți {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Dezamuțire cont" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Dezamuțire conversație" @@ -11955,12 +12562,12 @@ msgstr "Dezamuțire conversație" msgid "Unmute list" msgstr "Dezamuțire listă" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Dezamuțiți această conversație de grup" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Dezamuțire fir" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Anulați fixarea" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Anulați fixarea fluxului" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Anulați fixarea de la acasă" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Anulați fixarea de la profil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Anulați fixarea listei de moderare" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Fixarea {0} anulată de la pagina Acasă" @@ -12030,14 +12637,18 @@ msgstr "Dezabonare de la acest etichetator" msgid "Unsubscribed from list" msgstr "Dezabonat de la listă" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Conținut clipboard neacceptat" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Tip videoclip neacceptat: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Actualizare" msgid "Update <0>{displayName} in Lists" msgstr "Actualizați <0>{displayName} în Liste" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Actualizați aplicația" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Actualizare e-mail" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Actualizați linkul de invitație" @@ -12065,11 +12680,15 @@ msgstr "Actualizați linkul de invitație" msgid "Update to {domain}" msgstr "Actualizare la {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Actualizați aplicația la cea mai recentă versiune pentru a vă alătura!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Actualizați-vă aplicația" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Actualizați-vă aplicația pentru a o vedea." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Actualizați-vă e-mailul" @@ -12080,17 +12699,17 @@ msgstr "Actualizați-vă e-mailul" msgid "Update your location" msgstr "Actualizați-vă locația" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Actualizarea atașamentului din citat a eșuat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Actualizarea vizibilității răspunsului a eșuat" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Încărcați o fotografie în schimb" @@ -12098,39 +12717,40 @@ msgstr "Încărcați o fotografie în schimb" msgid "Upload a text file to:" msgstr "Încărcați un fișier text la:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Încărcați de la cameră" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Încărcați din fișiere" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Încărcați din bibliotecă" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Se încarcă GIF-ul..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Se încarcă imaginile..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Se încarcă miniatura link-ului..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Se încarcă videoclipul..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "utilizator" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Utilizator blocat" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Listă de utilizatori creată de {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Listă de utilizatori creată de {0}" @@ -12255,12 +12875,12 @@ msgstr "utilizatori urmăriți de <0>@{0}" msgid "users following <0>@{0}" msgstr "utilizatorii care urmăresc pe <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Utilizatori pe care îi urmăriți" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Utilizatori pe care îi urmăriți" @@ -12277,7 +12897,7 @@ msgstr "Verificare eșuată, încercați din nou." msgid "Verification settings" msgstr "Setări de verificare" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Setări de verificare" @@ -12304,8 +12924,8 @@ msgstr "Verificați din nou" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Verificați codul" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verificați înregistrarea DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verificați codul de e-mail" @@ -12349,7 +12969,7 @@ msgstr "Verificați acest cont?" msgid "Verify your age" msgstr "Verificați-vă vârsta" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Versiune {0}" msgid "Video" msgstr "Videoclip" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Procesarea videoclipului a eșuat" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Flux video" @@ -12419,7 +13039,7 @@ msgstr "Videoclipul nu a fost găsit." msgid "Video settings" msgstr "Setări videoclip" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Videoclip încărcat" @@ -12432,18 +13052,18 @@ msgstr "Videoclip: {0}" msgid "Videos" msgstr "Videoclipuri" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Vizualizare" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "Vizualizați {0}" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Vizualizați profilul lui {0}" @@ -12467,20 +13087,15 @@ msgstr "Vizualizați profilul lui {0}" msgid "View {0}’s profile" msgstr "Vizualizați profilul {0}" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Vizualizați profilul utilizatorului {displayName}" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "Vizualizare {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "Vizualizați profilul utilizatorului @{0}" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Vizualizați profilul utilizatorului blocat" @@ -12503,10 +13118,18 @@ msgstr "Vizualizare detalii" msgid "View full thread" msgstr "Vizualizați întregul fir" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Vizualizați cererile de adăugare la conversația de grup" +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Vizualizați cererile primite" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Vizualizați cererile de alăturare primite acestei conversații de grup" + #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" msgstr "Vizualizați informații despre aceste etichete" @@ -12522,7 +13145,7 @@ msgstr "Vedeți mai multe" msgid "View more trending videos" msgstr "Vizualizați mai multe videoclipuri în tendințe" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Vizualizare postare" @@ -12539,10 +13162,10 @@ msgstr "Vizualizați profilul" msgid "View profile banner" msgstr "Vizualizați bannerul profilului" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Vizualizare publicare" @@ -12550,7 +13173,7 @@ msgstr "Vizualizare publicare" msgid "View the avatar" msgstr "Vizualizați avatarul" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Vizualizați linkul de invitație pentru această conversație de grup" @@ -12563,7 +13186,7 @@ msgstr "Vizualizați serviciul de etichetare furnizat de @{0}" msgid "View this user's verifications" msgstr "Vizualizați verificările acestui utilizator" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Vizualizați utilizatorii care apreciază acest flux" @@ -12596,8 +13219,8 @@ msgstr "Vizualizați conturile dvs. amuțite" msgid "View your verifications" msgstr "Vizualizați-vă verificările" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Vizualizează imaginea completă" @@ -12640,8 +13263,8 @@ msgstr "Avertizare conținut" msgid "Warn content and filter from feeds" msgstr "Avertizați conținutul și filtrați din fluxuri" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Vizionați acum" @@ -12665,11 +13288,15 @@ msgstr "Nu am putut găsi niciun rezultat pentru acea etichetă." msgid "We couldn't find any results for that topic." msgstr "Nu am putut găsi niciun rezultat pentru acest subiect." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Nu am putut încărca această conversație" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Nu am putut încărca cererile de alăturare ale acestei conversații" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Nu am putut încărca setările acestei conversații" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Vă recomandăm să selectați cel puțin două interese." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Am trimis un e-mail la <0>{0} care conține un link. Faceți clic pe el pentru a finaliza procesul de verificare a e-mailului." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Nu am reușit să determinăm dacă aveți permisiunea de a încărca videoclipuri. Vă rugăm să încercați din nou." @@ -12744,12 +13371,12 @@ msgstr "Nu am putut primi verificarea din cauza unei probleme de conexiune. Este msgid "We will let you know when your account is ready." msgstr "Vă vom anunța când contul dvs. este gata." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Vă vom anunța când vă vom găsi prietenii." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vom trimite un e-mail la <0>{0} care conține un link. Faceți clic pe el pentru a finaliza procesul de verificare a e-mailului." @@ -12779,12 +13406,12 @@ msgstr "Întâmpinăm probleme la inițializarea procesului de verificare a vâr msgid "We're having network issues, try again" msgstr "Avem probleme cu rețeaua, încercați din nou" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Avem probleme cu rețeaua, încercați din nou" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 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." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Ne pare rău! Nu găsim pagina pe care o căutați." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Cum doriți să vă numiți pachetul de pornire?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Care-i treaba?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Când atingeți o bifă, veți vedea ce organizații au acordat verificarea." @@ -12878,7 +13505,7 @@ msgstr "Când atingeți o bifă, veți vedea ce organizații au acordat verifica msgid "Who can interact with this post?" msgstr "Cine poate interacționa cu această postare?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Cine se poate alătura acestei conversații de grup și cum" @@ -12887,13 +13514,13 @@ msgstr "Cine se poate alătura acestei conversații de grup și cum" msgid "Who can reply" msgstr "Cine poate răspunde" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Cine poate verifica?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Hopa!" @@ -12939,19 +13566,19 @@ msgstr "De ce ar trebui revizuit acest pachet de pornire?" msgid "Why should this user be reviewed?" msgstr "De ce ar trebui revizuit acest utilizator?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Doriți să blocați acest utilizator sau/și să ștergeți această conversație?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Doriți să blocați acest utilizator și/sau să părăsiți această conversație?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Doriți să salvați acest lucru ca schiță pentru a o edita mai târzi msgid "Write a post" msgstr "Scrieți o postare" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Scrieți o postare" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Scrieți-vă răspunsul" @@ -12978,7 +13605,8 @@ msgstr "Scriitori" msgid "Wrong DID returned from server. Received: {0}" msgstr "DID greșit returnat de la server. Primit: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Tipul greșit de conversație" @@ -13005,11 +13633,11 @@ msgstr "Da, ștergeți-mi contul" msgid "Yes, delete this starter pack" msgstr "Da, ștergeți acest pachet de pornire" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Da, detașare" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Da, ascundere" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "Dvs. blocați pe {0}" @@ -13068,7 +13696,7 @@ msgstr "Sunteți în direct" msgid "You are no longer live" msgstr "Nu mai sunteți în direct" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Nu aveți voie să încărcați videoclipuri." @@ -13103,7 +13731,7 @@ msgstr "De asemenea, puteți să vă <0>dezactivați temporar contul. Profil #: 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 "De asemenea, puteți să vă dezactivați temporar contul și să-l reactivați în orice moment." +msgstr "De asemenea, puteți descoperi noi fluxuri personalizate pe care să le urmăriți." #: 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." @@ -13117,21 +13745,30 @@ msgstr "Puteți renunța întotdeauna și șterge datele dvs." msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Puteți alege dacă notificările de conversații să aibă sunet în setările de conversație în cadrul aplicației" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Puteți continua conversațiile în curs, indiferent de setarea pe care o alegeți." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Acum puteți alege să fiți notificat când anumite persoane postează. Dacă există cineva de la care doriți actualizări la timp, accesați-le profilul și găsiși noua pictogramă clopoțel lângă butonul „Urmărire”." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Acum vă puteți conecta cu noua parolă." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Puteți salva doar schițe până la 1000 de caractere." @@ -13139,11 +13776,11 @@ msgstr "Puteți salva doar schițe până la 1000 de caractere." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Puteți salva doar schițe până la 1000 de caractere. Doriți să renunțați la această postare înainte de a vizualiza schițele?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Puteți selecta doar un singur GIF odată." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Puteți selecta doar un singur videoclip odată." @@ -13155,10 +13792,10 @@ msgstr "Puteți să vă reactivați contul pentru a continua să vă conectați. msgid "You can read chat history but can’t send new messages." msgstr "Puteți citi istoricul conversației, dar nu puteți trimite mesaje noi." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Puteți selecta până la {MAX_IMAGES, plural, one {} few {# imagini}other {# de imagini}} în total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,10 +13803,15 @@ msgstr "Puteți selecta până la {MAX_IMAGES, plural, one {} few {# imagini}oth msgid "You can update this later from your settings." msgstr "Puteți actualiza acest lucru mai târziu în setări." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 -msgid "You cannot create a group chat yet." +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "Încă nu puteți crea conversații de grup." + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13197,6 +13839,10 @@ msgstr "Nu aveți fluxuri salvate." msgid "You got here first" msgstr "Ați ajuns primul aici" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Ați fost eliminat anterior din acest grup și nu vă puteți alătura folosind acest link." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Trebuie să aveți cel puțin 13 ani pentru a utiliza Bluesky. Citiți <0>Termenii de Serviciu pentru mai multe informații." @@ -13332,11 +13982,12 @@ msgstr "Trebuie să aveți cel puțin 13 ani pentru a utiliza Bluesky. Citiți < 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." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Trebuie să permiteți accesul la biblioteca foto pentru a salva un cod QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Trebuie să permiteți accesul la biblioteca dvs. media." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Ați reacționat cu {0}" @@ -13368,8 +14023,13 @@ msgstr "Ați reacționat cu {0} la {target}" msgid "You recently changed your birthdate" msgstr "V-ați schimbat recent data nașterii" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Ați solicitat să vă alăturați" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Veți fi deconectat de la toate conturile dvs." @@ -13378,11 +14038,11 @@ msgstr "Veți fi deconectat de la toate conturile dvs." msgid "You will no longer receive notifications for {0}" msgstr "Nu veți mai primi notificări pentru {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Nu veți mai primi notificări pentru acest fir" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Acum veți primi notificări pentru acest fir" @@ -13390,12 +14050,12 @@ msgstr "Acum veți primi notificări pentru acest fir" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Veți primi un e-mail cu un „cod de resetare”. Introduceți codul aici, apoi introduceți noua parolă." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Nu vă veți putea alătura decât dacă sunteți invitat." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Dvs.: {message}" @@ -13429,6 +14089,10 @@ msgstr "Veți începe să primiți notificări pentru {0}!" msgid "You'll stay updated with these feeds" msgstr "Veți rămâne la zi cu aceste fluxuri" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Sunteți la coadă" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Ați atins numărul maxim de schițe" @@ -13475,11 +14139,11 @@ msgstr "Ați atins numărul maxim de solicitări permise. Vă rugăm să încerc msgid "You've reached the start of the active content." msgstr "Ați ajuns la începutul conținutului activ." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Ați atins limita zilnică pentru încărcări de videoclipuri (prea mulți octeți)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 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)" @@ -13499,10 +14163,18 @@ msgstr "Contul dvs. a fost șters, pe curând! ✌️" msgid "Your account has been suspended" msgstr "Contul dumneavoastră a fost suspendat" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Contul 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 +msgid "Your account is too new" +msgstr "Contul dvs. este prea nou" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Repozitoriul contului dvs., care conține toate înregistrările de date publice, poate fi descărcat ca fișier „CAR”. Acest fișier nu include încorporările media, cum ar fi imaginile sau datele dvs. private, care trebuiesc preluate separat." @@ -13519,7 +14191,7 @@ msgstr "Contestația dvs. a fost trimisă. Dacă contestația dvs. este acceptat msgid "Your birth date" msgstr "Data nașterii" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Conversațiile dvs. au fost dezactivate" @@ -13527,11 +14199,11 @@ msgstr "Conversațiile dvs. au fost dezactivate" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Alegerea dvs. va fi memorată pentru link-urile viitoare. Puteți să o schimbați oricând în setări." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Persoana dvs. de contact {firstAuthorLink} este pe Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Persoana dvs. de contact {firstAuthorName} este pe Bluesky" @@ -13561,7 +14233,7 @@ msgstr "E-mailul dvs." msgid "Your email appears to be invalid." msgstr "E-mailul dvs. pare a fi nevalid." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "E-mailul dvs. nu a fost încă verificat. Vă rugăm să vă verificați adresa de e-mail pentru a vă bucura de toate caracteristicile Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Fluxul urmărit este gol! Urmăriți mai mulți utilizatori pentru a ved msgid "Your full handle will be <0>@{0}" msgstr "Identificatorul dvs. complet va fi <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Locația dvs. a fost actualizată." msgid "Your muted words" msgstr "Cuvintele dvs. amuțite" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Numele și avatarul dvs. și numele conversației de grup vor fi vizibile pentru toată lumea." +#: 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 "Numele, avatarul dvs., numele conversației de grup și numărul de membrii vor fi vizibile pentru toată lumea." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Postarea dvs. a fost trimisă" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Postările dvs. au fost trimise" @@ -13635,7 +14307,7 @@ msgstr "Postările dvs. au fost trimise" msgid "Your preferred language" msgstr "Limba dvs. preferată" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Imaginea dvs. de profil" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Răspunsul dvs. a fost trimis" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Raportul dvs. va fi trimis la <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Raportul dvs. va fi trimis la <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Interesele dvs. selectate ne ajută să vă oferim conținut care vă interesează." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 684e9cada5..91bced3619 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Категория \"{interestsDisplayName}\" (активна)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(содержит встроенный контент)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr " {0, plural, one {# лайк} few {# лайка} other {# лайков}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# минуту} few {# минуты} other {# мину msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# месяц} few {# месяца} other {# месяцев}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# секунду} few {# секунды} other {# се #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>в <1>тексте и тегах" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} подписок" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} из 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} отреагировал {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "{0}, список от {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Аватар {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}м" msgid "{0}s" msgstr "{0}с" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {час} few {часа} other {часов msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {минута} few {минуты} other {минут}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} подписались на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} и <0>{{additionalAuthorsCount, plural,one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} другие}} понравился ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} сняли верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} репостнули ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} репостнули ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} зарегистрировались с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} и <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} верифицировали вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} подписался на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} подписался на вас в ответ" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} понравился ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} снял верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} репостнул ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} репостнул ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} зарегистрировался с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} верифицировал вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} подписались на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другому} other {{formattedAuthorsCount} другим}} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName}{additionalAuthorsCount, plural, one {{formattedAuthorsCount}} few {{formattedAuthorsCount}} many {{formattedAuthorsCount}} other {{formattedAuthorsCount}}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} сняли верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} репостнули ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} репостнули ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} зарегистрировались с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} и {additionalAuthorsCount, plural, one {{formattedAuthorsCount} другой} other {{formattedAuthorsCount} других}} верифицировали вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} подписался на вас" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} подписался на вас в ответ" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} понравилась ваша лента" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} понравился ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "Пользователю {firstAuthorName} понравился ваш репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} снял верификацию с вашей учётной записи" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} репостнул ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "Пользователь {firstAuthorName} сделал репост вашего репоста" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} зарегистрировался с вашим стартовым набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} верифицировал вас" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} верифицировал вас" msgid "{following} following" msgstr "{following} подписок" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} не может получать сообщения" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# час {minutesString}} few {# часа {minutesS msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# час} few {# часа} other {# часов}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# непрочитанный элемент} other {# непрочитанных элементов}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "{userName} верифицирован" msgid "{userName}'s verifications" msgstr "Верификации {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, и {2, plural, one {# другой} other {# д #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {подписчик} few {подписчика} other {подписчиков}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {подписка} few {подписки} other {подписок}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {лайк} few {лайка} 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {цитирование} few {цитирования} other {цитирований}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {репост} few {репоста} other {репостов}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {сохранение} few {сохранения} other {сохранений}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} участников" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "Произошла сетевая ошибка. Пожалуйста, п #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Произошла сетевая ошибка. Пожалуйста, проверьте подключение к интернету." @@ -804,7 +884,7 @@ msgstr "Произошла сетевая ошибка. Пожалуйста, п msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Новая форма верификации" @@ -827,11 +907,11 @@ msgstr "Скриншот страницы профиля со значком к 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Принять" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Принять запрос" @@ -860,17 +950,26 @@ msgstr "Принять запрос" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Доступность" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Настройки Доступности" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Настройки Доступности" msgid "Account" msgstr "Учётная запись" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Учётная запись заблокирована" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Вы подписались на учётную запись" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Учётная запись удалена из быстрого доступа" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Учётная запись разблокирована" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Вы отписались от учётной записи" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Учётная запись больше не игнорируется" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Учётные записи с фигурной синей галочкой <0><1/> могут верифицировать другие учётные записи. Эти доверенные верификаторы выбраны Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Активность от других" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Уведомления от активностей" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Добавить" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Добавьте альтернативный текст (необяза #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Добавить другой пост" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Добавить еще один пост в ветку" @@ -1035,7 +1130,7 @@ msgstr "Добавить пароль приложения" msgid "Add App Password" msgstr "Добавить пароль приложения" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Добавить эмодзи-реакцию" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Добавить медиа к посту" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Добавить подробности (опционально)" @@ -1091,6 +1186,10 @@ msgstr "Добавить людей" 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 "Добавить реакцию" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "Дополнительные сведения (не больше 1000 символов)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Дополнительные сведения (до 300 символов)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "Проверка возраста занимает всего лишь несколько минут" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Все" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Разрешите доступ к своим личным сообще msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "Уже есть учётная запись?" msgid "Already signed in as @{0}" msgstr "Уже вошли как @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "АЛЬТ" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Альтернативный текст" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Альтернативный текст описывает изображение для незрячих и слабовидящих пользователей и предоставляет дополнительный контекст для всех." @@ -1387,7 +1486,7 @@ msgstr "Возникла ошибка" msgid "An error occurred" msgstr "Возникла ошибка" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Возникла ошибка при сжатии видео." @@ -1421,7 +1520,8 @@ msgstr "При загрузке видео возникла ошибка. Пож msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "При сохранении QR-кода возникла ошибка!" @@ -1432,11 +1532,11 @@ msgstr "При сохранении QR-кода возникла ошибка!" msgid "An error occurred while trying to follow all" msgstr "Возникла ошибка при попытке подписаться на всех" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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 "Иллюстрация, показывающая, что Bluesky выбирает доверенных верификаторов, а те, в свою очередь, верифицируют учётные записи индивидуальных пользователей." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "При попытке открыть чат возникла пробл #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Возникла проблема, пожалуйста, попробуйте ещё раз." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Макет iPhone с интерфейсом Bluesky на экране, в приложении открыт профиль пользователя, рядом с его именем стоит синяя галочка." @@ -1539,13 +1643,17 @@ msgstr "Любой" msgid "Anyone can interact" msgstr "Любой может взаимодействовать" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "Любой, кто подписан на меня" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Имена паролей приложений должны состоя msgid "App passwords" msgstr "Пароли приложений" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Пароли приложений" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Обращение отправлено" @@ -1632,14 +1740,14 @@ msgstr "Обжаловать приостановку" msgid "Appeal Suspension" msgstr "Обжаловать приостановку" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Применить запрос на слияние" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Архивный пост от {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Архивный пост" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Вы уверены, что хотите удалить пароль приложения \"{0}\"?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Вы уверены, что хотите удалить этот ста msgid "Are you sure you want to discard your changes?" msgstr "Вы уверены, что хотите отменить изменения?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Вы уверены, что хотите выйти из беседы?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Вы уверены, что хотите покинуть эту беседу? Ваши сообщения будут удалены для вас, но не для других участников." +#: src/components/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 "Вы уверены, что хотите удалить это из своих лент?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Вы действительно хотите удалить этот пост?" @@ -1724,8 +1838,8 @@ msgstr "Искусство" msgid "Artistic or non-erotic nudity." msgstr "Художественная или неэротическая обнаженность." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Назначьте тему для алгоритма" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Автовоспроизведение видео и GIF-файлов" msgid "Available" msgstr "Доступен" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Доступен" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Доступен" msgid "Back" msgstr "Назад" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Вернуться к чатам" @@ -1832,7 +1948,7 @@ msgstr "Чтобы создать пост или ответить, необхо msgid "Before creating a starter pack, you must first verify your email." msgstr "Чтобы создать стартовый набор, необходимо сначала подтвердить свою электронную почту." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Чтобы принять этот запрос на чат, необходимо сначала подтвердить свою электронную почту." @@ -1840,13 +1956,14 @@ msgstr "Чтобы принять этот запрос на чат, необх msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Перед тем, как вы будете получать уведомления о постах пользователя {name}, вы должны подтвердить свой адрес электронной почты." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Чтобы написать другому пользователю, необходимо сначала подтвердить свою электронную почту." @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Дата рождения" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Заблокировать" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Заблокировать" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Заблокировать список" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Блокировать или пожаловаться" @@ -1936,9 +2047,9 @@ msgstr "Заблокировать эти учётные записи?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Заблокировать пользователя" @@ -1946,9 +2057,9 @@ msgstr "Заблокировать пользователя" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Заблокировать пользователя" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Заблокировано" @@ -1964,14 +2075,12 @@ msgstr "Заблокировано" msgid "Blocked accounts" msgstr "Заблокированные учётные записи" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Заблокированные учётные записи" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Заблокированные учётные записи не могут вам отвечать, упоминать вас в своих постах, и взаимодействовать с вами каким-либо другим образом." @@ -1987,7 +2096,7 @@ msgstr "Блокировка не мешает этому маркировщик msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Блокировка - это открытая информация. Заблокированные учётные записи не могут отвечать в ваших постах, упоминать вас или иным образом взаимодействовать с вами." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Блокировка не помешает добавлять метки на вашу учётную запись, но она остановит возможность этой учётной записи комментировать ваши посты или взаимодействовать с вами." @@ -2000,7 +2109,7 @@ msgstr "Блог" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не может подтвердить подлинность заявленной даты." @@ -2029,7 +2138,7 @@ msgstr "Bluesky лучше с друзьями!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Условия предоставления услуг Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky выберет набор рекомендуемых учётн msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky не будет показывать ваш профиль и посты посетителям без учётной записи. Другие приложения могут не следовать этому запросу. Это не делает вашу учётную запись приватной." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky будет активно подтверждать известные и подлинные учетные записи." @@ -2081,6 +2194,10 @@ msgstr "Книги" 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" @@ -2137,24 +2254,34 @@ msgstr "Бизнес" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "От {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "От <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Создавая учётную запись, вы соглашаете msgid "By you" msgstr "Сделан вами" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "Камера" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Камера" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Камера" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Отменить" @@ -2248,9 +2384,9 @@ msgstr "Отменить реактивацию и выйти из систем msgid "Cancel search" msgstr "Отменить поиск" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Невозможно взаимодействовать с заблокированным пользователем" @@ -2264,7 +2400,7 @@ msgstr "Субтитры (.vtt)" msgid "Captions & alt text" msgstr "Субтитры и альтернативный текст" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "Изменить язык приложения" msgid "Change Handle" msgstr "Изменить псевдоним" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Изменить службу модерации" @@ -2310,11 +2446,11 @@ msgstr "Изменить пароль" msgid "Change password dialog" msgstr "Окно изменения пароля" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Причина изменения жалобы" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Чат" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Чат удалён" @@ -2361,6 +2497,12 @@ msgstr "Чат удалён" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Чат без звука" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Почтовый ящик запросов на чат" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Запросы на чат" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Настройки чата" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Настройки чата" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Чат со звуком" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Чаты" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Выберите этот цвет в качестве своего аватара" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Нажмите здесь, чтобы перезапустить процесс верификации." @@ -2567,7 +2718,7 @@ msgstr "Нажмите здесь, чтобы перезапустить про msgid "Click here to update your birthdate" msgstr "Нажмите здесь, чтобы обновить дату рождения" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Нажмите здесь, чтобы обновить свою электронную почту" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "Нажмите, чтобы открыть меню тегов для {0}" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Нажмите, чтобы повторить неудачное сообщение" @@ -2594,28 +2745,30 @@ msgstr "Нажмите, чтобы повторить неудачное соо #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Нажмите, чтобы повторить неудачное соо #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Закрыть" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Закрыть диалоговое окно" @@ -2647,6 +2800,10 @@ msgstr "Закрыть диалоговое окно" msgid "Close alert" msgstr "Закрыть уведомления" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Закрыть нижнее меню" @@ -2657,8 +2814,10 @@ msgstr "Закрыть нижнее меню" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Закрыть диалог" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Закрыть изображение" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Закрыть диалоговое окно" @@ -2695,18 +2866,22 @@ msgstr "Закрыть окно приветствия" msgid "Closes password update alert" msgstr "Закрывает уведомление об изменении пароля" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Закрывает редактор и удаляет черновик" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Свернуть список пользователей" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Сворачивает список пользователей для данного уведомления" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Комиксы" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Правила сообщества" @@ -2740,12 +2915,12 @@ msgstr "Выполните задание" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Составить новый пост" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "Пишите посты длиной до {0, plural, one {# символа} other {# символов}}" @@ -2753,11 +2928,11 @@ msgstr "Пишите посты длиной до {0, plural, one {# симво msgid "Compose reply" msgstr "Составить ответ" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Сжатие видео..." @@ -2780,7 +2955,7 @@ msgstr "Настраивается в <0>настройках модерации msgid "Confirm" msgstr "Подтвердить" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Служба поддержки" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "Обратитесь к нам" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Контакты импортированы" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Контакты удалены" @@ -2842,7 +3017,7 @@ msgstr "Содержание и медиа" msgid "Content and media" msgstr "Содержимое и медиа" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Содержимое и медиа" @@ -2889,7 +3064,7 @@ msgstr "Фон контекстного меню, нажмите, чтобы з #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Продолжить ветку" msgid "Continue thread..." msgstr "Продолжить ветку..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Беседа удалена" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Беседа удалена" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Версия сборки скопирована в буфер обмена" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Скопировано!" msgid "Copies build version to clipboard" msgstr "Копирует версию сборки в буфер обмена" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Копировать" @@ -2997,6 +3184,11 @@ msgstr "Копировать DID" msgid "Copy host" msgstr "Копировать хост" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Копировать ссылку на список" msgid "Copy link to post" msgstr "Копировать ссылку на пост" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Копировать ссылку на профиль" @@ -3027,8 +3219,8 @@ msgstr "Копировать ссылку на профиль" msgid "Copy link to starter pack" msgstr "Копировать ссылку на стартовый набор" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Копировать текст сообщения" @@ -3037,12 +3229,12 @@ msgstr "Копировать текст сообщения" msgid "Copy post at:// URI" msgstr "Копировать at:// URI поста" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Копировать текст поста" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Копировать QR-код" @@ -3052,11 +3244,15 @@ msgstr "Копировать значение TXT-записи" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Политика защиты авторского права" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "Не удалось подключиться к сервису лент" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "Не удалось найти профиль" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Не удалось выйти из чата" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Не удалось загрузить ленту" @@ -3100,7 +3308,11 @@ msgstr "Не удалось загрузить ленту" msgid "Could not load list" msgstr "Не удалось загрузить список" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Не удалось заглушить чат" @@ -3108,11 +3320,19 @@ msgstr "Не удалось заглушить чат" msgid "Could not process your video" msgstr "Не удалось обработать ваше видео" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Не удалось сохранить изменения: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Не удалось обновить настройки уведомлений" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Создать" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Создать стартовый набор" @@ -3174,13 +3394,14 @@ msgstr "Создать для меня стартовый набор" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Создать учётную запись" msgid "Create an account without using this starter pack" msgstr "Создать учётную запись без этого стартового набора" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Создать аватар вместо этого" @@ -3206,7 +3427,7 @@ msgstr "Создать аватар вместо этого" msgid "Create another" msgstr "Создать ещё один" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Создать новую учётную запись" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Создать отчёт для {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Создано: {0}" @@ -3270,6 +3492,10 @@ msgstr "Создатель был заблокирован" msgid "Culture" msgstr "Культура" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Тёмная тема" msgid "Date of birth" msgstr "Дата рождения" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "По умолчанию" msgid "Default icons" msgstr "Иконки по умолчанию" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Удалить пароль для приложения" msgid "Delete app password?" msgstr "Удалить пароль для приложения?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Удалить чат" @@ -3378,19 +3612,19 @@ msgstr "Удалить чат" msgid "Delete chat declaration record" msgstr "Удалить запись объявления чата" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Удалить для меня" @@ -3399,11 +3633,11 @@ msgstr "Удалить для меня" msgid "Delete list" msgstr "Удалить список" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Удалить сообщение" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Удалите сообщение для меня" @@ -3411,9 +3645,9 @@ msgstr "Удалите сообщение для меня" msgid "Delete my account" msgstr "Удалить мою учётную запись" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Удалить пост" @@ -3430,17 +3664,17 @@ msgstr "Удалить стартовый набор?" msgid "Delete this list?" msgstr "Удалить этот список?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Удалить этот пост?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Удалено" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Удалённая учётная запись" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Описательный альтернативный текст" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Отделить цитату" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Отделить цитату от поста?" @@ -3507,13 +3741,13 @@ msgstr "Диалог: настройте, кто может взаимодейс msgid "Dim" msgstr "Тусклая" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Отключить 2FA" @@ -3521,7 +3755,7 @@ msgstr "Отключить 2FA" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Отключить 2FA по электронной почте" @@ -3534,8 +3768,8 @@ msgstr "Отключить 2FA по электронной почте" msgid "Disable haptic feedback" msgstr "Отключить тактильную обратную связь" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Отключено" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Удалить" msgid "Discard changes?" msgstr "Удалить изменения?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Удалить пост?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Откройте для себя новые ленты" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Пропустить" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Пропустить ошибку" @@ -3642,6 +3877,10 @@ msgstr "Пропустить этот раздел" 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" @@ -3673,7 +3912,7 @@ msgstr "Не содержит обнаженности." msgid "Domain verified!" msgstr "Домен проверен!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Нет кода или нужен новый? <0>Нажмите здесь." @@ -3681,7 +3920,7 @@ msgstr "Нет кода или нужен новый? <0>Нажмите здес msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Не видите письма? <0>Нажмите здесь, чтобы отправить заново." @@ -3700,16 +3939,21 @@ msgstr "Не волнуйтесь! Все существующие сообще #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Готово" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "Дважды нажмите или зажмите сообщение, чтобы добавить реакцию" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Дважды нажмите, чтобы закрыть диалог" @@ -3737,19 +3981,14 @@ msgstr "Дважды нажмите, чтобы закрыть диалог" 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 "Скачать Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Скачать CAR файл" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Скачать CAR файл" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Продолжительность:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "например, alice" @@ -3823,9 +4079,8 @@ msgstr "например, Пользователи, неоднократно о msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Редактировать" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Изменить фото профиля" @@ -3847,19 +4102,19 @@ msgstr "Изменить фото профиля" msgid "Edit Feeds" msgstr "Редактировать ленты" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Редактировать изображение" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Редактировать настройки взаимодействия" @@ -3868,7 +4123,16 @@ msgstr "Редактировать настройки взаимодействи msgid "Edit interests" msgstr "Изменить интересы" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "Изменить статус прямого эфира" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Редактировать мои ленты" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Редактировать людей" @@ -3912,12 +4171,12 @@ msgstr "Редактировать настройки взаимодействи #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Редактировать профиль" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Редактировать профиль" @@ -3925,7 +4184,8 @@ msgstr "Редактировать профиль" msgid "Edit starter pack" msgstr "Редактировать стартовый набор" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Редактировать, кто может отвечать" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Редактировать ваш стартовый набор" @@ -3971,7 +4231,7 @@ msgstr "Адрес электронной почты" msgid "Email Resent" msgstr "Подтверждение отправлено повторно" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "Письмо отправлено!" @@ -4006,8 +4266,8 @@ msgstr "Встройте этот пост в Ваш сайт. Просто ск msgid "Embedded video player" msgstr "Встроенный видеоплеер" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Включено" @@ -4025,7 +4285,7 @@ msgstr "Разрешить содержимое для взрослых" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Включить 2FA по электронной почте" @@ -4038,13 +4298,12 @@ msgstr "Включить внешние медиа" msgid "Enable media players for" msgstr "Включить медиапроигрыватели для" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Включите уведомления для учётной записи, посетив её профиль и нажав <0>значок колокольчика <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Включить push-уведомления" @@ -4091,8 +4350,8 @@ msgstr "Введите пароль" msgid "Enter a word or tag" msgstr "Введите слово или тег" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Введите код" @@ -4143,12 +4402,12 @@ msgstr "Переходит в полноэкранный режим" msgid "Entertainment" msgstr "Развлечения" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Ошибка" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ msgstr "Каждый может ответить" msgid "Everybody can reply to this post." msgstr "Все могут ответить на этот пост." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Все" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Все" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Все" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Исключает пользователей, на которых вы msgid "Exit fullscreen" msgstr "Выйти из полноэкранного режима" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Развернуть список пользователей" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Развернуть или свернуть весь пост, на который вы отвечаете" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "Разворачивает или сворачивает текст поста" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Ожидалось, что uri разрешиться в запись" @@ -4277,10 +4536,10 @@ msgstr "Откровенный или потенциально проблемн msgid "Explicit sexual images." msgstr "Откровенные сексуальные изображения." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Обзор" @@ -4289,11 +4548,8 @@ msgstr "Обзор" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Настройка внешних медиа" @@ -4331,18 +4587,22 @@ msgstr "Настройка внешних медиа" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Не удалось принять чат" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Не удалось добавить эмодзи-реакцию" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Не удалось изменить псевдоним. Попробуйте ещё раз." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Не удалось изменить пароль приложения. Попробуйте ещё раз." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Не удалось создать беседу" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Не удалось создать стартовый набор" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Не удалось удалить сообщение" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Не удалось удалить пост, попробуйте ещё раз" @@ -4394,24 +4655,24 @@ msgstr "Не удалось удалить пост, попробуйте ещё msgid "Failed to delete starter pack" msgstr "Не удалось удалить стартовый набор" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Не удалось загрузить беседы" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Не удалось загрузить настройки ленты" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Не удалось загрузить настройки уведомлений." @@ -4493,16 +4753,15 @@ msgstr "Не удалось загрузить предложенные лент msgid "Failed to load suggested follows" msgstr "Не удалось загрузить предложенные подписки" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Не удалось пометить все запросы как прочитанные" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Не удалось закрепить пост" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Не удалось удалить эмодзи-реакцию" @@ -4534,7 +4793,8 @@ msgstr "Не удалось удалить эмодзи-реакцию" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "Не удалось снять верификацию" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Не удалось сохранить ваши интересы." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Не удалось отправить письмо на электронную почту, попробуйте ещё раз." @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Не удалось подать апелляцию, попробуйте ещё раз." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Не удалось переключить игнорирование ветки, попробуйте ещё раз" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Не удалось обновить настройки 2FA электронной почты" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Не удалось обновить электронную почту, попробуйте ещё раз." @@ -4614,7 +4879,7 @@ msgstr "Не удалось изменить ленты" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Не удалось изменить настройки" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Лента" @@ -4649,7 +4914,7 @@ msgstr "Лента" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Лента от {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Меню ленты" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Обратная связь" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Ленты" @@ -4739,7 +5004,7 @@ msgstr "Фильтр поиска по языку (текущий: {currentLangu 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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Завершение" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Наконец-то! Следите за постами, которые важны для вас. Сохраняйте их, чтобы просмотреть в любое время." @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Найдите учётные записи для подписки" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Найти людей, чтобы подписаться" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Найти посты, пользователей и ленты в Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Подписаться" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Подписаться на {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Подписаться на учётную запись" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Подписаться на все аккаунты" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Подписаться в ответ" @@ -4916,7 +5183,7 @@ msgstr "Подписаться в ответ" msgid "Followed all accounts!" msgstr "Вы подписаны на всё аккаунты!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Подписаны <0>{0} и <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Подписаны <0>{0}, <1>{1} и {2, plural, one {# другой} other {# других}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Подписчики @{0}, которых вы знаете" @@ -4960,10 +5231,10 @@ msgstr "Подписчики, которых вы знаете" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Подписки" @@ -4977,12 +5248,12 @@ msgstr "Подписки" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Подписка на {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Подписан на {handle}" msgid "Following feed preferences" msgstr "Настройка ленты подписок" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Настройка ленты подписок" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Подписан на вас" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Подписан на вас" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Шрифт" @@ -5065,11 +5333,16 @@ msgstr "Забыли пароль?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "Освободите свою ленту" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "От" @@ -5086,82 +5359,86 @@ msgstr "Из <0/>" msgid "Generate a starter pack" msgstr "Сгенерировать стартовый набор" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Получить помощь" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "Получайте уведомления, когда на вас подписываются люди." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Получайте уведомления, когда люди ставят лайки на ваши репосты." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Получайте уведомления, когда люди ставят лайки на ваши посты." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Получайте уведомления, когда люди упоминают вас." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Получайте уведомления, когда люди цитируют ваши посты." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Получайте уведомления, когда люди отвечают на ваши посты." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Получайте уведомления, когда люди репостят ваши репосты." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Получайте уведомления, когда люди репостят ваши посты." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "Получайте уведомления о новых постах" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Придайте своему профилю лицо" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Вернуться" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Вернуться к предыдущему шагу" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Вернуться на главную" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Вернуться на главную" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Вернуться на главную" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "Выйти в прямой эфир на" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Перейти в профиль {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Перейти к беседе с {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Далее" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Перейти к профилю пользователя" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Псевдоним слишком длинный. Пожалуйста, попробуйте более короткий." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Хештег" @@ -5458,8 +5756,8 @@ msgstr "Хештег {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Есть код? <0>Нажмите здесь." @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Справка" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Чтобы люди знали, что вы не бот, загрузите фотографию или создайте аватар." @@ -5522,7 +5820,7 @@ msgstr "Скрытый список" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Скрытый список" msgid "Hide" msgstr "Скрыть" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Скрыть" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Спрятать ответ для меня" @@ -5577,19 +5875,19 @@ msgstr "Скрыть эту карту" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Скрыть этот пост?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Скрыть актуальные темы?" msgid "Hide trending videos?" msgstr "Скрыть актуальные видео?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Скрыть список пользователей" @@ -5620,6 +5918,10 @@ msgstr "Скрыть значки верификации" msgid "Hides the content" msgstr "Скрывает содержимое" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Похоже, у нас возникли проблемы с загру msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хммм, мы не смогли загрузить этот сервис модерации." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Подождите! Мы постепенно даём доступ к видео, и вы всё ещё в очереди. Возвращайтесь позже!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Главная" @@ -5721,7 +6019,7 @@ msgstr "Я понял" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Раскрывает альтернативный текст, если текст слишком длинный" @@ -5757,15 +6055,15 @@ msgstr "Если вы удалите этот список, вы не сможе msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Если у вас есть собственный домен, вы можете использовать его в качестве своего псевдонима. Это позволит вам самостоятельно подтвердить свою личность. <0> Узнайте больше здесь." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Если вам нужно обновить электронную почту, <0>нажмите здесь." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Если вы обновите адрес электронной почты, 2FA по электронной почте будет отключена." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "Если вы разработчик, вы можете размести msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Если вы хотите изменить свой псевдоним или электронную почту, сделайте это до деактивации." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Изображение" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Кэш изображений очищен, освобождено {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "В приложении" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Уведомления в приложении" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "В приложении, Все" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "В приложении, Люди, на которых вы подписаны" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "В приложении, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "В приложении, Push, Все" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "В приложении, Push, Люди, на которых вы подписаны" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Почтовый ящик пуст!" @@ -5954,6 +6255,10 @@ msgstr "" 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 "Представляем сохранённые посты, также известные как закладки" @@ -5963,11 +6268,15 @@ msgstr "Представляем сохранённые посты, также msgid "Invalid 2FA confirmation code." msgstr "Неверный код подтверждения 2FA." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Недопустимая тема отчета" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Неверный код подтверждения" @@ -6001,8 +6315,15 @@ msgstr "Код приглашения" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Код приглашения не принят. Убедитесь в его правильности и повторите попытку." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID вакансии: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID вакансии: {0}" msgid "Jobs" msgstr "Вакансии" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Вакансии" msgid "Join Bluesky" msgstr "Присоединиться к Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Присоединиться к беседе" msgid "Journalism" msgstr "Журналистика" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "Держите меня в курсе" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "Веб-сайт KWS" @@ -6143,7 +6499,7 @@ msgstr "Метки на вашей учётной записи" msgid "Labels on your content" msgstr "Метки на вашем контенте" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Настройки языка" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Недавние" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Узнать больше об этом предупреждении" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Узнать больше о том, что является публичным в Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Узнать больше." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Выйти" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Выйти из чата" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Выйти из беседы" @@ -6284,13 +6642,14 @@ msgstr "Выйти из беседы" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Выйти из беседы" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Вы покидаете Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "ещё осталось." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Светлая" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Лайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})" @@ -6346,11 +6713,7 @@ msgstr "Лайкните 10 постов" msgid "Like 10 posts to train the Discover feed" msgstr "Лайкните 10 постов, чтобы обучить ленту Discover" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Лайкнуть эту ленту" @@ -6358,8 +6721,8 @@ msgstr "Лайкнуть эту ленту" msgid "Like this labeler" msgstr "Лайкнуть этот маркировщик" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Понравилось" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Понравилось {0, plural, one {# пользователю} other {# пользователям}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Понравилось {likeCount, plural, one {# пользователю} other {# пользователям}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Нравится" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Лайки этого поста" @@ -6409,11 +6768,11 @@ msgstr "Лайки этого поста" msgid "Linear" msgstr "Линейно" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Список" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Список больше не игнорируется" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Списки" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Загрузка..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Отчёт" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Логотип @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Логотип от <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Похоже, у вас не хватает ленты подписок. msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "Управляйте настройками верификации" msgid "Manage your muted words and tags" msgstr "Настраивайте ваши игнорируемые слова и теги" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Отметить все как прочитанные" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Отметить как прочитанное" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Все сообщения отмечены как прочитанные" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Возможно, позже" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Медиа, которые могут вызывать беспокойство или быть неприемлемыми для некоторых аудиторий." +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "упомянутые пользователи" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Упоминания" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Сообщение {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Сообщение удалено" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Сообщение удалено" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Сообщение от @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Сообщение слишком длинное" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Параметры сообщений" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Сообщения" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Полночь" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Модерация" @@ -6894,7 +7247,7 @@ msgstr "Список модерации изменён" msgid "Moderation lists" msgstr "Списки модерации" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Списки модерации" @@ -6903,7 +7256,7 @@ msgstr "Списки модерации" msgid "moderation settings" msgstr "настройка модерации" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Статус модерации" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Дополнительные опции" @@ -6949,7 +7302,7 @@ msgstr "Кино" msgid "Music" msgstr "Музыка" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Игнорировать" @@ -6965,8 +7318,8 @@ msgstr "Игнорировать" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Игнорировать учётную запись" msgid "Mute accounts" msgstr "Игнорировать учётные записи" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Отключить звук" @@ -6994,7 +7347,7 @@ msgstr "Игнорировать список" msgid "Mute these accounts?" msgstr "Игнорировать эти учётные записи?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Игнорировать это слово только в тегах" msgid "Mute this word until you unmute it" msgstr "Игнорировать это слово пока вы его не включите" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Игнорировать ветку" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Игнорировать слова и теги" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Игнорируемые учётные записи" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Игнорируемые учётные записи" @@ -7062,6 +7419,10 @@ msgstr "Игнорируемые слова и теги" 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" @@ -7104,12 +7465,12 @@ msgstr "Перейти к стартовому набору" msgid "Navigates to the next screen" msgstr "Переходит к следующему экрану" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Переходит к вашему профилю" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Неважно, создайте для меня псевдоним" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Новый" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Новый чат" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Новый адрес электронной почты" @@ -7171,32 +7533,30 @@ msgstr "Новый адрес электронной почты" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Новые подписчики" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Новый пост" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Новый пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Новости" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Далее" msgid "Next image" msgstr "Следующее изображение" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "Без рекламы, без инвазивного отслеживания, без вовлекающих ловушек. Bluesky уважает ваше время и внимание." @@ -7321,7 +7685,7 @@ msgstr "Нет срока действия" msgid "No feeds found. Try searching for something else." msgstr "Не найдено ни одной ленты. Попробуйте поискать что-нибудь еще." -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Нет изображения" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Вы больше не подписаны на {0}" @@ -7362,7 +7726,7 @@ msgstr "Вы больше не подписаны на {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Сообщения пока отсутствуют" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Ещё никаких уведомлений!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Никто, кроме автора, не может цитировать этот пост." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Нет результатов" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Нет результатов" @@ -7446,8 +7810,8 @@ msgstr "Нет результатов" msgid "No results for \"{0}\"." msgstr "Ничего не найдено для \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Нет результатов" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Несексуальная обнажённость" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Не найдено" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Примечание по распространению" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "Пока ничего не сохранено" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Настройки уведомления" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Звуки уведомлений" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Уведомления" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "сейчас" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Отключено" @@ -7623,9 +7974,10 @@ msgstr "ОК" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Хорошо" @@ -7648,35 +8000,35 @@ msgstr "на<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Сброс настроек" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "В одном или нескольких GIF-файлах отсутствует альтернативный текст." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Для одного или нескольких изображений отсутствует альтернативный текст." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "В одном или нескольких видео отсутствует альтернативный текст." @@ -7685,6 +8037,26 @@ msgstr "В одном или нескольких видео отсутству msgid "Only {0} can reply." msgstr "Только {0} могут отвечать." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Поддерживаются только файлы изображений" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Поддерживаются только файлы WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Поддерживаются только файлы WebVTT (.vtt)" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ой, что-то пошло не так!" msgid "Oops!" msgstr "Ой!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Открыть создатель аватара" @@ -7720,12 +8106,17 @@ msgstr "Открыть создатель аватара" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Открыть настройки беседы" @@ -7739,16 +8130,16 @@ msgstr "Открыть выдвижное меню" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Открыть подборщик эмодзи" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Открыть меню настроек ленты" @@ -7760,13 +8151,22 @@ msgstr "Открыть полный список эмодзи" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Открыть ссылку на {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Открыть набор" msgid "Open post options menu" msgstr "Открыть меню настроек поста" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Открыть страницу историй" msgid "Open system log" msgstr "Открыть системный журнал" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Открывает диалог для добавления предуп msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Открывает дополнительную информацию о записи для отладки" @@ -7838,7 +8250,7 @@ msgstr "Открывает дополнительную информацию о msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Открывает камеру на устройстве" @@ -7858,22 +8270,24 @@ msgstr "Открывает редактор" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Открывает процесс создания новой учётной записи Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Открывается процесс входа в существующую учетную запись Bluesky" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Открывает диалоговое окно статуса прямого эфира" @@ -7902,15 +8316,23 @@ msgstr "Открывает форму сброса пароля" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Открывает этот профиль" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Наши модераторы рассмотрели сообщения и решили отключить вам доступ к чатам на Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Наши модераторы рассмотрели сообщения msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Страница не найдена" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "Приостановить видео" msgid "People" msgstr "Люди" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Люди, на которых подписан(а) @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Люди, которые подписаны на @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Фотография" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Закрепить ленту" @@ -8152,12 +8578,12 @@ msgstr "Закрепить ленту" msgid "Pin to home" msgstr "Закрепить на главной странице" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Закрепить на главной странице" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Закрепить в своём профиле" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Закреплён" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Прикреплено {0} к главной странице" @@ -8236,7 +8662,7 @@ msgstr "Пожалуйста, выберите псевдоним." msgid "Please choose your password." msgstr "Пожалуйста, выберите ваш пароль." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Пожалуйста, завершите проверку Captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "Пожалуйста, введите пароль. Он должен с 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Пожалуйста, введите действительный адрес электронной почты." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Пожалуйста, введите код, который мы отправили <0>{0} ниже." @@ -8293,7 +8719,7 @@ msgstr "Пожалуйста, введите код, который мы отп msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Пожалуйста, введите адрес электронной msgid "Please enter your invite code." msgstr "Пожалуйста, введите код приглашения." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Пожалуйста, введите новый адрес электронной почты." @@ -8323,7 +8749,7 @@ msgstr "Пожалуйста, введите ваш псевдоним" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Пожалуйста, объясните, почему вы считаете, что эта метка была ошибочно добавлена к {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Пожалуйста, объясните, почему вы считаете, что ваши чаты были неправильно отключены" @@ -8358,7 +8784,11 @@ msgstr "Выберите причину жалобы" msgid "Please sign in as @{0}" msgstr "Пожалуйста, войдите под именем @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Подтвердите свой адрес электронной почты" @@ -8383,7 +8813,7 @@ msgstr "Политика" msgid "Porn" msgstr "Порнография" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Опубликовать" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Опубликовать все" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Пост от @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Пост удалён" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Не удалось загрузить пост. Проверьте подключение к Интернету и повторите попытку." @@ -8454,18 +8884,22 @@ msgstr "Вы скрыли этот пост" msgid "Post interaction settings" msgstr "Настройки взаимодействия с постом" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Посты могут быть проигнорированы на ос msgid "Posts hidden" msgstr "Посты скрыты" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Нажмите для попытки повторного подключения" -#: src/components/Error.tsx:61 +#: 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 "Нажмите, чтобы повторить попытку" @@ -8536,7 +8966,7 @@ msgstr "Нажмите, чтобы повторить попытку" msgid "Press to view followers of this account that you also follow" msgstr "Нажмите, чтобы просмотреть подписчиков этой учётной записи, на которых вы также подписаны" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Конфиденциальность" msgid "Privacy and security" msgstr "Конфиденциальность и безопасность" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Конфиденциальность и безопасность" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Политика конфиденциальности" @@ -8586,15 +9015,15 @@ msgstr "Политика конфиденциальности" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Обработка видео..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Обработка..." @@ -8602,10 +9031,10 @@ msgstr "Обработка..." msgid "profile" msgstr "профиль" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Профиль" @@ -8613,6 +9042,7 @@ msgstr "Профиль" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Опубликовать пост" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Опубликовать посты" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Опубликовать ответы" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Опубликовать ответ" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Push-уведомления" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-код скопирован в ваш буфер обмена!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-код был скачан!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-код сохранён в папке камеры!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Цитировать пост" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Пост с цитатой был повторно прикреплён" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Пост с цитатой был успешно отсоединён" @@ -8711,12 +9138,12 @@ msgstr "Цитирование постов отключено" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Цитаты" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Цитаты из этого поста" @@ -8728,16 +9155,16 @@ msgstr "Лимит превышен - вы пытались сменить пс msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "Отреагировать с {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Прочитать пост в блоге" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Причина обращения" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "Рекомендуется" msgid "Reconnect" msgstr "Переподключиться" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Отклонить" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Перезагрузить беседы" @@ -8863,6 +9304,8 @@ msgstr "Перезагрузить беседы" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Удалить {displayName} из стартового набора" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Убрать {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Убрать {historyItem}" msgid "Remove account" msgstr "Удалить учётную запись" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Удалить вложение" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Удалить аватар" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Удалить баннер" @@ -8914,8 +9362,9 @@ msgstr "Удалить баннер" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Удалить встраивание" @@ -8929,12 +9378,12 @@ msgstr "Удалить ленту" msgid "Remove feed?" msgstr "Удалить ленту?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Удалить из сохранённых постов" msgid "Remove from your feeds?" msgstr "Удалить из ваших лент?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Удалить изображение" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Удалить репост" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "Удаление верификации" msgid "Remove your verification for this account?" msgstr "Удалить верификацию для этой учётной записи?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Удалено автором" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Удалено вами" @@ -9035,7 +9484,7 @@ msgstr "Удалено из сохранённых постов" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Ответы" @@ -9104,14 +9552,14 @@ msgstr "Ответы отключены" msgid "Replies to this post are disabled." msgstr "Ответы на этот пост отключены." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Ответить ({0, plural, one {# ответ} few {# ответа} other {# ответов}})" @@ -9125,10 +9573,6 @@ msgstr "Ответ скрыт автором ветки" msgid "Reply Hidden by You" msgstr "Ответ скрыт вами" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Настройки ответов выбирает автор ветки" @@ -9137,18 +9581,18 @@ msgstr "Настройки ответов выбирает автор ветки msgid "Reply sorting" msgstr "Сортировка ответов" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Видимость ответа изменена" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Ответ был успешно скрыт" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Пожаловаться" @@ -9157,20 +9601,20 @@ msgstr "Пожаловаться" msgid "Report account" msgstr "Пожаловаться на учётную запись" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Диалоговое окно для жалоб" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Пожаловаться на ленту" @@ -9179,12 +9623,12 @@ msgstr "Пожаловаться на ленту" msgid "Report list" msgstr "Пожаловаться на список" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Пожаловаться на сообщение" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Пожаловаться на пост" @@ -9199,8 +9643,8 @@ msgstr "Пожаловаться на стартовый набор" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Отчёт отправлен" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Пожаловаться на эту ленту" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Пожаловаться на этот список" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Репостнуть" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Репостнуть ({0, plural, one {# репост} few {# репоста} other {# репостов}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Вы сделали репост" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Репосты этого поста" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Требовать код с электронной почты для входа в учётную запись." @@ -9328,7 +9791,17 @@ msgstr "Требуется этим хостинг-провайдером" msgid "Required in your region" msgstr "Требуется в вашем регионе" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "Отправить повторно" @@ -9373,8 +9846,8 @@ msgstr "Сбросить состояние входа в систему" msgid "Reset password" msgstr "Сбросить пароль" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Повторяет последнее действие, которое #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Повторяет последнее действие, которое msgid "Retry" msgstr "Повторить попытку" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Возвращает к предыдущей странице" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Сохранить изменения" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Сохранить изображение" msgid "Save new handle" msgstr "Сохранить новый псевдоним" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Сохранить QR-код" @@ -9518,13 +9994,13 @@ msgstr "Сохранить QR-код" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Сохранить в мои ленты" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Сохранённые" @@ -9534,25 +10010,25 @@ msgstr "Сохранённые" msgid "Saved Feeds" msgstr "Сохранённые ленты" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Сохранённые посты" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Сохранено в ваши ленты" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Скажи привет!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Наука" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Пролистать вверх" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Поиск" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Поиск постов @{0}" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "Поиск по моим постам" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Поиск постов" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Поиск профилей" msgid "Search..." msgstr "Поиск..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Выбрать цвет" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Выбрать GIF" msgid "Select GIF \"{0}\"" msgstr "Выбрать GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Выбрать язык..." msgid "Select languages" msgstr "Выбрать языки" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Выберите службу модерации" @@ -9904,11 +10390,11 @@ msgstr "Выберите ваши интересы из нижеприведён msgid "Select your preferred language for translations in your feed." msgstr "Выберите желаемый язык для переводов в вашей ленте." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Отправить электронное письмо" @@ -9935,11 +10421,11 @@ msgstr "Отправить электронное письмо" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Отправить отзыв" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Отправить сообщение" @@ -9952,7 +10438,7 @@ msgstr "Отправить пост {name}" msgid "Send post to..." msgstr "Отправить пост на..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Отправить жалобу в {title}" @@ -9960,7 +10446,7 @@ msgstr "Отправить жалобу в {title}" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Отправить личным сообщением" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Устанавливает адрес электронной почты для сброса пароля" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Настройки" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Сексуальная активность или эротическа msgid "Sexually Suggestive" msgstr "С сексуальным подтекстом" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Поделиться" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Всё равно поделиться" @@ -10097,16 +10586,21 @@ msgstr "Всё равно поделиться" msgid "Share author DID" msgstr "Поделиться DID автора" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Поделиться ссылкой" @@ -10114,6 +10608,11 @@ msgstr "Поделиться ссылкой" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Поделиться at:// URI поста" msgid "Share QR code" msgstr "Поделиться QR-кодом" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Поделиться этой лентой" @@ -10142,8 +10641,8 @@ msgstr "Поделитесь этим стартовым набором и по #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Поделиться через..." @@ -10151,7 +10650,7 @@ msgstr "Поделиться через..." msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Тестер общих настроек" @@ -10167,16 +10666,16 @@ msgstr "Показать альтернативный текст" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Всё равно показать" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Показать меньше похожего" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Показать больше" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Показать больше похожего" @@ -10246,8 +10745,8 @@ msgstr "Показывать ответы" msgid "Show replies as" msgstr "Показывать ответы" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Показать ответы для всех" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Показать предупреждения и фильтровать из ленты" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Показывает информацию о том, когда был создан этот пост" @@ -10297,15 +10796,17 @@ msgstr "Показывает содержимое" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Войдите или создайте учётную запись" msgid "Sign in or create your account to join the conversation!" msgstr "Войдите или создайте свою учётную запись, чтобы присоединиться к беседе!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Войти в учётную запись, которой нет в списке" @@ -10337,8 +10842,12 @@ msgstr "Войти в учётную запись, которой нет в сп msgid "Sign in to Bluesky or create a new account" msgstr "Войдите в Bluesky или создайте новую учётную запись" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Выйти" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Выйти" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Выйти?" @@ -10391,7 +10900,7 @@ msgstr "Пропустить" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Уменьшенный" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Отложить напоминание" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Кто-то отреагировал {0}" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Что-то пошло не так!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Что-то пошло не так. Пожалуйста, попробуйте ещё раз." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Что-то не так? Сообщите нам." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Спорт" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Начните беседу, и она появится здесь." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Начать новый чат" @@ -10582,17 +11101,17 @@ msgstr "Начните добавлять людей" msgid "Start adding people!" msgstr "Начните добавлять людей!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Начать общаться с {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Стартовый набор" @@ -10654,12 +11173,12 @@ msgstr "Хранилище очищено, теперь вам нужно пер msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "История" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Отправить" @@ -10684,9 +11203,9 @@ msgstr "Отправить обращение" msgid "Submit Appeal" msgstr "Отправить обращение" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Отправить жалобу" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Подписаться" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Успех" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Успех!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Верификация прошла успешно" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Закат" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Поддержка" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Переключить учётную запись" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Переключить учётные записи" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Переключиться на {0}" @@ -10824,11 +11347,15 @@ msgstr "Системный журнал" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Нажмите, чтобы пропустить" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Условия использования" @@ -10939,7 +11484,7 @@ msgstr "Текст и теги" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Поле ввода текста" @@ -10981,9 +11526,9 @@ msgstr "Вот и все, ребята!" msgid "That's everything!" msgstr "Это всё!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Учётная запись сможет взаимодействовать с вами после разблокировки." @@ -11049,6 +11594,11 @@ msgstr "Следующие настройки будут использоват 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Политика конфиденциальности была перемещена в <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Тематический" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "При соединении с сервером возникла проблема" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Возникла проблема соединения с сервером, проверьте подключение к Интернету и повторите попытку." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Возникла проблема с загрузкой постов. Нажмите здесь, чтобы повторить попытку." @@ -11161,31 +11714,31 @@ msgstr "Возникла проблема с загрузкой информац msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Возникла проблема с удалением этой ленты. Проверьте подключение к Интернету и повторите попытку." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Возникла проблема! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Эти настройки применимы только к ленте Following." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Этот {screenDescription} был помечен:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Это обращение будет отправлено на адрес <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Это обращение будет отправлено в службу модерации Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Это обращение будет отправлено в служб msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Этот чат был отключён" @@ -11310,7 +11881,11 @@ msgstr "Этот контент недоступен, поскольку оди msgid "This content is not viewable without a Bluesky account." msgstr "Этот контент недоступен для просмотра без учётной записи Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Эта беседа ведется с удаленной или деактивированной учётной записью. Нажмите для выбора опций" @@ -11318,7 +11893,7 @@ msgstr "Эта беседа ведется с удаленной или деак msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Эта лента пуста." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Эта лента больше не работает. Вместо этого мы показываем <0>Discover." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "Эта ссылка недействительна" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "Этот список – созданный вами – содержи msgid "This list is empty." msgstr "Этот список пуст." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Этот пост утверждает, что был создан <0>{0}, но впервые был замечен Bluesky <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Автор этого поста отключил цитирование постов." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "У этого пользователя нет отображаемого имени, поэтому его нельзя верифицировать." -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "У этого пользователя ещё нет ни одного подписчика." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "Этот пользователь заблокировал вас. Вы не можете видеть их посты." -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Это удалит @{0} из списка быстрого доступа." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Это удалит ваш пост из этой цитаты для всех пользователей, и заменит его на заглушку." @@ -11574,7 +12166,7 @@ msgstr "Настройки веток" msgid "Threaded" msgstr "Как ветки" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Настройки веток" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Чтобы отключить метод 2FA по электронной почте, проверьте свой доступ к адресу электронной почты." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "Чтобы отключить 2FA по электронной почте, подтвердите доступ к <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Лучшее" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Тема" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Перевести" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Актуальные видео" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Доверие рождается в отношениях, сообществах и общем контексте, поэтому мы также вводим <0>доверенных верификаторов — организации, которые могут непосредственно вручать верификацию." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:170 +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 "ТВ" @@ -11763,11 +12369,15 @@ msgstr "Не удалось связаться с вашим хостинг-пр msgid "Unable to delete" msgstr "Не удаётся удалить" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "Недоступно" msgid "Unavailable feed information" msgstr "Информация о ленте недоступна" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Разблокировать" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Разблокировать" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Разблокировать учётную запись" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Разблокировать учётную запись?" @@ -11837,8 +12452,8 @@ msgstr "Разблокировать список" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Отменить" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Отменить репост ({0, plural, one {# репост} few {# репоста} other {# репостов}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Отписаться от {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Отписаться от учётной записи" @@ -11872,7 +12487,7 @@ msgstr "Отписаться от учётной записи" msgid "Unfollows the user" msgstr "Отписаться от пользователя" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "К сожалению, ни один из маркировщиков в ваших подписках не поддерживает этот вид жалобы." @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Неизвестный верификатор" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Дизлайк ({0, plural, one {# лайк} few {# лайка} other {# лайков}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "Не игнорировать" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Не игнорировать учётную запись" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Включить звук" @@ -11955,12 +12562,12 @@ msgstr "Включить звук" msgid "Unmute list" msgstr "Перестать игнорировать список" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Перестать игнорировать ветку" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Открепить" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Открепить ленту" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Открепить от главной страницы" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Открепить от профиля" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Открепить список модерации" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Откреплено {0} от главной страницы" @@ -12030,14 +12637,18 @@ msgstr "Отписаться от этого маркировщика" msgid "Unsubscribed from list" msgstr "Подписка на список отменена" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "Обновить" msgid "Update <0>{displayName} in Lists" msgstr "Изменить <0>{displayName} в списках" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Обновить электронную почту" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Изменить на {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Обновите вашу электронную почту" @@ -12080,17 +12699,17 @@ msgstr "Обновите вашу электронную почту" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Не удалось изменить вложение цитаты" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Не удалось изменить видимость ответа" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Загрузить вместо этого фотографию" @@ -12098,39 +12717,40 @@ msgstr "Загрузить вместо этого фотографию" msgid "Upload a text file to:" msgstr "Загрузить текстовый файл в:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Загрузка изображений..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Загрузка миниатюры ссылки..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Загрузка видео..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Пользователь заблокирован" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Список пользователей от {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "пользователи, на которых подписан <0>@{0}@{0}" msgstr "пользователи подписанные на <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "Верификация не удалась, попробуйте ещё msgid "Verification settings" msgstr "Настройки верификации" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Настройки верификации" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Подтвердить код" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Проверка DNS-записи" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Подтвердить код электронной почты" @@ -12349,7 +12969,7 @@ msgstr "Верифицировать эту учётную запись?" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Версия {0}" msgid "Video" msgstr "Видео" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Не удалось обработать видео" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Лента видео" @@ -12419,7 +13039,7 @@ msgstr "Видео не найдено." msgid "Video settings" msgstr "Настройки видео" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Видео загружено" @@ -12432,18 +13052,18 @@ msgstr "Видео: {0}" msgid "Videos" msgstr "Видео" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Посмотреть профиль {0}" @@ -12467,20 +13087,15 @@ msgstr "Посмотреть профиль {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Просмотреть профиль заблокированного пользователя" @@ -12503,10 +13118,18 @@ msgstr "Просмотреть детали" msgid "View full thread" msgstr "Просмотреть ветку полностью" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Просмотреть информацию о метках" @@ -12522,7 +13145,7 @@ msgstr "Показать больше" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Просмотреть профиль" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Просмотреть аватар" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Просмотр услуг маркировки, который пре msgid "View this user's verifications" msgstr "Просмотреть верификации этого пользователя" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Просмотр пользователей, которым понравилась эта лента" @@ -12596,8 +13219,8 @@ msgstr "Просмотр отключённых учётных записей" msgid "View your verifications" msgstr "Просмотреть свои верификации" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Просмотр полного изображения" @@ -12640,8 +13263,8 @@ msgstr "Предупреждать о содержимом" msgid "Warn content and filter from feeds" msgstr "Предупреждать о содержимом и фильтровать его из ленты" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Смотреть сейчас" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Мы не смогли найти никаких результатов по этой теме." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Мы не смогли загрузить эту беседу" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Мы рекомендуем выбрать как минимум два интереса." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Мы отправили письмо на <0>{0}, содержащее ссылку. Нажмите на неё, чтобы завершить процесс подтверждения электронной почты." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Мы не смогли определить, доступна ли вам загрузка видео. Попробуйте ещё раз." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Мы сообщим вам, когда ваша учётная запись будет готова." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Мы отправим письмо на <0>{0}, содержащее ссылку. Нажмите на неё, чтобы завершить процесс подтверждения электронной почты." @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "У нас проблемы с сетью, попробуйте ещё раз" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "Мы представляем новый уровень верификации на Bluesky — простые и понятные галочки." @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Нам очень жаль! Пост, на который вы отвечаете, был удален." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Нам очень жаль! Мы не можем найти страницу, которую вы искали." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Как вы хотите назвать свой стартовый набор?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Как дела?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Нажмите на галочку и увидите, какие организации вручили верификацию." @@ -12878,7 +13505,7 @@ msgstr "Нажмите на галочку и увидите, какие орг msgid "Who can interact with this post?" msgstr "Кто может взаимодействовать с этим постом?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Кто может отвечать" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Кто может верифицировать?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Опаньки!" @@ -12939,7 +13566,7 @@ msgstr "Почему этот стартовый набор должен быт msgid "Why should this user be reviewed?" msgstr "Почему следует просмотреть этого пользователя?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Написать пост" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Написать ответ" @@ -12978,7 +13605,8 @@ msgstr "Писатели" msgid "Wrong DID returned from server. Received: {0}" msgstr "С сервера возвращён неверный DID. Получено: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Да, удалите этот стартовый набор" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Да, отсоединить" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Да, скрыть" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "Вы в прямом эфире" msgid "You are no longer live" msgstr "Вы больше не в прямом эфире" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Вы не можете загружать видео." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Вы можете продолжать беседу независимо от выбранной вами настройки." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Теперь вы можете войти с помощью нового пароля." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Вы можете реактивировать свою учётную 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "Вы можете обновить это позже в своих настройках." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "У вас нет сохранённых лент." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "Вы успешно проверили свой адрес электр msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Вы достигли временного лимита по загрузкам видео. Попробуйте ещё раз позже." -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "Вы можете добавить лишь до {STARTER_PACK_MAX_SIZE, msgid "You may only add up to 3 feeds" msgstr "Вы можете добавить не более 3 лент" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Чтобы получить стартовый набор, вы должны подписаться как минимум на семь других людей." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Чтобы сохранить QR-код, необходимо предоставить доступ к библиотеке фотографий" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "Чтобы включить функцию 2FA, необходимо подтвердить адрес электронной почты." +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Вы отреагировали {0}" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Вы выйдете из всех своих учётных записей." @@ -13378,11 +14038,11 @@ msgstr "Вы выйдете из всех своих учётных записе msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Вы больше не будете получать уведомления из этой ветки" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Вы будете получать уведомления из этой ветки" @@ -13390,12 +14050,12 @@ msgstr "Вы будете получать уведомления из этой 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "Вы в очереди" @@ -13463,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашняя лента закончилась! Подпишитесь на больше учётных записей чтобы получать больше постов." -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "Вы достигли максимально допустимого ко msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много байт)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Вы достигли дневного лимита по загрузкам видео (слишком много видео)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "Ваша учётная запись была приостановлена" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ваша учётная запись создана ещё недостаточно давно, чтобы вы могли загружать видео. Попробуйте ещё раз позже." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Данные из вашей учётной записи, содержащие все общедоступные записи, можно загрузить как \"CAR\" файл. Этот файл не содержит медиафайлов, таких как изображения, или личные данные, которые необходимо получить отдельно." @@ -13519,7 +14191,7 @@ msgstr "Ваше обращение было отправлено. Если об msgid "Your birth date" msgstr "Ваша дата рождения" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Ваши чаты были отключены" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Не удалось распознать адрес электронной почты." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Ваша электронная почта еще не проверена. Пожалуйста, подтвердите свою электронную почту, чтобы пользоваться всеми возможностями Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Ваша домашняя лента пуста! Подпишитесь msgid "Your full handle will be <0>@{0}" msgstr "Вашим полным псевдонимом будет <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Ваши игнорируемые слова" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "Ваш пароль должен состоять не менее чем из 8 символов." -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "Ваш предпочтительный язык" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "Ваш профиль, посты, ленты и списки больше не будут видны другим пользователям Bluesky. Вы можете реактивировать свою учётную запись в любое время, войдя в систему." -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Ваш ответ был отправлен" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Ваша жалоба будет отправлена на адрес <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Ваша жалоба будет отправлена на адрес <0 msgid "Your selected interests help us serve you content you care about." msgstr "Выбранные вами интересы помогают нам предоставлять вам содержимое, которое вас интересует." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 4e39290f56..6c5f2b5772 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:45\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "Kategorin ”{interestsDisplayName}” (aktiv)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "(inbjudningslänk till chatt)" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(innehåller inbäddat innehåll)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# gillamarkering} other {# gillamarkeringar}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, one {# medlem} other {# medlemmar}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# minut} other {# minuter}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# månad} other {# månader}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# ny medlemsförfrågan} other {# nya medlemsförfrågningar}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, one {# person} other {# personer}} reagerade med {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# sekund} other {# sekunder}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# oläst notis} other {# olästa notiser}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, one {# min} other {# min}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>i <1>text och taggar" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} lades till i chatten" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} och {1} lades till i chatten" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} följda" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} blockerar dig" @@ -264,7 +273,7 @@ msgstr "{0} av 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} reagerade med {1}" @@ -290,7 +299,7 @@ msgstr "{0} togs bort från gruppen" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, en lista av {1}" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0}s avatar" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "{0}/{1}" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, other {medlemmar}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} medlemmar" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "{0}/{imageCount}" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} min" msgid "{0}s" msgstr "{0} s" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {Inga medlemsförfrågningar} one {# medlemsförfrågan} other {# medlemsförfrågningar}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# chatthändelse} other {# chatthändelser}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, one {# ny medlemsförfrågan} other {# nya medlemsförfrågningar}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# förfrågan} other {# förfrågningar}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# oläst notis} other {# olästa notiser}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, one {Uppdatera sidan för att se den.} other {Uppdatera sidan för att se dem alla.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, one {Det här inlägget har en bild.} other {Det här inlägget har # bilder.}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, one {Uppdatera din app för att se den.} other {Uppdatera din app för att se dem alla.}}" + +#. 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 "{count, plural, other {#+ medlemsförfrågningar}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ förfrågningar" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {timme} other {timmar}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minuter}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} tog bort sina verifieringar av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} verifierade dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} följde dig tillbaka" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} tog bort sin verifiering av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} verifierade dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} tog bort sina verifieringar av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}} verifierade dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} följde dig" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} följde dig tillbaka" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} gillade ditt anpassade flöde" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gillade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} gillade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} tog bort sin verifiering av ditt konto" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} återpublicerade ditt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} återpublicerade din återpublicering" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} registrerade sig med ditt startpaket" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} verifierade dig" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} verifierade dig" msgid "{following} following" msgstr "{following} följda" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} kan inte läggas till" @@ -547,7 +606,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:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "Det går inte att skicka meddelanden till {handle}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# timme {minutesString}} other {# timmar {minutesSt msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# timme} other {# timmar}}" +#. 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 "{JOIN_REQUESTS_THRESHOLD}+ nya medlemsförfrågningar" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "{JOIN_REQUESTS_THRESHOLD}+ nya medlemsförfrågningar" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {Beskrivningen är för lång. Maximalt msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Visningsnamnet är för långt. Maximalt antal tecken är #.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {Du kan dölja max # svar.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} reagerade med {0} på {target}" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name}s favoritflöden och personer – häng med!" msgid "{name}'s starter pack" msgstr "{name}s startpaket" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# oläst notis} other {# olästa notiser}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {# kontakt} other {# kontakter}} hittades" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, one {# förfrågan} other {# förfrågningar}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ förfrågningar" @@ -656,6 +725,12 @@ msgstr "{userName} är verifierad" msgid "{userName}'s verifications" msgstr "{userName}s verifieringar" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, och {2, plural, one {# annan} other {# andra}} i #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {följare} other {följare}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {följda} other {följda}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {gillamarkering} other {gillamarkeringar}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {citat} other {citat}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {återpublicering} other {återpubliceringar}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, one {sparning} other {sparningar}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "medlemmar i <0>{0}" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> lade till dig" @@ -795,8 +870,13 @@ msgstr "Ett nätverksfel uppstod. Kontrollera din internetanslutning" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Ett nätverksfel uppstod. Kontrollera din internetanslutning." @@ -804,7 +884,7 @@ msgstr "Ett nätverksfel uppstod. Kontrollera din internetanslutning." msgid "A new code has been sent" msgstr "En ny kod har skickats" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "En ny form av verifiering" @@ -827,11 +907,11 @@ msgstr "Skärmdump av en profilsida med den nya klockikonen bredvid följknappen 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "En vald mottagare följs inte av avsändaren." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,34 +923,53 @@ msgid "Abusive or discriminatory behavior" msgstr "Kränkande eller diskriminerande beteende" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 +msgid "Accept" +msgstr "Acceptera" + +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" msgid "Accept" msgstr "Godkänn" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" -msgstr "Godkänn chattförfrågan" +msgstr "Acceptera chattförfrågan" + +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Godkänn medlemsförfrågan" #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" -msgstr "Godkänn förfrågan" +msgstr "Acceptera förfrågan" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 msgid "Accept this language suggestion" msgstr "Använd det här språkförslaget" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Accepterade konversationer" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Förfrågan skickad! Gruppägaren kommer att granska din förfrågan." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Tillgänglighet" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Tillgänglighetsinställningar" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Tillgänglighetsinställningar" msgid "Account" msgstr "Konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Konto blockerat" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Konto följt" @@ -899,7 +998,7 @@ msgstr "Kontot har stängts av" msgid "Account is deactivated" msgstr "Kontot är inaktiverat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Kontoleverantör" msgid "Account removed from quick access" msgstr "Konto borttaget från snabbåtkomst" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Konto avblockerat" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Konto avföljt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Konto inte längre ignorerat" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Konton med en blå, vågkantad bockmarkering <0><1/> kan verifiera andra. Dessa betrodda verifierare är utvalda av Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Aktivitet från andra" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Aktivitetsnotiser" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Lägg till" @@ -999,8 +1094,8 @@ msgstr "Lägg till konto" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Lägg till alternativtext (valfritt)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Lägg till ett annat konto" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Lägg till ett ytterligare inlägg" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Lägg till ytterligare ett inlägg i tråden" @@ -1035,7 +1130,7 @@ msgstr "Lägg till applösenord" msgid "Add App Password" msgstr "Lägg till applösenord" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Lägg till automatiseringsetikett på kontot" @@ -1043,7 +1138,7 @@ msgstr "Lägg till automatiseringsetikett på kontot" msgid "Add emoji reaction" msgstr "Lägg till emoji-reaktion" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Lägg till medlemmar i gruppchatt" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Lägg till bild" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Lägg till media i inlägg" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Lägg till medlemmar" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Lägg till mer detaljer (valfritt)" @@ -1091,6 +1186,10 @@ msgstr "Lägg till personer" msgid "Add people to list" msgstr "Lägg till personer i lista" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:191 +msgid "Add people with a link" +msgstr "Bjud in personer med en länk" + #: src/components/dms/EmojiPopup.android.tsx:56 msgid "Add Reaction" msgstr "Lägg till reaktion" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Lägg till ditt födelsedatum" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "Tillagd av {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Tillagd via inbjudningslänk" @@ -1165,12 +1264,12 @@ msgstr "Lägger till medlemmar i lista…" msgid "Additional details (limit 1000 characters)" msgstr "Ytterligare detaljer (max 1000 tecken)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Ytterligare detaljer (max 300 tecken)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Admin" @@ -1228,12 +1327,12 @@ msgstr "Din förfrågan om ålderskontroll har skickats" msgid "Age assurance only takes a few minutes" msgstr "Ålderskontrollen tar bara några minuter" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@exempel.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Alla" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Alla {0}" @@ -1278,13 +1377,13 @@ msgstr "Tillåt åtkomst till dina direktmeddelanden" msgid "Allow anyone to reply" msgstr "Tillåt svar från alla" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Tillåt direktmeddelanden från" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Tillåt gruppchattsinbjudningar från" @@ -1321,7 +1420,7 @@ msgstr "Tillåt svar från dina följare" #: src/screens/Settings/AppPasswords.tsx:201 msgid "Allows access to direct messages" -msgstr "Ger tillgång till direktmeddelanden" +msgstr "Ger åtkomst till direktmeddelanden" #: src/screens/Login/ForgotPasswordForm.tsx:180 #: src/screens/Settings/components/ChangePasswordDialog.tsx:237 @@ -1338,12 +1437,12 @@ msgstr "Har du redan ett konto?" msgid "Already signed in as @{0}" msgstr "Redan inloggad som @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alternativtext" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alternativtexter beskriver bilder för blinda och användare med nedsatt syn. De hjälper också gemene man med kontext och sammanhang." @@ -1387,7 +1486,7 @@ msgstr "Ett fel har uppstått" msgid "An error occurred" msgstr "Ett fel uppstod" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Ett fel uppstod under komprimeringen av videoklippet." @@ -1421,7 +1520,8 @@ msgstr "Ett fel uppstod under inläsningen av videoklippet. Försök igen." msgid "An error occurred while loading your lists :/" msgstr "Ett fel uppstod under inläsningen av dina listor :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Ett fel uppstod när QR-koden skulle sparas!" @@ -1432,11 +1532,11 @@ msgstr "Ett fel uppstod när QR-koden skulle sparas!" msgid "An error occurred while trying to follow all" msgstr "Ett fel uppstod när du försökte följa alla" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Ett fel uppstod under uppladdningen av videoklippet. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Ett fel uppstod under uppladdningen av videoklippet. Kontrollera din internetanslutning och försök igen." @@ -1456,26 +1556,30 @@ msgstr "En illustration som föreställer användaravatarer som flyger från en 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" +#: 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 "En illustration av Bluesky-appen med ett pappersflygplan som flyger ut ur den. Flygplanet symboliserar en inbjudan till en vän." + #: 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 "En illustration som visar att Bluesky väljer betrodda verifierare, som i sin tur verifierar enskilda användarkonton." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "En inbjudningslänk låter personer gå med i gruppchatten utan att läggas till direkt. Du bestämmer vilka som kan använda länken och om de behöver ditt godkännande. Du kan när som helst inaktivera länken." +#: 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 "En inbjudningslänk låter personer gå med i chatten utan att läggas till direkt. Du bestämmer vem som kan gå med i chatten och du kan inaktivera länken när du vill." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Ett problem uppstod när gruppchatten skulle skapas. Försök igen." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Ett problem uppstod när chatten skulle öppnas" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Ett problem uppstod. Försök igen." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "En visualisering av en iPhone med Bluesky-appen öppen, där profilen till en verifierad användare visas. En blå bockmarkering syns intill användarens visningsnamn." @@ -1539,13 +1643,17 @@ msgstr "Alla" msgid "Anyone can interact" msgstr "Alla får interagera" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Vem som helst kan gå med" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Vem som helst kan gå med direkt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Vem som helst kan begära att få gå med" @@ -1555,11 +1663,11 @@ msgstr "Vem som helst kan begära att få gå med" msgid "Anyone who follows me" msgstr "Alla som följer mig" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Namn på applösenord måste vara minst 4 tecken långa" msgid "App passwords" msgstr "Applösenord" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Applösenord" @@ -1618,7 +1726,7 @@ msgstr "Begär omprövning av avstängning från livesändning" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Omprövningsbegäran skickad" @@ -1632,14 +1740,14 @@ msgstr "Begär omprövning av avstängning" msgid "Appeal Suspension" msgstr "Begär omprövning av avstängning" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Begär omprövning av beslutet" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Tillämpa pull request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Arkiverat från {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Arkiverat inlägg" @@ -1675,7 +1783,7 @@ msgstr "Är du verkligen, verkligen säker?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Är du säker på att du vill radera applösenordet ”{0}”?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Är du säker på att du vill radera det här meddelandet? Meddelandet kommer att raderas för dig, men inte för de andra deltagarna." @@ -1688,23 +1796,29 @@ msgstr "Är du säker på att du vill radera det här startpaketet?" msgid "Are you sure you want to discard your changes?" msgstr "Är du säker på att du vill slänga dina ändringar?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "Är du säker på att du vill lämna {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Är du säker på att du vill lämna den här konversationen?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Är du säker på att du vill lämna den här konversationen? Dina meddelanden kommer att tas bort för dig, men inte för den andra deltagaren." +#: src/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 "Är du säker på att du vill lämna den här konversationen? Dina meddelanden kommer att tas bort för dig, men inte för de andra deltagarna." #: src/components/FeedCard.tsx:374 msgid "Are you sure you want to remove this from your feeds?" msgstr "Är du säker på att du vill ta bort det här från dina flöden?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +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:1656 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?" @@ -1724,8 +1838,8 @@ msgstr "Konst" msgid "Artistic or non-erotic nudity." msgstr "Konstnärlig eller icke-erotisk nakenhet." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Tilldela ämne för algoritm" @@ -1752,7 +1866,7 @@ msgstr "Automatiserat konto" msgid "Automation label" msgstr "Automatiseringsetikett" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Automatiseringsetikett" @@ -1767,12 +1881,12 @@ msgstr "Spela upp videoklipp och gif-bilder automatiskt" msgid "Available" msgstr "Tillgängligt" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Tillgängligt" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Tillgängligt" msgid "Back" msgstr "Tillbaka" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Tillbaka till chattar" @@ -1832,21 +1948,22 @@ msgstr "Du måste verifiera din e-post innan du kan skapa eller svara på ett in 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." -msgstr "Du måste verifiera din e-post innan du kan godkänna den här chattförfrågningen." +msgstr "Innan du kan acceptera den här chattförfrågningen måste du verifiera din e-postadress." #: src/components/activity-notifications/SubscribeProfileButton.tsx:59 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "Innan du kan få notiser om {name}s inlägg måste du först verifiera din e-postadress." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Du måste verifiera din e‑post innan du kan skicka meddelanden till andra användare." @@ -1874,59 +1991,53 @@ msgstr "Födelsedatum" msgid "Birthday" msgstr "Födelsedag" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Blockera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "Blockera {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Blockera konto" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Blockera konto?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Blockera konto?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Blockera konton" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Blockera och radera" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Blockera och lämna" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Blockeringslista" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Blockera eller anmäl" @@ -1936,9 +2047,9 @@ msgstr "Blockera dessa konton?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Blockera användare" @@ -1946,17 +2057,17 @@ msgstr "Blockera användare" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Blockera användare" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Blockera användare och/eller radera den här konversationen" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Blockera användare och/eller lämna den här konversationen" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Blockerat" @@ -1964,14 +2075,12 @@ msgstr "Blockerat" msgid "Blocked accounts" msgstr "Blockerade konton" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Blockerade konton" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockerade konton kan inte svara i dina trådar, omnämna dig eller på annat sätt interagera med dig." @@ -1987,7 +2096,7 @@ msgstr "Blockeringen hindrar inte den här etikettsättaren från att sätta eti msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Blockeringar är publika. Blockerade konton kan inte svara i dina trådar, omnämna dig eller på annat sätt interagera med dig." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Blockering hindrar inte att etiketter sätts på ditt konto, men det hindrar det här kontot från att svara i dina trådar eller interagera med dig." @@ -2000,7 +2109,7 @@ msgstr "Blogg" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky kan inte bekräfta äktheten av det angivna datumet." @@ -2029,7 +2138,7 @@ msgstr "Bluesky är bättre med vänner!" msgid "Bluesky is more fun with friends" msgstr "Bluesky är roligare med vänner" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky är roligare med vänner! Importera dina kontakter för att se vilka som redan finns här." @@ -2037,11 +2146,15 @@ msgstr "Bluesky är roligare med vänner! Importera dina kontakter för att se v msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky är roligare med vänner. Vill du bjuda in några av dina? <0/>" +#: src/features/inviteFriends/InviteScannerScreen.tsx:105 +msgid "Bluesky needs camera access to scan QR codes from other profiles." +msgstr "Bluesky behöver åtkomst till kameran för att skanna QR-koder från andra profiler." + #: src/screens/Takendown.tsx:213 msgid "Bluesky Social Terms of Service" msgstr "Användarvillkor för Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky väljer en uppsättning av rekommenderade konton från personer msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky visar inte din profil eller dina inlägg för utloggade användare. Andra appar kanske inte respekterar denna begäran. Den här inställningen gör inte ditt konto privat." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky kommer proaktivt att verifiera framstående och äkta konton." @@ -2081,6 +2194,10 @@ msgstr "Böcker" msgid "Breaking site rules" msgstr "Överträdelser av webbplatsens regler" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:200 +msgid "Bring up to 50 friends together in one chat." +msgstr "Samla upp till 50 vänner i en och samma chatt." + #: src/view/com/feeds/ProfileFeedgens.tsx:167 #: src/view/com/feeds/ProfileFeedgens.tsx:168 msgid "Browse custom feeds" @@ -2137,25 +2254,35 @@ msgstr "Affärer" msgid "Button to go back to the home timeline" msgstr "Knapp som tar dig tillbaka till hemtidslinjen" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Av {0}" +#. placeholder {0}: authorProfile.handle +#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:77 +msgid "by @{0}" +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, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Av <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "av <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "Av <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Genom att skapa ett konto godkänner du våra <0>användarvillkor." msgid "By you" msgstr "Av dig" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: src/features/inviteFriends/InviteScannerScreen.tsx:96 +msgid "Camera access needed" +msgstr "Kameraåtkomst krävs" + #: src/components/activity-notifications/SubscribeProfileDialog.tsx:213 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:133 #: src/components/ageAssurance/AgeAssuranceAppealDialog.tsx:139 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Avbryt" @@ -2248,9 +2384,9 @@ msgstr "Avbryt återaktivering och logga ut" msgid "Cancel search" msgstr "Avbryt sökning" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Det går inte att interagera med en blockerad användare" @@ -2264,7 +2400,7 @@ msgstr "Undertexter (.vtt)" msgid "Captions & alt text" msgstr "Undertexter och alternativtexter" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "karusell" @@ -2297,7 +2433,7 @@ msgstr "Ändra appspråk" msgid "Change Handle" msgstr "Ändra användarnamn" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Ändra modereringstjänst" @@ -2310,11 +2446,11 @@ msgstr "Ändra lösenord" msgid "Change password dialog" msgstr "Dialogruta för ändring av lösenord" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Ändra kategori för anmälan" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Ändra skäl till anmälan" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chatt" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Chatt raderad" @@ -2361,6 +2497,12 @@ msgstr "Chatt raderad" msgid "Chat ended" msgstr "Chatt avslutad" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Inbjudningslänken till den här chatten är inte längre tillgänglig" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Chatt låst" @@ -2373,35 +2515,44 @@ msgstr "Chattmeddelanden – ljud av" msgid "Chat messages - sound" msgstr "Chattmeddelanden – ljud på" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Chatt ignorerad" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." -msgstr "" +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "Chatten hittades inte." -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "Chattägare kan inte lämna sina gruppchattar." + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "Chattmottagare följs inte av avsändaren." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Inkorg för chattförfrågningar" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Chattförfrågningar" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Chattinställningar" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Chattinställningar" @@ -2418,14 +2569,14 @@ msgstr "Chattnamn ändrat till {0}" msgid "Chat unlocked" msgstr "Chatt upplåst" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Chatt inte längre ignorerad" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chattar" @@ -2479,7 +2630,7 @@ msgstr "Välj inläggsspråk" msgid "Choose this color as your avatar" msgstr "Välj den här färgen som din avatar" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Välj vem som får gå med i den här gruppchatten och hur." @@ -2558,7 +2709,7 @@ msgstr "Klicka här för att logga ut" msgid "Click here to resend the email" msgstr "Klicka här för att skicka e-postmeddelandet igen" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Klicka här för att börja om verifieringsprocessen." @@ -2567,7 +2718,7 @@ msgstr "Klicka här för att börja om verifieringsprocessen." msgid "Click here to update your birthdate" msgstr "Klicka här för att uppdatera ditt födelsedatum" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "Klicka här för att uppdatera din e-post" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Klicka för att försöka på nytt med misslyckat meddelande" @@ -2594,28 +2745,30 @@ msgstr "Klicka för att försöka på nytt med misslyckat meddelande" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Klicka för att försöka på nytt med misslyckat meddelande" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Stäng" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Stäng aktiv dialogruta" @@ -2647,6 +2800,10 @@ msgstr "Stäng aktiv dialogruta" msgid "Close alert" msgstr "Stäng notis" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "Stäng banderoll" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Stäng den nedersta lådan" @@ -2657,8 +2814,10 @@ msgstr "Stäng den nedersta lådan" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Stäng dialogruta" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Stäng bild" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Stäng meny" +#: src/features/inviteFriends/InviteScannerScreen.tsx:167 +msgid "Close scanner" +msgstr "Stäng skanner" + +#: src/screens/Messages/components/RequestStatus.tsx:83 +msgid "Close the incoming requests banner" +msgstr "Stäng banderollen för väntande förfrågningar" + +#: src/components/intents/GroupChatJoinDialog.tsx:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Stäng den här dialogrutan" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Stänger inläggsverktyget och slänger utkastet" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Dölj lista över användare" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Fäller ihop användarlista för berörd notis" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "Färg" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Serier" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Gemenskapens riktlinjer" @@ -2740,12 +2915,12 @@ msgstr "Slutför kontrollen" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Skriv ett nytt inlägg" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "Komprimerar gif-bild…" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Komprimerar videoklipp…" @@ -2780,7 +2955,7 @@ msgstr "Konfigureras i <0>modereringsinställningar." msgid "Confirm" msgstr "Bekräfta" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Kontakta supporten" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Kontaktsynkronisering är inte tillgängligt på den här enheten eftersom appen inte kan komma åt dina kontakter." @@ -2825,11 +3000,11 @@ msgstr "Kontaktsynkronisering är inte tillgängligt på den här enheten efters msgid "Contact us" msgstr "Kontakta oss" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Kontakter importerade" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Kontakter borttagna" @@ -2842,7 +3017,7 @@ msgstr "Innehåll och media" msgid "Content and media" msgstr "Innehåll och media" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Innehåll och media" @@ -2889,7 +3064,7 @@ msgstr "Utanför kontextmenyn. Klicka för att stänga menyn." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Utöka tråd" msgid "Continue thread..." msgstr "Utöka tråd…" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Fortsätt till gruppnamn" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Fortsätt till nästa steg" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Konversation" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Konversation raderad" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Konversation raderad" @@ -2939,15 +3114,22 @@ msgstr "Konversation raderad" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Konversation lämnad" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Konversationen hittades inte." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Byggversion kopierad till urklipp" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopierat!" msgid "Copies build version to clipboard" msgstr "Kopierar byggversion till urklipp" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "Kopierar den kanoniska profil-URL:en till urklipp" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopiera" @@ -2997,6 +3184,11 @@ msgstr "Kopiera DID" msgid "Copy host" msgstr "Kopiera värd" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +msgid "Copy invite link" +msgstr "Kopiera inbjudningslänk" + +#: src/components/dms/ChatInvite/Root.tsx:91 #: src/components/StarterPack/ShareDialog.tsx:115 #: src/screens/StarterPack/StarterPackScreen.tsx:644 msgid "Copy link" @@ -3018,8 +3210,8 @@ msgstr "Kopiera länk till lista" msgid "Copy link to post" msgstr "Kopiera länk till inlägg" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Kopiera länk till profil" @@ -3027,8 +3219,8 @@ msgstr "Kopiera länk till profil" msgid "Copy link to starter pack" msgstr "Kopiera länk till startpaket" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Kopiera meddelandetext" @@ -3037,12 +3229,12 @@ msgstr "Kopiera meddelandetext" msgid "Copy post at:// URI" msgstr "Kopiera inläggets at://-URI" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Kopiera inläggstext" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Kopiera QR-kod" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Upphovsrättspolicy" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "Kunde inte skanna QR-kod" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Kunde inte ansluta till anpassat flöde" @@ -3065,7 +3261,15 @@ msgstr "Kunde inte ansluta till anpassat flöde" msgid "Could not connect to feed service" msgstr "Kunde inte ansluta till flödestjänst" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "Kunde inte kopiera – försök igen" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "Kunde inte ladda ner – försök igen" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Kunde inte hämta inlägg" @@ -3073,23 +3277,27 @@ msgstr "Kunde inte hämta inlägg" msgid "Could not find profile" msgstr "Kunde inte hitta profil" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Kunde inte följa alla matchningar. Kontrollera din nätverksanslutning." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Kunde inte följa alla matchningar. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Kunde inte lämna chatt" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "Kunde inte lämna chatten." + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Kunde inte läsa in flöde" @@ -3100,7 +3308,11 @@ msgstr "Kunde inte läsa in flöde" msgid "Could not load list" msgstr "Kunde inte läsa in lista" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "Kunde inte läsa in profil" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Kunde inte ignorera chatt" @@ -3108,11 +3320,19 @@ msgstr "Kunde inte ignorera chatt" msgid "Could not process your video" msgstr "Kunde inte bearbeta ditt videoklipp" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "Kunde inte ta bort medlemmen." + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Kunde inte spara ändringar: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "Kunde inte dela – försök igen" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Kunde inte uppdatera notisinställningar" @@ -3139,7 +3359,7 @@ msgstr "Landskod" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Skapa" @@ -3153,13 +3373,13 @@ msgstr "Skapa en lista" msgid "Create a list from this starter pack" msgstr "Skapa en lista baserad på det här startpaketet" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Skapa ett startpaket" @@ -3174,13 +3394,14 @@ msgstr "Skapa ett startpaket åt mig" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Skapa en avatar istället" @@ -3206,7 +3427,7 @@ msgstr "Skapa en avatar istället" msgid "Create another" msgstr "Skapa ett till" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Skapa gruppchatt" @@ -3228,19 +3449,20 @@ msgstr "Skapa lista baserad på startpaket" msgid "Create moderation list" msgstr "Skapa modereringslista" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Skapa nytt konto" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Skapa eller modifiera en inbjudningslänk för den här gruppchatten" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Skapa anmälan för {0}" @@ -3256,11 +3478,11 @@ msgstr "Skapa användarlista" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" -msgstr "Skapade {0}" +msgstr "Skapad {0}" #: src/screens/List/ListHiddenScreen.tsx:131 msgid "Creator has been blocked" @@ -3270,6 +3492,10 @@ msgstr "Skaparen har blockerats" msgid "Culture" msgstr "Kultur" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "Aktuell chatt" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Mörkt tema" msgid "Date of birth" msgstr "Födelsedatum" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "Gryning" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "Dag" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Förvald" msgid "Default icons" msgstr "Förvalda ikoner" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Radera applösenord" msgid "Delete app password?" msgstr "Radera applösenord?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Radera chatt" @@ -3378,19 +3612,19 @@ msgstr "Radera chatt" msgid "Delete chat declaration record" msgstr "Radera chattdeklarationsposten" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Radera kontakter" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Radera konversation" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Radera för mig" @@ -3399,11 +3633,11 @@ msgstr "Radera för mig" msgid "Delete list" msgstr "Radera lista" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Radera meddelande" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Radera meddelandet för mig" @@ -3411,9 +3645,9 @@ msgstr "Radera meddelandet för mig" msgid "Delete my account" msgstr "Radera mitt konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Radera inlägg" @@ -3430,17 +3664,17 @@ msgstr "Radera startpaket?" msgid "Delete this list?" msgstr "Radera den här listan?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Radera det här inlägget?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Raderat" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Raderat konto" @@ -3471,12 +3705,12 @@ msgstr "Beskrivning (max 1000 tecken)" msgid "Descriptive alt text" msgstr "Beskrivande alternativtext" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Avskilj citat" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Avskilj citatinlägg?" @@ -3507,13 +3741,13 @@ msgstr "Dialogruta: ställ in vem som får interagera med det här inlägget" msgid "Dim" msgstr "Dämpat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Inaktivera" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "Inaktivera 2FA" @@ -3521,7 +3755,7 @@ msgstr "Inaktivera 2FA" msgid "Disable captions" msgstr "Inaktivera undertexter" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "Inaktivera 2FA via e-post" @@ -3534,8 +3768,8 @@ msgstr "Inaktivera 2FA via e-post" msgid "Disable haptic feedback" msgstr "Inaktivera haptisk feedback" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Inaktivera länk" @@ -3547,7 +3781,7 @@ msgstr "Inaktivera citatinlägg för det här inlägget" msgid "Disable replies entirely" msgstr "Inaktivera svar helt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Inaktivera den här inbjudningslänken?" @@ -3560,9 +3794,9 @@ msgstr "Inaktiverat" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Släng" msgid "Discard changes?" msgstr "Vill du slänga ändringarna?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Vill du slänga inlägget?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Koppla från Germ DM" @@ -3609,15 +3843,16 @@ msgstr "Upptäck nya flöden" msgid "Discover New Feeds" msgstr "Upptäck nya flöden" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Avvisa" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Avvisa banderoll" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Avvisa fel" @@ -3642,6 +3877,10 @@ msgstr "Avvisa den här sektionen" msgid "Dismiss this suggestion" msgstr "Avvisa det här förslaget" +#: src/features/inviteFriends/InviteScannerScreen.tsx:168 +msgid "Dismisses the QR scanner" +msgstr "Stänger QR-skannern" + #: src/screens/Settings/AccessibilitySettings.tsx:70 #: src/screens/Settings/AccessibilitySettings.tsx:75 msgid "Display larger alt text badges" @@ -3673,7 +3912,7 @@ msgstr "Innehåller ingen nakenhet." msgid "Domain verified!" msgstr "Domän verifierad!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Har du ingen kod eller behöver du en ny? <0>Klicka här." @@ -3681,7 +3920,7 @@ msgstr "Har du ingen kod eller behöver du en ny? <0>Klicka här." msgid "Don’t see a code? <0>Click here to resend." msgstr "Hittar du ingen kod? <0>Klicka här för att skicka en ny." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "Hittar du inget e-postmeddelande? <0>Klicka här för att skicka ett nytt." @@ -3700,16 +3939,21 @@ msgstr "Ingen fara! Alla dina befintliga meddelanden och inställningar är spar #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Klar" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Dubbeltryck för att stänga dialogrutan" @@ -3737,19 +3981,14 @@ msgstr "Dubbeltryck för att stänga dialogrutan" msgid "Double tap to like" msgstr "Dubbeltryck för att gilla" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "Ladda ner" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Ladda ner Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Ladda ner car-fil" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Ladda ner car-fil" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Ladda ner chattdata" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Ladda ner chattdata" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Ladda ner bild" +#: src/features/inviteFriends/components/ActionButtons.tsx:31 +msgid "Download invite QR code" +msgstr "Ladda ner QR-inbjudan" + +#: src/screens/Settings/components/ExportCarDialog.tsx:118 +msgid "Download profile data" +msgstr "Ladda ner profildata" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Ladda ner profildata" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Spridning av privat information (”doxxing”)" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "På grund av lagen i din region är vissa funktioner på Bluesky begrän msgid "Duration:" msgstr "Varaktighet:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "Skymning" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "t.ex. alice" @@ -3823,9 +4079,8 @@ msgstr "t.ex. Användare som hela tiden svarar med annonser." msgid "Eating disorders" msgstr "Ätstörningar" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Redigera" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Redigera avatar" @@ -3847,19 +4102,19 @@ msgstr "Redigera avatar" msgid "Edit Feeds" msgstr "Redigera flöden" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Redigera gruppnamn" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Redigera bild" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Redigera interaktionsinställningar" @@ -3868,7 +4123,16 @@ msgstr "Redigera interaktionsinställningar" msgid "Edit interests" msgstr "Redigera intressen" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Redigera inbjudningslänk" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Redigera inbjudningslänk" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Redigera länkinställningar" @@ -3886,20 +4150,15 @@ msgstr "Redigera livesändningsstatus" msgid "Edit moderation list" msgstr "Redigera modereringslista" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Redigera mina flöden" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "Redigera namn" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "Redigera notiser från {0}" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Redigera personer" @@ -3912,12 +4171,12 @@ msgstr "Redigera interaktionsinställningar för inlägg" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Redigera profil" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Redigera profil" @@ -3925,7 +4184,8 @@ msgstr "Redigera profil" msgid "Edit starter pack" msgstr "Redigera startpaket" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Redigera gruppchattens namn" @@ -3937,7 +4197,7 @@ msgstr "Redigera användarlista" msgid "Edit who can reply" msgstr "Redigera vem som får svara" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Redigera ditt startpaket" @@ -3971,7 +4231,7 @@ msgstr "E-postadress" msgid "Email Resent" msgstr "E-postmeddelandet har skickats på nytt" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-postmeddelande skickat!" @@ -4006,8 +4266,8 @@ msgstr "Bädda in det här inlägget på din hemsida. Det är bara att kopiera f msgid "Embedded video player" msgstr "Inbäddad videospelare" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Aktivera" @@ -4025,7 +4285,7 @@ msgstr "Tillåt vuxeninnehåll" msgid "Enable captions" msgstr "Aktivera undertexter" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "Aktivera 2FA via e-post" @@ -4038,13 +4298,12 @@ msgstr "Aktivera extern media" msgid "Enable media players for" msgstr "Aktivera mediaspelare för" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Aktivera notiser för ett konto genom att besöka dess profil och trycka på <0>klockikonen <1/>." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Aktivera pushnotiser" @@ -4091,8 +4350,8 @@ msgstr "Ange ett lösenord" msgid "Enter a word or tag" msgstr "Ange ett ord eller en tagg" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Ange kod" @@ -4143,12 +4402,12 @@ msgstr "Öppnar helskärm" msgid "Entertainment" msgstr "Underhållning" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Fel" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "Fel vid hämtning av senaste data." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Alla" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Alla" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Alla" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Allt annat" @@ -4217,16 +4476,16 @@ msgstr "Undantar användare du följer" msgid "Exit fullscreen" msgstr "Stäng helskärm" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Utöka alternativtext" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Utöka lista över användare" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 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å" @@ -4238,7 +4497,7 @@ msgstr "Utöka inläggstext" msgid "Expands or collapses post text" msgstr "Utökar eller fäller ihop inläggstext" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Förväntade att URI:n skulle hänvisa till en datapost" @@ -4277,10 +4536,10 @@ msgstr "Explicit eller potentiellt stötande media." msgid "Explicit sexual images." msgstr "Explicit sexuella bilder." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Utforska" @@ -4289,11 +4548,8 @@ msgstr "Utforska" msgid "Explore the app" msgstr "Utforska appen" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Exportera chattdata" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Exportera min chattdata" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Inställningar för extern media" @@ -4331,18 +4587,22 @@ msgstr "Inställningar för extern media" msgid "Extremist content" msgstr "Extremistiskt innehåll" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" -msgstr "Det gick inte att godkänna chatt" +msgstr "Det gick inte att acceptera chatt" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Det gick inte att godkänna medlemsförfrågan" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Det gick inte att lägga till emoji-reaktion" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Det gick inte att lägga till medlemmar" @@ -4354,7 +4614,8 @@ msgstr "Det gick inte att lägga till i startpaket" msgid "Failed to change handle. Please try again." msgstr "Det gick inte att ändra användarnamn. Försök igen." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Det gick inte att kopiera länk" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Det gick inte att skapa ett applösenord. Försök igen." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Det gick inte att skapa konversation" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Det gick inte att skapa inbjudningslänk" @@ -4376,17 +4637,17 @@ msgstr "Det gick inte att skapa inbjudningslänk" msgid "Failed to create starter pack" msgstr "Det gick inte att skapa ett startpaket" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Det gick inte att radera chatten" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Det gick inte att radera inlägget" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Det gick inte att radera inlägget. Försök igen" @@ -4394,24 +4655,24 @@ msgstr "Det gick inte att radera inlägget. Försök igen" msgid "Failed to delete starter pack" msgstr "Det gick inte att radera startpaketet" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Det gick inte att inaktivera inbjudningslänk" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Det gick inte att koppla från Germ DM. Fel: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Det gick inte att redigera gruppchattens namn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Det gick inte att redigera inbjudningslänk" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Det gick inte att aktivera inbjudningslänk" @@ -4427,19 +4688,27 @@ msgstr "Det gick inte att följa alla dina vänner. Försök igen" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Det gick inte att dölja förslag. Kontrollera din internetanslutning" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Det gick inte att avvisa medlemsförfrågan" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Det gick inte att gå med i gruppchatten. Försök igen." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "Det gick inte att starta SMS-app" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Det gick inte att lämna gruppchatt" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Det gick inte att läsa in konversationer" @@ -4456,17 +4725,8 @@ msgstr "Det gick inte att läsa in flöden" msgid "Failed to load feeds preferences" msgstr "Det gick inte att läsa in flödesinställningar" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Det gick inte att läsa in notisinställningar." @@ -4493,16 +4753,15 @@ msgstr "Det gick inte att läsa in föreslagna flöden" msgid "Failed to load suggested follows" msgstr "Det gick inte att läsa in föreslagna konton att följa" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Det gick inte att låsa gruppchatt" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Det gick inte att markera alla förfrågningar som lästa" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Det gick inte att ignorera gruppchatt" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Det gick inte att fästa inlägget" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Det gick inte att återansluta Germ DM. Fel: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Det gick inte att ta bort data på grund av ett nätverksfel. Kontrollera din internetanslutning." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Det gick inte att ta bort data. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Det gick inte att ta bort emoji-reaktion" @@ -4534,7 +4793,8 @@ msgstr "Det gick inte att ta bort emoji-reaktion" msgid "Failed to remove from starter pack" msgstr "Det gick inte att ta bort från startpaket" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Det gick inte att ta bort medlem från gruppchatt" @@ -4542,15 +4802,20 @@ msgstr "Det gick inte att ta bort medlem från gruppchatt" msgid "Failed to remove verification" msgstr "Det gick inte att ta bort verifiering" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Det gick inte att återkalla din förfrågan. Försök igen." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Det gick inte att spara utkast" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Det gick inte att spara bild" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Det gick inte att spara dina intressen." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "Det gick inte att skicka e-postmeddelande. Försök igen." @@ -4580,16 +4845,16 @@ msgstr "Det gick inte att skicka rapport" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Det gick inte att skicka omprövningsbegäran. Försök igen." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Det gick inte att ignorera tråden. Försök igen" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Det gick inte att låsa upp gruppchatt" @@ -4597,12 +4862,12 @@ msgstr "Det gick inte att låsa upp gruppchatt" msgid "Failed to unpin list" msgstr "Det gick inte att lossa lista" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "Det gick inte att uppdatera inställningar för 2FA via e-post" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "Det gick inte att uppdatera e-post. Försök igen." @@ -4614,7 +4879,7 @@ msgstr "Det gick inte att uppdatera flödena" msgid "Failed to update notification declaration" msgstr "Det gick inte att uppdatera notisdeklaration" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Det gick inte att uppdatera inställningarna" @@ -4641,7 +4906,7 @@ msgstr "Falskt konto eller bot" msgid "False information about elections" msgstr "Falsk information om val eller röstning" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Flöde" @@ -4649,7 +4914,7 @@ msgstr "Flöde" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Flöde av {0}" @@ -4662,7 +4927,7 @@ msgstr "Flödets skapare" msgid "Feed identifier" msgstr "Flödets identifierare" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Meny för flöde" @@ -4676,25 +4941,25 @@ msgstr "Otillgängligt flöde" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Feedback" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Feedback skickad till flödesoperatör" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Flöden" @@ -4739,7 +5004,7 @@ msgstr "Filtrera sökning efter språk (nuvarande: {currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Filtrera vem du får notiser från" @@ -4747,11 +5012,11 @@ msgstr "Filtrera vem du får notiser från" msgid "Finalizing" msgstr "Slutför" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Äntligen!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Äntligen! Håll reda på inlägg som är viktiga för dig. Spara ett för att enkelt ta fram det senare." @@ -4768,19 +5033,17 @@ msgstr "Finans" msgid "Find accounts to follow" msgstr "Hitta konton att följa" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Hitta kontakter" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Hitta vänner" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Hitta vänner med hjälp av kontakter" +msgid "Find and invite friends" +msgstr "Hitta och bjud in vänner" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Hitta kontakter" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Hitta mina vänner" msgid "Find people to follow" msgstr "Hitta personer att följa" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "Hitta personer du känner" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Hitta inlägg, användare och flöden på Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Hitta dina vänner" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Hitta dina vänner på Bluesky genom att verifiera ditt telefonnummer och matcha med dina kontakter. Vi skyddar din information, och du bestämmer vad som händer härnäst. <0>Läs mer" @@ -4847,22 +5114,22 @@ msgstr "Fokusera sökfältet" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Följ" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Följ {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "Följ {displayName}" @@ -4892,8 +5159,8 @@ msgstr "Följ konto" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Följ alla konton" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Följ tillbaka" @@ -4916,7 +5183,7 @@ msgstr "Följ tillbaka" msgid "Followed all accounts!" msgstr "Följde alla konton!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Följde alla matchningar" @@ -4944,8 +5211,12 @@ msgstr "Följs av <0>{0} och <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Följs av <0>{0}, <1>{1}, och {2, plural, one {# annan} other {# andra}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Följare kan gå med" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Följare av @{0} som du känner" @@ -4960,10 +5231,10 @@ msgstr "Följare som du känner" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Följer" @@ -4977,12 +5248,12 @@ msgstr "Följer" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Följer {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "Följer {displayName}" @@ -4995,19 +5266,16 @@ msgstr "Följer {handle}" msgid "Following feed preferences" msgstr "Inställningar för Följer-flödet" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Inställningar för Följer-flödet" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Följer dig" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Följer dig" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Typsnitt" @@ -5065,11 +5333,16 @@ msgstr "Glömt lösenordet?" msgid "Forgot?" msgstr "Glömt?" +#. 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 "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 msgid "Free your feed" msgstr "Befria ditt flöde" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Från" @@ -5086,82 +5359,86 @@ msgstr "Från <0/>" msgid "Generate a starter pack" msgstr "Generera ett startpaket" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Generera inbjudningslänk" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Generera ny inbjudningslänk" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Generera ny länk" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM frånkopplat" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM-länk" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM återanslutet" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Få hjälp" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Få notiser när andra följer dig." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Få notiser när andra gillar inlägg som du har återpublicerat." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Få notiser när andra gillar dina inlägg." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "Få notiser när andra gillar dina återpubliceringar." + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "Få notiser när du omnämns av andra." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Få notiser när andra citerar dina inlägg." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Få notiser när andra svarar på dina inlägg." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Få notiser när andra återpublicerar inlägg som du har återpublicerat." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Få notiser när andra återpublicerar dina inlägg." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Få notiser när andra återpublicerar dina återpubliceringar." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Bli notifierad om nya inlägg" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Bli notifierad om inlägg och svar från konton du väljer." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "Bli notifierad om nya inlägg från {name}" @@ -5174,27 +5451,27 @@ msgstr "Bli notifierad om det här kontots aktivitet" msgid "Get notified when {name} posts" msgstr "Bli notifierad när {name} publicerar inlägg" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Bli notifierad när någon publicerar inlägg" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Kom igång" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "Gif-bild" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "Gif-bild uppladdad" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Ge din profil ett ansikte" @@ -5213,20 +5490,20 @@ msgstr "Förhärligande av våld" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Gå tillbaka" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Gå tillbaka" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Gå tillbaka till föregående steg" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Gå till Hem" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Gå till Hem" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Gå till Hem" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Sänd live (inaktiverat)" msgid "Go live for" msgstr "Sänd live i" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Gå till {firstAuthorName}s profil" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Gå till kontoinställningar" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Gå till konversation med {0}" @@ -5296,23 +5571,23 @@ msgstr "Gå till flöde" msgid "Go to next" msgstr "Gå till nästa" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Gå till profil" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "Gå till gruppchatten ”{chatName}”" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Gå till användarens profil" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Gå till användarens profil" @@ -5320,11 +5595,18 @@ msgstr "Gå till användarens profil" msgid "Going live is currently disabled for your account" msgstr "Livesändning är för närvarande inaktiverat för ditt konto" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Uppfattat" +#: src/features/inviteFriends/InviteScannerScreen.tsx:108 +#: src/features/inviteFriends/InviteScannerScreen.tsx:113 +msgid "Grant access" +msgstr "Bevilja åtkomst" + #: src/lib/moderation/useGlobalLabelStrings.ts:46 #: src/lib/moderation/useGlobalLabelStrings.ts:50 #: src/view/com/composer/labels/LabelsBtn.tsx:197 @@ -5340,59 +5622,75 @@ msgstr "Grafiskt våldsamt innehåll" msgid "Grooming or predatory behavior" msgstr "Sexuell manipulation eller utnyttjande av barn (”grooming”)" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Gruppchatt" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Dialogruta för inbjudningslänk för gruppchatt" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Gruppchatt låst" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Gruppchatt ignorerad" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Namn på gruppchatt uppdaterat" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Inställningar för gruppchatt" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Gruppchatt upplåst" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Gruppchatt inte längre ignorerad" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Gruppchattar är inte tillgängliga ännu" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "Gruppchattar" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Gruppchattar är nu tillgängliga" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "Gruppchattar är endast tillgängliga för användare som är 18 år eller äldre." -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "Gruppchattar kan ha maximalt {0, plural, other {# personer}}." + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "Gruppen är låst" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Gruppnamn" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 #.}}" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:219 msgid "Hacking or system attacks" msgstr "Intrång eller systemattacker" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Användarnamnet är för långt. Försök med ett kortare." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Pågår nu" @@ -5446,7 +5744,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:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtagg" @@ -5458,8 +5756,8 @@ msgstr "Hashtagg: {tag}" msgid "Hate speech" msgstr "Hatpropaganda" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Har du en kod? <0>Klicka här." @@ -5479,11 +5777,11 @@ msgstr "Hålls av Bluesky i 7 dagar för att förhindra missbruk, därefter rade #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Hjälp" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Dold lista" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Dold lista" msgid "Hide" msgstr "Dölj" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Dölj" @@ -5553,18 +5851,18 @@ msgstr "Dölj chatthändelser" msgid "Hide lists" msgstr "Dölj listor" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Dölj inlägg för mig" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Dölj svar för alla" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Dölj svar för mig" @@ -5577,19 +5875,19 @@ msgstr "Dölj det här kortet" msgid "Hide this event" msgstr "Dölj det här evenemanget" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Dölj det här inlägget?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Dölj det här svaret?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Dölj översättning" @@ -5606,7 +5904,7 @@ msgstr "Dölj trendande ämnen?" msgid "Hide trending videos?" msgstr "Dölj trendande videoklipp?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Dölj användarlista" @@ -5620,6 +5918,10 @@ msgstr "Dölj verifieringsmärken" msgid "Hides the content" msgstr "Döljer innehållet" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "Döljer kampanjbanderollen om att bjuda in vänner" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, det verkar som att du är inloggad med ett <0>applösenord. För att ställa in ditt födelsedatum behöver du logga in med ditt vanliga kontolösenord, eller be den som kontrollerar kontot att göra det." @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, det verkar som om vi har problem med att läsa in den här datan. msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, vi kunde inte ladda den modereringstjänsten." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Vänta lite! Vi ger gradvis tillgång till videoklipp till fler användare, och du står fortfarande i kön. Försök igen senare!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Sakta i backarna! Den här funktionen är inte tillgänglig för dig ännu. Kika förbi senare." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Hem" @@ -5721,7 +6019,7 @@ msgstr "Jag förstår" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Du kan hitta mig på Bluesky under namnet {0}. Gå med du också! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Sätter alternativtext i utökat läge om den är lång" @@ -5757,15 +6055,15 @@ msgstr "Om du raderar den här listan kommer du inte att kunna återställa den. msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Om du har en egen domän kan du använda den som ditt användarnamn. Det gör det möjligt för dig att själv verifiera din identitet. <0>Läs mer här." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "Om du behöver uppdatera din e-post, <0>klicka här." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Om du tar bort det här inlägget kommer du inte att kunna återställa det." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Om du uppdaterar din e-postadress kommer 2FA via e-post att inaktiveras." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Om du vill begränsa vem som kan få notiser om ditt kontos aktivitet kan du ändra detta under <0>Inställningar → Integritet och säkerhet." @@ -5786,23 +6083,23 @@ msgstr "Om du är utvecklare kan du driva en egen server." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Om du vill ändra ditt användarnamn eller din e-postadress måste du göra det innan du inaktiverar kontot." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Bild" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Bild {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Bild {0} av {1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Bild {0} av {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Bild-cache rensad, frigjorde {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Bildgalleri, {0} bilder" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Bilden är dold på grund av dina modereringsinställningar." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Bilden är inte tillgänglig." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Bildalternativ" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Utger sig för att vara någon annan" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Importera kontakter" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Importera kontakter" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:78 +msgid "Import contacts or invite your friends" +msgstr "Importera kontakter eller bjud in dina vänner" + #: src/components/contacts/FindContactsBannerNUX.tsx:33 -#: src/components/contacts/FindContactsBannerNUX.tsx:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Importera kontakter för att hitta dina vänner" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "Importerades den {0}" @@ -5881,40 +6182,40 @@ msgstr "Importerades den {0}" 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 "För att kunna ge dig en upplevelse som är lämplig för din ålder behöver vi veta ditt födelsedatum. Det här behöver bara göras en gång, och din data kommer hållas privat." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "I appen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Notiser i appen" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "I appen, Från alla" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "I appen, Från personer du följer" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "I appen, Push" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "I appen, Push, Från alla" - -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "I appen, Push, Från personer du följer" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "I appen, Push, Från personer du följer" + +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Inkorgen är tom" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Inkorgen är tom!" @@ -5954,6 +6255,10 @@ msgstr "Nu införs utkast" msgid "Introducing finding friends via contacts" msgstr "Nu kan du hitta vänner med hjälp av dina kontakter" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:99 +msgid "Introducing group chats" +msgstr "Nu införs gruppchattar" + #: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:38 msgid "Introducing saved posts AKA bookmarks" msgstr "Nu införs sparade inlägg, även kallat bokmärken" @@ -5963,11 +6268,15 @@ msgstr "Nu införs sparade inlägg, även kallat bokmärken" msgid "Invalid 2FA confirmation code." msgstr "Ogiltig bekräftelsekod för 2FA." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Ogiltig gruppchattskod." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Ogiltigt användarnamn. Försök med ett annat." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Ogilitiga interaktionsinställningar." @@ -5977,10 +6286,15 @@ msgstr "Ogilitiga interaktionsinställningar." msgid "Invalid phone number" msgstr "Ogiltigt telefonnummer" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Ogiltigt ämne för anmälan" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Ogiltig begäran om återkallelse." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Ogiltig verifieringskod" @@ -6001,8 +6315,15 @@ msgstr "Inbjudningskod" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "Bjud in vänner" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Bjud in vänner" @@ -6010,21 +6331,31 @@ msgstr "Bjud in vänner" msgid "Invite friends <0/>" msgstr "Bjud in vänner <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Inbjudningslänk" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Inbjudningslänk" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "Inbjudningslänk kopierad" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Inbjudningslänk skapad" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Inbjudningslänk inaktiverad" @@ -6040,11 +6371,16 @@ msgstr "Inbjudningslänk aktiverad" msgid "Invite people to this starter pack!" msgstr "Bjud in människor till det här startpaketet!" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:91 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:144 +msgid "Invite your friends" +msgstr "Bjud in dina vänner" + #: src/screens/StarterPack/Wizard/StepDetails.tsx:37 msgid "Invite your friends to follow your favorite feeds and people" msgstr "Bjud in dina vänner att följa dina favoritflöden och personer" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Inbjuden" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Jobb-ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "Jobb-ID: {0}" msgid "Jobs" msgstr "Jobb" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Gå med" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Jobb" msgid "Join Bluesky" msgstr "Gå med i Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Gå med i gruppchatt" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Medlemsförfrågan återkallad." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Delta i samtalen" msgid "Journalism" msgstr "Journalistik" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Fortsätt redigera" @@ -6109,6 +6460,11 @@ msgstr "Fortsätt redigera" msgid "Keep me posted" msgstr "Håll mig uppdaterad" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "Ta bort medlem" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS webbplats" @@ -6143,7 +6499,7 @@ msgstr "Etiketter på ditt konto" msgid "Labels on your content" msgstr "Etiketter på ditt innehåll" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Språkinställningar" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Senaste" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Läs mer om hur du bjuder in vänner" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Läs mer om att importera kontakter" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Läs mer om den här varningen" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Läs mer om verifiering på Bluesky" @@ -6239,7 +6595,7 @@ msgstr "Läs mer om verifiering på Bluesky" msgid "Learn more about what is public on Bluesky." msgstr "Läs mer om vad som är publikt på Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Läs mer om din Germ DM-länk" @@ -6252,31 +6608,33 @@ msgstr "Läs mer i dina <0>kontoinställningar." msgid "Learn more." msgstr "Läs mer." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Lämna" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Lämna chatt" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Lämna konversation" @@ -6284,13 +6642,14 @@ msgstr "Lämna konversation" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Lämna konversation" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Lämna gruppchatt" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Lämna den här gruppchatten" @@ -6299,6 +6658,14 @@ msgstr "Lämna den här gruppchatten" msgid "Leaving Bluesky" msgstr "Du är på väg att lämna Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +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:276 +msgid "Left group chat." +msgstr "Du lämnade gruppchatten." + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "kvar." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Ljus" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Gilla" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Notiser för gillamarkeringar" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Gilla det här flödet" @@ -6358,8 +6721,8 @@ msgstr "Gilla det här flödet" msgid "Like this labeler" msgstr "Gilla den här etikettsättaren" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Gillat av" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Gillat av {0, plural, one {# användare} other {# användare}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "Gillat av {likeCount, plural, one {# användare} other {# användare}}" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Gillamarkeringar" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Gillamarkeringar på dina återpubliceringar" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Notiser för gillamarkeringar på dina återpubliceringar" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Gillamarkeringar på det här inlägget" @@ -6409,11 +6768,11 @@ msgstr "Gillamarkeringar på det här inlägget" msgid "Linear" msgstr "Linjär vy" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Länk kopierad till urklipp" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Lista" @@ -6460,7 +6819,7 @@ msgstr "Listbeskrivning" #: 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 "Listbeskrivningen är för lång. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Det maximala antalet tecken är #.}}" +msgstr "Listbeskrivningen är för lång. {DESCRIPTION_MAX_GRAPHEMES, plural, other {Maximalt antal tecken är #.}}" #: src/screens/List/ListHiddenScreen.tsx:133 msgid "List has been hidden" @@ -6485,7 +6844,7 @@ msgstr "Listnamn" #: 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 "Listnamnet är för långt. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Det maximala antalet tecken är #.}}" +msgstr "Listnamnet är för långt. {DISPLAY_NAME_MAX_GRAPHEMES, plural, other {Maximalt antal tecken är #.}}" #: src/screens/ProfileList/components/Header.tsx:115 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:130 @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Lista inte längre ignorerad" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listor" @@ -6545,7 +6904,7 @@ msgstr "Liveevenemang synliggjort" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Liveevenemang dyker upp ibland när något spännande pågår. Om du vill kan du dölja just det här evenemanget eller alla evenemang från att visas på det här stället i appen." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Livesändnings­funktionen är i beta" @@ -6595,27 +6954,27 @@ msgstr "Läser in inläggets interaktionsinställningar…" msgid "Loading..." msgstr "Laddar…" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Lås" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Lås gruppchatt" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Lås gruppchatt?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Lås den här gruppchatten" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Låst" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Logg" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logotyp av @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logotyp av <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Det ser ut som om du saknar ett flöde med personer du följer. <0>Klick msgid "Love GIFs" msgstr "Kärleksfulla gif-bilder" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Gör justeringar i ditt kontos e-postinställningar" @@ -6687,24 +7046,22 @@ msgstr "Hantera verifieringsinställningar" msgid "Manage your muted words and tags" msgstr "Hantera dina ignorerade ord och taggar" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Markera alla som lästa" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Markera som läst" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Markerade alla som lästa" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Kanske senare" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "Medlemmen togs bort från gruppchatten." + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Medlemmar" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Medlemmarna kan fortfarande läsa chatthistoriken men kan inte skicka nya meddelanden." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Notiser för omnämnanden" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "omnämnda användare" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Omnämnanden" @@ -6761,7 +7118,7 @@ msgstr "Meddelande" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Skicka meddelande" @@ -6769,28 +7126,28 @@ msgstr "Skicka meddelande" #. placeholder {0}: profile.handle #: src/components/dms/MessageProfileButton.tsx:99 msgid "Message {0}" -msgstr "Meddelande {0}" +msgstr "Skicka meddelande till {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "Skicka meddelande till {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Meddelande raderat" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Meddelande raderat" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Det gick inte att skicka meddelande." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Meddelande från @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Meddelandet är för långt" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Meddelandet är för långt ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Meddelandealternativ" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Meddelanden" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 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." @@ -6838,10 +7195,6 @@ msgstr "Midnatt" msgid "Minor harassment or bullying" msgstr "Trakasserier eller mobbning av minderårig" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Övriga notiser" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Vilseledning" @@ -6850,7 +7203,7 @@ msgstr "Vilseledning" msgid "Missing media" msgstr "Media saknas" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderering" @@ -6894,7 +7247,7 @@ msgstr "Modereringslista uppdaterad" msgid "Moderation lists" msgstr "Modereringslistor" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Modereringslistor" @@ -6903,7 +7256,7 @@ msgstr "Modereringslistor" msgid "moderation settings" msgstr "modereringsinställningar" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Modereringslägen" @@ -6928,8 +7281,8 @@ msgstr "Fler språk…" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Fler alternativ" @@ -6949,7 +7302,7 @@ msgstr "Filmer" msgid "Music" msgstr "Musik" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Ignorera" @@ -6965,8 +7318,8 @@ msgstr "Stäng av ljud" msgid "Mute {0}" msgstr "Ignorera {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Ignorera konto" msgid "Mute accounts" msgstr "Ignorera konton" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Ignorera konversation" @@ -6994,7 +7347,7 @@ msgstr "Ignoreringslista" msgid "Mute these accounts?" msgstr "Ignorera dessa konton?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Ignorera den här gruppchatten" @@ -7022,17 +7375,21 @@ msgstr "Ignorera det här ordet endast i taggar" msgid "Mute this word until you unmute it" msgstr "Ignorera det här ordet tills du själv väljer att sluta med det" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Ignorera tråd" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Ignorera ord och taggar" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:207 +msgid "Mute, leave, or remove people anytime. It’s your chat." +msgstr "Stäng av notiser, lämna chatten eller ta bort deltagare när du vill. Det är din chatt." + +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Muted" msgstr "Ignoreras" @@ -7040,7 +7397,7 @@ msgstr "Ignoreras" msgid "Muted accounts" msgstr "Ignorerade konton" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Ignorerade konton" @@ -7062,6 +7419,10 @@ msgstr "Ignorerade ord och taggar" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Vad du ignorerar hålls privat. Ignorerade konton kan interagera med dig, men du kommer inte att se deras inlägg eller få notiser från dem." +#: src/components/moderation/BlockDialog.tsx:174 +msgid "Mutual group chats" +msgstr "Gemensamma gruppchattar" + #: src/components/dialogs/BirthDateSettings.tsx:54 #: src/components/dialogs/BirthDateSettings.tsx:58 msgid "My birthdate" @@ -7104,12 +7465,12 @@ msgstr "Navigera till startpaket" msgid "Navigates to the next screen" msgstr "Navigerar till nästa ruta" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Navigerar till din profil" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Behöver du skicka in ett upphovsrättsärende, en juridisk begäran eller något som rör regulatorisk efterlevnad?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Ny" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlägg från {firstAuthorLink}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{postsCount, plural, one {Nytt} other {Nya}} inlägg från {firstAuthorName}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Ny chatt" @@ -7163,7 +7525,7 @@ msgstr "Ny chatt med {0} och {1}" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "Ny chatt med {0}, {1} och {memberCount, plural, one {{memberCount} till} other {{memberCount} till}}." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Ny e-postadress" @@ -7171,32 +7533,30 @@ msgstr "Ny e-postadress" #: 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 "Ny funktion" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Notiser för nya följare" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Nya följare" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Ny gruppchatt" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Ny gruppchatt med:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Nytt inlägg" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Nytt inlägg" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Nya inlägg från {firstAuthorLink} och <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "Nya inlägg från {firstAuthorName} och {additionalAuthorsCount, plural, one {{formattedAuthorsCount} annan} other {{formattedAuthorsCount} andra}}" @@ -7262,8 +7622,8 @@ msgstr "Nyheter" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Nästa" msgid "Next image" msgstr "Nästa bild" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "Natt" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Inga följare ännu" @@ -7335,7 +7699,7 @@ msgstr "Ingen gif-bild hittades för ”{query}”." msgid "No GIFs to show right now. Try again in a moment." msgstr "Det finns inga gif-bilder att visa just nu. Försök igen om en stund." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Ingen bild" @@ -7353,8 +7717,8 @@ msgstr "Inga listor" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "{0} följs inte längre" @@ -7362,7 +7726,7 @@ msgstr "{0} följs inte längre" msgid "No media yet" msgstr "Ingen media ännu" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Inga meddelanden ännu" @@ -7378,12 +7742,12 @@ msgstr "Inget namn" msgid "No notifications yet!" msgstr "Inga notiser ännu!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Ingen" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Ingen" @@ -7399,7 +7763,7 @@ msgstr "Ingen" msgid "No one but the author can quote this post." msgstr "Ingen annan än författaren kan citera det här inlägget." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Ingen kan skicka meddelanden" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Inga resultat" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Inga resultat" @@ -7446,8 +7810,8 @@ msgstr "Inga resultat" msgid "No results for \"{0}\"." msgstr "Inga resultat för ”{0}”." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Inget resultat hittades" @@ -7509,12 +7873,12 @@ msgstr "Intima bilder eller videoklipp delade utan samtycke" msgid "Non-sexual Nudity" msgstr "Icke-sexuell nakenhet" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Ingen" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "Ej tillgängligt på denna plattform" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Ej tillgängligt på denna plattform." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Hittades inte" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Inte redo att publicera? Spara dina idéer som utkast tills tiden är inne." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Anmärkning om delning" @@ -7548,44 +7912,31 @@ msgstr "Obs: Det här inlägget visas bara för inloggade användare." msgid "Nothing saved yet" msgstr "Inget sparat ännu" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Notisinställningar" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Notisljud" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Notiser" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Notiser för allt annat, t.ex. när någon använder ett av dina startpaket vid registrering." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "nyss" @@ -7601,7 +7952,7 @@ msgstr "Numret bör vara ett mobilnummer" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Av" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Okej" @@ -7648,35 +8000,35 @@ msgstr "på<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Återställning av kom-igång-guide" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "En av de valda mottagarna tillåter inte gruppchattar." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "En av de valda mottagarna har blockerat dig och kan inte nås via meddelanden." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "En eller flera gif-bilder saknar alternativtext." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "En eller flera bilder saknar alternativtext." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "En eller flera av de filer du valt stöds inte." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "En eller flera av de filer du valt är för stora. Maxstorlek är 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Ett eller flera videoklipp saknar alternativtext." @@ -7685,6 +8037,26 @@ msgstr "Ett eller flera videoklipp saknar alternativtext." msgid "Only {0} can reply." msgstr "Endast {0} får svara." +#. 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:234 +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" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "Endast administratörer kan godkänna medlemsförfrågningar." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Endast administratörer kan avvisa medlemsförfrågningar." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Endast följare kan gå med i den här gruppchatten." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Bara följare som jag följer" msgid "Only image files are supported" msgstr "Endast bildfiler stöds" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Endast personer som {0} följer kan gå med." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Endast personer som chattägaren följer kan gå med" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Endast WebVTT-filer (.vtt) stöds" @@ -7703,6 +8085,10 @@ msgstr "Endast WebVTT-filer (.vtt) stöds" msgid "Oops, something went wrong!" msgstr "Hoppsan, något gick fel!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Hoppsan, något gick fel!" msgid "Oops!" msgstr "Hoppsan!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Öppna avatarskapare" @@ -7720,12 +8106,17 @@ msgstr "Öppna avatarskapare" msgid "Open camera" msgstr "Öppna kamera" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "Öppna chatt" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "Öppna medlemsalternativ för {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Öppna konversationsalternativ" @@ -7739,16 +8130,16 @@ msgstr "Öppna sidpanel" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Öppna emoji-väljaren" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Öppna meny för flödesalternativ" @@ -7760,13 +8151,22 @@ msgstr "Öppna fullständig emoji-lista" msgid "Open Germ DM" msgstr "Öppna Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Öppna gruppchatt" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Öppna inställningar för gruppchatt" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Öppna länk till {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Öppna paket" msgid "Open post options menu" msgstr "Öppna meny för inläggsalternativ" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Öppna profil" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Öppna Storybook-sida" msgid "Open system log" msgstr "Öppna systemlogg" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Öppna den här gruppchatten" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Öppnar en dialogruta där du kan lägga till en innehållsvarning för msgid "Opens a dialog to choose who can interact with this post" msgstr "Öppnar en dialogruta där du kan välja vilka som ska få interagera med det här inlägget" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Öppnar ytterligare detaljer för en loggpost" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Öppnar kameran på enheten" @@ -7858,22 +8270,24 @@ msgstr "Öppnar inläggsverktyget" msgid "Opens device camera" msgstr "Öppnar enhetens kamera" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "Öppnar enhetens galleri där du kan välja upp till {MAX_IMAGES, plural, other {# bilder}}, ett enskilt videoklipp eller en enskild gif-bild." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "Öppnar enhetens galleri där du kan välja upp till {MAX_GALLERY_IMAGES, plural, other {# bilder}}, ett enskilt videoklipp eller en enskild gif-bild." +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "Öppnar guide för att logga in på ditt befintliga Bluesky-konto" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Öppnar bild i full vy" @@ -7890,7 +8304,7 @@ msgstr "Öppnar bildväljaren" msgid "Opens link {0}" msgstr "Öppnar länken {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Öppnar dialogruta för livesändningsstatus" @@ -7902,15 +8316,23 @@ msgstr "Öppnar formulär för återställning av lösenord" msgid "Opens post language settings" msgstr "Öppnar inställningar för inläggsspråk" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Öppnar profil" +#: 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 "Öppnar dialogrutan för val av gif-bild" +#: 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 "Öppnar inläggsverktyget" @@ -7919,9 +8341,8 @@ msgstr "Öppnar inläggsverktyget" msgid "Opens this draft in the composer" msgstr "Öppnar det här utkastet i inläggsverktyget" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Öppnar den här profilen" @@ -7997,12 +8418,12 @@ msgstr "Vårt blogginlägg" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Vårt modereringsteam har tagit emot din anmälan." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Våra moderatorer har granskat anmälningarna och beslutat att ta bort din åtkomst till chattar på Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Våra moderatorer har granskat anmälningarna och beslutat att ta bort d msgid "Owner" msgstr "Ägare" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Sidan hittades inte" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "Ägare måste låsa gruppen innan de kan lämna den." -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Sidan hittades inte" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Pausa video" msgid "People" msgstr "Personer" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "Personer som {ownerName} följer kan gå med direkt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Personer som följs av @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Personer som följer @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Personer jag följer" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Personer jag följer kan gå med direkt" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Personer jag följer kan begära att få gå med" @@ -8136,13 +8558,17 @@ msgstr "Telefonnummer verifierat" msgid "Photography" msgstr "Fotografi" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "Välj ett färgtema" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Bilder avsedda för vuxna." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Fäst flöde" @@ -8152,12 +8578,12 @@ msgstr "Fäst flöde" msgid "Pin to home" msgstr "Fäst på hem" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Fäst på Hem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Fäst på din profil" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Fäst" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Fäste {0} på Hem" @@ -8236,7 +8662,7 @@ msgstr "Välj ditt användarnamn." msgid "Please choose your password." msgstr "Välj ditt lösenord." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Klicka på länken i e-postmeddelandet vi just skickade till dig för at msgid "Please complete the verification captcha." msgstr "Slutför captcha-verifieringen." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Bekräfta din e-postadress för att ladda upp videoklipp." @@ -8265,14 +8691,14 @@ msgstr "Ange ett lösenord. Det måste vara minst 8 tecken långt." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Ange ett unikt namn för applösenordet eller använd ett slumpmässigt genererat av oss." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Ange en giltig kod." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Ange en giltig e-postadress." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Se till att ange en giltig, icke-tillfällig e-postadress. Du kan behöva komma åt den här e-posten i framtiden." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Ange den kod vi skickade till <0>{0} nedan." @@ -8293,7 +8719,7 @@ msgstr "Ange den kod vi skickade till <0>{0} nedan." msgid "Please enter the code you received and the new password you would like to use." msgstr "Ange koden du fick och det nya lösenordet du vill använda." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "Ange din e-postadress." msgid "Please enter your invite code." msgstr "Ange din inbjudningskod." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Ange din nya e-postadress." @@ -8323,7 +8749,7 @@ msgstr "Ange ditt användarnamn" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Förklara varför du anser att den här etiketten har använts på ett felaktigt sätt av {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Förklara varför du anser att dina chattar felaktigt har inaktiverats" @@ -8358,7 +8784,11 @@ msgstr "Välj en orsak till din anmälan" msgid "Please sign in as @{0}" msgstr "Logga in som @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:40 +msgid "Please use the Bluesky mobile app to scan a QR code." +msgstr "Använd Blueskys mobilapp för att skanna QR-koden." + +#: src/screens/Settings/FindContactsSettings.tsx:107 msgid "Please use the native app to import your contacts." msgstr "Använd mobilappen för att importera dina kontakter." @@ -8366,7 +8796,7 @@ msgstr "Använd mobilappen för att importera dina kontakter." msgid "Please use the native app to sync your contacts." msgstr "Använd mobilappen för att synkronisera dina kontakter." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Verifiera din e-post" @@ -8383,7 +8813,7 @@ msgstr "Politik" msgid "Porn" msgstr "Porr" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Publicera" @@ -8403,12 +8833,12 @@ msgstr "Publicera ett foto" msgid "Post a video" msgstr "Publicera ett videoklipp" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Publicera alla" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Publicera ändå" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Inlägg blockerat" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Inlägg av @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Inlägg raderat" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Inlägget kunde inte laddas upp. Kontrollera din internetanslutning och försök igen." @@ -8454,18 +8884,22 @@ msgstr "Inlägg dolt av dig" msgid "Post interaction settings" msgstr "Interaktionsinställningar för inlägg" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Interaktionsinställningar för inlägg" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:193 +msgid "Post it to Bluesky or share anywhere." +msgstr "Publicera den på Bluesky eller dela den var du vill." + #. 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 "Val av inläggsspråk" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Publicera länk" @@ -8491,7 +8925,6 @@ msgstr "Inlägg lossat" #: 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "Inlägg, Svar" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "Potentiellt vilseledande länk" @@ -8525,9 +8954,10 @@ msgstr "Föredraget språk" msgid "Press to attempt reconnection" msgstr "Tryck för att försöka återansluta" -#: src/components/Error.tsx:61 +#: 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 "Tryck för att försöka igen" @@ -8536,7 +8966,7 @@ msgstr "Tryck för att försöka igen" msgid "Press to view followers of this account that you also follow" msgstr "Tryck för att visa personer både du och det här kontot följer" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Förhandsvisning" @@ -8559,26 +8989,25 @@ msgstr "Integritet" msgid "Privacy and security" msgstr "Integritet och säkerhet" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Integritetspolicy" @@ -8586,15 +9015,15 @@ msgstr "Integritetspolicy" msgid "Privacy violation of a minor" msgstr "Kränkning av minderårigs integritet" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "Bearbetar gif-bild…" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Bearbetar videoklipp…" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Bearbetar…" @@ -8602,10 +9031,10 @@ msgstr "Bearbetar…" msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "Platshållare för profilbanderoll" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profilen hittades inte" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Publicera inlägg" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 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:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Publicera samtliga svar" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Publicera samtliga svar" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Push" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Pushnotiser" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "Push, Från alla" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "Push, Från personer du följer" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-koden har kopierats till ditt urklipp!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-koden har laddats ner!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-koden har sparats i din kamerarulle!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Notiser för citat" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Notiser för citat" msgid "Quote post" msgstr "Citera inlägg" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Citatinlägget länkades samman på nytt" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Citatinlägget avskiljdes utan problem" @@ -8711,12 +9138,12 @@ msgstr "Citatinlägg inaktiverade" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Citat" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Citat av det här inlägget" @@ -8728,16 +9155,16 @@ msgstr "Anropsgränsen har överskridits. Du har försökt att ändra ditt anvä msgid "Rate limit exceeded. Please try again later." msgstr "Förfrågningsgränsen har överskridits. Försök igen senare." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Sätt tillbaka citat" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Återaktivera inbjudningslänk" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Återaktivera länk" @@ -8745,8 +9172,8 @@ msgstr "Återaktivera länk" msgid "React with {emoji}" msgstr "Reagera med {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Reaktioner" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "läs om hur du använder sökfilter" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Läs blogginlägget" @@ -8812,11 +9239,11 @@ msgstr "Äkta människor." msgid "Reason for appeal" msgstr "Skäl för omprövningsbegäran" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Ta emot notiser i appen" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Ta emot pushnotiser" @@ -8841,17 +9268,31 @@ msgstr "Rekommenderat" msgid "Reconnect" msgstr "Återanslut" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "Uppdatera sidan för att se den." + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Avvisa" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Avvisa" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Avvisa chattförfrågan" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "Avvisa medlemsförfrågan" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Ladda om konversationer" @@ -8863,6 +9304,8 @@ msgstr "Ladda om konversationer" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Ta bort {displayName} från gruppchatt" msgid "Remove {displayName} from starter pack" msgstr "Ta bort {displayName} från startpaketet" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "Ta bort {displayName} från den här gruppchatten" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "Ta bort {displayName}?" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Ta bort {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Ta bort {historyItem}" msgid "Remove account" msgstr "Ta bort konto" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Ta bort alla kontakter" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Ta bort bilaga" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Ta bort avatar" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Ta bort banderoll" @@ -8914,8 +9362,9 @@ msgstr "Ta bort banderoll" msgid "Remove caption file" msgstr "Ta bort undertextfil" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Ta bort inbäddning" @@ -8929,12 +9378,12 @@ msgstr "Ta bort flöde" msgid "Remove feed?" msgstr "Ta bort flöde?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Ta bort från chatt" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Ta bort från sparade inlägg" msgid "Remove from your feeds?" msgstr "Ta bort från dina flöden?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Ta bort bild" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Ta bort återpublicering" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Ta bort förslag" @@ -9009,11 +9458,11 @@ msgstr "Ta bort verifiering" msgid "Remove your verification for this account?" msgstr "Ta bort din verifiering av det här kontot?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Borttaget av författaren" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Borttaget av dig" @@ -9035,7 +9484,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:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Svarade dig" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Svar" @@ -9104,14 +9552,14 @@ msgstr "Svar inaktiverade" msgid "Replies to this post are disabled." msgstr "Svar är inaktiverat för det här inlägget." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Svara" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Svara ({0, plural, one {# svar} other {# svar}})" @@ -9125,10 +9573,6 @@ msgstr "Svaret har dolts av trådskaparen" msgid "Reply Hidden by You" msgstr "Svaret har dolts av dig" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Notiser för svar" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Svarsinställningarna sätts av trådens skapare" @@ -9137,18 +9581,18 @@ msgstr "Svarsinställningarna sätts av trådens skapare" msgid "Reply sorting" msgstr "Svarsordning" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Synlighet för svar har uppdaterats" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Svaret doldes utan problem" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Anmäl" @@ -9157,20 +9601,20 @@ msgstr "Anmäl" msgid "Report account" msgstr "Anmäl konto" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Anmäl konversation" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Dialogruta för anmälan" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Anmäl flöde" @@ -9179,12 +9623,12 @@ msgstr "Anmäl flöde" msgid "Report list" msgstr "Anmäl lista" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Anmäl meddelande" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Anmäl inlägg" @@ -9199,8 +9643,8 @@ msgstr "Anmäl startpaket" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Anmälan skickad" @@ -9213,7 +9657,7 @@ msgstr "Anmäl den här konversationen" msgid "Report this feed" msgstr "Anmäl det här flödet" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Anmäl den här gruppchatten" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Anmäl den här listan" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Anmäl där här livesändningen" @@ -9256,10 +9700,6 @@ msgstr "Återpublicera" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Återpublicera ({0, plural, one {# återpublicering} other {# återpubliceringar}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Notiser för återpubliceringar" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Återpublicerat av dig" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Återpubliceringar" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Återpubliceringar av det här inlägget" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Återpubliceringar av dina återpubliceringar" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Notiser för återpubliceringar av dina återpubliceringar" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Begär att få åtkomst till gruppchatten" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Förfrågan godkänd." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Begär kod" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Förfrågan avvisad." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Begär att få gå med" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "Förfrågan skickad" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Förfrågningar" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Medlemsförfrågningar" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Kräv alternativtext innan publicering" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Kräv en kod som skickas via e-post för att logga in på ditt konto." @@ -9328,7 +9791,17 @@ msgstr "Obligatoriskt för den här leverantören" msgid "Required in your region" msgstr "Obligatoriskt i din region" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Återkalla förfrågan" + +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:50 +msgid "Rescind request to join group chat" +msgstr "Återkalla förfrågan om att gå med i gruppchatt" + +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:39 msgid "Resend" msgstr "Skicka igen" @@ -9373,8 +9846,8 @@ msgstr "Återställ status för kom-igång-guide" msgid "Reset password" msgstr "Återställ lösenord" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Synkronisera om kontakter" @@ -9391,17 +9864,18 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Försöker igen med den senaste misslyckade åtgärden" msgid "Retry" msgstr "Försök igen" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Försök läsa in alternativ för anmälan på nytt" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Gå tillbaka till föregående sida" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Går tillbaka till föregående sida" @@ -9451,10 +9925,10 @@ msgstr "Ledsna gif-bilder" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Spara ändringar" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Spara ändringar?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Spara utkast" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Spara utkast?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Spara bild" msgid "Save new handle" msgstr "Spara nytt användarnamn" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Spara QR-kod" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Spara till mina flöden" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Sparat" @@ -9534,25 +10010,25 @@ msgstr "Sparat" msgid "Saved Feeds" msgstr "Sparade flöden" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Sparade inlägg" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Sparat i dina flöden" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Säg hej!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Säg hej till någon" @@ -9560,6 +10036,16 @@ msgstr "Säg hej till någon" msgid "Scam" msgstr "Bedrägeri eller bluff" +#: src/features/inviteFriends/components/ActionButtons.tsx:44 +msgid "Scan" +msgstr "Skanna" + +#: src/features/inviteFriends/InviteScannerScreen.tsx:82 +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:23 +#: src/Navigation.tsx:316 +msgid "Scan QR code" +msgstr "Skanna QR-kod" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Vetenskap" @@ -9576,18 +10062,18 @@ msgstr "Rulla åt höger" msgid "Scroll to top" msgstr "Gå till toppen" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Sök" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Sök i @{0}s inlägg" @@ -9662,12 +10148,12 @@ msgstr "Sök språk" msgid "Search my posts" msgstr "Sök i mina inlägg" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Sök inlägg" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Sök profiler" msgid "Search..." msgstr "Sök…" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Söker efter profiler" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Säkerhetssteg krävs" @@ -9759,7 +10245,7 @@ msgstr "Välj {langName}" msgid "Select a color" msgstr "Välj en färg" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Välj orsak" @@ -9828,7 +10314,7 @@ msgstr "Välj gif-bild" msgid "Select GIF \"{0}\"" msgstr "Välj gif-bild ”{0}”" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Välj medlemmar till gruppchatten" @@ -9850,7 +10336,7 @@ msgstr "Välj språk…" msgid "Select languages" msgstr "Välj språk" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Välj modereringstjänst" @@ -9904,11 +10390,11 @@ msgstr "Välj dina intressen bland alternativen nedan" msgid "Select your preferred language for translations in your feed." msgstr "Välj önskat språk för översättningar i ditt flöde." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Välj önskade notiskanaler" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Val av flera medietyper stöds inte." @@ -9921,9 +10407,9 @@ msgstr "Självskadebeteende eller farligt beteende" msgid "Send code" msgstr "Skicka kod" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Skicka e-postmeddelande" @@ -9935,11 +10421,11 @@ msgstr "Skicka e-postmeddelande" msgid "Send error report" msgstr "Rapportera fel" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Skicka feedback" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Skicka meddelande" @@ -9952,7 +10438,7 @@ msgstr "Skicka inlägg till {name}" msgid "Send post to..." msgstr "Skicka inlägg till…" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Skicka anmälan till {title}" @@ -9960,7 +10446,7 @@ msgstr "Skicka anmälan till {title}" msgid "Send the message from your phone" msgstr "Skicka meddelandet från din telefon" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Skicka via direktmeddelande" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "Skickat {0}" @@ -10015,14 +10501,14 @@ msgstr "Ange ditt födelsedatum nedan så är du igång och kan börja skriva in msgid "Sets email for password reset" msgstr "Ställer in e-postadress för återställning av lösenord" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Inställningar" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Inställningar för aktivitet från andra" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Notisinställningar för gillamarkeringar" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Notisinställningar för omnämnanden" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Notisinställningar för nya följare" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Notisinställningar för allt annat" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Notisinställningar för gillamarkeringar på dina återpubliceringar" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Notisinställningar för återpubliceringar av dina återpubliceringar" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Notisinställninngar för citat" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Notisinställningar för svar" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Notisinställningar för återpubliceringar" @@ -10079,16 +10565,19 @@ msgstr "Sexuella handlingar eller erotisk nakenhet." msgid "Sexually Suggestive" msgstr "Sexuellt suggestivt" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Dela" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Dela ändå" @@ -10097,16 +10586,21 @@ msgstr "Dela ändå" msgid "Share author DID" msgstr "Dela författarens DID" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Dela bild" +#: src/features/inviteFriends/components/ActionButtons.tsx:23 +msgid "Share invite link" +msgstr "Dela inbjudningslänk" + #: 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 "Dela länk" @@ -10114,6 +10608,11 @@ msgstr "Dela länk" msgid "Share link dialog" msgstr "Dialogruta för länkdelning" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "Dela min profil" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Dela inläggets at://-URI" msgid "Share QR code" msgstr "Dela QR-kod" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Dela det här flödet" @@ -10142,8 +10641,8 @@ msgstr "Dela det här startpaketet och hjälp andra att gå med i din gemenskap #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Dela via…" @@ -10151,7 +10650,7 @@ msgstr "Dela via…" msgid "Share your contacts to find friends" msgstr "Dela dina kontakter för att hitta vänner" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Testare för delade inställningar" @@ -10167,16 +10666,16 @@ msgstr "Visa alternativtext" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Visa ändå" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Visa automatiseringsetikett" @@ -10197,8 +10696,8 @@ msgstr "Visa anpassningsalternativ" msgid "Show group chat updates" msgstr "Visa chatthändelser" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Visa mindre av sånt här" @@ -10219,8 +10718,8 @@ msgstr "Visa liveenemang i ditt Upptäck-flöde" msgid "Show More" msgstr "Visa mer" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Visa mer av sånt här" @@ -10246,8 +10745,8 @@ msgstr "Visa svar" msgid "Show replies as" msgstr "Visa svar i" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Visa svar för alla" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Visa varning och filtrera i flöden" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Visa att du sänder live" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Visar information om när det här inlägget skapades" @@ -10297,15 +10796,17 @@ msgstr "Visar innehållet" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Logga in eller skapa ett konto" msgid "Sign in or create your account to join the conversation!" msgstr "Logga in eller skapa ett konto för att delta i konversationen!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Logga in för att acceptera inbjudan." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Logga in på ett olistat konto" @@ -10337,8 +10842,12 @@ msgstr "Logga in på ett olistat konto" msgid "Sign in to Bluesky or create a new account" msgstr "Logga in på Bluesky eller skapa ett nytt konto" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Logga in för att begära att få åtkomst till den här gruppchatten." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Logga in för att visa inlägg" @@ -10348,9 +10857,9 @@ msgstr "Logga in för att visa inlägg" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Logga ut" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Logga ut" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Logga ut?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Hoppa över tomma inlägg?" @@ -10405,7 +10914,7 @@ msgstr "Hoppa över introduktionen och börja använda ditt konto" msgid "Skip to next step" msgstr "Hoppa till nästa steg" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "slide" @@ -10413,7 +10922,7 @@ msgstr "slide" msgid "Smaller" msgstr "Mindre" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Skjuter upp påminnelsen" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Någon lämnade gruppen" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Någon reagerade med {0}" @@ -10487,17 +10996,22 @@ msgstr "Någon togs bort" msgid "Someone was removed from the group" msgstr "Någon togs bort från gruppen" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +msgstr "Något nytt finns här" + +#: 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 "Något står inte helt rätt till med den data du försöker anmäla. Vänligen kontakta supporten." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Något gick fel" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Något gick fel!" msgid "Something went wrong. Please try again in a moment." msgstr "Något gick fel. Försök igen om en stund." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Något gick fel. Försök igen." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Är något på tok? Hör av dig till oss." @@ -10564,11 +11078,16 @@ msgstr "Spam, oäkta beteende eller vilseledande innehåll" msgid "Sports" msgstr "Sport" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Starta en konversation, så visas den här." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:130 +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:135 +msgid "Start a group chat" +msgstr "Starta en gruppchatt" + +#: src/components/dms/dialogs/NewChatDialog.tsx:191 msgid "Start a new chat" msgstr "Starta en ny chatt" @@ -10582,17 +11101,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:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Starta chatt" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Starta chatt med {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Startpaket" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Streamar du på Twitch? Ställ in din livestatus på Bluesky för att lägga till ett märke vid din avatar. De som trycker på märket tas direkt till din stream." @@ -10671,8 +11190,8 @@ msgstr "Streamar du på Twitch? Ställ in din livestatus på Bluesky för att l #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Skicka" @@ -10684,9 +11203,9 @@ msgstr "Skicka omprövningsbegäran" msgid "Submit Appeal" msgstr "Skicka omprövningsbegäran" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Skicka anmälan" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Prenumerera" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "Prenumerera med {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "Prenumerera på {publicationTitle} med {0}" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Klart" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Klart!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Du har gått med i gruppchatten!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Verifiering lyckades" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Föreslagna" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Solnedgång" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Support" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Den här funktionen har inte aktiverats för ditt land ännu. Kom tillbaka senare." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Avstängda konton kan inte delta i en gruppchatt." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Avstängda konton kan inte delta i chatten." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Byt konto" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Byt mellan konton" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Byt till {0}" @@ -10824,11 +11347,15 @@ msgstr "Systemlogg" msgid "Tags only" msgstr "Endast taggar" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:184 +msgid "Take the conversation private." +msgstr "Fortsätt samtalet privat." + #: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Tryck för detaljer" @@ -10854,33 +11381,51 @@ msgstr "Tryck för att bekräfta att du förstår och godkänner uppdateringarna msgid "Tap to close context menu" msgstr "Tryck för att stänga kontextmeny" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "Tryck för att kopiera den här inbjudningslänken" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Tryck för att avvisa" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +msgid "Tap to join this group chat immediately" +msgstr "Tryck för att gå med i den här gruppchatten direkt" + +#: src/components/dms/ChatInvite/Root.tsx:105 +msgid "Tap to open this group chat" +msgstr "Tryck för att öppna den här gruppchatten" + +#: src/components/dms/ReactionsDialog.tsx:196 msgid "Tap to remove" msgstr "Tryck för att ta bort" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "Tryck för att ta bort din reaktion {0}" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +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:537 msgid "Tap to retry" msgstr "Tryck för att försöka igen" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "Tryck för att visa reaktioner med {0}" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tryck för att visa alla reaktioner" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tryck för att visa reaktioner" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Användarvillkor" @@ -10939,7 +11484,7 @@ msgstr "Textinnehåll och taggar" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Textinmatningsfält" @@ -10981,9 +11526,9 @@ msgstr "Det var allt!" msgid "That's everything!" msgstr "Det var allt!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Kontot kommer att kunna interagera med dig om du häver blockeringen." @@ -11049,6 +11594,11 @@ msgstr "Följande inställningar används som standard när du skapar nya inläg msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Enligt lagen i din region måste du verifiera att du är vuxen för att få tillgång till vissa funktioner. Tryck för att läsa mer." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "Gränsen för antalet medlemmar har nåtts." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Författaren till inlägget du svarar på har angett att det är skrivet på {suggestedLanguageName}. Vill du svara på <0>{suggestedLanguageName}?" @@ -11057,10 +11607,10 @@ msgstr "Författaren till inlägget du svarar på har angett att det är skrivet msgid "The Privacy Policy has been moved to <0/>" msgstr "Integritetspolicyn har flyttats till <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "Det valda videoklippet är större än {videoSize} MB. Försök igen med en mindre fil." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "Det valda videoklippet är större än {VIDEO_MAX_SIZE_MB} MB. Försök igen med en mindre fil." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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 "Det finns en gräns för hur ofta du kan ändra ditt födelsedatum. Vänta en dag eller två innan du försöker igen." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Det finns ingen inbjudningslänk för den här gruppchatten." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "Ett problem uppstod under inläsningen av gif-bilderna. Kontrollera din anslutning och försök igen." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Ett problem uppstod med att uppdatera dina flöden. Kontrollera din internetanslutning och försök igen." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Ett problem uppstod! {0}" @@ -11221,6 +11774,14 @@ msgstr "Det här är dina förvalda inställningar" msgid "These settings only apply to the Following feed." msgstr "De här inställningarna gäller bara för flödet Följer." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "Användaren äger chatten" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +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 msgid "This {screenDescription} has been flagged:" msgstr "Den här {screenDescription} har flaggats:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Denna omprövningsbegäran kommer att skickas till <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Denna omprövningsbegäran kommer att skickas till Blueskys modereringstjänst." @@ -11263,7 +11824,7 @@ msgstr "Denna omprövningsbegäran kommer att skickas till Blueskys modereringst msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Den här författaren har valt att bara visa sina inlägg för inloggade." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Med den här knappen kan andra öppna Germ DM-appen för att skicka ett meddelande till dig. Du kan ställa in om knappen ska visas eller inte i Germ DM-appen. Du kan också koppla från ditt Bluesky-konto från Germ DM helt och hållet genom att trycka på knappen nedan." @@ -11271,11 +11832,21 @@ msgstr "Med den här knappen kan andra öppna Germ DM-appen för att skicka ett msgid "This chat has ended" msgstr "Den här chatten är avslutad" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Den här chatten är full" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Den här chatten är låst" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "Den här chatten är låst på grund av en modereringsåtgärd" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Den här chatten tappade anslutningen" @@ -11310,7 +11881,11 @@ msgstr "Det här innehållet är inte tillgängligt eftersom en av de involverad msgid "This content is not viewable without a Bluesky account." msgstr "Det här innehållet kan inte visas utan ett Bluesky-konto." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Den här konversationen är låst." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Den här konversationen är med ett raderat eller avaktiverat konto. Tryck för att se alternativ" @@ -11318,7 +11893,7 @@ msgstr "Den här konversationen är med ett raderat eller avaktiverat konto. Try msgid "This draft will be permanently deleted." msgstr "Utkastet kommer att raderas permanent." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Den här e-postadressen är redan associerad med ditt konto." @@ -11356,11 +11931,15 @@ msgstr "Det här flödet är tomt." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Det här flödet är inte längre online. Vi visar <0>Upptäck istället." +#: src/screens/Messages/components/ChatLocked.tsx:73 +msgid "This group is locked by a moderation action on the owner" +msgstr "Den här gruppen är låst på grund av en modereringsåtgärd mot ägaren" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:611 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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Den här bilden kunde inte användas. Försök med ett annat format sås msgid "This information is private and not shared with other users." msgstr "Den här informationen är privat och delas inte med andra användare." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Den här inbjudningslänken har inaktiverats." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Den här inbjudningslänken är ogiltig" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Det här är ett tomt tillstånd" @@ -11377,9 +11964,9 @@ msgstr "Det här är ett tomt tillstånd" msgid "This is not a valid link" msgstr "Det här är inte en giltig länk" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Etiketten talar om för världen att kontot är automatiserat. Är den är aktiverad visas den bredvid visningsnamnet i kontots profil och inlägg. Etiketten kan när som helst slås på eller av." +msgstr "Etiketten talar om för världen att kontot är automatiserat. Är den aktiverad visas den bredvid visningsnamnet i kontots profil och inlägg. Etiketten kan när som helst slås på eller av." #: src/components/moderation/ModerationDetailsDialog.tsx:184 msgid "This label was applied by the author." @@ -11410,13 +11997,17 @@ msgstr "Namnet eller beskrivningen i den här listan – som är skapad av dig msgid "This list is empty." msgstr "Den här listan är tom." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "Det här meddelandet är dolt" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Det här meddelandet är dolt eftersom du blockerar användaren." @@ -11434,7 +12025,7 @@ msgstr "Den här personen blockerar dig" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Det här inlägget har <0>{0} som angivet skapelsedatum, men registrerades på Bluesky först den <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "Det här inlägget visas bara för inloggade användare." msgid "This post was deleted by its author" msgstr "Det här inlägget har raderats av författaren" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Författaren till det här inlägget har inaktiverat citatinlägg." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Den här profilen är syns bara för inloggade användare. Den syns inte för personer som inte är inloggade." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Det här svaret kommer att läggas i en dold sektion längst ner i tråden. Notiser för efterföljande svar stängs av både för dig själv och andra." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Den här vyn är endast tillgänglig för gruppkonversationer." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Den här användaren har inga följare." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Den här användaren har blockerat dig och kan inte nås via meddelanden." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Den här användaren har inaktiverat chatten och kan inte nås via meddelanden." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Detta kommer att permanent radera ditt Bluesky-konto <0>{currentHandle}< msgid "This will remove @{0} from the quick access list." msgstr "Det här tar bort @{0} från snabbåtkomstlistan." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Det här tar bort ditt inlägg från citatinlägget för alla användare, och ersätter det med en platshållare." @@ -11574,7 +12166,7 @@ msgstr "Trådinställningar" msgid "Threaded" msgstr "Trädvy" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Trådinställningar" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "För att inaktivera 2FA via e-post, verifiera att du har tillgång till e-postadressen." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "För att inaktivera 2FA via e-post, verifiera att du har tillgång till <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "Topp" msgid "Top replies first" msgstr "Populära svar först" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Ämne" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Översätt" @@ -11667,8 +12259,8 @@ msgstr "Översatt" msgid "Translating" msgstr "Översätter" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Översätter…" @@ -11702,7 +12294,7 @@ msgstr "Trendande videoklipp" msgid "Trolling" msgstr "Avsiktligt störande eller provocerande beteende (”trolling”)" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Förtroende skapas genom relationer, gemenskaper och delade sammanhang. Därför inför vi även <0>betrodda verifierare – organisationer med möjlighet att utfärda verifieringar direkt." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Försök med ett annat sökord eller <0>läs om hur du använder sökfilter." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Försök igen" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Försök igen" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +msgid "Try again in a moment." +msgstr "Försök igen om en stund." + #: src/components/Post/Translated/index.tsx:229 #: src/components/Post/Translated/index.tsx:242 msgid "Try Google Translate" msgstr "Försök med Google Översätt" +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:165 +#: src/components/dialogs/nuxs/InviteFriendsAnnouncement.tsx:171 +msgid "Try it" +msgstr "Prova det" + #: src/lib/interests.ts:74 msgid "TV" msgstr "TV" @@ -11763,13 +12369,17 @@ msgstr "Det gick inte att ansluta till din tjänst. Kontrollera din internetansl msgid "Unable to delete" msgstr "Det gick inte att radera" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Kunde inte hämta medlemsförfrågningar." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Kunde inte hitta en vald mottagare." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Kunde inte att hitta den valda mottagaren." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Otillgängligt" msgid "Unavailable feed information" msgstr "Otillgänglig flödesinformation" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Häv blockering" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Häv blockering" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "Häv blockering av {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Häv blockering av konto" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "Häv blockering av konto?" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Häv blockering av konto?" @@ -11837,8 +12452,8 @@ msgstr "Häv blockering av lista" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Ångra" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Ångra återpublicering ({0, plural, one {# återpublicering} other {# återpubliceringar}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Sluta följ {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Sluta följ konto" @@ -11872,7 +12487,7 @@ msgstr "Sluta följ konto" msgid "Unfollows the user" msgstr "Slutar följa användaren" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Tyvärr stöder ingen av de etikettsättare du prenumererar på den här typen av anmälan." @@ -11884,14 +12499,6 @@ msgstr "Tyvärr visar födelsedatumet i din profil att du är för ung för att msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Tyvärr visar den ålder du har angett att du inte är tillräckligt gammal för att få åtkomst till Bluesky i din region." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Återkalla inbjudan" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "Återkalla {displayName}s inbjudan till den här gruppchatten" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Okänd verifierare" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Sluta gilla" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Sluta gilla ({0, plural, one {# gillamarkering} other {# gillamarkeringar}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Lås upp chatt" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Lås upp den här gruppchatten" @@ -11939,14 +12546,14 @@ msgstr "Sätt på ljud" msgid "Unmute {0}" msgstr "Sluta ignorera {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Sluta ignorera konto" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Sluta ignorera konversation" @@ -11955,12 +12562,12 @@ msgstr "Sluta ignorera konversation" msgid "Unmute list" msgstr "Sluta ignorera lista" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Sluta ignorera den här gruppchatten" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Sluta ignorera tråd" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Lossa" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Lossa flöde" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Lossa från hem" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Lossa från profil" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Lossa modereringslista" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Lossade {0} från Hem" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Urklippsinnehåll stöds inte" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Videotypen stöds inte: {mimeType}" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:198 +msgid "Up to 50 people" +msgstr "Upp till 50 personer" + #: src/screens/Settings/components/OTAInfo.tsx:61 #: src/screens/Settings/components/OTAInfo.tsx:77 msgid "Update" @@ -12047,16 +12658,20 @@ msgstr "Uppdatera" msgid "Update <0>{displayName} in Lists" msgstr "Uppdatera <0>{displayName} i Listor" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "Uppdatera appen" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "Uppdatera e-post" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Uppdatera inbjudningslänk" @@ -12065,11 +12680,15 @@ msgstr "Uppdatera inbjudningslänk" msgid "Update to {domain}" msgstr "Uppdatera till {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Uppdatera din app till den senaste versionen för att gå med!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "Uppdatera din app" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "Uppdatera din app för att se den." + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "Uppdatera din e-post" @@ -12080,17 +12699,17 @@ msgstr "Uppdatera din e-post" msgid "Update your location" msgstr "Uppdatera din plats" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Det gick inte att uppdatera citatets sammanlänkning" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Det gick inte att uppdatera synlighet för svar" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Ladda upp ett foto istället" @@ -12098,39 +12717,40 @@ msgstr "Ladda upp ett foto istället" msgid "Upload a text file to:" msgstr "Ladda upp en textfil till:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Ladda upp från Kamera" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Ladda upp från Filer" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Ladda upp från Bibliotek" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "Laddar upp gif-bild…" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Laddar upp bilder…" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Laddar upp miniatyrbild av länk…" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Laddar upp video…" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "användare" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Användare blockerad" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Användarlista av {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "Användarlista av {0}" @@ -12255,12 +12875,12 @@ msgstr "användare som <0>@{0} följer" msgid "users following <0>@{0}" msgstr "användare som följer <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Användare jag följer" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Användare jag följer" @@ -12277,7 +12897,7 @@ msgstr "Verifiering misslyckades. Försök igen." msgid "Verification settings" msgstr "Verifieringsinställningar" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Verifieringsinställningar" @@ -12304,8 +12924,8 @@ msgstr "Verifiera igen" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Verifiera kod" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Verifiera DNS-post" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "Verifiera e-postkod" @@ -12349,7 +12969,7 @@ msgstr "Verifiera det här kontot?" msgid "Verify your age" msgstr "Verifiera din ålder" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Version {0}" msgid "Video" msgstr "Videoklipp" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Bearbetning av videoklipp misslyckades" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Videoflöde" @@ -12419,7 +13039,7 @@ msgstr "Videoklippet hittades inte." msgid "Video settings" msgstr "Inställningar för videoklipp" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Videoklipp uppladdat" @@ -12432,18 +13052,18 @@ msgstr "Videoklipp: {0}" msgid "Videos" msgstr "Videoklipp" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 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:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Visa" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "Visa {0}" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Visa {0}s profil" @@ -12467,20 +13087,15 @@ msgstr "Visa {0}s profil" msgid "View {0}’s profile" msgstr "Visa {0}s profil" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "Visa {displayName}s profil" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "Visa {publicationTitle}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "Visa @{0}s profil" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Visa blockerad användares profil" @@ -12503,9 +13118,17 @@ msgstr "Visa detaljer" msgid "View full thread" msgstr "Visa hela tråden" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" -msgstr "Visa inkommande gruppchattsförfrågningar" +msgstr "Visa väntande gruppchattsförfrågningar" + +#: src/screens/Messages/components/RequestStatus.tsx:54 +msgid "View incoming requests" +msgstr "Visa väntande förfrågningar" + +#: src/screens/Messages/components/RequestStatus.tsx:55 +msgid "View incoming requests to join this group chat" +msgstr "Visa väntande medlemsförfrågningar för den här gruppchatten" #: src/components/moderation/LabelsOnMe.tsx:56 msgid "View information about these labels" @@ -12522,7 +13145,7 @@ msgstr "Visa mer" msgid "View more trending videos" msgstr "Visa fler trendande videoklipp" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Visa inlägg" @@ -12539,10 +13162,10 @@ msgstr "Visa profil" msgid "View profile banner" msgstr "Visa profilbanderoll" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Visa publikation" @@ -12550,7 +13173,7 @@ msgstr "Visa publikation" msgid "View the avatar" msgstr "Visa avataren" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Visa inbjudningslänken för den här gruppchatten" @@ -12563,7 +13186,7 @@ msgstr "Visa etiketteringstjänsten från @{0}" msgid "View this user's verifications" msgstr "Visa den här användarens verifieringar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Visa användare som gillar det här flödet" @@ -12596,8 +13219,8 @@ msgstr "Visa de konton du har ignorerat" msgid "View your verifications" msgstr "Visa dina verifieringar" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Visar hela bilden" @@ -12640,8 +13263,8 @@ msgstr "Varna för innehåll" msgid "Warn content and filter from feeds" msgstr "Varna för innehåll och filtrera i flöden" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Titta nu" @@ -12665,11 +13288,15 @@ msgstr "Vi kunde inte hitta några resultat för den taggen." msgid "We couldn't find any results for that topic." msgstr "Vi kunde inte hitta några resultat för det ämnet." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Vi kunde inte läsa in den här konversationen" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Vi kunde inte läsa in den här konversationens medlemsförfrågningar" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Vi kunde inte läsa in den här konversationens inställningar" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Vi rekommenderar att du väljer minst två intressen." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi har skickat ett e-postmeddelande till <0>{0} med en länk. Klicka på den för att slutföra verifieringsprocessen." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Vi kunde inte avgöra om du har behörighet att ladda upp videoklipp. Försök igen." @@ -12744,12 +13371,12 @@ msgstr "Vi kunde inte ta emot verifieringen på grund av ett anslutningsproblem. msgid "We will let you know when your account is ready." msgstr "Vi meddelar dig när ditt konto är klart." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Vi kommer att meddela dig när vi hittar dina vänner." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "Vi kommer skicka ett e-postmeddelande till <0>{0} med en länk. Klicka på den för att slutföra verifieringsprocessen." @@ -12779,12 +13406,12 @@ msgstr "Vi har problem med att initiera ålderskontrollen för ditt konto. <0>Ko msgid "We're having network issues, try again" msgstr "Vi har nätverksproblem, försök igen" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Vi har nätverksproblem, försök igen" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Beklagar! Inlägget du svarar på har raderats." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Beklagar! Vi kan inte hitta den sida du letade efter." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Vad vill du att ditt startpaket ska heta?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Vad händer?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "När du trycker på bocken ser du vilka organisationer som står bakom verifieringen." @@ -12878,7 +13505,7 @@ msgstr "När du trycker på bocken ser du vilka organisationer som står bakom v msgid "Who can interact with this post?" msgstr "Vem får interagera med det här inlägget?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Vem får gå med i den här gruppchatten och hur?" @@ -12887,13 +13514,13 @@ msgstr "Vem får gå med i den här gruppchatten och hur?" msgid "Who can reply" msgstr "Vem får svara?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Vem kan verifiera?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Hoppsan!" @@ -12939,19 +13566,19 @@ msgstr "Varför borde det här startpaketet granskas?" msgid "Why should this user be reviewed?" msgstr "Varför borde den här användaren granskas?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Vill du blockera den här användaren och/eller radera den här konversationen?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Vill du blockera den här användaren och/eller lämna den här konversationen?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Vill du spara det här som ett utkast så att du kan fortsätta på det msgid "Write a post" msgstr "Skriv ett inlägg" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Skriv inlägg" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Skriv ditt svar" @@ -12978,7 +13605,8 @@ msgstr "Författare" msgid "Wrong DID returned from server. Received: {0}" msgstr "Fel DID returnerades från servern. Mottaget: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Fel typ av konversation" @@ -13005,11 +13633,11 @@ msgstr "Ja, radera mitt konto" msgid "Yes, delete this starter pack" msgstr "Ja, radera det här startpaketet" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Ja, avskilj" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Ja, dölj" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "Du blockerar {0}" @@ -13068,7 +13696,7 @@ msgstr "Du sänder live" msgid "You are no longer live" msgstr "Du sänder inte längre live" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Du har inte behörighet att ladda upp videoklipp." @@ -13117,21 +13745,30 @@ msgstr "Du kan när som helst ändra dig och radera dina uppgifter" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Du kan välja om chattnotiser har ljud i chattinställningarna i appen" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Du kan fortsätta pågående konversationer oavsett vilken inställning du väljer." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Du kan nu välja att få notiser när specifika personer publicerar inlägg. Om det är någon du vill få snabba uppdateringar från – gå till personens profil och leta efter den nya klockikonen bredvid följknappen." +#: src/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 "Nu kan du bjuda in vänner med en länk eller en QR-kod. Dela länken var du vill, eller låt en vän skanna koden för att hitta dig på Bluesky." + #: src/screens/Login/index.tsx:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Du kan nu logga in med ditt nya lösenord." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Du kan bara spara utkast med upp till 1000 tecken." @@ -13139,11 +13776,11 @@ msgstr "Du kan bara spara utkast med upp till 1000 tecken." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Du kan bara spara utkast med upp till 1000 tecken. Vill du slänga det här inlägget innan du går till dina utkast?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Du kan endast välja en gif-bild åt gången." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Du kan endast välja ett videoklipp åt gången." @@ -13155,10 +13792,10 @@ msgstr "Du kan återaktivera ditt konto för att fortsätta logga in. Din profil msgid "You can read chat history but can’t send new messages." msgstr "Du kan läsa chatthistoriken men inte skicka nya meddelanden." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Du kan välja upp till {MAX_IMAGES, plural, other {# bilder}} totalt." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,9 +13803,14 @@ msgstr "Du kan välja upp till {MAX_IMAGES, plural, other {# bilder}} totalt." msgid "You can update this later from your settings." msgstr "Du kan ändra det här senare i dina inställningar." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "Du kan inte lägga till mer än {EMOJI_REACTION_LIMIT, plural, one {# emojireaktion} other {# emojireaktioner}}" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." -msgstr "" +msgstr "Du kan inte skapa en gruppchatt ännu." #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 @@ -13197,6 +13839,10 @@ msgstr "Du har inga sparade flöden." msgid "You got here first" msgstr "Du kom hit först" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "Du har tidigare tagits bort från den här gruppen och kan inte gå med i den genom länken." + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +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." + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Du måste vara minst 13 år för att använda Bluesky. Läs våra <0>användarvillkor för mer information." @@ -13332,11 +13982,12 @@ msgstr "Du måste vara minst 13 år för att använda Bluesky. Läs våra <0>anv msgid "You must be following at least seven other people to generate a starter pack." msgstr "Du måste följa minst sju andra personer för att generera ett startpaket." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Du måste ge åtkomst till ditt fotobibliotek för att spara en QR-kod" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Du måste tillåta åtkomst till ditt mediebibliotek." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "Du äger chatten" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Du reagerade med {0}" @@ -13368,8 +14023,13 @@ msgstr "Du reagerade med {0} på {target}" msgid "You recently changed your birthdate" msgstr "Du ändrade ditt födelsedatum nyligen" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "Medlemsförfrågan skickad" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Du kommer att loggas ut från alla dina konton." @@ -13378,11 +14038,11 @@ msgstr "Du kommer att loggas ut från alla dina konton." msgid "You will no longer receive notifications for {0}" msgstr "Du kommer inte längre att få notiser om {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Du kommer inte längre få notiser om den här tråden" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Du kommer att få notiser om den här tråden i fortsättningen" @@ -13390,12 +14050,12 @@ msgstr "Du kommer att få notiser om den här tråden i fortsättningen" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Du kommer att få ett e-postmeddelande med en ”återställningskod”. Ange koden här och ange sedan ditt nya lösenord." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Du kommer inte att kunna gå med igen utan en inbjudan." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Du: {message}" @@ -13429,6 +14089,10 @@ msgstr "Du kommer i fortsättningen att få notiser om {0}!" msgid "You'll stay updated with these feeds" msgstr "Du kommer att hålla dig uppdaterad med dessa flöden" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "Du bestämmer" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Du står i kö" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "Du har nått det maximala antalet utkast" @@ -13475,11 +14139,11 @@ msgstr "Du har nått maxgränsen för antalet tillåtna begäranden. Försök ig msgid "You've reached the start of the active content." msgstr "Du har nått början av det aktiva innehållet." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Du har nått din dagliga gräns för videouppladdningar (för många byte)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Du har nått din dagliga gräns för videouppladdningar (för många videoklipp)" @@ -13499,10 +14163,18 @@ msgstr "Ditt konto har raderats. Ha det! ✌️" msgid "Your account has been suspended" msgstr "Ditt konto har stängts av" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ditt konto är ännu inte tillräckligt gammalt för att ladda upp videoklipp. Försök igen senare." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Ditt konto är för nytt" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Ditt kontos dataarkiv innehåller alla publika dataposter och kan laddas ner som en car-fil. Filen innehåller inte inbäddade medier såsom bilder, eller din privata data som måste hämtas separat." @@ -13519,7 +14191,7 @@ msgstr "Din omprövningsbegäran har skickats. Du kommer att meddelas via e-post msgid "Your birth date" msgstr "Ditt födelsedatum" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Dina chattar har inaktiverats" @@ -13527,11 +14199,11 @@ msgstr "Dina chattar har inaktiverats" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Ditt val kommer att sparas för framtida länkar. Du kan ändra det när som helst i inställningar." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Din kontakt {firstAuthorLink} finns på Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Din kontakt {firstAuthorName} finns på Bluesky" @@ -13561,7 +14233,7 @@ msgstr "Din e-post" msgid "Your email appears to be invalid." msgstr "Din e-postadress verkar vara ogiltig." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "Din e-post har inte verifierats än. Se till att verifiera din e-post för att kunna använda alla funktioner på Bluesky." @@ -13582,7 +14254,7 @@ msgstr "Ditt följflöde är tomt! Följ fler användare för att se vad som hä msgid "Your full handle will be <0>@{0}" msgstr "Ditt fullständiga användarnamn blir <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Din plats har uppdaterats." msgid "Your muted words" msgstr "Dina ignorerade ord" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Ditt namn, din avatar och namnet på gruppchatten kommer att vara synliga för alla." +#: 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 "Ditt namn, din avatar, gruppchattens namn och antalet medlemmar kommer vara synliga för alla." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Ditt inlägg har skickats" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Dina inlägg har skickats" @@ -13635,7 +14307,7 @@ msgstr "Dina inlägg har skickats" msgid "Your preferred language" msgstr "Ditt föredragna språk" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Din profilbild" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Ditt svar har skickats" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Din anmälan kommer att skickas till <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Din anmälan kommer att skickas till <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Dina valda intressen hjälper oss att visa dig innehåll som du bryr dig om." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 98eddae946..f5185a4f2d 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(มีเนื้อหาที่ฝังอยู่)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# นาที} other {# นาที}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# เดือน} other {# เดือน}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}น." msgid "{0}s" msgstr "{0}วินาที" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {ชั่วโมง} other {ชั่ msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {นาที} other {นาที}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} ติดตามอยู่" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} ไม่สามารถส่งข้อความได้" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {รีโพสต์}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "การเข้าถึง" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "การตั้งค่าการเข้าถึง" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "การตั้งค่าการเข้าถึง" msgid "Account" msgstr "บัญชี" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "บัญชีถูกบล็อก" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "ติดตามบัญชีแล้ว" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "ลบบัญชีออกจากการเข้าถึงด่วนแล้ว" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "ปลดบล็อกบัญชีแล้ว" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "เลิกติดตามบัญชีแล้ว" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "เลิกปิดเสียงบัญชีแล้ว" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "เพิ่ม" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "เพิ่มข้อความแสดงแทน (ไม่บ #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "" msgid "Add App Password" msgstr "เพิ่มรหัสผ่านแอป" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "อนุญาตให้คนเข้าถึงข้อควา msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "เข้าสู่ระบบของ @{0} เรียบร้อยแล้ว" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "ข้อความแสดงแทนอธิบายรูปภาพสำหรับผู้ใช้ที่พิการทางสายตาและผู้มีสายตาเลือนลาง และช่วยให้บริบทแก่ทุกคน" @@ -1387,7 +1486,7 @@ msgstr "เกิดข้อผิดพลาด" msgid "An error occurred" msgstr "เกิดข้อผิดพลาด" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "เกิดข้อผิดพลาดขณะบีบอัดวิดีโอ" @@ -1421,7 +1520,8 @@ msgstr "เกิดข้อผิดพลาดขณะโหลดวิด msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "เกิดข้อผิดพลาดขณะบันทึก QR code!" @@ -1432,11 +1532,11 @@ msgstr "เกิดข้อผิดพลาดขณะบันทึก QR msgid "An error occurred while trying to follow all" msgstr "เกิดข้อผิดพลาดขณะพยายามติดตามทั้งหมด" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "เกิดปัญหาขณะพยายามเปิดกา #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "เกิดปัญหา กรุณาลองอีกครั้ง" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "" msgid "App passwords" msgstr "รหัสผ่านแอป" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "รหัสผ่านแอป" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "ส่งคำอุทธรณ์แล้ว" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "คุณแน่ใจหรือว่าต้องการลบ msgid "Are you sure you want to discard your changes?" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "คุณแน่ใจหรือว่าต้องการออกจากการสนทนานี้? ข้อความของคุณจะถูกลบสำหรับคุณ แต่ไม่ใช่สำหรับผู้เข้าร่วมคนอื่น" +#: src/components/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 "คุณแน่ใจหรือว่าต้องการลบสิ่งนี้ออกจากฟีดของคุณ?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "" @@ -1724,8 +1838,8 @@ msgstr "ศิลปะ" msgid "Artistic or non-erotic nudity." msgstr "ภาพนู้ดที่เป็นศิลปะหรือไม่ใช่ภาพอนาจาร" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "กลับ" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "วันเกิด" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "บล็อก" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "บล็อกบัญชี" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "ลิสต์บล็อก" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "บล็อกบัญชีเหล่านี้?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "" @@ -1948,7 +2059,7 @@ msgctxt "button" msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "ถูกบล็อก" @@ -1964,14 +2075,12 @@ msgstr "ถูกบล็อก" msgid "Blocked accounts" msgstr "บัญชีที่ถูกบล็อก" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "บัญชีที่ถูกบล็อก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้" @@ -1987,7 +2096,7 @@ msgstr "การบล็อกไม่ได้ป้องกันผู้ msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "การบล็อกเป็นสาธารณะ บัญชีที่ถูกบล็อกไม่สามารถตอบในกระทู้ของคุณ, กล่าวถึงคุณ, หรือมีปฏิสัมพันธ์กับคุณได้" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "การบล็อกจะไม่ป้องกันไม่ให้ป้ายถูกวางบนบัญชีของคุณ แต่จะหยุดบัญชีนี้จากการตอบในกระทู้ของคุณหรือมีปฏิสัมพันธ์กับคุณ" @@ -2000,7 +2109,7 @@ msgstr "บล็อก" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "" @@ -2029,7 +2138,7 @@ msgstr "Bluesky สนุกยิ่งขึ้นเมื่อมีเพ msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky จะเลือกชุดบัญชีที่แนะ msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky จะไม่แสดงโปรไฟล์และโพสต์ของคุณให้กับผู้ใช้ที่ออกจากระบบ แอปอื่นอาจไม่ให้เกียรติกับคำขอนี้ สิ่งนี้ไม่ได้ทำให้บัญชีของคุณเป็นส่วนตัว" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "หนังสือ" 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" @@ -2137,24 +2254,34 @@ msgstr "ธุรกิจ" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "โดย {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "" msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "ยกเลิก" @@ -2248,9 +2384,9 @@ msgstr "ยกเลิกการเปิดใช้งานใหม่แ msgid "Cancel search" msgstr "ยกเลิกการค้นหา" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "ไม่สามารถโต้ตอบกับผู้ใช้ที่ถูกบล็อก" @@ -2264,7 +2400,7 @@ msgstr "คำบรรยาย (.vtt)" msgid "Captions & alt text" msgstr "คำบรรยาย & ข้อความสำรอง" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "เปลี่ยนแฮนด์เดิล" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "แชท" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "ปิดเสียงแชทแล้ว" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "ตั้งค่าแชท" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "ตั้งค่าแชท" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "เปิดเสียงแชทแล้ว" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "เลือกสีนี้เป็นอวาตาร์ของคุณ" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "คลิกเพื่อพยายามส่งข้อความที่ล้มเหลวอีกครั้ง" @@ -2594,28 +2745,30 @@ msgstr "คลิกเพื่อพยายามส่งข้อควา #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "คลิกเพื่อพยายามส่งข้อควา #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "ปิด" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "ปิดกล่องโต้ตอบที่เปิดอยู่" @@ -2647,6 +2800,10 @@ msgstr "ปิดกล่องโต้ตอบที่เปิดอยู msgid "Close alert" msgstr "ปิดการแจ้งเตือน" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "ปิดลิ้นชักด้านล่าง" @@ -2657,8 +2814,10 @@ msgstr "ปิดลิ้นชักด้านล่าง" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "ปิดกล่องโต้ตอบ" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "ปิดภาพ" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "ปิดกล่องโต้ตอบนี้" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "ปิดการแจ้งเตือนการอัปเดตรหัสผ่าน" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "ย่อลิสต์ผู้ใช้" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "ย่อลิสต์ผู้ใช้สำหรับการแจ้งเตือนที่กำหนด" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "การ์ตูน" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "แนวทางชุมชน" @@ -2740,12 +2915,12 @@ msgstr "ทำให้สำเร็จตามความท้าทาย #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "สร้างการตอบกลับ" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "" @@ -2780,7 +2955,7 @@ msgstr "ตั้งค่าใน <0>การตั้งค่าการ msgid "Confirm" msgstr "ยืนยัน" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "ติดต่อฝ่ายสนับสนุน" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "" @@ -2889,7 +3064,7 @@ msgstr "แบ็คดรอปเมนูบริบท คลิกเพ #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "ดำเนินการต่อเธรด..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "การสนทนาถูกลบ" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "การสนทนาถูกลบ" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "คัดลอกเวอร์ชันบิลด์ไปยังคลิปบอร์ดแล้ว" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "คัดลอกแล้ว!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "คัดลอก" @@ -2997,6 +3184,11 @@ msgstr "" msgid "Copy host" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "คัดลอกลิงก์ไปยังลิสต์" msgid "Copy link to post" msgstr "คัดลอกลิงก์ไปยังโพสต์" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "คัดลอกข้อความ" @@ -3037,12 +3229,12 @@ msgstr "คัดลอกข้อความ" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "คัดลอกข้อความโพสต์" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "คัดลอก QR โค้ด" @@ -3052,11 +3244,15 @@ msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "นโยบายลิขสิทธิ์" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "ไม่สามารถออกจากการสนทนาได้" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "ไม่สามารถโหลดฟีดได้" @@ -3100,7 +3308,11 @@ msgstr "ไม่สามารถโหลดฟีดได้" msgid "Could not load list" msgstr "ไม่สามารถโหลดลิสต์ได้" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "ไม่สามารถปิดเสียงการสนทนาได้" @@ -3108,11 +3320,19 @@ msgstr "ไม่สามารถปิดเสียงการสนทน msgid "Could not process your video" msgstr "ไม่สามารถประมวลผลวิดีโอของคุณได้" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "สร้าง" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "สร้างชุดเริ่มต้น" @@ -3174,13 +3394,14 @@ msgstr "สร้างชุดเริ่มต้นสำหรับฉั #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "สร้างบัญชี" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "สร้างอวตารแทน" @@ -3206,7 +3427,7 @@ msgstr "สร้างอวตารแทน" msgid "Create another" msgstr "สร้างอันใหม่" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "สร้างบัญชีใหม่" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "สร้างรายงานสำหรับ {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "สร้างเมื่อ {0}" @@ -3270,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "วัฒนธรรม" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "ธีมมืด" msgid "Date of birth" msgstr "วันเกิด" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "ค่าเริ่มตัน" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "ลบรหัสผ่านแอป" msgid "Delete app password?" msgstr "ลบรหัสผ่านแอปหรือไม่?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "ลบบันทึกการประกาศแชท" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "ลบสำหรับฉัน" @@ -3399,11 +3633,11 @@ msgstr "ลบสำหรับฉัน" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "ลบข้อความ" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "ลบข้อความสำหรับฉัน" @@ -3411,9 +3645,9 @@ msgstr "ลบข้อความสำหรับฉัน" msgid "Delete my account" msgstr "ลบบัญชีของฉัน" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "ลบโพสต์" @@ -3430,17 +3664,17 @@ msgstr "ลบชุดเริ่มต้นหรือไม่?" msgid "Delete this list?" msgstr "ลบลิสต์นี้หรือไม่?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "ลบโพสต์นี้หรือไม่?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "ถูกลบ" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "ข้อความคำอธิบายภาพ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "แยกการอ้างอิง" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "แยกการอ้างอิงโพสต์หรือไม่?" @@ -3507,13 +3741,13 @@ msgstr "กล่องโต้ตอบ: ปรับว่าใครสา msgid "Dim" msgstr "สว่าง" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "ปิดการยืนยันตัวตนสองชั้น msgid "Disable haptic feedback" msgstr "ปิดการตอบสนองแบบสั่น" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "ปิดใช้งาน" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "ละทิ้ง" msgid "Discard changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "ค้นพบฟีดใหม่" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "ปิด" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "ปิดข้อผิดพลาด" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "ไม่มีเนื้อหาที่เปิดเผย" msgid "Domain verified!" msgstr "ยืนยันโดเมนแล้ว!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "เสร็จสิ้น" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "แตะสองครั้งเพื่อปิดหน้าต่าง" @@ -3737,19 +3981,14 @@ msgstr "แตะสองครั้งเพื่อปิดหน้าต 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 "ดาวน์โหลด Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "ดาวน์โหลดไฟล์ CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "ดาวน์โหลดไฟล์ CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "ระยะเวลา:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "เช่น alice" @@ -3823,9 +4079,8 @@ msgstr "เช่น ผู้ใช้ที่ตอบกลับด้ว msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "แก้ไข" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "แก้ไขรูปประจำตัว" @@ -3847,19 +4102,19 @@ msgstr "แก้ไขรูปประจำตัว" msgid "Edit Feeds" msgstr "แก้ไขฟีด" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "แก้ไขรูปภาพ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "แก้ไขการตั้งค่าการโต้ตอบ" @@ -3868,7 +4123,16 @@ msgstr "แก้ไขการตั้งค่าการโต้ตอบ msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "แก้ไขฟีดของฉัน" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "แก้ไขบุคคล" @@ -3912,12 +4171,12 @@ msgstr "แก้ไขการตั้งค่าการโต้ตอบ #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "แก้ไขโปรไฟล์" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "แก้ไขโปรไฟล์" @@ -3925,7 +4184,8 @@ msgstr "แก้ไขโปรไฟล์" msgid "Edit starter pack" msgstr "แก้ไขชุดเริ่มต้น" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "แก้ไขผู้ที่สามารถตอบกลับได้" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "แก้ไขชุดเริ่มต้นของคุณ" @@ -3971,7 +4231,7 @@ msgstr "ที่อยู่อีเมล" msgid "Email Resent" msgstr "ส่งข้อความอีเมลอีกรอบ" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "ฝังโพสต์เว็บไซต์ของคุณ แ msgid "Embedded video player" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "" @@ -4025,7 +4285,7 @@ msgstr "อนุญาตให้เข้าถึงเนื้อหาผ msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "อนุญาตให้นำไฟล์ด้านนอกเข msgid "Enable media players for" msgstr "อนุญาตตัวเล่นสื่อสำหรับ" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "ป้อนรหัสผ่าน" msgid "Enter a word or tag" msgstr "ป้อนคำหรือแท็ก" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ msgstr "คนที่สามารถตอบกลับได้" msgid "Everybody can reply to this post." msgstr "คนที่สามารถตอบกลับได้ในโพสค์นี้" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "ทุกคน" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "ทุกคน" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "ทุกคน" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "ไม่รวมผู้ใช้ที่คุณติดตาม msgid "Exit fullscreen" msgstr "ออกจากโหมดเต็มหน้าจอ" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "ขยายรายชื่อผู้ใช้" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "ขยายหรือลดขนาดโพสต์ทั้งหมดที่คุณตอบกลับ" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4277,10 +4536,10 @@ msgstr "สื่อที่ชัดเจนหรืออาจทำให msgid "Explicit sexual images." msgstr "ภาพเปลือยชัดเจน" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "การตั้งค่าสื่อภายนอก" @@ -4331,18 +4587,22 @@ msgstr "การตั้งค่าสื่อภายนอก" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "สร้างชุดเริ่มต้นไม่สำเร็จ" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "การลบข้อความล้มเหลว" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "การลบโพสต์ล้มเหลว โปรดลองใหม่อีกครั้ง" @@ -4394,24 +4655,24 @@ msgstr "การลบโพสต์ล้มเหลว โปรดลอ msgid "Failed to delete starter pack" msgstr "การลบตัวเริ่มต้นล้มเหลว" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "การโหลดฟีตที่ตั้งค่าล้มเหลว" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "การแนะนำฟีตล้มเหลว" msgid "Failed to load suggested follows" msgstr "การแนะนำคนที่คุณควรติดตามล้มเหลว" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "การปักหมุดโพสต์ล้มเหลว" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "การยื่นคำอุทธรณ์ล้มเหลว โปรดลองอีกครั้ง" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "การเปลี่ยนสถานะด้วยการปิดเธรดล้มเหลว โปรดลองอีกครั้ง" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "การอัปเดตฟีตล้มเหลว" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "การอัปเดตการตั้งค่าล้มเหลว" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "ฟีด" @@ -4649,7 +4914,7 @@ msgstr "ฟีด" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "ฟีดโดย {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "ข้อเสนอแนะ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "ฟีด" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "กำลังสรุปผล" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "ค้นหาบัญชีเพื่อคิดตาม" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "ติดตาม" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "ติดตาม {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "ติดตามบัญชี" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "ติดตามคุณกลับ" @@ -4916,7 +5183,7 @@ msgstr "ติดตามคุณกลับ" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "ติดตามโดย <0>{0} และ <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "ติดตามโดย <0>{0}, <1>{1} และ {2, plural, one {# other} other {# others}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "ผู้ติดตามของ @{0} ที่คุณรู้จัก" @@ -4960,10 +5231,10 @@ msgstr "ผู้ติดตามที่คุณรู้จัก" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "ติดตาม" @@ -4977,12 +5248,12 @@ msgstr "ติดตาม" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "ติดตาม {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "การตั้งค่าฟีดการติดตาม" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "การตั้งค่าฟีดการติดตาม" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "ติดตามคุณ" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "ติดตามคุณ" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "แบบอักษร" @@ -5065,11 +5333,16 @@ msgstr "ลืมรหัสผ่านใช่ไหม?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "จาก <0/>" msgid "Generate a starter pack" msgstr "สร้างชุดเริ่มต้น" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "รับความช่วยเหลือ" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "ทำให้โปรไฟล์ของคุณมีความน่าสนใจขึ้น" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "กลับ" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "กลับไปยังก่อนหน้า" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "กลับเข้าสู่หน้าหลัก" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "กลับเข้าสู่หน้าหลัก" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "กลับเข้าสู่หน้าหลัก" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "ไปที่การสนทนา {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "ถัดไป" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "ไปที่หน้าโปรไฟล์ผู้ใช้" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "แฮชแท็ก" @@ -5458,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "การช่วยเหลือ" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "ทำให้คนทราบว่าคุณไม่ใช่หุ่นยนต์โดยการอัพโหลตรูปภาพหรือการสร้างอวาตาร์" @@ -5522,7 +5820,7 @@ msgstr "ลิสต์ที่ซ่อนไว้" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "ลิสต์ที่ซ่อนไว้" msgid "Hide" msgstr "ซ่อน" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "ซ่อน" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "ซ่อนการสำหรับฉัน" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "ซ่อนโพสต์นี้ใช่ไหม?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "ซ่อนลิสต์ผู้ใช้" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "อื้มมมม... ดูเหมือนว่าเราม msgid "Hmmmm, we couldn't load that moderation service." msgstr "อื้มมมม... ดูเหมือนว่าเราไม่สามารถโหลดเซอร์วิสการตรวจสอบได้" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "รอสักครู่! เรากำลังเปิดให้เข้าถึงวิดีโออย่างค่อยเป็นค่อยไป และคุณยังอยู่ในคิว แล้วกลับมาอีกครั้งจ้า" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "หน้าหลัก" @@ -5721,7 +6019,7 @@ msgstr "ฉันเข้าใจแล้ว" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "หากข้อความแทนภาพยาว จะทำการเปลี่ยนสถานะการขยายข้อความแทนภาพ" @@ -5757,15 +6055,15 @@ msgstr "หากคุณลบลิสต์นี้ คุณจะไม msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "หากคุณพยายามเปลี่ยนแฮนด์เดิ้ลของคุณ ให้ทำการเปลี่ยนก่อนที่คุณจะหยุดใช้งานบัญชีนี้" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "รูปภาพ" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "รหัสยืนยัน 2FA ไม่ถูกต้อง" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "รหัสยืนยันนี้ไม่ถูกต้อง" @@ -6001,8 +6315,15 @@ msgstr "โค้ดคำเชิญ" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "โค้ดคำเชิญไม่ถูกต้อง โปรดตรวจสอบว่าคุณกรอกถูกต้องหรือยัง แล้วลองอีกครั้ง" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "" @@ -6083,6 +6419,11 @@ msgstr "" msgid "Jobs" msgstr "งาน" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "งาน" msgid "Join Bluesky" msgstr "เข้าร่วม Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "เข้าร่วมการสนทนา" msgid "Journalism" msgstr "วารสาร" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "มาร์คในบัญชีของคุณ" msgid "Labels on your content" msgstr "มาร์คในเนื้อหาของคุณ" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "ตั้งค่าภาษา" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "ล่าสุด" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับข้อควรระวัง" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "เรียนรู้เพิ่มเติมเกี่ยวกับสิ่งที่เป็นสาธารณะบน Bluesky" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "เรียนรู้เพิ่มเติม" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "ออก" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "ออกจากแชท" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "ออกจากการสนทนา" @@ -6284,13 +6642,14 @@ msgstr "ออกจากการสนทนา" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "ออกจากการสนทนา" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "ออก Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "ปล่อยไปเถอะ" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "แสง" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6346,11 +6713,7 @@ msgstr "ชอบ 10 โพสต์" msgid "Like 10 posts to train the Discover feed" msgstr "ชอบ 10 โพสต์" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "ชอบฟีตนี้" @@ -6358,8 +6721,8 @@ msgstr "ชอบฟีตนี้" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "ชอบโดย" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "ถูกใจ" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "ชอบในโพสต์นี้" @@ -6409,11 +6768,11 @@ msgstr "ชอบในโพสต์นี้" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "ลิสต์" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "ลิสต์เปิดเสียง" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "ลิสต์" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "กำลังโหลด..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "บันทึก" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "" @@ -6662,7 +7021,7 @@ msgstr "ดูเหมือนว่าคุณจะพลาดฟีตท msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "ทำเครื่องหมายว่าอ่านแล้ว" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "ผู้ใช้ที่ถูกกล่าวถึง" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "ส่งข้อความถึง {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "ข้อความถูกลบ" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "ข้อความถูกลบ" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "ข้อความยาวเกินไป" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "ข้อความ" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "การกรอง" @@ -6894,7 +7247,7 @@ msgstr "การกรองถูกอัพเดต" msgid "Moderation lists" msgstr "ลิสต์ที่กรอง" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "ลิสต์ที่กรอง" @@ -6903,7 +7256,7 @@ msgstr "ลิสต์ที่กรอง" msgid "moderation settings" msgstr "การตั้งค่าการกรอง" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "สถานะการกรอง" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "การตั้งค่าเพิ่มเติม" @@ -6949,7 +7302,7 @@ msgstr "วีดีโอ" msgid "Music" msgstr "เพลง" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "ปิดการมองเห็น" @@ -6965,8 +7318,8 @@ msgstr "ปิดการมองเห็น" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "ปิดการมองเห็นการฟีดโพสต์ msgid "Mute accounts" msgstr "ปิดการมองเห็นการฟีดโพสต์และเรื่องราวของบัญชีต่าง ๆ" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "ปิดการมองเห็นการสนทนา" @@ -6994,7 +7347,7 @@ msgstr "รายชื่อที่ปิดการมองเห็น" msgid "Mute these accounts?" msgstr "ต้องการปิดการมองเห็นบัญชีนี้หรือไม่?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "ปิดการมองเห็นคำนี้ในแท็ก msgid "Mute this word until you unmute it" msgstr "ปิดการมองเห็นคำนี้จนกว่าคุณจะปลด" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "ปิดการมองเห็นเธรต" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "ปิดการมองเห็นคำและแท็ก" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "ปิดการมองเห็นบัญชี" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "ปิดการมองเห็นบัญชี" @@ -7062,6 +7419,10 @@ msgstr "ปิดการมองเห็นคำและแท็ก" 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "ไปยังหน้าถัดไป" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "สำรวจโปรไฟล์ของคุฯ" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "ไม่ต้องห่วง สร้างแฮนเดิ้ลสำหรับฉันได้เลย" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "ใหม่" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "แชทใหม่" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "โพสต์ใหม่" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "โพสต์ใหม่" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "ข่าวสาร" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "ถัดไป" msgid "Next image" msgstr "ภาพถัดไป" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "ไม่พบฟีต ลองค้นหาอย่างอื่นใหม่ดู" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "ไม่ติดตาม {0} อีกต่อไป" @@ -7362,7 +7726,7 @@ msgstr "ไม่ติดตาม {0} อีกต่อไป" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "ยังไม่มีข้อความ" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "ยังไม่มีการแจ้งเตือน!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "ไม่มีใครนอกจากผู้เขียนที่สามารถอ้างอิงโพสต์นี้ได้" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "ไม่มีผลลัพธ์" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "ไม่มีผลลัพธ์" @@ -7446,8 +7810,8 @@ msgstr "ไม่มีผลลัพธ์" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "ไม่พบผลลัพธ์" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "การเปลือยกายที่ไม่เกี่ยวข้องกับเพศ" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "ไม่พบ" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "โน้ตเกี่ยวกับการแชร์" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "การตั้งค่าการแจ้งเตือน" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "เสียงการแจ้งเตือน" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "การแจ้งเตือน" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "ตอนนี้" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "ปิด" @@ -7623,9 +7974,10 @@ msgstr "ตกลง" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "ตกลง" @@ -7648,35 +8000,35 @@ msgstr "เปิด<0><1/><2><3/>" msgid "Onboarding reset" msgstr "รีเซ็ตออนบอร์ด" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "ภาพหนึ่งหรือมากกว่าขาดข้อความแทน" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "" @@ -7685,6 +8037,26 @@ msgstr "" msgid "Only {0} can reply." msgstr "{0} สามารถตอบกลับได้เท่านั้น" +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "สามารถลงได้แค่ไฟล์ WebVTT (.vtt) เท่านั้น" @@ -7703,6 +8085,10 @@ msgstr "สามารถลงได้แค่ไฟล์ WebVTT (.vtt) เ 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "อุ้ย~ เกิดข้อผิดพลาดจ้า" msgid "Oops!" msgstr "อ๊ะ!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "เปิดการสร้างอวาตาร์" @@ -7720,12 +8106,17 @@ msgstr "เปิดการสร้างอวาตาร์" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "เปิดการตั้งค่าการสนทนา" @@ -7739,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "เปิดการเลือกอีโมจิ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "เปิดการตั้งค่าฟีต" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "เปิดเมนูการตั้งค่าโพสต์" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "เปิดหน้าสตอรี่บุ๊ค" msgid "Open system log" msgstr "เปิด system log" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "" msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "เปิดรายละเอียดเพิ่มเติมสำหรับลิสต์แก้จุดบกพร่องทางคอมพิวเตอร์" @@ -7838,7 +8250,7 @@ msgstr "เปิดรายละเอียดเพิ่มเติมส msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "เปิดกล้องในอุปกรณ์" @@ -7858,22 +8270,24 @@ msgstr "เปิด composer" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "เปิดขั้นตอนเพื่อสร้างบัญชี Bluesky ใหม่" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "เปิดเพื่อสร้างบัญชี Bluesky ที่มีอยู่แล้ว" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "เปิดการรีเซ็ตรหัสผ่าน" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "เปิดโปรไฟล์นี้" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "ผู้ดูแลระบบของเราได้ตรวจสอบรายงานและตัดสินใจที่จะปิดการเข้าถึงแชทของคุณบน Bluesky" @@ -8010,14 +8431,15 @@ msgstr "ผู้ดูแลระบบของเราได้ตรวจ msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "ไม่พบหน้านี้" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "พักวีดีโอ" msgid "People" msgstr "ผู้คน" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "ผู้คนที่ติดตามโดย @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "ผู้คนที่ติดตาม @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "การถ่ายภาพ" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "ภาพที่เหมาะสำหรับเนื้อหาผู้ใหญ่ (18+)" #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8152,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "ปักหมุดไปที่หน้าแรก" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "ปักหมุดไปที่หน้าแรก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "ปักหมุดไปที่โปรไฟล์" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "ปักหมุดแล้ว" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8236,7 +8662,7 @@ msgstr "กรุณาเลือกแฮนเดิลของคุณ" msgid "Please choose your password." msgstr "โปรดเลือกรหัสผ่านของคุณ" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "โปรดทำการยืนยัน Captcha ให้เสร็จ" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "กรุณากรอกอีเมลของคุณ" msgid "Please enter your invite code." msgstr "กรุณาใส่โค้ดเชิญ" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "กรุณาอธิบายว่าทำไมการตั้งชื่อไม่ถูกต้องโดย {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "กรุณาอธิบายว่าทำไมคุณคิดว่าแชทของคุณถูกปิดใช้งานแบบไม่ถูกต้อง" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "กรุณาลงชื่อเข้าใช้ @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "การเมือง" msgid "Porn" msgstr "สื่ออนาจาร" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "โพสต์" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "โพสต์โดย {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "โพสต์ถูกลบแล้ว" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "" @@ -8454,18 +8884,22 @@ msgstr "โพสต์ถูกซ่อนโดยคุณ" msgid "Post interaction settings" msgstr "การตั้งค่าการโต้ตอบโพสต์" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "โพสต์สามารถถูกปิดเสียงตา msgid "Posts hidden" msgstr "โพสต์ที่ซ่อนอยู่" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "คลิกเพื่อพยายามเชื่อมต่อใหม่" -#: src/components/Error.tsx:61 +#: 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 "กดเพื่อลองใหม่" @@ -8536,7 +8966,7 @@ msgstr "กดเพื่อลองใหม่" msgid "Press to view followers of this account that you also follow" msgstr "กดเพื่อดูผู้ติดตามในบัญชีนี้ที่คุณติดตามเหมือนกัน" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "ความเป็นส่วนตัว" msgid "Privacy and security" msgstr "" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "นโยบายความเป็นส่วนตัว" @@ -8586,15 +9015,15 @@ msgstr "นโยบายความเป็นส่วนตัว" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "ดำเนินการ..." @@ -8602,10 +9031,10 @@ msgstr "ดำเนินการ..." msgid "profile" msgstr "ข้อมูลส่วนตัว" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "ข้อมูลส่วนตัว" @@ -8613,6 +9042,7 @@ msgstr "ข้อมูลส่วนตัว" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "คัดลอก QR โค้ดไปยังคลิปบอร์ดของคุณแล้ว!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "ดาวน์โหลด QR โค้ดเรียบร้อยแล้ว!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "บันทึก QR โค้ดลงในคลังภาพของคุณแล้ว!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "โควทโพสต์นี้" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "โพสต์ที่อ้างอิงถูกแนบใหม่" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "โพสต์ที่อ้างอิงถูกแยกออกเรียบร้อยแล้ว" @@ -8711,12 +9138,12 @@ msgstr "ยกเลิกการโควท" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "โควท" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "โควทโพสต์นี้" @@ -8728,16 +9155,16 @@ msgstr "" msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "เชื่อมต่อใหม่" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "โหลดการสนทนาใหม่" @@ -8863,6 +9304,8 @@ msgstr "โหลดการสนทนาใหม่" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "ลบ {displayName} จากชุดเริ่มต้นของคุณ" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "ลบบัญชี" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "ลบไฟล์แนบ" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "ลบอวาตาร์" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "ลบแบนด์เนอร์" @@ -8914,8 +9362,9 @@ msgstr "ลบแบนด์เนอร์" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "ลบการฝังข้อมูล" @@ -8929,12 +9378,12 @@ msgstr "ลบฟีต" msgid "Remove feed?" msgstr "ลบฟีตหรือไม่?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "ลบรูปภาพ" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "ลบรีโพสต์" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "ลบโดยผู้สร้าง" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "ลบโดยคุณ" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "การตอบกลับ" @@ -9104,14 +9552,14 @@ msgstr "ปิดการตอบกลับแล้ว" msgid "Replies to this post are disabled." msgstr "การตอบกลับโพสต์นี้ถูกปิด" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "การตอบกลับถูกซ่อนโดยผู้ส msgid "Reply Hidden by You" msgstr "การตอบกลับถูกซ่อนโดยคุณ" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "การตั้งค่าการตอบกลับถูกเลือกโดยผู้เขียนกระทู้" @@ -9137,18 +9581,18 @@ msgstr "การตั้งค่าการตอบกลับถูกเ msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "การมองเห็นการตอบกลับได้รับการปรับปรุง" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "การตอบกลับถูกซ่อนเรียบร้อยแล้ว" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "รายงาน" @@ -9157,20 +9601,20 @@ msgstr "รายงาน" msgid "Report account" msgstr "รายงานบัญชี" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "รายงานการสนทนา" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "รายงานฟีด" @@ -9179,12 +9623,12 @@ msgstr "รายงานฟีด" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "รายงานข้อความ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "รายงานโพสต์" @@ -9199,8 +9643,8 @@ msgstr "รายงานชุดเริ่มต้น" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "รายงานฟีดนี้" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "รายงานลิสต์นี้" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "รีโพสต์" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "รีโพสต์โดยคุณ" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "รีโพสต์ของโพสต์นี้" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "จำเป็นสำหรับผู้ให้บริการ msgid "Required in your region" msgstr "จำเป็นในภูมิภาคของคุณ" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "รีเซ็ตสถานะการเริ่มต้นใช msgid "Reset password" msgstr "รีเซ็ตรหัสผ่าน" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "ลองทำกิจกรรมล่าสุดซึ่งเก #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "ลองทำกิจกรรมล่าสุดซึ่งเก msgid "Retry" msgstr "ลองใหม่อีกครั้ง" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "กลับไปยังหน้าก่อนหน้า" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "บันทึกการเปลี่ยนแปลง" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "บันทึกรูปภาพ" msgid "Save new handle" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "บันทึกคิวอาร์โค้ด" @@ -9518,13 +9994,13 @@ msgstr "บันทึกคิวอาร์โค้ด" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "บันทึกที่ฟีตของฉัน" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "บันทึกฟีต" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "บันทึกไปที่ฟีตของคุณ" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "ทักทายสิ!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "วิทยาศาสตร์" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "เลื่อนไปข้างบนสุด" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "ค้นหา" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "ค้นหาโปรไฟล์" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "เลือกสี" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "เลือก GIF" msgid "Select GIF \"{0}\"" msgstr "เลือก GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "กำลังเลือกภาษา..." msgid "Select languages" msgstr "เลือกภาษา" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "เลือกสิ่งที่สนใจจากตัวเล msgid "Select your preferred language for translations in your feed." msgstr "เลือกภาษาที่คุณต้องการสำหรับการแปลในฟีดของคุณ" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "ส่งอีเมล" @@ -9935,11 +10421,11 @@ msgstr "ส่งอีเมล" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "ส่งข้อเสนอแนะ" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "ส่งข้อความ" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "ส่งโพสต์ถึง..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "ส่งในข้อความส่วนตัว" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "ตั้งอีเมลเพื่อการรีเซตรหัสผ่าน" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "การตั้งค่า" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "กิจกรรมทางเพศ หรือการเปล msgid "Sexually Suggestive" msgstr "การชักชวนทางเพศ" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "แชร์" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "แชร์ตลอด" @@ -10097,16 +10586,21 @@ msgstr "แชร์ตลอด" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "แชร์ลิงก์" @@ -10114,6 +10608,11 @@ msgstr "แชร์ลิงก์" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "แชร์รหัส QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10142,8 +10641,8 @@ msgstr "แชร์ชุดเริ่มต้นนี้และช่ว #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "โปรแกรมทดสอบการตั้งค่าแชร์" @@ -10167,16 +10666,16 @@ msgstr "แสดงข้อความแทน" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "แสดงอยู่ดี" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "แสดงน้อยกว่านี้" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "แสดงเพิ่มเติม" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "แสดงมากกว่านี้" @@ -10246,8 +10745,8 @@ msgstr "" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "แสดงการตอบกลับสำหรับทุกคน" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "แสดงคำเตือนและกรองจากฟีด" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "เข้าสู่ระบบหรือสร้างบัญชีของคุณเพื่อเข้าร่วมการสนทนา!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "เข้าสู่ระบบด้วยบัญชีที่ไม่อยู่ในลิสต์" @@ -10337,8 +10842,12 @@ msgstr "เข้าสู่ระบบด้วยบัญชีที่ไ msgid "Sign in to Bluesky or create a new account" msgstr "เข้าสู่ระบบ Bluesky หรือสร้างบัญชีใหม่" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "ออกจากระบบ" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "ออกจากระบบ" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "ออกจากระบบ?" @@ -10391,7 +10900,7 @@ msgstr "ข้าม" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "เล็ก" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "เกิดข้อผิดพลาดบางอย่าง!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "กีฬา" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "เริ่มแชทใหม่" @@ -10582,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "เริ่มแชทกับ {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "ชุดเริ่มต้น" @@ -10654,12 +11173,12 @@ msgstr "ล้างพื้นที่เก็บข้อมูลแล้ msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "ส่ง" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "สมัครสมาชิก" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "สำเร็จ!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "สนับสนุน" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "บันทึกกิจกรรมของระบบ" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "กดเพื่อลบ" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "เงื่อนไขการให้บริการ" @@ -10939,7 +11484,7 @@ msgstr "ข้อความและแท็ก" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "ช่องใส่ข้อความ" @@ -10981,9 +11526,9 @@ msgstr "มีแค่นี้แหละท่านผู้ชม!!" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "บัญชีจะสามารถโต้ตอบกับคุณได้หลังจากที่ปลดบล็อกแล้ว" @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "นโยบายความเป็นส่วนตัวได้ถูกย้ายไป <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "ธีม" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "เกิดปัญหาในการติดต่อเซิร์ฟเวอร์" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "เกิดปัญหาในการดึงโพสต์ คลิกที่นี่เพื่อลองอีกครั้ง" @@ -11161,31 +11714,31 @@ msgstr "" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "เกิดปัญหาที่ {0}!" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "หน้าจอ {screenDescription} นี้ถูกแจ้งเตือน : " @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "คำร้องนี้จะถูกส่งไปยัง <0>{sourceName}" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "คำร้องนี้จะถูกส่งไปยังบริการการควบคุมของ Bluesky" @@ -11263,7 +11824,7 @@ msgstr "คำร้องนี้จะถูกส่งไปยังบร msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "แชทนี้ไม่สามารถเชื่อมต่อได้" @@ -11310,7 +11881,11 @@ msgstr "" msgid "This content is not viewable without a Bluesky account." msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "" @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "นี่จะลบ @{0} ออกจากลิสต์เข้าถึงด่วน" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "นี่จะลบโพสต์ของคุณออกจากโพสต์อ้างอิงนี้สำหรับผู้ใช้ทุกคน และแทนที่ด้วยข้อความแทน" @@ -11574,7 +12166,7 @@ msgstr "การตั้งค่าเธรด" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:170 +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 "" @@ -11763,11 +12369,15 @@ msgstr "ไม่สามารถติดต่อบริการของ msgid "Unable to delete" msgstr "ไม่สามารถลบได้" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "ปลดบล็อก" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "ปลดบล็อก" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "ปลดบล็อกบัญชี" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "ปลดบล็อกบัญชีหรือไม่?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "เลิกติดตาม {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "เลิกติดตามบัญชี" @@ -11872,7 +12487,7 @@ msgstr "เลิกติดตามบัญชี" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "เปิดเสียงบัญชี" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "เปิดเสียงการสนทนา" @@ -11955,12 +12562,12 @@ msgstr "เปิดเสียงการสนทนา" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "เปิดเสียงกระทู้" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "เลิกปักหมุด" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "เลิกปักหมุดจากหน้าแรก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "เลิกปักหมุดจากโปรไฟล์" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "เลิกปักหมุดจากลิสต์การModerate" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -12030,14 +12637,18 @@ msgstr "เลิกสมัครรับข้อมูลจากผู้ msgid "Unsubscribed from list" msgstr "เลิกสมัครรับข้อมูลจากลิสต์แล้ว" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "อัปเดต <0>{displayName} ในลิสต์" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "การอัปเดตไฟล์แนบคำคมล้มเหลว" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "การอัปเดตการมองเห็นการตอบกลับล้มเหลว" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "อัปโหลดรูปภาพแทน" @@ -12098,39 +12717,40 @@ msgstr "อัปโหลดรูปภาพแทน" msgid "Upload a text file to:" msgstr "อัปโหลดไฟล์ข้อความไปที่:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "ลิสต์ผู้ใช้โดย {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "ผู้ใช้ที่ติดตามโดย <0>@{0}" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "ตรวจสอบระเบียน DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "วิดีโอ" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "การประมวลผลวิดีโอไม่สำเร็จ" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "ไม่พบวิดีโอ" msgid "Video settings" msgstr "การตั้งค่าวิดีโอ" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "" @@ -12432,18 +13052,18 @@ msgstr "วิดีโอ: {0}" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "ดูโปรไฟล์ของ {0}" @@ -12467,20 +13087,15 @@ msgstr "ดูโปรไฟล์ของ {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "ดูโปรไฟล์ของผู้ใช้ที่ถูกบล็อก" @@ -12503,10 +13118,18 @@ msgstr "ดูรายละเอียด" msgid "View full thread" msgstr "ดูเธรดเต็ม" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "ดูข้อมูลเกี่ยวกับป้ายกำกับเหล่านี้" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "ดูโปรไฟล์" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "ดูอวตาร์" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "ดูบริการติดป้ายกำกับที่จ msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "ดูผู้ใช้ที่ชอบฟีดนี้" @@ -12596,8 +13219,8 @@ msgstr "ดูบัญชีที่คุณปิดเสียง" msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "เตือนเนื้อหา" msgid "Warn content and filter from feeds" msgstr "เตือนเนื้อหาและกรองจากฟีด" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "เราไม่สามารถโหลดการสนทนานี้ได้" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "เราไม่สามารถกำหนดได้ว่าคุณได้รับอนุญาตให้อัปโหลดวิดีโอหรือไม่ กรุณาลองอีกครั้ง." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "เราจะแจ้งให้คุณทราบเมื่อบัญชีของคุณพร้อมใช้งาน" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "เรากำลังประสบปัญหาเครือข่าย โปรดลองอีกครั้ง" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "ขออภัย! โพสต์ที่คุณตอบกลับถูกลบไปแล้ว" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "เราขอโทษ! เราไม่สามารถค้นหาหน้าที่ยังมีอยู่ที่คุณต้องการได้." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "คุณต้องการตั้งชื่อชุดเริ่มต้นของคุณว่าอะไร?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "มีอะไรใหม่?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "ใครสามารถมีปฏิสัมพันธ์กับโพสต์นี้ได้บ้าง?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "ใครสามารถตอบได้" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "อุ๊ย!" @@ -12939,7 +13566,7 @@ msgstr "ทำไมชุดเริ่มต้นนี้จึงควร msgid "Why should this user be reviewed?" msgstr "ทำไมผู้ใช้คนนี้จึงควรได้รับการตรวจสอบ?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "เขียนโพสต์" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "เขียนคำตอบของคุณ" @@ -12978,7 +13605,8 @@ msgstr "นักเขียน" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "ใช่, ลบชุดเริ่มต้นนี้" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "ใช่, แยกออก" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "ใช่, ซ่อน" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "คุณไม่ได้รับอนุญาตให้อัปโหลดวิดีโอ." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "คุณสามารถดำเนินการสนทนาที่กำลังดำเนินอยู่ต่อไปได้ไม่ว่าจะเลือกการตั้งค่าใด" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "คุณสามารถลงชื่อเข้าใช้ด้วยรหัสผ่านใหม่ของคุณได้แล้ว" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "คุณสามารถเปิดใช้งานบัญชี 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "คุณยังไม่มีฟีดที่บันทึก." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "คุณถึงขีดจำกัดการอัปโหลดวิดีโอชั่วคราวแล้ว กรุณาลองอีกครั้งในภายหลัง" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "คุณสามารถเพิ่มได้สูงสุด 3 ฟีด" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "คุณต้องติดตามผู้อื่นอย่างน้อย 7 คนจึงจะสามารถสร้างชุดเริ่มต้นได้" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "คุณต้องอนุญาตให้เข้าถึงคลังรูปภาพของคุณเพื่อบันทึกรหัส QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "" @@ -13378,11 +14038,11 @@ msgstr "" msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "คุณจะไม่รับการแจ้งเตือนสำหรับกระทู้นี้อีกต่อไป" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "คุณจะเริ่มได้รับการแจ้งเตือนสำหรับกระทู้นี้" @@ -13390,12 +14050,12 @@ msgstr "คุณจะเริ่มได้รับการแจ้งเ 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "คุณอยู่ในคิว" @@ -13463,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "คุณมาถึงจุดสิ้นสุดฟีดของคุณแล้ว! ค้นหาบัญชีเพิ่มเติมเพื่อติดตาม" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (ขนาดไฟล์มากเกินไป)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "คุณถึงขีดจำกัดการอัพโหลดวิดีโอต่อวันแล้ว (วิดีโอมากเกินไป)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "บัญชีของคุณยังมีอายุไม่มากพอที่จะอัพโหลดวิดีโอ กรุณาลองใหม่อีกครั้งในภายหลัง" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "คลังข้อมูลบัญชีของคุณ ซึ่งประกอบด้วยบันทึกข้อมูลสาธารณะทั้งหมด สามารถดาวน์โหลดเป็นไฟล์ \"CAR\" ไฟล์นี้ไม่รวมสื่อที่ฝังไว้ เช่น รูปภาพ หรือข้อมูลส่วนตัวของคุณ ซึ่งต้องดึงข้อมูลแยกต่างหาก" @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "วันเกิดของคุณ" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "การแชทของคุณถูกปิดใช้งาน" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "อีเมลของคุณดูเหมือนจะไม่ถูกต้อง" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "ฟีดผู้ติดตามของคุณว่างเป msgid "Your full handle will be <0>@{0}" msgstr "ชื่อผู้ใช้เต็มของคุณจะเป็น <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "คำที่คุณปิดเสียง" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "โปรไฟล์ โพสต์ ฟีด และลิสต์ของคุณจะไม่ปรากฏให้ผู้ใช้ Bluesky คนอื่นเห็นอีกต่อไป คุณสามารถเปิดใช้งานบัญชีของคุณอีกครั้งได้ตลอดเวลาโดยการเข้าสู่ระบบ" -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 35fd14a781..84253dc779 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "\"{interestsDisplayName}\" kategorisi (etkin)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(gömülü içerik içeriyor)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, other {# beğeni}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# üye}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, other {# dakika}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, other {# ay}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, other {# katılma talebi}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {# kişi}} tepki verdi – {1}" @@ -109,15 +118,15 @@ msgstr "{0, plural, other {# saniye}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {# okunmamış öğe}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "{0, plural, other {#dk}}" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0><1>metin ve etiketlerde" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} sohbete eklendi" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} ve {1} sohbete eklendi" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} takip edilen" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "{0} sizi engelliyor" @@ -264,7 +273,7 @@ msgstr "50'de {0}" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} şu tepkiyi verdi: {1}" @@ -290,7 +299,7 @@ msgstr "{0} gruptan çıkarıldı" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 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" @@ -309,15 +318,40 @@ msgstr "{0}, bir {1} listesi" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0} kullanıcısının avatarı" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0} kullanıcısının avatarı" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} üye" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0}dk" msgid "{0}s" msgstr "{0}sn" +#: 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 "{count, plural, other {# sohbet güncellemesi}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, other {# talep}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {# okunmamış öğe}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "{count}+ talep" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, other {saat}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {dakika}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} özelleştirilmiş akışınızı beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} doğrulamalarını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi doğruladı" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} sizi geri takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} özelleştirilmiş akışınızı beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} gönderini beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} doğrulamasını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} gönderini yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} sizin başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} sizi doğruladı" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} doğrulamalarını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişi daha}} sizi doğruladı" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} sizi takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} sizi geri takip etti" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} özelleştirdiğiniz akışınızı beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} gönderini beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} yeniden gönderinizi beğendi" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} doğrulamalarını hesabınızdan kaldırdı" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} gönderini yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} yeniden gönderinizi yeniden gönderdi" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} sizin başlangıç paketinizle kaydoldu" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} sizi doğruladı" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} sizi doğruladı" msgid "{following} following" msgstr "{following} takip ediliyor" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "{handle} eklenemez" @@ -547,7 +606,7 @@ msgstr "{handle} eklenemez" msgid "{handle} can't be messaged" msgstr "{handle} kullanıcısına mesaj gönderilemez" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "{handle} kişisine mesaj atılamaz" @@ -559,6 +618,16 @@ msgstr "{hours, plural, other {# saat {minutesString}}}" msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, other {# saat}}" +#. 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:220 +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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {Açıklama çok uzun. En fazla # karakt msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {Görünür isim çok uzun. En fazla # karakter olabilir.}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {En fazla # yanıt gizleyebilirsiniz.}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} {target} için {0} tepkisi verdi" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}: {message}" @@ -607,11 +676,11 @@ msgstr "{name} kullanıcısının favori akışları ve kişileri - bana katıl! msgid "{name}'s starter pack" msgstr "{name} kullanıcısının başlangıç paketi" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {# okunmamış öğe}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {# bağlantı bulundu}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, other {# talep}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ talep" @@ -656,6 +725,12 @@ msgstr "{userName} doğrulanmış" msgid "{userName}'s verifications" msgstr "{userName} kullanıcısının doğrulamaları" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1} ve {2, plural, other {# kişi daha}} başlangıç #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {takipçi}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {takip edilen}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {beğeni}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {alıntı}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {yeniden gönderi}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, other {kaydedilme}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} üyeleri" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "<0>{displayName}<1/><2> sizi ekledi" @@ -795,8 +870,13 @@ msgstr "Bir ağ hatası oluştu. Lütfen internet bağlantınızı kontrol edin" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "Bir ağ hatası oluştu. Lütfen internet bağlantınızı kontrol edin." @@ -804,7 +884,7 @@ msgstr "Bir ağ hatası oluştu. Lütfen internet bağlantınızı kontrol edin. msgid "A new code has been sent" msgstr "Yeni bir kod yollandı" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Yeni bir doğrulama biçimi" @@ -827,11 +907,11 @@ msgstr "Takip et butonunun yanında bir zil simgesi bulunan bir profil sayfasın 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 "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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "Seçilmiş alıcılardan biri gönderen tarafından takip edilmiyor." -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "İstismar edici ya da ayrımcı davranış" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Kabul et" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Kabul et" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Sohbet isteğini kabul et" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "Katılma talebini kabul et" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "İsteği kabul et" @@ -860,17 +950,26 @@ msgstr "İsteği kabul et" msgid "Accept this language suggestion" msgstr "Bu dil önerisini kabul et" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "Kabul edilen yazışmalar" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "Erişim istendi! Grup sahibi talebinizi inceleyecek." + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Erişilebilirlik" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Erişilebilirlik Ayarları" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Erişilebilirlik Ayarları" msgid "Account" msgstr "Hesap" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Hesap engellendi" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Hesap takip edildi" @@ -899,7 +998,7 @@ msgstr "Hesap askıya alınmış" msgid "Account is deactivated" msgstr "Hesap dondurulmuş" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "Hesap sağlayıcısı" msgid "Account removed from quick access" msgstr "Hesap hızlı erişimden kaldırıldı" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Hesap engeli kaldırıldı" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Hesap takibi bırakıldı" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Hesap sessizden çıkarıldı" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Çıkıntılı onay tikine sahip hesaplar <0><1/> başka hesapları doğrulayabilir. Bu güvenilir doğrulayıcılar Bluesky tarafından seçilir." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "Başkalarının etkinlikleri" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "Etkinlik bildirimleri" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Ekle" @@ -999,8 +1094,8 @@ msgstr "Hesap ekle" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Alternatif metin ekle (isteğe bağlı)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Başka hesap ekle" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Başka gönderi ekle" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "Konuya yeni bir gönderi ekle" @@ -1035,7 +1130,7 @@ msgstr "Uygulama şifresi ekle" msgid "Add App Password" msgstr "Uygulama Şifresi Ekle" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "Hesaba otomasyon işareti ekle" @@ -1043,7 +1138,7 @@ msgstr "Hesaba otomasyon işareti ekle" msgid "Add emoji reaction" msgstr "Emoji tepkisi ekle" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "Grup sohbeti üyelerini ekle" @@ -1052,18 +1147,18 @@ msgid "Add image" msgstr "Görsel ekle" #. Accessibility label for button in composer to add images, a video, or a GIF to a post -#: src/view/com/composer/SelectMediaButton.tsx:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "Gönderiye medya ekle" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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 "Üye ekle" -#: src/components/moderation/ReportDialog/index.tsx:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Daha fazla detay ekle (opsiyonel)" @@ -1091,6 +1186,10 @@ msgstr "Kişi ekle" msgid "Add people to list" msgstr "Listeye birilerini ekleyin" +#: 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 "Tepki Ekle" @@ -1139,11 +1238,11 @@ msgid "Add your birthdate" msgstr "Doğum tarihinizi ekleyin" #. placeholder {0}: createSanitizedDisplayName( profile.kind.addedBy, true, moderateProfile(profile.kind.addedBy, moderationOpts).ui('displayName'), ) -#: src/screens/Messages/ConversationSettings/Member.tsx:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "{0} tarafından eklendi" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "Davetiye bağlantısıyla eklendi" @@ -1165,12 +1264,12 @@ msgstr "Üyeler listeye ekleniyor..." msgid "Additional details (limit 1000 characters)" msgstr "Ek ayrıntılar (1000 karakterle sınırlı)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Ek ayrıntılar (300 karakterle sınırlıdır)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "Yönetici" @@ -1228,12 +1327,12 @@ msgstr "Yaş güvencesi sorgusu yollandı" msgid "Age assurance only takes a few minutes" msgstr "Yaş güvencesi sadece birkaç dakika alacaktır" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "ayse@ornek.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Hepsi" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "Tümü {0}" @@ -1278,13 +1377,13 @@ msgstr "Doğrudan mesajlarınıza erişime izin verin" msgid "Allow anyone to reply" msgstr "Herkesin yanıt vermesine izin ver" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "Sadece şunlardan doğrudan mesajlara izin ver" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "Sadece şunlardan grup sohbeti davetlerine izin ver" @@ -1338,12 +1437,12 @@ msgstr "Zaten bir hesabınız mı var?" msgid "Already signed in as @{0}" msgstr "Zaten @{0} olarak oturum açıldı" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Alternatif Metin" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Alternatif metin, görme engelli ve düşük görme yeteneğine sahip kullanıcılar için görselleri tanımlar ve herkes için bağlam sağlamaya yardımcı olur." @@ -1387,7 +1486,7 @@ msgstr "Bir hata oluştu" msgid "An error occurred" msgstr "Bir hata oluştu" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Video sıkıştırılırken bir hata oluştu." @@ -1421,7 +1520,8 @@ msgstr "Video yüklenirken bir hata oluştu. Lütfen tekrar deneyin." msgid "An error occurred while loading your lists :/" msgstr "Listeleriniz yüklenirken bir hata oluştu :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "QR kod kaydedilirken bir hata oluştu!" @@ -1432,11 +1532,11 @@ msgstr "QR kod kaydedilirken bir hata oluştu!" msgid "An error occurred while trying to follow all" msgstr "Tümü takip edilmeye çalışılırken bir hata oluştu" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "Video yüklerken bir hata oluştu. {message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "Video yüklerken bir hata oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." @@ -1456,26 +1556,30 @@ msgstr "Bir telefon rehberinden Bluesky uygulamasına akan kullanıcı avatarlar 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" +#: 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 "Bluesky'ın güvenilir doğrulayıcıları seçmesini ve güvenilir doğrulayıcıların da bireysel hesapları doğrulamasını gösteren bir çizim." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -msgstr "Davetiye bağlantıları insanların grup sohbetine doğrudan eklenmeden katılabilmelerini sağlar. Kimin o bağlantıyı kullanabileceğini ya da onayınıza gerek olup olmadığını siz kontrol edersiniz. Bağlantıyı istediğiniz zaman devre dışı bırakabilirsiniz." +#: 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 "Davetiye bağlantısı insanların bu gruba doğrudan eklenmeden katılabilmesini sağlar. Kimin sohbete katılacağını siz kontrol edersiniz. Bağlantıyı istediğiniz zaman devre dışı bırakabilirsiniz." #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:239 msgid "An issue not included in these options" msgstr "Bu seçeneklerde yer almayan bir sorun" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "Grup sohbetini oluştururken bir sorun çıktı, lütfen tekrar deneyin." -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +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" @@ -1485,12 +1589,12 @@ msgstr "Sohbeti açmaya çalışırken bir sorun oluştu" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Bir sorun oluştu, lütfen tekrar deneyin." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Bir kurgu iPhone açık Bluesky uygulamasında doğrulanmış bir kullanıcıyı adının yanındaki doğrulanma tikiyle birlikte gösteriyor." @@ -1539,13 +1643,17 @@ msgstr "Herkes" msgid "Anyone can interact" msgstr "Herkes etkileşime geçebilir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +msgid "Anyone can join" +msgstr "Herkes katılabilir" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:154 msgid "Anyone can join instantly" msgstr "Herkes anında katılabilir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "Herkes katılmayı talep edebilir" @@ -1555,11 +1663,11 @@ msgstr "Herkes katılmayı talep edebilir" msgid "Anyone who follows me" msgstr "Beni takip eden herkes" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Uygulama şifresi isimleri en az 4 karakter uzunluğunda olmalıdır" msgid "App passwords" msgstr "Uygulama şifreleri" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Uygulama Şifreleri" @@ -1618,7 +1726,7 @@ msgstr "Canlı yayın dondurulmasına itiraz et" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "İtiraz gönderildi" @@ -1632,14 +1740,14 @@ msgstr "Askıya alınmaya itiraz et" msgid "Appeal Suspension" msgstr "Askıya Alınmaya İtiraz Et" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Bu karara itiraz et" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "Pull Request'i uygula" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "{0} kaynağından arşivlendi" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Arşivlenmiş gönderi" @@ -1675,7 +1783,7 @@ msgstr "Tam olarak emin misiniz?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "\"{0}\" uygulama şifresini silmek istediğinizden emin misiniz?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "Bu mesajı silmek istediğinize emin misiniz? Mesajınız sizin için silinecektir, ancak diğer katılımcılar için silinmeyecektir." @@ -1688,23 +1796,29 @@ msgstr "Bu başlangıç paketini silmek istediğinize emin misiniz?" msgid "Are you sure you want to discard your changes?" msgstr "Değişiklikleri iptal etmek istediğinizden emin misiniz?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "{groupName} grubundan çıkmak istediğinizden emin misiniz?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Bu yazışmayı terk etmek istediğinizden emin misiniz?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Bu yazışmadan ayrılmak istediğinize emin misiniz? Mesajlarınız sizin için silinecek, ancak diğer katılımcı için silinmeyecektir." +#: src/components/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 "Bunu akışlarınızdan çıkarmak istediğinize emin misiniz?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Bu taslağı silmek istediğinizden emin misiniz?" @@ -1724,8 +1838,8 @@ msgstr "Sanat" msgid "Artistic or non-erotic nudity." msgstr "Sanatsal veya erotik olmayan çıplaklık." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "Algoritmaya başlık ata" @@ -1752,7 +1866,7 @@ msgstr "Otomasyonlu hesap" msgid "Automation label" msgstr "Otomasyon işareti" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "Otomasyon İşareti" @@ -1767,12 +1881,12 @@ msgstr "Videoları ve GIFleri otomatik oynat" msgid "Available" msgstr "Kullanılabilir" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "Kullanılabilir" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "Kullanılabilir" msgid "Back" msgstr "Geri" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Sohbetlere Geri Dön" @@ -1832,7 +1948,7 @@ msgstr "Bir gönderi oluşturmadan ya da yanıt vermeden önce e-postanızı do 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "Bu sohbet isteğini kabul edebilmeniz için öncelikle e-postanızı doğrulamanız gerekmektedir." @@ -1840,13 +1956,14 @@ msgstr "Bu sohbet isteğini kabul edebilmeniz için öncelikle e-postanızı do msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "{name} kullanıcısının gönderilerinden bildirim alabilmeniz için öncelikle e-posta adresinizi doğrulamanız gerekiyor." -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "Başka bir kullanıcıya mesaj atabilmeniz için öncelikle e-postanızı doğrulamanız gerekmektedir." @@ -1874,59 +1991,53 @@ msgstr "Doğum tarihi" msgid "Birthday" msgstr "Doğum günü" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Engelle" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "{displayName} kullanıcısını engelle" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Hesabı engelle" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "Hesap engellensin mi?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Hesabı Engelle?" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Hesapları engelle" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "Engelle ve sil" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "Engelle ve ayrıl" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "Listeyi engelle" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Engelle veya raporla" @@ -1936,9 +2047,9 @@ msgstr "Bu hesapları engelle?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Kullanıcıyı engelle" @@ -1946,17 +2057,17 @@ msgstr "Kullanıcıyı engelle" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Kullanıcıyı engelle" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "Kullanıcıyı engelle ve/veya bu yazışmayı sil" #: src/components/dms/AfterReportConversationDialog.tsx:217 msgid "Block user and/or leave this conversation" -msgstr "" +msgstr "Kullanıcıyı engelle ve/veya bu yazışmadan ayrıl" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Engellendi" @@ -1964,14 +2075,12 @@ msgstr "Engellendi" msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez." @@ -1987,7 +2096,7 @@ msgstr "Engellemeniz bu işaretleyicinin hesabınıza işaret koymasına engel o msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Engelleme herkese açıktır. Engellenen hesaplar, konularınıza yanıt veremez, sizi bahsedemez veya başka şekilde sizinle etkileşime giremez." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Engellemeniz hesabınıza işaretlerin uygulanmasını önlemeyecektir fakat bu hesabın sizin konularınıza yanıt vermesini ya da sizle etkileşime geçmesini önleyecektir." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky iddia edilen tarihin doğruluğunu onaylayamaz." @@ -2029,7 +2138,7 @@ msgstr "Bluesky arkadaşlarla daha güzel!" msgid "Bluesky is more fun with friends" msgstr "Bluesky arkadaşlarla daha eğlenceli" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "Bluesky arkadaşlarla daha eğlenceli! Bağlantılarınızı yükleyerek burada kimlerin olduğunu görün." @@ -2037,11 +2146,15 @@ msgstr "Bluesky arkadaşlarla daha eğlenceli! Bağlantılarınızı yükleyerek msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "Bluesky arkadaşlarla daha eğlenceli. Sizinkilerden bazılarını davet etmek ister misiniz? <0/>" +#: 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 "Bluesky Social Hizmet Şartları" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 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." @@ -2053,7 +2166,7 @@ msgstr "Bluesky, ağınızdaki kişilerden bir dizi önerilen hesap seçecektir. msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky, profilinizi ve gönderilerinizi oturum açmamış kullanıcılara göstermeyecektir. Diğer uygulamalar bu isteği yerine getirmeyebilir. Bu, hesabınızı özel yapmaz." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky, kayda değer ve gerçek hesapları inisiyatif alarak doğrulayacaktır." @@ -2081,6 +2194,10 @@ msgstr "Kitaplar" msgid "Breaking site rules" msgstr "Site kurallarını ihlal" +#: 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" @@ -2137,25 +2254,35 @@ msgstr "İş" msgid "Button to go back to the home timeline" msgstr "Ana akışa geri dönüş butonu" +#. 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "{0} tarafından" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "<0>{0} tarafından geliştiriliyor" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "<0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "Bir hesap oluşturarak <0>Hizmet Şartları'nı kabul etmiş sayıl msgid "By you" msgstr "Size ait" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Kamera" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Kamera" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Kamera" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Kamera" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "İptal" @@ -2248,9 +2384,9 @@ msgstr "Yeniden etkinleştirmeyi iptal et ve çıkış yap" msgid "Cancel search" msgstr "Aramayı iptal et" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Engellenen kullanıcıya etkileşime geçilemez" @@ -2264,7 +2400,7 @@ msgstr "Altyazılar (.vtt)" msgid "Captions & alt text" msgstr "Altyazılar ve alternatif metin" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "vitrin" @@ -2297,7 +2433,7 @@ msgstr "Uygulama dilini değiştir" msgid "Change Handle" msgstr "Kullanıcı Adını Değiştir" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Moderasyon hizmetini değiştir" @@ -2310,11 +2446,11 @@ msgstr "Şifre değiştir" msgid "Change password dialog" msgstr "Şifre değiştirme diyaloğu" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "Rapor kategorisini değiştir" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Rapor gerekçesini değiştir" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Mesajlar" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Sohbet silindi" @@ -2361,6 +2497,12 @@ msgstr "Sohbet silindi" msgid "Chat ended" msgstr "Sohbet sona erdi" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "Sohbet davetiye bağlantısı artık mevcut değil" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "Sohbet kilitlendi" @@ -2373,35 +2515,44 @@ msgstr "Sohbet mesajları - sessiz" msgid "Chat messages - sound" msgstr "Sohbet mesajları - sesli" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Sohbet sessize alındı" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "Sohbet alıcısı gönderici tarafından takip edilmiyor." + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Sohbet istekleri gelen kutusu" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Sohbet istekleri" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Mesajlaşma ayarları" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Mesajlaşma Ayarları" @@ -2418,14 +2569,14 @@ msgstr "Sohbet başlığı {0} olarak değiştirildi" msgid "Chat unlocked" msgstr "Sohbet kilidi açıldı" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Sohbet sessizden çıkarıldı" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Sohbetler" @@ -2479,7 +2630,7 @@ msgstr "Gönderi dillerini seçin" msgid "Choose this color as your avatar" msgstr "Bu rengi avatar olarak seç" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "Bu grup sohbetine kimin nasıl katılabileceğini seçin." @@ -2558,7 +2709,7 @@ msgstr "Hesabınızdan çıkmak için buraya tıklayın" msgid "Click here to resend the email" msgstr "E-postayı yeniden göndermek için buraya tıklayın" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "Doğrulama işlemini yeniden başlatmak için buraya tıklayın." @@ -2567,7 +2718,7 @@ msgstr "Doğrulama işlemini yeniden başlatmak için buraya tıklayın." msgid "Click here to update your birthdate" msgstr "Doğum tarihinizi güncellemek için buraya tıklayın" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "E-postanızı güncellemek için buraya tıklayın" @@ -2580,7 +2731,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:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "İletilemeyen mesajı tekrar denemek için tıklayın" @@ -2594,28 +2745,30 @@ msgstr "İletilemeyen mesajı tekrar denemek için tıklayın" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "İletilemeyen mesajı tekrar denemek için tıklayın" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Kapat" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Etkin iletişim kutusunu kapat" @@ -2647,6 +2800,10 @@ msgstr "Etkin iletişim kutusunu kapat" msgid "Close alert" msgstr "Uyarıyı kapat" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Alt çekmeceyi kapat" @@ -2657,8 +2814,10 @@ msgstr "Alt çekmeceyi kapat" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Diyalogu kapat" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Resmi kapat" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: src/components/Lightbox/Lightbox.web.tsx:334 msgid "Close image viewer" 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:85 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Menüyü kapat" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Bu diyalogu kapat" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Gönderi düzenleyiciyi kapatır ve gönderi taslağını siler" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Kullanıcı listesini daralt" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Belirli bir bildirim için kullanıcı listesini daraltır" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Çizgi romanlar" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Topluluk Kuralları" @@ -2740,12 +2915,12 @@ msgstr "Meydan okumayı tamamlayın" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Yeni gönderi oluştur" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "{0, plural, other {# karakter}} uzunluğuna kadar gönderiler oluşturun" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "GIF sıkıştırılıyor..." -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Video sıkıştırılıyor..." @@ -2780,7 +2955,7 @@ msgstr "<0>Moderasyon ayarlarında düzenleniyor." msgid "Confirm" msgstr "Onayla" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Destek ile iletişime geçin" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "Bu uygulama bağlantılarınıza erişemediğinden bağlantı eşleşme bu cihazda kullanılamamaktadır." @@ -2825,11 +3000,11 @@ msgstr "Bu uygulama bağlantılarınıza erişemediğinden bağlantı eşleşme msgid "Contact us" msgstr "Bize ulaşın" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "Bağlantılar aktarıldı" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "Bağlantılar kaldırıldı" @@ -2842,7 +3017,7 @@ msgstr "İçerik ve Medya" msgid "Content and media" msgstr "İçerik ve medya" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "İçerik ve Medya" @@ -2889,7 +3064,7 @@ msgstr "Bağlam menüsü arkaplanı, menüyü kapatmak için tıklayın." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "Konuya devam et" msgid "Continue thread..." msgstr "Konuya devam et..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "Grup adına devam et" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Sonraki adıma devam et" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "Yazışma" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Yazışma silindi" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Yazışma silindi" @@ -2939,15 +3114,22 @@ msgstr "Yazışma silindi" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +msgstr "Yazışma terk edildi" + +#: src/components/dms/LeaveConvoPrompt.tsx:40 +#: src/screens/Messages/JoinRequests.tsx:196 +#: src/screens/Messages/JoinRequests.tsx:229 +msgid "Conversation not found." +msgstr "Yazışma bulunamadı." #: src/screens/Settings/AboutSettings.tsx:162 msgid "Copied build version to clipboard" msgstr "Sürüm numarası panoya kopyalandı" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Kopyalandı!" msgid "Copies build version to clipboard" msgstr "Geliştirme sürümünü panoya kopyalar" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Kopyala" @@ -2997,6 +3184,11 @@ msgstr "DID'i kopyala" msgid "Copy host" msgstr "Sunucu adını kopyala" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Liste bağlantısını kopyala" msgid "Copy link to post" msgstr "Gönderi bağlantısını kopyala" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "Profil bağlantısını kopyala" @@ -3027,8 +3219,8 @@ msgstr "Profil bağlantısını kopyala" msgid "Copy link to starter pack" msgstr "Başlangıç paketi bağlantısını kopyala" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Mesajı kopyala" @@ -3037,12 +3229,12 @@ msgstr "Mesajı kopyala" msgid "Copy post at:// URI" msgstr "Gönderinin at:// URI'sini kopyala" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Gönderi metnini kopyala" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "QR kodu kopyala" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Telif Hakkı Politikası" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "Özelleştirilmiş akışa bağlanılamadı" @@ -3065,7 +3261,15 @@ msgstr "Özelleştirilmiş akışa bağlanılamadı" msgid "Could not connect to feed service" msgstr "Akış hizmetine bağlanılamadı" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "Gönderi indirilemedi" @@ -3073,23 +3277,27 @@ msgstr "Gönderi indirilemedi" msgid "Could not find profile" msgstr "Profil bulunamadı" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: src/screens/Settings/FindContactsSettings.tsx:233 +#: src/screens/Settings/FindContactsSettings.tsx:424 msgid "Could not follow all matches - please check your network connection." msgstr "Tüm tutan bağlantılar takip edilemedi - lütfen ağ bağlantınızı kontrol edin." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "Tüm tutan bağlantılar takip edilemedi. {0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Sohbetten ayrılınamadı" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Akış yüklenemedi" @@ -3100,7 +3308,11 @@ msgstr "Akış yüklenemedi" msgid "Could not load list" msgstr "Liste yüklenemedi" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Sohbet sessize alınamadı" @@ -3108,11 +3320,19 @@ msgstr "Sohbet sessize alınamadı" msgid "Could not process your video" msgstr "Videonuz işlenemedi" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "Değişiklikler kaydedilemedi: {0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "Bildirim ayarları güncellenemedi" @@ -3139,7 +3359,7 @@ msgstr "Ülke kodu" #. 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Oluştur" @@ -3153,13 +3373,13 @@ msgstr "Liste oluştur" msgid "Create a list from this starter pack" msgstr "Bu başlangıç paketinden bir liste oluştur" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Bir başlangıç paketi oluştur" @@ -3174,13 +3394,14 @@ msgstr "Benim için bir başlangıç paketi oluştur" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Bunun yerine bir avatar oluştur" @@ -3206,7 +3427,7 @@ msgstr "Bunun yerine bir avatar oluştur" msgid "Create another" msgstr "Bir tane daha oluştur" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "Grup sohbeti oluştur" @@ -3228,19 +3449,20 @@ msgstr "Başlangıç paketinden liste oluştur" msgid "Create moderation list" msgstr "Moderasyon listesi oluştur" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Yeni hesap oluştur" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 msgid "Create or modify an invite link for this group chat" msgstr "Bu grup sohbeti için bir davetiye bağlantısını oluşturun ya da değiştirin" #. Accessibility label for button to create a moderation report for the selected option #. placeholder {0}: option.title -#: src/components/moderation/ReportDialog/index.tsx:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "{0} için rapor oluştur" @@ -3256,8 +3478,8 @@ msgstr "Kullanıcı listesi oluştur" #. 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "{0} oluşturuldu" @@ -3270,6 +3492,10 @@ msgstr "Oluşturucu engellendi" msgid "Culture" msgstr "Kültür" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Karanlık tema" msgid "Date of birth" msgstr "Doğum tarihi" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Varsayılan" msgid "Default icons" msgstr "Varsayılan simgeler" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Uygulama şifresini sil" msgid "Delete app password?" msgstr "Uygulama şifresi silinsin mi?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Sohbeti sil" @@ -3378,19 +3612,19 @@ msgstr "Sohbeti sil" msgid "Delete chat declaration record" msgstr "Sohbet beyan kaydını sil" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "Bağlantıları sil" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Yazışmayı sil" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Benim için sil" @@ -3399,11 +3633,11 @@ msgstr "Benim için sil" msgid "Delete list" msgstr "Listeyi sil" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Mesajı sil" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Mesajı benim için sil" @@ -3411,9 +3645,9 @@ msgstr "Mesajı benim için sil" msgid "Delete my account" msgstr "Hesabımı sil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Gönderiyi sil" @@ -3430,17 +3664,17 @@ msgstr "Başlangıç paketi silinsin mi?" msgid "Delete this list?" msgstr "Liste silinsin mi?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Bu gönderiyi sil?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Silindi" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Silinen Hesap" @@ -3471,12 +3705,12 @@ msgstr "Açıklama (En fazla 1000 karakter)" msgid "Descriptive alt text" msgstr "Açıklayıcı alt metin" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Alıntının ilişiğini kes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Alıntı gönderinin ilişiği kesilsin mi?" @@ -3507,13 +3741,13 @@ msgstr "Diyalog: kimin bu gönderiyle etkileşebileceğini ayarlayın" msgid "Dim" msgstr "Karart" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: src/screens/Messages/components/InviteLinkDialog.tsx:385 +#: src/screens/Messages/components/InviteLinkDialog.tsx:390 msgid "Disable" msgstr "Devre dışı bırak" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "İki adımlı doğrulamayı devre dışı bırak" @@ -3521,7 +3755,7 @@ msgstr "İki adımlı doğrulamayı devre dışı bırak" msgid "Disable captions" msgstr "Altyazıları kapat" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "E-posta iki adımlı doğrulamasını devre dışı bırak" @@ -3534,8 +3768,8 @@ msgstr "E-posta ile iki adımlı doğrulamayı devre dışı bırak" msgid "Disable haptic feedback" msgstr "Dokunsal geribildirimi devre dışı bırak" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "Bağlantıyı devre dışı bırak" @@ -3547,7 +3781,7 @@ msgstr "Bu gönderinin alıntılarını devre dışı bırak" msgid "Disable replies entirely" msgstr "Yanıtları tümden devre dışı bırak" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "Bu davetiye bağlantısı devre dışı bırakılsın mı?" @@ -3560,9 +3794,9 @@ msgstr "Devre dışı" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Sil" msgid "Discard changes?" msgstr "Değişiklikler silinsin mi?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Gönderi silinsin mi?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "Germ DM bağlantısını kes" @@ -3609,15 +3843,16 @@ msgstr "Yeni akışlar keşfedin" msgid "Discover New Feeds" msgstr "Yeni Akışlar Keşfet" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Yok say" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "Bildirimi gizle" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Hatayı yok say" @@ -3642,6 +3877,10 @@ msgstr "Bu bölümü gizle" msgid "Dismiss this suggestion" msgstr "Bu öneriyi gizle" +#: 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" @@ -3673,7 +3912,7 @@ msgstr "Çıplaklık içermiyor." msgid "Domain verified!" msgstr "Alan adı doğrulandı!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "Kodunuz yok mu ya da yeni bir tane mi lazım? <0>Buraya tıklayın." @@ -3681,7 +3920,7 @@ msgstr "Kodunuz yok mu ya da yeni bir tane mi lazım? <0>Buraya tıklayın." msgid "Don’t see a code? <0>Click here to resend." msgstr "Kodu görmediniz mi? <0>Yeniden yollamak için buraya tıklayın." -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "E-posta gelmedi mi? <0>Yeniden yollamak için buraya tıklayın." @@ -3700,16 +3939,21 @@ msgstr "Merak etmeyin! Tüm mesajlarınız ve ayarlarınız saklandı ve bir yet #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Tamam" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Bu diyalogu kapatmak için çift dokunun" @@ -3737,19 +3981,14 @@ msgstr "Bu diyalogu kapatmak için çift dokunun" msgid "Double tap to like" msgstr "Beğenmek için çift dokunun" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Bluesky'ı İndir" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "CAR dosyasını indir" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "CAR dosyasını indir" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "Sohbet verisini indir" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "Sohbet verisini indir" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: src/components/Lightbox/Lightbox.web.tsx:312 +#: src/components/Lightbox/Lightbox.web.tsx:324 msgid "Download image" msgstr "Görseli indir" +#: 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 "Profil verisini indir" + +#: src/screens/Settings/components/ExportCarDialog.tsx:123 +msgctxt "button" +msgid "Download profile data" +msgstr "Profil verisini indir" + #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:115 msgid "Doxxing" msgstr "Özel bilgi ifşası" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "Bölgenizdeki yasalardan dolayı bir yetişkin olduğunuzu onaylayana ka msgid "Duration:" msgstr "Süre:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "örn: alice" @@ -3823,9 +4079,8 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." msgid "Eating disorders" msgstr "Yeme bozuklukları" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Düzenle" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Avatarı düzenle" @@ -3847,19 +4102,19 @@ msgstr "Avatarı düzenle" msgid "Edit Feeds" msgstr "Akışları Düzenle" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 msgid "Edit group name" msgstr "Grup adını düzenle" #: 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Resmi düzenle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Etkileşim ayarlarını düzenle" @@ -3868,7 +4123,16 @@ msgstr "Etkileşim ayarlarını düzenle" msgid "Edit interests" msgstr "İlgi alanlarını düzenle" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: src/screens/Messages/JoinRequests.tsx:299 +msgid "Edit invite link" +msgstr "Davetiye bağlantısını düzenle" + +#: src/screens/Messages/JoinRequests.tsx:305 +msgctxt "button" +msgid "Edit invite link" +msgstr "Davetiye bağlantısını düzenle" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:369 msgid "Edit link settings" msgstr "Bağlantı ayarlarını düzenle" @@ -3886,20 +4150,15 @@ msgstr "Canlı yayın durumunu düzenle" msgid "Edit moderation list" msgstr "Moderasyon listesini düzenle" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Akışlarımı Düzenle" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "İsmi düzenle" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -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" @@ -3912,12 +4171,12 @@ msgstr "Gönderi etkileşim ayarlarını düzenle" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Profil düzenle" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Profil Düzenle" @@ -3925,7 +4184,8 @@ msgstr "Profil Düzenle" msgid "Edit starter pack" msgstr "Başlangıç paketini düzenle" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "Bu grup sohbetinin adını düzenle" @@ -3937,7 +4197,7 @@ msgstr "Kullanıcı listesini düzenle" msgid "Edit who can reply" msgstr "Kimin yanıtlayabileceğini düzenle" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Başlangıç paketini düzenle" @@ -3971,7 +4231,7 @@ msgstr "E-posta adresi" msgid "Email Resent" msgstr "E-posta Yeniden Yollandı" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "E-posta gönderildi!" @@ -4006,8 +4266,8 @@ msgstr "Bu gönderiyi web sitenize gömün. Aşağıdaki kod parçasını kopyal msgid "Embedded video player" msgstr "Gömülü video oynatıcı" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Etkinleştir" @@ -4025,7 +4285,7 @@ msgstr "Yetişkin içeriği etkinleştirin" msgid "Enable captions" msgstr "Altyazıları aç" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "E-posta iki adımlı doğrulamasını etkinleştir" @@ -4038,13 +4298,12 @@ msgstr "Harici medyayı etkinleştirin" msgid "Enable media players for" msgstr "Medya oynatıcılarını etkinleştir" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "Bir hesabın bildirimlerini etkinleştirmek için profilini ziyaret edin ve <0>zil simgesine <1/> basın." -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "Anında bildirimleri etkinleştir" @@ -4091,8 +4350,8 @@ msgstr "Bir şifre girin" msgid "Enter a word or tag" msgstr "Bir sözcük veya etiket girin" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "Kodu girin" @@ -4143,12 +4402,12 @@ msgstr "Tam ekrana geçer" msgid "Entertainment" msgstr "Eğlence" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Hata" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "En son veriyi alırken hata oldu." @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Herkes" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Herkes" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Herkes" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "Geri kalan her şey" @@ -4217,16 +4476,16 @@ msgstr "Takip ettiğiniz kullanıcıları hariç tutar" msgid "Exit fullscreen" msgstr "Tam ekrandan çık" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Alternatif metni genişlet" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Kullanıcı listesini genişletir" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın" @@ -4238,7 +4497,7 @@ msgstr "Gönderi metnini genişlet" msgid "Expands or collapses post text" msgstr "Gönderi metnini genişletir ya da daraltır" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "URI'nin bir kayda çözümlenmesi beklendi" @@ -4277,10 +4536,10 @@ msgstr "Açık veya rahatsız edici olabilecek medya." msgid "Explicit sexual images." msgstr "Açık cinsel içerikli görseller." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Keşfet" @@ -4289,11 +4548,8 @@ msgstr "Keşfet" msgid "Explore the app" msgstr "Uygulamayı keşfet" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "Sohbet verisini dışarı aktar" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "Sohbet verimi dışarı aktar" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Harici Medya Tercihleri" @@ -4331,18 +4587,22 @@ msgstr "Harici Medya Tercihleri" msgid "Extremist content" msgstr "Aşırılıkçı içerik" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Sohbet kabul edilemedi" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "Katılma talebi kabul edilemedi" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Emoji tepkisi eklenemedi" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "Üyeler eklenemedi" @@ -4354,7 +4614,8 @@ msgstr "Başlangıç paketine eklenemedi" msgid "Failed to change handle. Please try again." msgstr "Kullanıcı adı değiştirilemedi. Lütfen tekrar deneyin." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "Bağlantı kopyalanamadı" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Uygulama şifresi oluşturulamadı. Lütfen tekrar deneyin." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Yazışma oluşturulamadı" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "Davetiye bağlantısı yaratılamadı" @@ -4376,17 +4637,17 @@ msgstr "Davetiye bağlantısı yaratılamadı" msgid "Failed to create starter pack" msgstr "Başlangıç paketi oluşturulamadı" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Sohbet silinemedi" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Mesaj silinemedi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Gönderi silinemedi, lütfen tekrar deneyin" @@ -4394,24 +4655,24 @@ msgstr "Gönderi silinemedi, lütfen tekrar deneyin" msgid "Failed to delete starter pack" msgstr "Başlangıç paketi silinemedi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "Davetiye bağlantısı devre dışı bırakılamadı" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "Germ DM bağlantısı kesilemedi. Hata: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "Grup sohbeti ismi düzeltilemedi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "Davetiye bağlantısı düzeltilemedi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "Davetiye bağlantısı etkinleştirilemedi" @@ -4427,19 +4688,27 @@ msgstr "Tüm arkadaşlarınız takip edilemedi, lütfen tekrar deneyin" msgid "Failed to hide suggestion, please check your internet connection" msgstr "Öneri gizlenemedi, lütfen internet bağlantınızı kontrol edin" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "Katılma talebi gözardı edilemedi" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +msgid "Failed to join the group chat. Please try again." +msgstr "Grup sohbetine katılınamadı. Lütfen tekrar deneyin." + #: src/components/contacts/screens/ViewMatches.tsx:582 msgid "Failed to launch SMS app" msgstr "SMS uygulaması başlatılamadı" #: src/screens/Messages/components/ChatEnded.tsx:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "Grup sohbetinden çıkılamadı" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Yazışmalar yüklenemedi" @@ -4456,17 +4725,8 @@ msgstr "Akışlar yüklenemedi" msgid "Failed to load feeds preferences" msgstr "Akış tercihleri ​​yüklenemedi" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "Bildirim ayarları yüklenemedi." @@ -4493,16 +4753,15 @@ msgstr "Önerilen akışlar yüklenemedi" msgid "Failed to load suggested follows" msgstr "Önerilen takipler yüklenemedi" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "Grup sohbeti kilitlenemedi" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Tüm istekleri okundu olarak işaretleme başarısız oldu" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "Grup sohbeti sessize alınamadı" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Gönderi sabitlenemedi" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "Germ DM ile yeniden bağlantı kurulamadı. Hata: {0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: src/screens/Settings/FindContactsSettings.tsx:509 msgid "Failed to remove data due to a network error, please check your internet connection." msgstr "Bir ağ probleminden dolayı veri kaldırılamadı, lütfen internet bağlantınızı kontrol edin." #. placeholder {0}: cleanError(err) -#: src/screens/Settings/FindContactsSettings.tsx:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "Veri kaldırılamadı. {0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Emoji tepkisi kaldırılamadı" @@ -4534,7 +4793,8 @@ msgstr "Emoji tepkisi kaldırılamadı" msgid "Failed to remove from starter pack" msgstr "Başlangıç paketinden çıkarılamadı" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "Grup sohbeti üyesi çıkarılamadı" @@ -4542,15 +4802,20 @@ msgstr "Grup sohbeti üyesi çıkarılamadı" msgid "Failed to remove verification" msgstr "Doğrulama kaldırılamadı" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:34 +msgid "Failed to rescind your request. Please try again." +msgstr "Talebiniz geri çekilemedi. Lütfen tekrar deneyin." + #: src/components/dialogs/DeviceLocationRequestDialog.tsx:81 msgid "Failed to resolve location. Please try again." msgstr "Konum çözümlenemedi. Lütfen tekrar deneyin." -#: src/view/com/composer/Composer.tsx:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "Taslak kaydedilemedi" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "Görsel kaydedilemedi" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "İlgi alanlarınız kaydedilemedi." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "E-posta gönderilemedi, lütfen tekrar deneyin." @@ -4580,16 +4845,16 @@ msgstr "Rapor yollanamadı" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "İtirazınız gönderilemedi, lütfen tekrar deneyin." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Konuyu sessize alma seçeneği değiştirilemedi, lütfen tekrar deneyin" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "Grup sohbeti kilidi açılamadı" @@ -4597,12 +4862,12 @@ msgstr "Grup sohbeti kilidi açılamadı" msgid "Failed to unpin list" msgstr "Listenin sabitlemesi kaldırılamadı" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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 "E-posta iki adımlı doğrulama ayarları güncellenemedi" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "E-posta güncellenemedi, lütfen tekrar deneyin." @@ -4614,7 +4879,7 @@ msgstr "Akışlar güncellenemedi" msgid "Failed to update notification declaration" msgstr "Bildirim beyanı güncellenemedi" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Ayarlar güncellenemedi" @@ -4641,7 +4906,7 @@ msgstr "Sahte hesap ya da bot" msgid "False information about elections" msgstr "Seçimler hakkında yanlış bilgi" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Akış" @@ -4649,7 +4914,7 @@ msgstr "Akış" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "{0} tarafından besleme" @@ -4662,7 +4927,7 @@ msgstr "Akışı oluşturan" msgid "Feed identifier" msgstr "Akış tanımlayıcısı" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Akış menüsü" @@ -4676,25 +4941,25 @@ msgstr "Akış kullanılamıyor" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Geribildirim" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:308 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:331 msgctxt "toast" msgid "Feedback sent to feed operator" msgstr "Geribildiriminiz akış operatörüne yollandı" -#: src/Navigation.tsx:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Akışlar" @@ -4739,7 +5004,7 @@ msgstr "Aramayı dile göre filtrele (şu anda:{currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "Kimden bildirim alacağınızı filtreleyin" @@ -4747,11 +5012,11 @@ msgstr "Kimden bildirim alacağınızı filtreleyin" msgid "Finalizing" msgstr "Tamamlanıyor" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "Sonunda!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "Sonunda! Sizin için önemli olan gönderileri kaçırmayın. Onları istediğiniz zaman tekrar ziyaret edebilmek için kaydedin." @@ -4768,19 +5033,17 @@ msgstr "Finans" msgid "Find accounts to follow" msgstr "Takip edilecek hesaplar bul" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "Bağlantılarınızı Bulun" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "Arkadaşlarınızı Bulun" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "Bağlantılardan arkadaşlarınızı bulun" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "Bağlantılarınızı Bulun" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "Arkadaşlarımı bul" msgid "Find people to follow" msgstr "Takip edilecek kişiler bulun" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Bluesky'da gönderileri, kullanıcıları ve akışları bulun" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "Arkadaşlarınızı bulun" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "Telefon numaranızı doğrulayarak ve rehberinizdeki kişilerle eşleştirerek arkadaşlarınızı bulun. Biz verilerinizi koruyoruz ve siz ne olacağını belirliyorsunuz. <0>Daha fazla bilgi edinin" @@ -4847,22 +5114,22 @@ msgstr "Arama alanına odaklan" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Takip et" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "{0} takip et" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "{displayName} kişisini takip et" @@ -4892,8 +5159,8 @@ msgstr "Hesabı takip et" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "Tüm hesapları takip et" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Geri takip et" @@ -4916,7 +5183,7 @@ msgstr "Geri takip et" msgid "Followed all accounts!" msgstr "Hesapların tümü takip edildi!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "Tüm eşleşen bağlantılar takip edildi" @@ -4944,8 +5211,12 @@ msgstr "<0>{0} ve <1>{1} tarafından takip ediliyor" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}, <1>{1} ve {2, plural, other {# kişi daha}} tarafından takip ediliyor" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "Takipçiler katılabilir" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Tanıdığınız @{0} takipçileri" @@ -4960,10 +5231,10 @@ msgstr "Tanıdığın takipçiler" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Takip ediliyor" @@ -4977,12 +5248,12 @@ msgstr "Takiptekiler" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "{0} takip ediliyor" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "{displayName} takip ediliyor" @@ -4995,19 +5266,16 @@ msgstr "{handle} takip ediliyor" msgid "Following feed preferences" msgstr "Takip edilenler akışı tercihleri" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Takip Edilenler Akışı Tercihleri" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Sizi takip ediyor" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Sizi Takip Ediyor" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Yazı tipi" @@ -5065,11 +5333,16 @@ msgstr "Şifrenizi mi unuttunuz?" msgid "Forgot?" msgstr "Unuttunuz mu?" +#. 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:12 msgid "Free your feed" msgstr "Akışınızı özgürleştirin" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "Kimden" @@ -5086,82 +5359,86 @@ msgstr "<0/> tarafından" msgid "Generate a starter pack" msgstr "Bir başlangıç ​​paketi oluşturun" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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 "Davetiye bağlantısı üret" -#: src/screens/Messages/components/InviteLinkDialog.tsx:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "Yeni davetiye bağlantısı üret" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: src/screens/Messages/components/InviteLinkDialog.tsx:451 msgid "Generate new link" msgstr "Yeni bağlantı üret" #: src/screens/Profile/components/GermButton.tsx:86 -#: src/screens/Profile/components/GermButton.tsx:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM bağlantısı kesildi" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM Bağlantısı" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "Germ DM yeniden bağlandı" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Yardım al" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +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:269 msgid "Get notifications when people follow you." msgstr "Sizi takip ettiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "Yeniden gönderilerinizi beğendiklerinde bildirim alın." - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "Gönderilerinizi beğendiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +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:285 msgid "Get notifications when people mention you." msgstr "Sizden bahsettiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "Gönderilerinizi alıntıladıklarında bildirim alın." -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "Gönderilerinize yanıt verdiklerinde bildirim alın." -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "Yeniden gönderilerinizi yeniden gönderdiklerinde bildirim alın." - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "Gönderilerinizi yeniden gönderdiklerinde bildirim alın." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "Başkaları yeniden gönderimlerinizi yeniden gönderdiğinde bildirim alın." + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +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:94 msgid "Get notified about new posts" msgstr "Yeni gönderilerden bildirim al" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -msgid "Get notified about posts and replies from accounts you choose." -msgstr "Seçtiğiniz hesapların gönderilerinden ve yanıtlarından bildirim alın." - #: src/components/activity-notifications/SubscribeProfileDialog.tsx:226 msgid "Get notified of new posts from {name}" msgstr "{name} kullanıcısının yeni gönderilerinden bildirim al" @@ -5174,27 +5451,27 @@ msgstr "Bu hesabın etkinliklerinden bildirim al" msgid "Get notified when {name} posts" msgstr "{name} gönderi paylaştığında bildirim al" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "Birisi gönderi paylaştığında bildirim al" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Başla" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF yüklendi" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Profilinize bir yüz ekleyin" @@ -5213,20 +5490,20 @@ msgstr "Şiddete övgü" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Geri git" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Geri Git" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Önceki adıma geri dön" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Ana sayfaya git" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Ana sayfaya git" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Ana Sayfaya Git" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "Canlı yayını başlat (devre dışı)" msgid "Go live for" msgstr "Canlı yayın süresi" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "{firstAuthorName} kullanıcısının profiline git" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "Hesap ayarlarına git" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "{0} ile olan yazışmaya git" @@ -5296,23 +5571,23 @@ msgstr "Akışa git" msgid "Go to next" msgstr "Sonrakine git" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Profile git" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "\"{chatName}\" grubuna git" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Kullanıcının profiline git" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "Kullanıcının profiline git" @@ -5320,11 +5595,18 @@ msgstr "Kullanıcının profiline git" msgid "Going live is currently disabled for your account" msgstr "Canlı yayını başlatma şu anda hesabınız için kullanıma kapalı" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 "Anladım" +#: 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 @@ -5340,59 +5622,75 @@ msgstr "Açık şiddet içeren içerik" msgid "Grooming or predatory behavior" msgstr "Reşit olmayanlara yönelik cinsel yönlendirme ya da sarkıntılık davranışı" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "Grup sohbeti" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "Grup sohbeti davetiye linki diyalogu" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "Grup sohneti kilitlendi" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "Grup sohbeti sessize alındı" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "Grup sohbeti ismi güncellendi" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "Grup sohbeti ayarları" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "Grup sohbetinin kilidi açıldı" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "Grup sohbeti sessizden çıkarıldı" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "Grup sohbetleri henüz erişilebilir değil" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "Grup sohbetleri artık erişilebilir" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "Grup kilitli" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "Grup adı" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "Hack'leme ya da sistem saldırıları" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Kullanıcı adı çok uzun. Lütfen daha kısa bir tane deneyin." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "Şimdi oluyor" @@ -5446,7 +5744,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:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Etiket" @@ -5458,8 +5756,8 @@ msgstr "{tag} etiketi" msgid "Hate speech" msgstr "Nefret söylemi" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "Kodunuz var mı? <0>Buraya tıklayın." @@ -5479,11 +5777,11 @@ msgstr "Bluesky tarafından kötüye kullanımı engellemek için 7 gün tutulur #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Yardım" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Gizli liste" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Gizli liste" msgid "Hide" msgstr "Gizle" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Gizle" @@ -5553,18 +5851,18 @@ msgstr "Grup sohbeti güncellemelerini gizle" msgid "Hide lists" msgstr "Listeleri gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Gönderiyi benim için gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Yanıtı herkesten gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Yanıtı benden gizle" @@ -5577,19 +5875,19 @@ msgstr "Bu kartı gizle" msgid "Hide this event" msgstr "Bu etkinliği gizle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Bu gönderiyi gizle?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Bu yanıtı gizle?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "Çeviriyi gizle" @@ -5606,7 +5904,7 @@ msgstr "Gündem başlıkları gizlensin mi?" msgid "Hide trending videos?" msgstr "Gündem olan videolar gizlensin mi?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Kullanıcı listesini gizle" @@ -5620,6 +5918,10 @@ msgstr "Doğrulama rozetlerini gizle" msgid "Hides the content" msgstr "İçeriği gizler" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "Hmm, bir <0>Uygulama Şifresi ile giriş yapmış görünüyorsunuz. Doğum tarihinizi belirleyebilmeniz için ana hesap şifrenizle giriş yapmanız ya da bu hesabı kim yönetiyorsa ondan istemeniz gerekmektedir." @@ -5652,19 +5954,15 @@ msgstr "Hmmm, bu verileri yüklemekte sorun yaşıyoruz gibi görünüyor. Daha msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, o moderasyon hizmetini yükleyemedik." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Bekleyin! Videoya kademeli olarak erişim veriyoruz ve siz hâlâ sıradasınız. Birazdan tekrar kontrol edin!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "Sabırlı olun! Bu özellik henüz size sunulmuş değil. Lütfen daha sonra tekrar kontrol edin." - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Ana Sayfa" @@ -5721,7 +6019,7 @@ msgstr "Anladım" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "Bluesky'da {0} olarak yer alıyorum - gel beni bul! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Alternatif metin uzunsa, alternatif metin genişletme durumunu değiştirir" @@ -5757,15 +6055,15 @@ msgstr "Bu listeyi sildiğinizde geri getirmeniz mümkün olmayacaktır." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Kendi alan adınız varsa onu kullanıcı adınız olarak kullanabilirsiniz. Bu, kimliğinizi kendi kendinize doğrulamanızı sağlar. <0>Burada daha fazlasını öğrenin." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "E-postanızı güncellemeniz gerekiyorsa <0>buraya tıklayın." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Bu gönderiyi kaldırırsanız geri getirmeniz mümkün olmayacaktır." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "Eğer e-posta adresinizi güncellerseniz e-posta ile iki adımlı doğrulama devre dışı bırakılacaktır." @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "Hesabınızın etkinlik bildirimlerini kimlerin alabileceğini sınırlamak istiyorsanız, bunu <0>Ayarlar → Gizlilik ve Güvenlik bölümünden değiştirebilirsiniz." @@ -5786,23 +6083,23 @@ msgstr "Eğer bir geliştiriciyseniz kendi sunucunuzu barındırabilirsiniz." msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Eğer kullanıcı adınızı veya e-postanızı değiştirmeye çalışıyorsanız, bunu devre dışı bırakmadan önce yapın." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Görsel" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "Görsel {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "Görsel {0}/{1}" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "Görsel {0} / {imageCount}" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Görsel önbelleği temizlendi, {0} yer açıldı" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "Görsel galerisi, {0} görsel" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: src/features/liveNow/components/LiveStatusDialog.tsx:300 msgid "Image is hidden due to your moderation settings." msgstr "Moderasyon ayarlarınız sebebiyle görsel gizlenmiştir." #. Image has been moderated and is not visible to the user -#: src/features/liveNow/components/LiveStatusDialog.tsx:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "Görsel görüntülenemez." -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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 "Görsel seçenekleri" -#: src/components/Lightbox/Lightbox.web.tsx:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "Kendini başkası olarak tanıtma" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "Bağlantıları yükle" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:116 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:127 msgid "Import Contacts" msgstr "Bağlantıları Yükle" +#: 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:71 +#: src/components/contacts/FindContactsBannerNUX.tsx:72 msgid "Import contacts to find your friends" msgstr "Arkadaşlarınızı bulmak için bağlantılarınızı yükleyin" #. placeholder {0}: i18n.date(new Date(syncedAt), { dateStyle: 'long', }) -#: src/screens/Settings/FindContactsSettings.tsx:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "{0} tarihinde aktarıldı" @@ -5881,40 +6182,40 @@ msgstr "{0} tarihinde aktarıldı" 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 "Yaşınıza uygun bir tecrübe sağlamamız için doğum tarihinizi bilmemiz gerekiyor. Bu tek seferlik bir şeydir ve veriniz gizli tutulacaktır." -#: src/screens/Settings/NotificationSettings/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "Uygulama içi" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "Uygulama içi bildirimler" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "Uygulama içi, Herkes" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "Uygulama içi, herkes" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "Uygulama içi, Takip ettikleriniz" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "Uygulama içi, takip ettikleriniz" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "Uygulama içi, Anında" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "Uygulama içi, anlık" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "Uygulama içi, Anında, Herkes" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "Uygulama içi, anlık, herkes" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "Uygulama içi, Anında, Takip ettikleriniz" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "Uygulama içi, anlık, takip ettikleriniz" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "Gelen kutusu boş" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Gelen kutusu boş!" @@ -5954,6 +6255,10 @@ msgstr "Taslakları sunarız" msgid "Introducing finding friends via contacts" msgstr "Bağlantılarınızdan arkadaşlarınızı bulmayı sunarız" +#: 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 "Kayıtlı gönderileri yani yer imlerini sunarız" @@ -5963,11 +6268,15 @@ msgstr "Kayıtlı gönderileri yani yer imlerini sunarız" msgid "Invalid 2FA confirmation code." msgstr "Geçersiz 2FA onay kodu." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "Geçersiz grup sohbeti kodu." + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Geçersiz kullanıcı adı. Lütfen başka bir kullanıcı adı deneyin." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "Geçersiz etkileşim ayarları." @@ -5977,10 +6286,15 @@ msgstr "Geçersiz etkileşim ayarları." msgid "Invalid phone number" msgstr "Geçersiz telefon numarası" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Geçersiz rapor konusu" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "Geçersiz geri alım talebi." + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Geçersiz Doğrulama Kodu" @@ -6001,8 +6315,15 @@ msgstr "Davet kodu" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "Arkadaşları Davet Edin" @@ -6010,21 +6331,31 @@ msgstr "Arkadaşları Davet Edin" msgid "Invite friends <0/>" msgstr "Arkadaşları davet edin <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "Davetiye bağlantısı" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "Davetiye bağlantısı" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +msgid "Invite link copied" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:120 msgid "Invite link created" msgstr "Davetiye bağlantısı oluşturuldu" #: src/components/dms/getSystemMessageInfo.ts:138 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "Davetiye bağlantısı devre dışı bırakıldı" @@ -6040,11 +6371,16 @@ msgstr "Davetiye bağlantısı etkinleştirildi" msgid "Invite people to this starter pack!" msgstr "İnsanları bu başlangıç ​​paketine davet edin!" +#: 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 "Arkadaşlarınızı, beğendiğiniz akışları ve kişileri takip etmeye davet edin" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "Davet edildi" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "İş ID: {0}" @@ -6083,6 +6419,11 @@ msgstr "İş ID: {0}" msgid "Jobs" msgstr "İşler" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "Katıl" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "İşler" msgid "Join Bluesky" msgstr "Bluesky'a Katıl" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "Grup sohbetine katıl" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:31 +msgid "Join request rescinded." +msgstr "Katılım talebi geri alındı." + #: src/components/StarterPack/QrCode.tsx:72 #: src/view/shell/NavSignupCard.tsx:41 msgid "Join the conversation" @@ -6099,8 +6450,8 @@ msgstr "Yazışmaya katıl" msgid "Journalism" msgstr "Gazetecilik" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "Düzenlemeye devam et" @@ -6109,6 +6460,11 @@ msgstr "Düzenlemeye devam et" msgid "Keep me posted" msgstr "Beni haberdar et" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS web sitesi" @@ -6143,7 +6499,7 @@ msgstr "Hesabınızdaki işaretler" msgid "Labels on your content" msgstr "İçeriğinizdeki işaretler" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Dil Ayarları" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "En son" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "Arkadaşları davet etmenin nasıl çalıştığı hakkında daha fazla #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "Bağlantılarınızı yükleme hakkında daha fazla bilgi edinin" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Bu uyarı hakkında daha fazla bilgi edinin" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "Bluesky'da doğrulama ile ilgili daha fazla bilgi edinin" @@ -6239,7 +6595,7 @@ msgstr "Bluesky'da doğrulama ile ilgili daha fazla bilgi edinin" msgid "Learn more about what is public on Bluesky." msgstr "Bluesky'da neyin herkese açık olduğu hakkında daha fazla bilgi edinin." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "Germ DM bağlantınızla ilgili daha fazla bilgi edinin" @@ -6252,31 +6608,33 @@ msgstr "<0>Hesap ayarlarınızdan daha çok bilgi edinin." msgid "Learn more." msgstr "Daha fazlasını öğren." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Ayrıl" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Sohbetten ayrıl" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Yazışmadan ayrıl" @@ -6284,13 +6642,14 @@ msgstr "Yazışmadan ayrıl" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Yazışmadan ayrıl" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "Grup sohbetinden ayrıl" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "Bu grup sohbetinden ayrıl" @@ -6299,6 +6658,14 @@ msgstr "Bu grup sohbetinden ayrıl" msgid "Leaving Bluesky" msgstr "Bluesky'ı terk ediyorsunuz" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "kaldı." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Aydınlık" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Beğen" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Beğen ({0, plural, other {# beğeni}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "Beğeni bildirimleri" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Bu akışı beğen" @@ -6358,8 +6721,8 @@ msgstr "Bu akışı beğen" msgid "Like this labeler" msgstr "Bu işaretleyiciyi beğen" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Beğenenler" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, other {# kullanıcı}} tarafından beğenildi" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, other {# kullanıcı}} tarafından beğenildi" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Beğeniler" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "Yeniden gönderilerinize dair beğeniler" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "Yeniden gönderilerinize dair beğenilerin bildirimleri" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Bu gönderideki beğeniler" @@ -6409,11 +6768,11 @@ msgstr "Bu gönderideki beğeniler" msgid "Linear" msgstr "Düz" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "Bağlantı panoya kopyalandı" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Liste" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Liste sessizden çıkarıldı" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Listeler" @@ -6545,7 +6904,7 @@ msgstr "Canlı etkinlik yeniden görünür hale getirildi" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "Canlı etkinlikler heyecan verici bir şey olduğunda ortaya çıkarlar. Dilerseniz bu etkinliği ya da tüm etkinlikleri gizleyebilirsiniz." -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "Canlı özelliği beta'dır" @@ -6595,27 +6954,27 @@ msgstr "Gönderi etkileşim ayarları yükleniyor..." msgid "Loading..." msgstr "Yükleniyor..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "Kilitle" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "Grup sohbetini kilitle" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "Grup sohbeti kilitlensin mi?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "Bu grup sohbetini kilitle" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "Kilitlendi" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Log" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo: @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo: <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Görünüşe göre takip edilenler akışınız eksik. <0>Eklemek için msgid "Love GIFs" msgstr "Sevgi GIFleri" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "Hesabınız için e-posta ayarlarınızı düzenleyin" @@ -6687,24 +7046,22 @@ msgstr "Doğrulama ayarlarını yönet" msgid "Manage your muted words and tags" msgstr "Sessize alınmış kelimelerinizi ve etiketlerinizi yönetin" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Tümünü okunmuş olarak işaretle" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Okundu olarak işaretle" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Tümü okunmuş olarak işaretlendi" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Belki daha sonra" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "Üyeler" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "Üyeler sohbet geçmişini okuyabilir ama yeni mesaj atamazlar." -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "Bahsetme bildirimleri" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "bahsedilen kullanıcılar" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Bahsedenler" @@ -6761,7 +7118,7 @@ msgstr "Mesaj" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "Mesaj" @@ -6771,26 +7128,26 @@ msgstr "Mesaj" msgid "Message {0}" msgstr "Mesaj {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "{displayName} üyesine mesaj at" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Mesaj silindi" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Mesaj silindi" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "Mesaj gönderilemedi." #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "@{0} mesajı: {1}" @@ -6813,19 +7170,19 @@ msgstr "Mesaj çok uzun" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "Mesaj çok uzun ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Mesaj seçenekleri" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Mesajlar" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 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:647 +#: src/components/dms/MessageItem.tsx:621 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." @@ -6838,10 +7195,6 @@ msgstr "Gece yarısı" msgid "Minor harassment or bullying" msgstr "Küçüklere taciz ya da kabadayılık" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "Diğer bildirimler" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "Yanıltıcı" @@ -6850,7 +7203,7 @@ msgstr "Yanıltıcı" msgid "Missing media" msgstr "Kayıp medya" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Moderasyon" @@ -6894,7 +7247,7 @@ msgstr "Moderasyon listesi güncellendi" msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" @@ -6903,7 +7256,7 @@ msgstr "Moderasyon Listeleri" msgid "moderation settings" msgstr "moderasyon araçları" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Moderasyon durumları" @@ -6928,8 +7281,8 @@ msgstr "Diğer diller..." #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Daha fazla seçenek" @@ -6949,7 +7302,7 @@ msgstr "Filmler" msgid "Music" msgstr "Müzik" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Sessize al" @@ -6965,8 +7318,8 @@ msgstr "Sessize al" msgid "Mute {0}" msgstr "{0} etiketini sessize al" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Hesabı sessize al" msgid "Mute accounts" msgstr "Hesapları sessize al" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Yazışmayı sustur" @@ -6994,7 +7347,7 @@ msgstr "Listeyi sessize al" msgid "Mute these accounts?" msgstr "Bu hesapları sessize al?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "Bu grup sohbetini sessize al" @@ -7022,17 +7375,21 @@ msgstr "Bu kelimeyi yalnızca etiketlerde sessize al" msgid "Mute this word until you unmute it" msgstr "Bu kelimeyi tekrar sessizden çıkarana kadar sessize al" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Konuyu sessize al" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Kelimeleri ve etiketleri sustur" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "Sessize alındı" @@ -7040,7 +7397,7 @@ msgstr "Sessize alındı" msgid "Muted accounts" msgstr "Sessize alınan hesaplar" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Sessize Alınan Hesaplar" @@ -7062,6 +7419,10 @@ msgstr "Sessize alınan kelimeler ve etiketler" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Sessize alma özeldir. Sessize alınan hesaplar sizinle etkileşime geçebilir, ancak gönderilerini görmez ve onlardan bildirim almazsınız." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Başlangıç paketine git" msgid "Navigates to the next screen" msgstr "Sonraki ekrana yönlendirir" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Profilinize yönlendirir" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "Bir telif ihlali, hukuki talep ya da mevzuata uygunluk sorunu mu bildirmeniz gerekiyor?" @@ -7117,6 +7478,7 @@ 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/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Yeni" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "{firstAuthorLink} kullanıcısından yeni {postsCount, plural, one {gönderi} other {gönderiler}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "{firstAuthorName} kullanıcısından yeni {postsCount, plural, one {gönderi} other {gönderiler}}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Yeni sohbet" @@ -7163,7 +7525,7 @@ msgstr "{0} ve {1} ile yeni sohbet" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "{0}, {1} ve {memberCount, plural, other {{memberCount} kişiyle daha}} yeni sohbet." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Yeni e-posta adresi" @@ -7171,32 +7533,30 @@ msgstr "Yeni e-posta adresi" #: 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 "Yeni Özellik" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "Yeni takipçi bildirimleri" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "Yeni takipçiler" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "Yeni grup sohbeti" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "Yeni grup sohbetinin üyeleri:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Yeni gönderi" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Yeni gönderi" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "Yeni gönderiler: {firstAuthorLink} ve <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişiden daha}} " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "{firstAuthorName} ve {additionalAuthorsCount, plural, other {{formattedAuthorsCount} kişiden daha}} yeni gönderiler" @@ -7262,8 +7622,8 @@ msgstr "Haberler" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "İleri" msgid "Next image" msgstr "Sonraki görsel" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 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." @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "Henüz bir takipçi yok" @@ -7335,7 +7699,7 @@ msgstr "\"{query}\" için GIF bulunamadı." msgid "No GIFs to show right now. Try again in a moment." msgstr "Şu anda görülecek bir GIF yok. Birazdan tekrar deneyin." -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "Görsel yok" @@ -7353,8 +7717,8 @@ msgstr "Liste yok" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "{0} artık takip edilmiyor" @@ -7362,7 +7726,7 @@ msgstr "{0} artık takip edilmiyor" msgid "No media yet" msgstr "Henüz bir medya yok" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Henüz mesaj yok" @@ -7378,12 +7742,12 @@ msgstr "İsim yok" msgid "No notifications yet!" msgstr "Henüz bildirim yok!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "Hiç kimse" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "Hiç kimse" @@ -7399,7 +7763,7 @@ msgstr "Hiç kimse" msgid "No one but the author can quote this post." msgstr "Yazarı dışında hiçkimse bu gönderiyi alıntılayamaz." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "Kimse mesaj yollayamaz" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Sonuç yok" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Sonuç yok" @@ -7446,8 +7810,8 @@ msgstr "Sonuç yok" msgid "No results for \"{0}\"." msgstr "\"{0}\" için sonuç bulunamadı." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Sonuç bulunamadı" @@ -7509,12 +7873,12 @@ msgstr "Rızasız mahrem görseller" msgid "Non-sexual Nudity" msgstr "Cinsel olmayan çıplaklık" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -msgstr "Hiçbiri" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" +msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "Bu platformda kullanılabilir değil." @@ -7522,16 +7886,16 @@ 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:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Bulunamadı" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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 "Gönder'e basmaya hazır değil misiniz? En iyi fikirlerinizi doğru zamana kadar Taslaklar'da tutun." -#: src/view/com/profile/ProfileMenu.tsx:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Paylaşıma dair dikkatinize" @@ -7548,44 +7912,31 @@ msgstr "Not: Bu gönderi yalnızca giriş yapmış kullanıcılara görünür." msgid "Nothing saved yet" msgstr "Henüz hiçbir şey kaydedilmedi" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Bildirim ayarları" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Bildirim sesleri" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Bildirimler" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "Geri kalan her şey için bildirimler, mesela birinin başlangıç paketinizle katılması gibi." - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "şimdi" @@ -7601,7 +7952,7 @@ msgstr "Numara bir cep telefonu numarası olmalı" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Kapalı" @@ -7623,9 +7974,10 @@ msgstr "Tamam" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Tamam" @@ -7648,35 +8000,35 @@ msgstr "<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Onboarding sıfırlama" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "Seçilmiş alıcılardan biri grup sohbetlerine izin vermiyor." -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "Seçilmiş alıcılardan biri sizi engellediğinden kendisiyle yazışılamaz." -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Bir ya da daha fazla görselin alternatif metni eksik." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "Seçtiğiniz dosyalardan bir ya da birden fazlası desteklenmiyor." -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "Seçtiğiniz dosyalardan bir ya da birden fazlası çok büyük. En büyük dosya boyu 100 MB olabilir." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Bir veya daha fazla videoda alternatif metin eksik." @@ -7685,6 +8037,26 @@ msgstr "Bir veya daha fazla videoda alternatif metin eksik." msgid "Only {0} can reply." msgstr "Yalnızca {0} yanıtlayabilir." +#. 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:234 +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 "Yalnızca yöneticiler katılma taleplerini kabul edebilir." + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "Yalnızca yöneticiler katılım taleplerini gözardı edebilir." + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +msgid "Only followers can join this group chat." +msgstr "Sadece takipçiler bu grup sohbetine katılabilir." + #: src/screens/Settings/ActivityPrivacySettings.tsx:121 #: src/screens/Settings/ActivityPrivacySettings.tsx:126 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:158 @@ -7695,6 +8067,16 @@ msgstr "Sadece benim takip ettiğim takipçiler" msgid "Only image files are supported" msgstr "Yalnızca resim dosyaları desteklenmektedir" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "Sadece {0} kişisinin takip ettikleri katılabilir." + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "Sadece sohbet sahibinin takip ettikleri sohbete katılabilir" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Yalnızca WebVTT (.vtt) dosyaları desteklenmektedir" @@ -7703,6 +8085,10 @@ msgstr "Yalnızca WebVTT (.vtt) dosyaları desteklenmektedir" msgid "Oops, something went wrong!" msgstr "Ay, bir şeyler yanlış gitti!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ay, bir şeyler yanlış gitti!" msgid "Oops!" msgstr "Hata!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Avatar oluşturucuyu aç" @@ -7720,12 +8106,17 @@ msgstr "Avatar oluşturucuyu aç" msgid "Open camera" msgstr "Kamerayı aç" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "{displayName} için sohbet üyesi seçeneklerini aç" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Yazışma seçeneklerini aç" @@ -7739,16 +8130,16 @@ msgstr "Çekmece menüyü aç" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Emoji seçiciyi aç" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Akış seçenekleri menüsünü aç" @@ -7760,13 +8151,22 @@ msgstr "Tüm emoji listesini aç" msgid "Open Germ DM" msgstr "Germ DM'i aç" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +msgid "Open group chat" +msgstr "Grup sohbetini aç" + +#: src/components/dms/MessagesListHeader.tsx:167 +#: src/components/dms/MessagesListHeader.tsx:203 msgid "Open group chat settings" msgstr "Grup sohbeti ayarlarını aç" -#: src/components/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "{niceUrl} web bağlantısını aç" @@ -7790,11 +8190,15 @@ msgstr "Paketi aç" msgid "Open post options menu" msgstr "Gönderi seçenekleri menüsünü aç" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: src/features/liveNow/components/LiveStatusDialog.tsx:219 +#: src/features/liveNow/components/LiveStatusDialog.tsx:229 msgid "Open profile" msgstr "Profili aç" +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Storybook sayfasını aç" msgid "Open system log" msgstr "Sistem günlüğünü aç" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "Bu grup sohbetini aç" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Gönderinize içerik uyarısı ekleme diyaloğunu açar" msgid "Opens a dialog to choose who can interact with this post" msgstr "Bu gönderiyle kimin etkileşebileceğini seçmek için bir diyalog açar" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Hata ayıklama girişi için ek ayrıntıları açar" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Cihazdaki kamerayı açar" @@ -7858,22 +8270,24 @@ msgstr "Besteciyi açar" msgid "Opens device camera" msgstr "Cihaz kamerasını açar" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "{MAX_IMAGES, plural, other {# adede kadar}} görsel veya tek bir video ya da GIF seçmek için cihaz galerisini açar." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "Tam görseli açar" @@ -7890,7 +8304,7 @@ msgstr "Görsel seçiciyi açar" msgid "Opens link {0}" msgstr "{0} bağlantısını açar" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "Canlı yayın diyaloğunu açar" @@ -7902,15 +8316,23 @@ msgstr "Şifre sıfırlama formunu açar" msgid "Opens post language settings" msgstr "Gönderi dili ayarlarını açar" -#: src/components/dms/SystemMessageItem.tsx:60 +#: src/components/dms/SystemMessageItem.tsx:61 msgid "Opens profile" msgstr "Profili açar" +#: 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 "GIF seçme diyalogunu açar" +#: 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 "Gönderi oluşturucusunu açar" @@ -7919,9 +8341,8 @@ msgstr "Gönderi oluşturucusunu açar" msgid "Opens this draft in the composer" msgstr "Bu taslağı düzenleyicide açar" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Bu profili açar" @@ -7997,12 +8418,12 @@ msgstr "Blog gönderimiz" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Moderasyon ekibimiz raporunuzu aldı." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Moderatörlerimiz raporları inceledi ve Bluesky'daki sohbetlere erişiminizi engellemeye karar verdi." @@ -8010,16 +8431,17 @@ msgstr "Moderatörlerimiz raporları inceledi ve Bluesky'daki sohbetlere erişim msgid "Owner" msgstr "Sahibi" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 +#: 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 "Sayfa bulunamadı" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" -msgstr "Sayfa Bulunamadı" - #. 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" @@ -8068,34 +8490,34 @@ msgstr "Videoyu duraklat" msgid "People" msgstr "Kişiler" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "{ownerName} tarafından takip edilenler anında katılabilir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 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:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "@{0} tarafından takip edilenler" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "Takip ettiklerim" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "Takip ettiklerim anında katılabilir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "Takip ettiklerim katılmayı talep edebilir" @@ -8136,13 +8558,17 @@ msgstr "Telefon numarası doğrulandı" msgid "Photography" msgstr "Fotoğrafçılık" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 msgid "Pictures meant for adults." msgstr "Yetişkinler için resimler." #: src/components/FeedCard.tsx:364 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Akışı sabitle" @@ -8152,12 +8578,12 @@ msgstr "Akışı sabitle" msgid "Pin to home" msgstr "Ana ekrana sabitle" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Ana Sayfaya Sabitle" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Profiline sabitle" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Sabitlendi" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "{0} Ana Sayfaya Sabitlendi" @@ -8236,7 +8662,7 @@ msgstr "Kullanıcı adınızı seçin." msgid "Please choose your password." msgstr "Şifrenizi seçin." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "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." @@ -8244,7 +8670,7 @@ msgstr "Yeni e-posta adresinizi doğrulamak için lütfen size şimdi yolladığ msgid "Please complete the verification captcha." msgstr "Lütfen doğrulama captcha'sını tamamlayın." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "Video yüklemek için lütfen e-posta adresinizi onaylayın." @@ -8265,14 +8691,14 @@ msgstr "Lütfen bir şifre girin. En az 8 karakter uzunluğunda olmalıdır." msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Lütfen bu uygulama şifresi için benzersiz bir isim girin ya da ürettiğimiz rastgele ismi kullanın." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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 "Lütfen geçerli bir kod girin." #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:111 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "Lütfen geçerli bir e-posta adresi girin." @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "Lütfen geçerli, geçici olmayan bir e-posta adresi girin. Bu e-posta adresine ilerde erişmeniz gerekebilir." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "Lütfen <0>{0} adresine yolladığımız kodu aşağıya girin." @@ -8293,7 +8719,7 @@ msgstr "Lütfen <0>{0} adresine yolladığımız kodu aşağıya girin." msgid "Please enter the code you received and the new password you would like to use." msgstr "Lütfen elinize geçen kodu ve kullanmak istediğiniz yeni şifreyi girin." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 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." @@ -8306,7 +8732,7 @@ msgstr "E-postanızı girin." msgid "Please enter your invite code." msgstr "Lütfen davet kodunuzu girin." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "Lütfen yeni e-posta adresinizi girin." @@ -8323,7 +8749,7 @@ msgstr "Lütfen kullanıcı adınızı girin" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Lütfen neden bu işaretin {0} tarafından yanlış uygulandığını açıklayın" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Lütfen neden sohbetlerinizin yanlış yere kullanıma kapatıldığını açıklayın" @@ -8358,7 +8784,11 @@ msgstr "Lütfen bu rapor için bir gerekçe seçin" msgid "Please sign in as @{0}" msgstr "Lütfen @{0} olarak giriş yapın" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "Bağlantılarınızı aktarmak için lütfen mobil uygulamayı kullanın." @@ -8366,7 +8796,7 @@ msgstr "Bağlantılarınızı aktarmak için lütfen mobil uygulamayı kullanın msgid "Please use the native app to sync your contacts." msgstr "Lütfen bağlantılarınızı eşlemek için mobil uygulamayı kullanın." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "Lütfen e-postanızı doğrulayın" @@ -8383,7 +8813,7 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Gönder" @@ -8403,12 +8833,12 @@ msgstr "Bir fotoğraf gönder" msgid "Post a video" msgstr "Bir video gönder" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Hepsini Gönder" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "Yine de gönder" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "Gönderi engellendi" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} tarafından gönderi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Gönderi silindi" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Gönderinin yollanması başarısız. Lütfen İnternet bağlantınızı kontrol edin ve tekrar deneyin." @@ -8454,18 +8884,22 @@ msgstr "Gönderi Sizin Tarafınızdan Gizlenmiş" msgid "Post interaction settings" msgstr "Gönderi etkileşim ayarları" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Gönderi Etkileşim Ayarları" +#: 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 "Gönderi dili seçimi" -#: src/screens/Messages/components/InviteLinkDialog.tsx:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "Bağlantıyı gönder" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Gönderiler metinleri, etiketleri veya ikisiyle beraber sessize alınabi msgid "Posts hidden" msgstr "Gönderiler gizlendi" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -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ı" @@ -8525,9 +8954,10 @@ msgstr "Tercih edilen dil" msgid "Press to attempt reconnection" msgstr "Yeniden bağlanmak için basın" -#: src/components/Error.tsx:61 +#: 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 "Yeniden denemek için basın" @@ -8536,7 +8966,7 @@ msgstr "Yeniden denemek için basın" msgid "Press to view followers of this account that you also follow" msgstr "Bu hesabın sizin de takip ettiğiniz takipçilerini görmek için basın" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "Önizleme" @@ -8559,26 +8989,25 @@ msgstr "Gizlilik" msgid "Privacy and security" msgstr "Gizlilik ve güvenlik" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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:338 +#: src/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Gizlilik Politikası" @@ -8586,15 +9015,15 @@ msgstr "Gizlilik Politikası" msgid "Privacy violation of a minor" msgstr "Bir küçüğün gizliliğini ihlal" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "GIF işleniyor..." -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Video işleniyor..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "İşleniyor..." @@ -8602,10 +9031,10 @@ msgstr "İşleniyor..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Profil" @@ -8613,6 +9042,7 @@ msgstr "Profil" msgid "Profile banner placeholder" msgstr "Profil geçici kapağı" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "Profil bulunamadı" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 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:1672 +#: src/view/com/composer/Composer.tsx:1787 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:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Yanıtları yayınla" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Yanıtı yayınla" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "Anında" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "Anında bildirimler" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "Anında, Herkes" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "Anlık, herkes" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "Anında, Takip ettikleriniz" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "Anlık, takip ettikleriniz" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Karekod panonuza kopyalandı!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Karekod indirildi!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Karekod fotoğraflarınıza kaydedildi!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "Alıntı bildirimleri" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "Alıntı bildirimleri" msgid "Quote post" msgstr "Gönderiyi alıntıla" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Alıntı gönderi yeniden iliştirildi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Alıntı gönderinin ilişiği başarıyla kesildi" @@ -8711,12 +9138,12 @@ msgstr "Alıntı gönderilen devre dışı bırakıldı" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Alıntılar" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Bu gönderinin alıntıları" @@ -8728,16 +9155,16 @@ msgstr "Hız sınırı aşıldı -- kullanıcı adınızı kısa bir sürede ço msgid "Rate limit exceeded. Please try again later." msgstr "İşlem sıklığı sınırı aşıldı. Lütfen daha sonra tekrar deneyin." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Alıntıyı yeniden iliştir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "Davetiye bağlantısını yeniden etkinleştir" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "Bağlantıyı yeniden etkinleştir" @@ -8745,8 +9172,8 @@ msgstr "Bağlantıyı yeniden etkinleştir" msgid "React with {emoji}" msgstr "{emoji} ile tepki ver" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "Tepkiler" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "arama filtrelerinin nasıl kullanılacağını okuyun" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Blog gönderisini oku" @@ -8812,11 +9239,11 @@ msgstr "Gerçek insanlar." msgid "Reason for appeal" msgstr "İtiraz gerekçesi" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "Uygulama içi bildirimleri al" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "Anında bildirimleri al" @@ -8841,17 +9268,31 @@ msgstr "Öneriler" msgid "Reconnect" msgstr "Yeniden bağlan" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Reddet" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Reddet" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Sohbet isteğini reddet" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Yazışmaları yeniden yükle" @@ -8863,6 +9304,8 @@ msgstr "Yazışmaları yeniden yükle" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "Grup sohbetinden {displayName} kişisini çıkar" msgid "Remove {displayName} from starter pack" msgstr "Başlangıç paketinden {displayName} kullanıcısını çıkart" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "{displayName} kişisini bu grup sohbetinden çıkar" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "{historyItem} öğesini çıkart" @@ -8891,22 +9339,22 @@ msgstr "{historyItem} öğesini çıkart" msgid "Remove account" msgstr "Hesabı kaldır" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "Tüm bağlantıları kaldır" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Eki kaldır" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Avatarı kaldır" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Kapağı Kaldır" @@ -8914,8 +9362,9 @@ msgstr "Kapağı Kaldır" msgid "Remove caption file" msgstr "Altyazı dosyasını kaldır" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Gömülü içeriği kaldır" @@ -8929,12 +9378,12 @@ msgstr "Akışı kaldır" msgid "Remove feed?" msgstr "Akış kaldırılsın mı?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "Sohbetten çıkar" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "Kayıtlı gönderilerden çıkar" msgid "Remove from your feeds?" msgstr "Akışlarınızdan kaldırılsın mı?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Resmi kaldır" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Yeniden göndermeyi kaldır" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "Öneriyi kaldır" @@ -9009,11 +9458,11 @@ msgstr "Doğrulamayı kaldır" msgid "Remove your verification for this account?" msgstr "Bu hesap için doğrulamanızı kaldıracak mısınız?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Yazar tarafından kaldırılmış" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Sizin tarafınızdan kaldırılmış" @@ -9035,7 +9484,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:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "Size yanıt" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Yanıtlar" @@ -9104,14 +9552,14 @@ msgstr "Yanıtlara kapalı" msgid "Replies to this post are disabled." msgstr "Bu gönderi yanıtlara kapalı." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Yanıtla" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Yanıtla ({0, plural, other {# yanıt}})" @@ -9125,10 +9573,6 @@ msgstr "Konu Yazarı Tarafından Gizlenmiş Yanıt" msgid "Reply Hidden by You" msgstr "Yanıt Tarafınızdan Gizlenmiş" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "Yanıt bildirimlerini al" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Yanıt ayarları konu yazarı tarafından belirlenir" @@ -9137,18 +9581,18 @@ msgstr "Yanıt ayarları konu yazarı tarafından belirlenir" msgid "Reply sorting" msgstr "Yanıt sıralama" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Yanıt görünürlüğü güncellendi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Yanıt başarıyla gizlendi" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Raporla" @@ -9157,20 +9601,20 @@ msgstr "Raporla" msgid "Report account" msgstr "Hesabı raporla" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Yazışmayı raporla" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Rapor diyaloğu" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Akışı raporla" @@ -9179,12 +9623,12 @@ msgstr "Akışı raporla" msgid "Report list" msgstr "Listeyi raporla" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Mesajı raporla" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Gönderiyi raporla" @@ -9199,8 +9643,8 @@ msgstr "Başlangıç paketini raporla" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Rapor yollandı" @@ -9213,7 +9657,7 @@ msgstr "Bu yazışmayı raporla" msgid "Report this feed" msgstr "Bu akışı raporla" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "Bu grup sohbetini raporla" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Bu listeyi raporla" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "Bu canlı yayını raporla" @@ -9256,10 +9700,6 @@ msgstr "Yeniden gönder" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Yeniden gönder ({0, plural, other {# defa yeniden gönderilmiş}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "Yeniden gönderi bildirimleri" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "Siz yeniden göndermişsiniz" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "Yeniden gönderiler" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Bu gönderinin yeniden gönderilmesi" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "Yeniden gönderilerinizin yeniden gönderileri" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "Yeniden gönderilerinizin yeniden gönderilme bildirimleri" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "Grup sohbetine erişim talep et" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." +msgstr "Talep onaylandı." #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 #: src/screens/Settings/components/ChangePasswordDialog.tsx:232 msgid "Request code" msgstr "Kod iste" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "Talep gözard edildi." + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "Katılmayı talep et" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "Talepler" +#: src/Navigation.tsx:501 +#: src/screens/Messages/JoinRequests.tsx:59 +#: src/screens/Messages/JoinRequests.tsx:425 +msgid "Requests to join" +msgstr "Katılma talepleri" + #: src/screens/Settings/AccessibilitySettings.tsx:59 #: src/screens/Settings/AccessibilitySettings.tsx:64 msgid "Require alt text before posting" msgstr "Göndermeden önce alternatif metin gerektir" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Hesabınıza giriş yapmak için e-postanıza onay kodu yollanmasını gerekli kıl." @@ -9328,7 +9791,17 @@ msgstr "Bu sağlayıcı için gereklidir" msgid "Required in your region" msgstr "Bölgenizde zorunludur" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +msgid "Rescind request" +msgstr "Talebi geri çek" + +#: 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 "Yeniden gönder" @@ -9373,8 +9846,8 @@ msgstr "Onboarding durumunu sıfırla" msgid "Reset password" msgstr "Şifreyi sıfırla" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "Bağlantıları güncelle" @@ -9391,17 +9864,18 @@ msgstr "Son hataya neden olan son eylemi tekrarlar" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Son hataya neden olan son eylemi tekrarlar" msgid "Retry" msgstr "Tekrar dene" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Rapor seçeneklerini yüklemeyi tekrar dene" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Önceki sayfaya dön" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Ana sayfaya döner" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Önceki sayfaya döner" @@ -9451,10 +9925,10 @@ msgstr "Üzgün GIFler" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ 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:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Değişiklikleri kaydet" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "Değişiklikler kaydedilsin mi?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "Taslağı kaydet" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "Taslak kaydedilsin mi?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Görseli kaydet" msgid "Save new handle" msgstr "Yeni kullanıcı adını kaydet" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "QR kodu kaydet" @@ -9518,13 +9994,13 @@ 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:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Akışlarıma kaydet" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "Kayıtlı" @@ -9534,25 +10010,25 @@ msgstr "Kayıtlı" msgid "Saved Feeds" msgstr "Kayıtlı Akışlar" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "Kayıtlı Gönderiler" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Akışlarınıza kaydedildi" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Merhaba de!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "Birine selam deyin" @@ -9560,6 +10036,16 @@ msgstr "Birine selam deyin" msgid "Scam" msgstr "Dolandırıcılık" +#: 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Bilim" @@ -9576,18 +10062,18 @@ msgstr "Sağa kaydır" msgid "Scroll to top" msgstr "Başa kaydır" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Ara" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "@{0} gönderilerini ara" @@ -9662,12 +10148,12 @@ msgstr "Dil ara" msgid "Search my posts" msgstr "Gönderilerimi ara" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Gönderileri ara" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Profilleri ara" msgid "Search..." msgstr "Ara..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Profilleri arar" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "Güvenlik adımı gerekiyor" @@ -9759,7 +10245,7 @@ msgstr "{langName} dilini seç" msgid "Select a color" msgstr "Renk seç" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "Bir gerekçe seçiniz" @@ -9828,7 +10314,7 @@ msgstr "GIF Seç" msgid "Select GIF \"{0}\"" msgstr "GIF Seç \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "Grup sohbeti üyelerini seçin" @@ -9850,7 +10336,7 @@ msgstr "Dil seç..." msgid "Select languages" msgstr "Dilleri seç" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Moderasyon hizmeti seçin" @@ -9904,11 +10390,11 @@ msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin" msgid "Select your preferred language for translations in your feed." msgstr "Akışlarınızdaki çeviriler için tercih ettiğiniz dili seçin." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "Tercih ettiğiniz bildirim kanallarını seçiniz" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "Farklı türlerde medya seçimi desteklenmemektedir." @@ -9921,9 +10407,9 @@ msgstr "Kendine zarar verme veya tehlikeli davranışlar" msgid "Send code" msgstr "Kodu yolla" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "E-posta gönder" @@ -9935,11 +10421,11 @@ msgstr "E-posta gönder" msgid "Send error report" msgstr "Hata raporu yolla" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Geribildirim gönder" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Mesaj gönder" @@ -9952,7 +10438,7 @@ msgstr "Gönderiyi {name} kullanıcısına gönder" msgid "Send post to..." msgstr "Şuraya gönder..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Raporu şuraya gönder {title}" @@ -9960,7 +10446,7 @@ msgstr "Raporu şuraya gönder {title}" msgid "Send the message from your phone" msgstr "Mesajı telefonunuzdan yollayın" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Doğrudan mesaj yoluyla gönder" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "{0} saatinde yollandı" @@ -10015,14 +10501,14 @@ msgstr "Doğum tarihinizi aşağıda belirlediğinizde sizi en kısa zamanda gö msgid "Sets email for password reset" msgstr "Şifre sıfırlama için e-posta ayarlar" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Ayarlar" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "Başkalarının etkinliklerine dair ayarlar" @@ -10030,39 +10516,39 @@ 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:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "Beğeni bildirimi ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "Bahsetme bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "Yeni takipçi bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "Geri kalan bildirimlerin ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "Yeniden gönderilerinizin beğenilme bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "Yeniden gönderilerinizin yeniden gönderim bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "Alıntı bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "Yanıt bildirimleri ayarları" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "Yeniden gönderim bildirimleri ayarları" @@ -10079,16 +10565,19 @@ msgstr "Cinsel aktivite veya erotik çıplaklık." msgid "Sexually Suggestive" msgstr "Cinsel Çağrışımlı" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Paylaş" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Yine de paylaş" @@ -10097,16 +10586,21 @@ msgstr "Yine de paylaş" msgid "Share author DID" msgstr "Yazar DID'ini paylaş" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: src/components/Lightbox/Lightbox.web.tsx:281 +#: src/components/Lightbox/Lightbox.web.tsx:307 msgid "Share image" msgstr "Görseli paylaş" +#: 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 "Bağlantı paylaş" @@ -10114,6 +10608,11 @@ msgstr "Bağlantı paylaş" msgid "Share link dialog" msgstr "Bağlantı paylaşma diyalogu" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "Gönderinin at:// URI'sini paylaş" msgid "Share QR code" msgstr "QR kod paylaş" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Bu akışı paylaş" @@ -10142,8 +10641,8 @@ msgstr "Bu başlangıç paketini paylaş ve insanların Bluesky'deki topluluğun #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "Paylaş..." @@ -10151,7 +10650,7 @@ msgstr "Paylaş..." msgid "Share your contacts to find friends" msgstr "Arkadaşlarınızı bulmak için bağlantılarınızı paylaşın" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Paylaşılan Tercihler Test Edicisi" @@ -10167,16 +10666,16 @@ msgstr "Alt metni göster" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Yine de göster" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "Otomasyon işaretini göster" @@ -10197,8 +10696,8 @@ msgstr "Özelleştirme seçeneklerini göster" msgid "Show group chat updates" msgstr "Grup sohbeti güncellemelerini göster" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Bunun gibi daha az göster" @@ -10219,8 +10718,8 @@ msgstr "Keşif akışında (\"Discover\") canlı etkinlikleri göster" msgid "Show More" msgstr "Daha Fazla Göster" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Bunun gibi daha fazla göster" @@ -10246,8 +10745,8 @@ msgstr "Yanıtları göster" msgid "Show replies as" msgstr "Yanıtları şöyle göster" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Yanıtı herkese göster" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Uyarı göster ve akışlardan filtrele" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "Canlı yayına çıktığınızı gösterin" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "Bu gönderinin ne zaman oluşturulduğuna dair bilgileri gösterir" @@ -10297,15 +10796,17 @@ msgstr "İçeriği gösterir" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Giriş yap veya bir hesap oluştur" msgid "Sign in or create your account to join the conversation!" msgstr "Sohbete katılmak için giriş yapın veya hesabınızı oluşturun!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "Daveti kabul etmek için giriş yapın." + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Listelenmeyen bir hesaba giriş yap" @@ -10337,8 +10842,12 @@ msgstr "Listelenmeyen bir hesaba giriş yap" msgid "Sign in to Bluesky or create a new account" msgstr "Bluesky'da oturum aç veya yeni bir üyelik oluştur" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +msgid "Sign in to request access to this group chat." +msgstr "Bu grup sohbetine erişim talep etmek için giriş yapın." + +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:580 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:582 msgid "Sign in to view post" msgstr "Gönderiyi görmek için giriş yap" @@ -10348,9 +10857,9 @@ msgstr "Gönderiyi görmek için giriş yap" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Çıkış yap" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Çıkış Yap" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Çıkış yap?" @@ -10391,7 +10900,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:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "Boş gönderiler atlansın mı?" @@ -10405,7 +10914,7 @@ msgstr "Girizgahı atla ve hesabını kullanmaya başla" msgid "Skip to next step" msgstr "Sonraki adıma atla" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "slayt" @@ -10413,7 +10922,7 @@ msgstr "slayt" msgid "Smaller" msgstr "Daha küçük" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Hatırlatmayı erteler" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "Biri gruptan çıktı" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Birisi {0} tepkisi verdi" @@ -10487,17 +10996,22 @@ msgstr "Biri çıkarıldı" msgid "Someone was removed from the group" msgstr "Biri gruptan çıkarıldı" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Raporlamaya çalıştığınız verilerde bir sorun var. Lütfen destekle iletişime geçin." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Bir şeyler ters gitti" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Bir şeyler ters gitti!" msgid "Something went wrong. Please try again in a moment." msgstr "Bir şeyler ters gitti. Lütfen biraz sonra tekrar deneyin." -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "Bir şeyler ters gitti. Lütfen tekrar deneyin." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Bir sorun mu var? Bize bildirin." @@ -10564,11 +11078,16 @@ msgstr "Spam veya başka bir samimiyetsiz davranış veya kandırma" msgid "Sports" msgstr "Spor" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "Bir yazışma başlatırsanız burada görünecektir." -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Yeni bir sohbet başlat" @@ -10582,17 +11101,17 @@ msgstr "Kişileri eklemeye başla" msgid "Start adding people!" msgstr "Kişileri eklemeye başla!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "Sohbete başla" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "{displayName} ile sohbet başlat" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Başlangıç Paketi" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "Twitch'te yayın mı yapıyorsunuz? Canlı durumunuzu Bluesky'da değiştirerek avatarınıza bir rozet ekleyin. Ona dokunanlar doğrudan yayınınıza gideceklerdir." @@ -10671,8 +11190,8 @@ msgstr "Twitch'te yayın mı yapıyorsunuz? Canlı durumunuzu Bluesky'da değiş #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Yolla" @@ -10684,9 +11203,9 @@ msgstr "İtirazı yolla" msgid "Submit Appeal" msgstr "İtirazı Yolla" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Raporu yolla" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Abone ol" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "{0} yayıncısına abone ol" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "{0} kaynağının {publicationTitle} yayınına abone ol" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "Başarılı" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Başarılı!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "Grup sohbetine başarıyla katıldınız!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Başarıyla doğrulandı" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "Önerilen" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Gün batımı" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "Destek" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "Bu özellik ülkenizde henüz etkin değil! Lütfen daha sonra tekrar kontrol edin." -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "Askıya alınmış hesaplar grup sohbetlerine katılamaz." -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "Askıya alınmış hesaplar bu sohbete katılamaz." #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Hesap değiştir" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Hesap değiştir" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "{0} hesabına geç" @@ -10824,11 +11347,15 @@ msgstr "Sistem günlüğü" msgid "Tags only" msgstr "Yalnızca etiketler" +#: 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 "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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "Ayrıntılar için dokunun" @@ -10854,33 +11381,51 @@ msgstr "Bu güncellemeleri anladığınızı ve onayladığınızı kabul etmek msgid "Tap to close context menu" msgstr "Bağlam menüsünü kapatmak için dokunun" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Gizlemek için dokunun" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "Geri almak için dokunun" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "{0} tepkinizi geri almak için dokunun" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "Yeniden denemek için dokunun" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "{0} tepkilerini görmek için dokunun" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "Tüm tepkileri göstermek için dokunun" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "Tepkileri görmek için dokunun" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Hizmet Şartları" @@ -10939,7 +11484,7 @@ msgstr "Metin ve etiketler" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Metin giriş alanı" @@ -10981,9 +11526,9 @@ msgstr "Hepsi bu kadar!" msgid "That's everything!" msgstr "Hepsi bu kadar!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Hesap, engeli kaldırdıktan sonra sizinle etkileşime geçebilecek." @@ -11049,6 +11594,11 @@ msgstr "Aşağıdaki ayarlar yeni gönderi oluştururken varsayılan olarak kull msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "Bölgenizdeki yasalar belirli özelliklere erişebilmeniz için bir yetişkin olduğunuzu doğrulamanızı gerektirmektedir. Daha fazla bilgi edinmek için dokunun." +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "Üye sınırına ulaşıldı." + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "Yanıtlamakta olduğunuz gönderi, yazarı tarafından {suggestedLanguageName} dilinde işaretlenmiş. Siz de <0>{suggestedLanguageName} dilinde yanıtlamak ister misiniz?" @@ -11057,10 +11607,10 @@ msgstr "Yanıtlamakta olduğunuz gönderi, yazarı tarafından {suggestedLanguag msgid "The Privacy Policy has been moved to <0/>" msgstr "Gizlilik Politikası <0/> konumuna taşındı" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "Seçtiğiniz video {videoSize} MB'tan büyük. Lütfen daha küçük bir dosyayla tekrar deneyin." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "Seçili video {VIDEO_MAX_SIZE_MB} MB'tan büyük. Lütfen daha küçük bir dosyayla yeniden deneyin." #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "Tema" 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 "Doğum tarihinizi ne kadar sık değiştirebileceğinizin bir sınırı vardır. Tekrar güncellemek için birkaç gün beklemeniz gerekebilir." -#: src/screens/Messages/components/InviteLinkDialog.tsx:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "Bu grup sohbeti için bir davetiye bağlantısı yok." @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "GIFler yüklenemedi. Bağlantınızı kontrol edin ve tekrar deneyin." #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:36 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Akışlarınızı güncellerken bir sorun oldu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Bir sorun oluştu! {0}" @@ -11221,6 +11774,14 @@ msgstr "Bunlar varsayılan ayarlarınız" msgid "These settings only apply to the Following feed." msgstr "Bu ayarlar yalnızca takip akışına (\"Following\") uygulanır." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Bu {screenDescription} işaretlendi:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Bu itiraz <0>{sourceName} hesabına yollanacaktır." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Bu itiraz Bluesky'ın moderasyon hizmetine gönderilecektir." @@ -11263,7 +11824,7 @@ msgstr "Bu itiraz Bluesky'ın moderasyon hizmetine gönderilecektir." msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "Bu içeriğin yazarı, gönderilerini sadece giriş yapmış kişilerin görebilmesini tercih etmiş." -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "Bu düğme başkalarının Germ DM uygulaması üzerinden size mesaj yollayabilmesini sağlar. Görünürlüğünü Germ DM uygulamasından yönetebilir veya aşağıdaki düğmeye tıklayarak Germ DM'in Bluesky hesabınızla bağlantısını tamamen kesebilirsiniz." @@ -11271,11 +11832,21 @@ msgstr "Bu düğme başkalarının Germ DM uygulaması üzerinden size mesaj yol msgid "This chat has ended" msgstr "Bu sohbet sona erdi" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "Bu sohbet dolu" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "Bu sohbet kilitli" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Bu sohbetin bağlantısı koptu" @@ -11310,7 +11881,11 @@ msgstr "Bu içerik, içerikte yer alan kullanıcılardan biri diğerini engelled msgid "This content is not viewable without a Bluesky account." msgstr "Bu içerik, bir Bluesky hesabı olmadan görüntülenemez." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +msgid "This conversation is locked." +msgstr "Bu yazışma kilitli." + +#: src/screens/Messages/components/ChatListItem.tsx:156 msgid "This conversation is with a deleted or a deactivated account. Press for options" msgstr "Bu yazışmanın yapıldığı hesap ya silinmiş ya da devre dışı bırakılmış. Seçenekler için basın" @@ -11318,7 +11893,7 @@ msgstr "Bu yazışmanın yapıldığı hesap ya silinmiş ya da devre dışı b msgid "This draft will be permanently deleted." msgstr "Bu taslak kalıcı olarak silinecektir." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "Bu e-posta zaten hesabınızla ilişkili." @@ -11356,11 +11931,15 @@ msgstr "Bu akış boş." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Bu akış çevrimiçi değil. Onun yerine size keşif akışı <0>Discover'ı gösteriyoruz." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "Bu kullanıcı adı kullanılamaz. Lütfen başka bir tane deneyin." -#: src/screens/Onboarding/StepProfile/index.tsx:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 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." @@ -11368,6 +11947,14 @@ msgstr "Bu görsel kullanılamaz. Farklı bir format deneyin, .jpg ya da .png gi msgid "This information is private and not shared with other users." msgstr "Bu bilgi gizlidir ve diğer kullanıcılarla paylaşılmaz." +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "Bu davetiye bağlantısı devre dışı bırakıldı." + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "Bu davetiye bağlantısı geçersiz" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "Bu boş bir durum" @@ -11377,7 +11964,7 @@ msgstr "Bu boş bir durum" msgid "This is not a valid link" msgstr "Bu bağlantı geçersiz" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "Bu işaret herkese bu hesabın otomasyon içerdiğini belirtir. Bu işaret açıldığında o hesabın profil ve gönderilerinde kullanıcı adının yanında belirir. İstendiği zaman açılıp kapatılabilir." @@ -11410,13 +11997,17 @@ msgstr "Sizin tarafınızdan oluşturulan bu liste, adında ya da açıklamasın msgid "This list is empty." msgstr "Bu liste boş." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 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:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "Bu mesaj gizli çünkü bu kullanıcıyı engelliyorsunuz." @@ -11434,7 +12025,7 @@ msgstr "Bu kişi sizi engelliyor" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bu gönderi <0>{0} tarihinde oluşturulduğunu beyan ediyor, ancak Bluesky'da ilk olarak <1>{1} tarihinde görüldü." @@ -11450,23 +12041,24 @@ msgstr "Bu gönderi yalnızca giriş yapmış kullanıcılara görünür." msgid "This post was deleted by its author" msgstr "Bu gönderi yazarı tarafından silinmiş" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Bu gönderinin yazarı alıntılanmasını engellemiş." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Bu profil sadece giriş yapmış kullanıcılara görünür. Giriş yapmamış kullanıcılara görünmeyecektir." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Bu yanıt konunuzun altındaki gizli bir bölüme sıralanacaktır ve ona gelen yanıtlar hem sizin hem de başkaları için sessize alınacaktır." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "Bu ekran sadece grup yazışmaları için vardır." @@ -11490,22 +12082,22 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Bu kullanıcının hiç takipçisi yok." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "Bu kullanıcı sizi engellediğinden kendisiyle mesajlaşılamaz." #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "Bu kullanıcı sohbeti devre dışı bıraktığından kendisiyle mesajlaşılamaz." #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11551,7 +12143,7 @@ msgstr "Bu, geri dönülemez şekilde <0>{currentHandle} Bluesky hesabınız msgid "This will remove @{0} from the quick access list." msgstr "Bu @{0} kullanıcısını çabuk erişim listesinden kaldıracak." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Bu işlem, gönderinizin bu alıntıyla ilişiğini tüm kullanıcılar için kesecek ve yerine bir yer tutucu koyacaktır." @@ -11574,7 +12166,7 @@ msgstr "Konu Tercihleri" msgid "Threaded" msgstr "Dallanmalı" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Konu Tercihleri" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "E-posta iki adımlı doğrulamasını kapatmak için lütfen e-postanıza erişiminizi onaylayın." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "E-posta iki adımlı doğrulama yöntemini kapatmak için lütfen <0>{0} adresine erişiminizi doğrulayın" @@ -11646,16 +12238,16 @@ msgstr "En öne çıkan" msgid "Top replies first" msgstr "Önce en öne çıkan yanıtlar" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Konu başlığı" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Çevir" @@ -11667,8 +12259,8 @@ msgstr "Çevrildi" msgid "Translating" msgstr "Çevriliyor" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "Çevriliyor…" @@ -11702,7 +12294,7 @@ msgstr "Gündemdeki Videolar" msgid "Trolling" msgstr "Trolleme" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Güven ilişkilerden, topluluklardan ve paylaşılan bağlamdan gelir. Dolayısıyla <0>güvenilir doğrulayıcıları yani direkt doğrulama yapabilen kurumları devreye alıyoruz." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "Farklı bir arama terimi deneyin ya da <0>arama filtrelerinin nasıl kullanılacağına dair bilgi edinin (İngilizce)." +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Tekrar dene" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Tekrar dene" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "Google Translate'i dene" +#: 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 "TV" @@ -11763,13 +12369,17 @@ msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol e msgid "Unable to delete" msgstr "Silinemedi" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "Katılım talepleri çekilemedi." -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "Seçilmiş alıcılardan biri bulunamadı." + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "Seçilmiş alıcı bulunamadı." #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "Erişilmez" msgid "Unavailable feed information" msgstr "Erişilemeyen akış bilgisi" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Engeli kaldır" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Engeli kaldır" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "{displayName} engelini kaldır" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Hesabın engelini kaldır" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Hesabı Engelle?" @@ -11837,8 +12452,8 @@ msgstr "Listeden engeli kaldır" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "Geri al" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Yeniden gönderiyi geri al ({0, plural, other {# yeniden gönderi}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "{0} adresini takibi bırak" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Hesabı takibi bırak" @@ -11872,7 +12487,7 @@ msgstr "Hesabı takibi bırak" msgid "Unfollows the user" msgstr "Kullanıcıyı takipten çıkarır" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Maalesef abone olduğunuz işaretleyicilerin hiçbiri bu rapor türünü desteklemiyor." @@ -11884,14 +12499,6 @@ msgstr "Maalesef profilinizde belirttiğiniz doğum tarihi sizi Bluesky kullanma msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "Ne yazık ki beyan edilen yaşınız bulunduğunuz bölgeden Bluesky'a erişmek için yeterince yaşlı olmadığıızı gösteriyor." -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "Daveti geri al" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "{displayName}'in bu grup sohbete davetini geri al" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Bilinmeyen doğrulayıcı" @@ -11904,21 +12511,21 @@ 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:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Beğenmeyi geri al" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Beğeniyi kaldır ({0, plural, other {# beğeni}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "Sohbet kilidini aç" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "Bu grup sohbetinin kilidini aç" @@ -11939,14 +12546,14 @@ msgstr "Sessizden çıkar" msgid "Unmute {0}" msgstr "{0} etiketini sessizden çıkar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Hesabı sessizden çıkar" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Yazışmayı sessizden çıkar" @@ -11955,12 +12562,12 @@ msgstr "Yazışmayı sessizden çıkar" msgid "Unmute list" msgstr "Listeyi sessizden çıkar" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "Bu grup sohbetini sessizden çıkar" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Konuyu sessizden çıkar" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Sabitlemeyi kaldır" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Akışı sabitlemeyi kaldır" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Ana sayfadan sabitlemeyi kaldır" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Profilden sabitlemeyi kaldır" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Moderasyon listesini sabitlemeyi kaldır" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "{0} akışının ana sayfadan sabitlemesi kaldırıldı" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "Desteklenmeyen pano içeriği" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "Desteklenmeyen video türü: {mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "Güncelle" msgid "Update <0>{displayName} in Lists" msgstr "<0>{displayName} kullanıcısının listelerini düzenleyin" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "E-postayı güncelle" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "Davetiye bağlantısını güncelle" @@ -12065,11 +12680,15 @@ msgstr "Davetiye bağlantısını güncelle" msgid "Update to {domain}" msgstr "{domain} adresine güncelle" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "Katılmak için uygulamanızı son sürüme güncelleyin!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "E-postanızı güncelleyin" @@ -12080,17 +12699,17 @@ msgstr "E-postanızı güncelleyin" msgid "Update your location" msgstr "Konumunuzu güncelleyin" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Alıntı ilişiğinin güncellenmesi başarısız oldu" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 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:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Bunun yerine bir görsel ekle" @@ -12098,39 +12717,40 @@ msgstr "Bunun yerine bir görsel ekle" msgid "Upload a text file to:" msgstr "Bir metin dosyası yükleyin:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Kameradan Yükle" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Dosyalardan Yükle" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Kütüphaneden Yükle" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "GIF yükleniyor..." -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Görseller yükleniyor..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Web bağlantısının görseli gönderiliyor..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Video yükleniyor..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "kullanıcı" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Kullanıcı engellendi" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "{0} tarafından oluşturulan kullanıcı listesi" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "{0} Kullanıcı Listesi" @@ -12255,12 +12875,12 @@ msgstr "<0>@{0} tarafından takip edilen kullanıcılar" msgid "users following <0>@{0}" msgstr "<0>@{0} kullanıcısını takip edenler" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "Takip ettiğim kullanıcılar" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "Takip ettiğim kullanıcılar" @@ -12277,7 +12897,7 @@ msgstr "Doğrulama başarısız, lütfen tekrar deneyin." msgid "Verification settings" msgstr "Doğrulama ayarları" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Doğrulama Ayarları" @@ -12304,8 +12924,8 @@ msgstr "Tekrar onayla" #. Button text and accessibility label for action to verify the user's email address using the code entered #. Button text and accessibility label for action to verify the user's email address using the code entered -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "Kodu doğrula" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "DNS Kaydını Doğrula" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "E-posta kodunu doğrulayın" @@ -12349,7 +12969,7 @@ msgstr "Bu hesap doğrulansın mı?" msgid "Verify your age" msgstr "Yaşınızı onaylayın" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "Sürüm {0}" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Video işlenemedi" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Video Akışı" @@ -12419,7 +13039,7 @@ msgstr "Video bulunamadı." msgid "Video settings" msgstr "Video ayarları" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Video yüklendi" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Videolar" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "Videolar 3 dakikadan kısa olmalıdır." -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 msgctxt "Action to view the post the user just created" msgid "View" msgstr "Göz at" #. placeholder {0}: view.source.title -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "{0} yayıncısını görüntüle" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "{0} kullanıcısının profilini görüntüle" @@ -12467,20 +13087,15 @@ msgstr "{0} kullanıcısının profilini görüntüle" msgid "View {0}’s profile" msgstr "{0} kullanıcısının profilini görüntüle" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "{displayName} profilini görüntüle" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "{publicationTitle} yayınını görüntüle" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "@{0} profiline bak" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Engelli kullanıcının profilini görüntüle" @@ -12503,10 +13118,18 @@ msgstr "Ayrıntıları görüntüle" msgid "View full thread" msgstr "Tam konuyu görüntüle" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 msgid "View incoming group chat requests" msgstr "Gelen grup sohbet taleplerini göster" +#: 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:56 msgid "View information about these labels" msgstr "Bu işaretler hakkında bilgi al" @@ -12522,7 +13145,7 @@ msgstr "Daha fazlasını görüntüle" msgid "View more trending videos" msgstr "Daha çok gündem olan video göster" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "Gönderiyi göster" @@ -12539,10 +13162,10 @@ msgstr "Profili görüntüle" msgid "View profile banner" msgstr "Profil kapağını göster" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "Yayını görüntüle" @@ -12550,7 +13173,7 @@ msgstr "Yayını görüntüle" msgid "View the avatar" msgstr "Avatarı görüntüle" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "Bu grup sohbeti için davetiye bağlantısını görüntüle" @@ -12563,7 +13186,7 @@ msgstr "@{0} tarafından sağlanan işaretleme hizmetini gör" 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:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Bu akışı beğenen kullanıcıları görün" @@ -12596,8 +13219,8 @@ msgstr "Sessize aldığınız hesapları görün" msgid "View your verifications" msgstr "Doğrulamalarınızı görüntüleyin" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Görseli tam boy gösterir" @@ -12640,8 +13263,8 @@ msgstr "İçeriği uyar" msgid "Warn content and filter from feeds" msgstr "İçeriği uyar ve akışlarda filtrele" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "Şimdi izle" @@ -12665,11 +13288,15 @@ msgstr "Bu etiket için herhangi bir sonuç bulamadık." msgid "We couldn't find any results for that topic." msgstr "Bu konu başlığı için bir sonuç bulamadık." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Bu yazışmayı yükleyemedik" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: src/screens/Messages/JoinRequests.tsx:89 +msgid "We couldn’t load this conversation’s join requests" +msgstr "Bu yazışmanın taleplerini yükleyemedik" + +#: src/screens/Messages/ConversationSettings/index.tsx:138 msgid "We couldn’t load this conversation’s settings" msgstr "Bu yazışmanın ayarlarını yükleyemedik" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "En az iki ilgi alanı seçmenizi öneririz." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0} adresine bir bağlantı içeren bir e-posta yolladık. Lütfen e-posta doğrulama sürecini tamamlamak için o bağlantıya tıklayın." -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Video yüklemenize izin verilip verilmediğini belirleyemedik. Lütfen tekrar deneyin." @@ -12744,12 +13371,12 @@ msgstr "Bir bağlantı probleminden dolayı onayı alamadık. Daha sonra gelebil msgid "We will let you know when your account is ready." msgstr "Hesabınız hazır olduğunda size bildireceğiz." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "Arkadaşlarınızı bulduğumuzda size bildireceğiz." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "<0>{0} adresine bir bağlantı içeren bir e-posta yollayacağız. Lütfen e-posta doğrulama sürecini tamamlamak için o bağlantıya tıklayın." @@ -12779,12 +13406,12 @@ msgstr "Hesabınızın yaş güvencesi işlemini başlatmakta sıkıntı yaşıy msgid "We're having network issues, try again" msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "Ağ sorunları yaşıyoruz, tekrar deneyin" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ 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:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Üzgünüz! Yanıtladığınız gönderi silindi." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Üzgünüz! Aradığınız sayfayı bulamıyoruz." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Başlangıç ​​paketinize ne ad vermek istersiniz?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Nasılsınız?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Bir onay işaretine dokunduğunuzda hangi kuruluşların doğrulama verdiğini göreceksiniz." @@ -12878,7 +13505,7 @@ msgstr "Bir onay işaretine dokunduğunuzda hangi kuruluşların doğrulama verd msgid "Who can interact with this post?" msgstr "Bu gönderiyle kim etkileşime geçebilir?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "Kim bu grup sohbetine katılabilir ve nasıl" @@ -12887,13 +13514,13 @@ msgstr "Kim bu grup sohbetine katılabilir ve nasıl" msgid "Who can reply" msgstr "Kimler yanıtlayabilir" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Kim doğrulayabilir?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ay ay!" @@ -12939,19 +13566,19 @@ msgstr "Bu başlangıç paketi neden gözden geçirilmeli?" msgid "Why should this user be reviewed?" msgstr "Bu kullanıcı neden gözden geçirilmeli?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "Bu kullanıcıyı engellemek ve/veya bu yazışmayı silmek ister misiniz?" #: src/components/dms/AfterReportConversationDialog.tsx:47 msgid "Would you like to block this user and/or leave this conversation?" -msgstr "" +msgstr "Bu kullanıcıyı engellemek ve/veya bu yazışmadan ayrılmak istiyor musunuz?" #: src/view/com/composer/drafts/DraftsButton.tsx:110 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:1320 +#: src/view/com/composer/Composer.tsx:1439 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?" @@ -12960,12 +13587,12 @@ msgstr "Bunu sonradan düzenlemek için taslak olarak kaydetmek ister misiniz?" msgid "Write a post" msgstr "Bir gönderi yaz" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Gönderi yaz" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Yanıtınızı yazın" @@ -12978,7 +13605,8 @@ msgstr "Yazarlar" msgid "Wrong DID returned from server. Received: {0}" msgstr "Sunucudan yanlış DID döndürüldü. Alınan: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "Yanlış yazışma tipi" @@ -13005,11 +13633,11 @@ msgstr "Evet, hesabımı sil" msgid "Yes, delete this starter pack" msgstr "Evet, bu başlangıç ​​paketini sil" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Evet, ilişiğini kes" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Evet, gizle" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "{0} kişisini engelliyorsunuz" @@ -13068,7 +13696,7 @@ msgstr "Canlı yayındasınız" msgid "You are no longer live" msgstr "Artık canlı yayında değilsiniz" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Video yükleme izniniz yok." @@ -13117,21 +13745,30 @@ msgstr "Her zaman vazgeçip verinizi silebilirsiniz" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "Uygulama içindeki sohbet ayarlarından sohbet bildirimlerinin sesli olup olmayacağını seçebilirsiniz" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Hangi ayarı seçerseniz seçin devam eden yazışmaları sürdürebilirsiniz." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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 "Artık belirli kişiler gönderi paylaştığında bildirim almayı seçebilirsiniz. Güncellemelerini zamanlı almak istediğiniz biri varsa, profiline gidin ve takip et düğmesinin yanındaki yeni zil simgesini bulun." +#: src/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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Artık yeni şifrenizle giriş yapabilirsiniz." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "Yalnızca 1000 karaktere kadar taslak kaydedebilirsiniz." @@ -13139,11 +13776,11 @@ msgstr "Yalnızca 1000 karaktere kadar taslak kaydedebilirsiniz." msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "Yalnızca 1000 karaktere kadar olan taslaklar kaydedilebilir. Taslaklarınıza bakmadan önce bu düzenlediğiniz gönderinin silinmesine razı mısınız?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "Tek seferde sadece tek bir GIF seçebilirsiniz." -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "Tek seferde sadece tek bir video seçebilirsiniz." @@ -13155,10 +13792,10 @@ msgstr "Giriş yapmaya devam etmek için hesabınızı yeniden etkinleştirebili msgid "You can read chat history but can’t send new messages." msgstr "Sohbet geçmişini okuyabilirsiniz ancak yeni mesaj gönderemezsiniz." -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "Toplamda {MAX_IMAGES, plural, other {# adede kadar}} görsel seçebilirsiniz." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,10 +13803,15 @@ msgstr "Toplamda {MAX_IMAGES, plural, other {# adede kadar}} görsel seçebilirs msgid "You can update this later from your settings." msgstr "Bunu daha sonra ayarlarınızdan güncelleyebilirsiniz." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 -msgid "You cannot create a group chat yet." +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "Henüz bir grup sohbeti oluşturamazsınız." + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13197,6 +13839,10 @@ msgstr "Kaydedilmiş akışınız yok." msgid "You got here first" msgstr "İlk siz geldiniz" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 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?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "Bluesky'ı kullanmak için en az 13 yaşında olmanız gerekmektedir. Daha fazla ilgi için <0>Hizmet Şartları'nı okuyun." @@ -13332,11 +13982,12 @@ msgstr "Bluesky'ı kullanmak için en az 13 yaşında olmanız gerekmektedir. Da msgid "You must be following at least seven other people to generate a starter pack." msgstr "Başlangıç ​​paketi oluşturmak için en az yedi kişiyi takip etmeniz gerekir." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Karekod kaydetmek için fotoğraf galerinize erişim izni vermelisiniz" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "Medya galerinize erişim izni vermeniz gerekmektedir." @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "{0} tepkisi verdiniz" @@ -13368,8 +14023,13 @@ msgstr "{target} için {0} tepkisi verdiniz" msgid "You recently changed your birthdate" msgstr "Doğum tarihinizi yakın zamanda değiştirdiniz" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Tüm hesaplarınızdan çıkış yapacaksınız." @@ -13378,11 +14038,11 @@ msgstr "Tüm hesaplarınızdan çıkış yapacaksınız." msgid "You will no longer receive notifications for {0}" msgstr "Artık {0} için bildirim almayacaksınız" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Artık bu konu için bildirim almayacaksınız" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Artık bu konu için bildirim alacaksınız" @@ -13390,12 +14050,12 @@ msgstr "Artık bu konu için bildirim alacaksınız" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Bir \"sıfırlama kodu\" içeren bir e-posta alacaksınız. Bu kodu buraya girin, ardından yeni şifrenizi girin." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 msgid "You won’t be able to rejoin unless you’re invited." msgstr "Davet edilmedikçe tekrar katılamayacaksınız." #. When the last message in a chat was made by you. -#: src/components/dms/getMessageInfo.ts:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "Siz: {message}" @@ -13429,6 +14089,10 @@ msgstr "{0} için bildirim almaya başlayacaksınız!" msgid "You'll stay updated with these feeds" msgstr "Bu akışlardan haberdar edileceksiniz" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Sıradasınız" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "En fazla taslak sayısına ulaştınız" @@ -13475,11 +14139,11 @@ msgstr "İzin verilen en fazla istek sayısına ulaştınız. Lütfen daha sonra msgid "You've reached the start of the active content." msgstr "Aktif içeriğin başına ulaştınız." -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Günlük video yükleme limitinize ulaştınız (çok fazla bayt)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Günlük video yükleme limitinize ulaştınız (çok sayıda video)" @@ -13499,10 +14163,18 @@ msgstr "Hesabınız silindi, görüşmek üzere! ✌️" msgid "Your account has been suspended" msgstr "Hesabınız askıya alındı" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Hesabınız video yüklemek için yeterince eski değil. Lütfen daha sonra tekrar deneyin." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "Hesabınız çok yeni" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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." + #: 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 "Herkese açık tüm veri kayıtlarınızı içeren hesap deponuz bir \"CAR\" dosyası olarak indirilebilir. Bu dosya görselleri, özel verilerinizi veya gömülü medyayı içermez; onların ayrıca indirilmeleri gerekir." @@ -13519,7 +14191,7 @@ msgstr "İtirazınız gönderildi. İtirazınız kabul edilirse size bir e-posta msgid "Your birth date" msgstr "Doğum tarihiniz" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Sohbetleriniz devre dışı bırakıldı" @@ -13527,11 +14199,11 @@ msgstr "Sohbetleriniz devre dışı bırakıldı" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Tercihiniz bundan sonraki web bağlantıları için hatırlanacaktır. Onu her zaman ayarlardan değiştirebilirsiniz." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "Bağlantınız {firstAuthorLink} Bluesky'da" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "Bağlantınız {firstAuthorName} Bluesky'da" @@ -13561,7 +14233,7 @@ msgstr "E-posta adresiniz" msgid "Your email appears to be invalid." msgstr "E-postanız geçersiz gibi görünüyor." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "E-posta adresiniz doğrulanmamış. Lütfen Bluesky'ın tüm özelliklerinin tadını çıkarabilmek için e-postanızı doğrulayın." @@ -13582,7 +14254,7 @@ msgstr "Takip ettiğiniz akış boş! Neler olduğunu görmek için daha fazla k msgid "Your full handle will be <0>@{0}" msgstr "Tam kullanıcı adınız <0>@{0} olacak" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "Konumunuz güncellendi." msgid "Your muted words" msgstr "Sessize aldığınız kelimeler" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -msgstr "Adınız, avatarınız ve grup sohbetinin ismi herkese görünecektir." +#: 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 "Adınız, grup sohbeti adı ve üye sayısı herkese görünecektir." #: 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." @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "Gönderiniz yollandı" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "Gönderileriniz yollandı" @@ -13635,7 +14307,7 @@ msgstr "Gönderileriniz yollandı" msgid "Your preferred language" msgstr "Tercih ettiğiniz dil" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "Profil resminiz" @@ -13648,12 +14320,12 @@ 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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "Yanıtınız yollandı" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Raporunuz <0>{0} işaretleyicisine gönderilecektir." @@ -13661,7 +14333,7 @@ msgstr "Raporunuz <0>{0} işaretleyicisine gönderilecektir." msgid "Your selected interests help us serve you content you care about." msgstr "Seçtiğiniz ilgi alanları, önemsediğiniz içerikleri size sunmamıza yardımcı olur." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 1f8515a7ca..dd4299e736 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\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" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(містить вбудований вміст)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# хвилина} few {# хвилини} many {# хви msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# місяць} few {# місяці} many {# місяців} other {# місяців}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# секунда} few {# секунди} many {# сек #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>у <1>словах та мітках" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "Аватарка користувача {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0}хв" msgid "{0}s" msgstr "{0}с" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {година} few {години} many { msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {хвилина} few {хвилини} many {хвилин} other {хвилин}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали створену вами стрічку" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зробили репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} та <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} інший} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зареєструвались зі створеним вами початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} теж почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} вподобав створену вами стрічку" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} вподобав ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} зробив репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} зареєструвався зі створеним вами початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали створену вами стрічку" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} вподобали ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зробили репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} та {additionalAuthorsCount, plural, one {{formattedAuthorsCount} інші} few {{formattedAuthorsCount} інші} many {{formattedAuthorsCount} інші} other {{formattedAuthorsCount} інші}} зареєструвались зі створеним вами початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} теж почали вас читати" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} сподобалась ваша стрічка" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} сподобався ваш пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} зробив репост" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} зареєструвався з вашим початковим набором" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "" @@ -538,8 +597,8 @@ msgstr "" msgid "{following} following" msgstr "{following} підписок" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "{handle} неможливо написати" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "" #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "" msgid "{userName}'s verifications" msgstr "" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, та {2, plural, one {# інші} few {# інш #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {читач} few {читачі} many {читачі} other {читачі}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {читаєте} few {читаєте} many {читаєте} other {читаєте}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, one {вподобайка} few {вподобайки} many {вподобайки} 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, one {цитата} few {цитати} many {цитати} other {цитата}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, one {репост} few {репости} many {репостів} other {репостів}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} учасників" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "" @@ -860,17 +950,26 @@ msgstr "" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Доступність" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Налаштування доступності" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Налаштування доступності" msgid "Account" msgstr "Обліковий запис" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Обліковий запис заблоковано" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Обліковий запис відстежується" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Обліковий запис вилучено зі швидкого доступу" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Обліковий запис розблоковано" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Обліковий запис не відстежується" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Обліковий запис не ігнорується" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Додати" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Додати альтернативний текст (за бажанн #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Написати ще" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Додати пароль застосунку" msgid "Add App Password" msgstr "Додати пароль застосунку" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "" @@ -1091,6 +1186,10 @@ msgstr "" 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 "" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: 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:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Усе" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Дозволити доступ до ваших особистих по msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Вже увійшли як @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Альтернативний текст" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Альтернативний текст описує зображення для незрячих та користувачів із вадами зору, та надає додатковий контекст для всіх." @@ -1387,7 +1486,7 @@ msgstr "Виникла помилка" msgid "An error occurred" msgstr "Виникла помилка" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Виникла помилка під час стискання цього відео." @@ -1421,7 +1520,8 @@ msgstr "Сталася помилка під час завантаження в msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Сталася помилка під час збереження QR-коду!" @@ -1432,11 +1532,11 @@ msgstr "Сталася помилка під час збереження QR-ко msgid "An error occurred while trying to follow all" msgstr "Сталася помилка при спробі читати усіх" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Сталася помилка при спробі відкрити ча #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Виникла проблема, будь ласка, спробуйте ще раз." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "" @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "Усі можуть взаємодіяти" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "Назва повинна бути не менше 4 символів у msgid "App passwords" msgstr "Паролі застосунку" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Паролі для застосунків" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Оскарження подано" @@ -1632,14 +1740,14 @@ msgstr "" msgid "Appeal Suspension" msgstr "" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Архівовано {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Архівований пост" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Ви дійсно хочете видалити пароль застосунку «{0}»?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Ви дійсно хочете видалити цю підбірку?" msgid "Are you sure you want to discard your changes?" msgstr "Ви справді хочете відхилити зміни?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Ви впевнені, що хочете залишити цю розмову? Повідомлення зникнуть для вас, але не для співрозмовника." +#: src/components/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 "Ви впевнені, що бажаєте вилучити це зі своїх стрічок?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "Ви справді хочете не публікувати пост?" @@ -1724,8 +1838,8 @@ msgstr "Мистецтво" msgid "Artistic or non-erotic nudity." msgstr "Художня або нееротична оголеність." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Автовідтворення відео та GIF" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Назад" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "" @@ -1832,7 +1948,7 @@ msgstr "" msgid "Before creating a starter pack, you must first verify your email." msgstr "Перед створенням початкового набору ви спочатку маєте підтвердити адресу електронної пошти." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Дата народження" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Заблокувати" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Заблокувати обліковий запис" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Заблокувати список" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "" @@ -1936,9 +2047,9 @@ msgstr "Заблокувати ці облікові записи?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "" @@ -1948,7 +2059,7 @@ msgctxt "button" msgid "Block user" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Заблоковано" @@ -1964,14 +2075,12 @@ msgstr "Заблоковано" msgid "Blocked accounts" msgstr "Заблоковані облікові записи" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Заблоковані облікові записи" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Заблоковані облікові записи не можуть вам відповідати, згадувати вас у своїх постах, і взаємодіяти з вами будь-яким іншим чином." @@ -1987,7 +2096,7 @@ msgstr "Блокування не перешкоджає мітнику розм msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Блокування - це відкрита інформація. Заблоковані користувачі не можуть відповісти у ваших темах, згадувати вас або іншим чином взаємодіяти з вами." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Блокування не завадить додавання міток до вашого облікового запису, але це зупинить можливість цього облікового запису від коментування ваших постів чи взаємодії з вами." @@ -2000,7 +2109,7 @@ msgstr "Блог" msgid "Bluesky" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky не може підтвердити автентичність зазначеної дати." @@ -2029,7 +2138,7 @@ msgstr "Bluesky найкращий з друзями!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky обере набір рекомендованих обліко msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky не буде показувати ваш профіль і повідомлення відвідувачам без облікового запису. Інші застосунки можуть не слідувати цьому запиту. Це не робить ваш обліковий запис приватним." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "" @@ -2081,6 +2194,10 @@ msgstr "Книги" 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" @@ -2137,24 +2254,34 @@ msgstr "Організація" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Від {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Зі створенням облікового запису ви пог msgid "By you" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "Камера" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Камера" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Камера" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Скасувати" @@ -2248,9 +2384,9 @@ msgstr "" msgid "Cancel search" msgstr "Скасувати пошук" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Не можна взаємодіяти із заблокованим користувачем" @@ -2264,7 +2400,7 @@ msgstr "Субтитри (.vtt)" msgid "Captions & alt text" msgstr "Назва та альтернативний текст" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Змінити псевдонім" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Чат" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "" @@ -2361,6 +2497,12 @@ msgstr "" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Чат стишено" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Налаштування чату" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Налаштування чату" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Сповіщення чату увімкнено" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "" @@ -2479,7 +2630,7 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "Обрати цей колір для свого аватару" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Торкніться, щоб спробувати надіслати повідомлення знов" @@ -2594,28 +2745,30 @@ msgstr "Торкніться, щоб спробувати надіслати п #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Торкніться, щоб спробувати надіслати п #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Закрити" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Закрити діалогове вікно" @@ -2647,6 +2800,10 @@ msgstr "Закрити діалогове вікно" msgid "Close alert" msgstr "Закрити сповіщення" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Закрити нижнє меню" @@ -2657,8 +2814,10 @@ msgstr "Закрити нижнє меню" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Закрити діалогове вікно" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Закрити зображення" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Закрити діалогове вікно" @@ -2695,18 +2866,22 @@ msgstr "" msgid "Closes password update alert" msgstr "Закриває сповіщення про оновлення пароля" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Згорнути список користувачів" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Згортає список користувачів для даного сповіщення" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Комікси" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Правила спільноти" @@ -2740,12 +2915,12 @@ msgstr "Завершити завдання" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Новий пост" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "" @@ -2753,11 +2928,11 @@ msgstr "" msgid "Compose reply" msgstr "Відповісти" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Стискання відео..." @@ -2780,7 +2955,7 @@ msgstr "Налаштовано <0>у налаштуваннях модераці msgid "Confirm" msgstr "Підтвердити" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Служба підтримки" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,7 @@ msgstr "" msgid "Content and media" msgstr "Вміст та медіа" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Вміст та медіа" @@ -2889,7 +3064,7 @@ msgstr "Тло контекстного меню натисніть, щоб за #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Продовжити гілку..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Розмову видалено" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Розмову видалено" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Скопійовано версію збірки до буфера обміну" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Скопійовано!" msgid "Copies build version to clipboard" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Скопіювати" @@ -2997,6 +3184,11 @@ msgstr "Копіювати ідентифікатор" msgid "Copy host" msgstr "Копіювати хост" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Копіювати посилання на список" msgid "Copy link to post" msgstr "Копіювати посилання на пост" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Копіювати текст повідомлення" @@ -3037,12 +3229,12 @@ msgstr "Копіювати текст повідомлення" msgid "Copy post at:// URI" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Копіювати текст повідомлення" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Копіювати QR-код" @@ -3052,11 +3244,15 @@ msgstr "Копіювати значення запису TXT" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Політика захисту авторського права" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Не вдалось залишити чат" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Не вдалося завантажити стрічку" @@ -3100,7 +3308,11 @@ msgstr "Не вдалося завантажити стрічку" msgid "Could not load list" msgstr "Не вдалося завантажити список" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Не вдалось стишити чат" @@ -3108,11 +3320,19 @@ msgstr "Не вдалось стишити чат" msgid "Could not process your video" msgstr "Не вдалось обробити відео" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Створити" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Створити власну підбірку" @@ -3174,13 +3394,14 @@ msgstr "Створення власної підбірки для мене" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "Створити обліковий запис" msgid "Create an account without using this starter pack" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Натомість створити аватар" @@ -3206,7 +3427,7 @@ msgstr "Натомість створити аватар" msgid "Create another" msgstr "Створити інший" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Створити новий обліковий запис" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Створити звіт для {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Створено: {0}" @@ -3270,6 +3492,10 @@ msgstr "" msgid "Culture" msgstr "Культура" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Темна тема" msgid "Date of birth" msgstr "Дата народження" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Типово" msgid "Default icons" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Видалити пароль для застосунку" msgid "Delete app password?" msgstr "Видалити пароль застосунку?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "" @@ -3378,19 +3612,19 @@ msgstr "" msgid "Delete chat declaration record" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Видалити для мене" @@ -3399,11 +3633,11 @@ msgstr "Видалити для мене" msgid "Delete list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Видалити повідомлення" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Видалити повідомлення для мене" @@ -3411,9 +3645,9 @@ msgstr "Видалити повідомлення для мене" msgid "Delete my account" msgstr "Видалити мій обліковий запис" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Видалити пост" @@ -3430,17 +3664,17 @@ msgstr "Видалити власну підбірку?" msgid "Delete this list?" msgstr "Видалити цей список?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Видалити цей пост?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Видалено" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Видалений обліковий запис" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Альтернативний текст опису" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Вилучити цитування" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Вилучити цитований пост?" @@ -3507,13 +3741,13 @@ msgstr "Діалог: налаштувати, хто може взаємодія msgid "Dim" msgstr "Тьмяна" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Вимкнути двофакторну автентифікацію е msgid "Disable haptic feedback" msgstr "Вимкнути тактильний зворотний зв'язок" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Вимкнено" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Видалити" msgid "Discard changes?" msgstr "Відхилити зміни?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Не зберігати пост?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Відкрити для себе нові стрічки" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Відхилити" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Пропустити помилку" @@ -3642,6 +3877,10 @@ msgstr "" 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" @@ -3673,7 +3912,7 @@ msgstr "Не містить оголеності." msgid "Domain verified!" msgstr "Домен перевірено!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Готово" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Торкніться двічі для закриття діалогу" @@ -3737,19 +3981,14 @@ msgstr "Торкніться двічі для закриття діалогу" 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 "Завантажити Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Завантажити CAR файл" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Завантажити CAR файл" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Тривалість:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "для прикладу, olenka" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Редагувати" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Редагувати фото профілю" @@ -3847,19 +4102,19 @@ msgstr "Редагувати фото профілю" msgid "Edit Feeds" msgstr "Редагувати стрічки" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Редагувати зображення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Редагувати налаштування взаємодії" @@ -3868,7 +4123,16 @@ msgstr "Редагувати налаштування взаємодії" msgid "Edit interests" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Редагувати мої стрічки" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Редагувати користувачів" @@ -3912,12 +4171,12 @@ msgstr "Редагувати налаштування взаємодії з по #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Редагувати профіль" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Редагувати профіль" @@ -3925,7 +4184,8 @@ msgstr "Редагувати профіль" msgid "Edit starter pack" msgstr "Редагувати власну підбірку" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Редагувати, хто може відповідати" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Редагувати вашу власну підбірку" @@ -3971,7 +4231,7 @@ msgstr "Адреса електронної пошти" msgid "Email Resent" msgstr "Лист надіслано знов" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Вставте цей пост у Ваш сайт. Просто скоп msgid "Embedded video player" msgstr "Вбудований відеоплеєр" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Увімкнути" @@ -4025,7 +4285,7 @@ msgstr "Дозволити вміст для дорослих" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ msgstr "Увімкнути зовнішні медіа" msgid "Enable media players for" msgstr "Увімкнути медіапрогравачі для" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Введіть пароль" msgid "Enter a word or tag" msgstr "Введіть слово або мітку" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "" msgid "Entertainment" msgstr "" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Помилка" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ msgstr "Всі можуть відповідати" msgid "Everybody can reply to this post." msgstr "Всі можуть відповідати на цей пост." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Будь-хто" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Будь-хто" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Будь-хто" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Окрім користувачів, на яких ви підписан msgid "Exit fullscreen" msgstr "Вийти з повноекранного режиму" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Розгорнути список користувачів" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "Розгорнути або згорнути весь пост, на який ви відповідаєте" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "" @@ -4277,10 +4536,10 @@ msgstr "Відверто або потенційно проблемний вмі msgid "Explicit sexual images." msgstr "Відверті сексуальні зображення." -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "" @@ -4289,11 +4548,8 @@ msgstr "" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Налаштування зовнішніх медіа" @@ -4331,18 +4587,22 @@ msgstr "Налаштування зовнішніх медіа" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Не вдалось змінити псевдонім. Будь ласка, спробуйте ще раз." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Не вдалось створити пароль застосунку. Будь ласка, спробуйте ще раз." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Не вдалось створити власну підбірку" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Не вдалося видалити повідомлення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Не вдалося видалити пост, спробувати ще раз" @@ -4394,24 +4655,24 @@ msgstr "Не вдалося видалити пост, спробувати ще msgid "Failed to delete starter pack" msgstr "Не вдалось видалити власну підбірку" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Не вдалося завантажити параметри стрічок" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Не вдалося завантажити рекомендовані с msgid "Failed to load suggested follows" msgstr "Не вдалося завантажити запропоновані для читання облікові записи" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Не вдалось закріпити пост" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "" @@ -4534,7 +4793,8 @@ msgstr "" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Не вдалося подати апеляцію. Будь ласка, спробуйте ще раз." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Не вдалося ігнорувати гілку, будь ласка, спробуйте пізніше" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Не вдалося оновити стрічки" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Не вдалося оновити налаштування" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Стрічка" @@ -4649,7 +4914,7 @@ msgstr "Стрічка" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Стрічка від {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Зворотний зв'язок" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Стрічки" @@ -4739,7 +5004,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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Завершення" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Знайти облікові записи для підписки" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Підписатися" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Підписатися на {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Підписатися навзаєм" @@ -4916,7 +5183,7 @@ msgstr "Підписатися навзаєм" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Читають <0>{0} та <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Читають <0>{0}, <1>{1}, та {2, plural, one {# інші} few {# інші} many {# інші} other {# інші}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Читачі @{0}, яких читаєте ви" @@ -4960,10 +5231,10 @@ msgstr "Читачі, яких читаєте ви" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Читаю" @@ -4977,12 +5248,12 @@ msgstr "Читаю" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Читають {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "" msgid "Following feed preferences" msgstr "Налаштування стрічки тих, кого ви читаєте" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "Налаштування стрічки тих, кого ви читаєте" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Підписаний(-на) на вас" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Читає вас" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Шрифт" @@ -5065,11 +5333,16 @@ msgstr "Забули пароль?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "Від <0/>" msgid "Generate a starter pack" msgstr "Згенерувати особисту підбірку" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Допомога" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Створити обличчя для вашого облікового запису" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Назад" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Перейти назад до попереднього кроку" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Перейти на головну" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Перейти на головну" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Перейти на головну" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Перейти до розмови з {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Далі" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Перейти до облікового запису користувача" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Псевдонім задовгій. Будь ласка, спробуйте коротший." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Хештег" @@ -5458,8 +5756,8 @@ msgstr "" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Довідка" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "Дайте людям знати, що ви не бот, завантаживши зображення або створивши аватар." @@ -5522,7 +5820,7 @@ msgstr "Прихований список" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Прихований список" msgid "Hide" msgstr "Приховати" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Приховати" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Приховати відповідь від мене" @@ -5577,19 +5875,19 @@ msgstr "" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Приховати цей пост?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "" msgid "Hide trending videos?" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Приховати список користувачів" @@ -5620,6 +5918,10 @@ msgstr "" msgid "Hides the content" msgstr "" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Хм, ми маємо проблеми зі завантаженням msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хм, ми не змогли завантажити цей сервіс модерації." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Чекай-но! Ми поступово даємо доступ до відео, а ви поки що чекаєте в черзі. Спробуйте пізніше!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Головна" @@ -5721,7 +6019,7 @@ msgstr "Я зрозумів" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Розкриває альтернативний текст, якщо текст задовгий" @@ -5757,15 +6055,15 @@ msgstr "Якщо ви видалите цей список, ви не зможе msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Якщо намагаєтесь змінити псевдонім або адресу електронної пошти, зробіть це до деактивації облікового запису." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Зображення" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Невірний код підтвердження двофакторної автентифікації." +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Недійсний код підтвердження" @@ -6001,8 +6315,15 @@ msgstr "Код запрошення" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Код запрошення не прийнято. Переконайтеся в його правильності та повторіть спробу." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "Вакансія: {0}" @@ -6083,6 +6419,11 @@ msgstr "Вакансія: {0}" msgid "Jobs" msgstr "Вакансії" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Вакансії" msgid "Join Bluesky" msgstr "Приєднатися до Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Приєднатися до розмови" msgid "Journalism" msgstr "Журналістика" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Мітки на вашому обліковому записі" msgid "Labels on your content" msgstr "Мітки на вашому контенті" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Налаштування мови" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Нещодавні" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Дізнатися більше про це попередження" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Дізнатися більше про те, що є публічним в Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Дізнатися більше." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Вийти" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Вийти з чату" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Залишити розмову" @@ -6284,13 +6642,14 @@ msgstr "Залишити розмову" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Залишити розмову" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Залишити Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "ще залишилося." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Світла" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "" @@ -6346,11 +6713,7 @@ msgstr "Вподобати 10 постів" msgid "Like 10 posts to train the Discover feed" msgstr "Вподобати 10 постів задля тренування Стрічки відкриття" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Вподобати цю стрічку" @@ -6358,8 +6721,8 @@ msgstr "Вподобати цю стрічку" msgid "Like this labeler" msgstr "" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Вподобано" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Уподобання" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Уподобання цього посту" @@ -6409,11 +6768,11 @@ msgstr "Уподобання цього посту" msgid "Linear" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Список" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Список більше не ігноровано" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Списки" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Завантаження..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Звіт" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Лого від <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Схоже, у вас відсутня стрічка тих, кого msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "" msgid "Manage your muted words and tags" msgstr "Налаштувати ваші ігноровані слова і теги" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Відмітити як прочитане" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "" @@ -6726,26 +7083,26 @@ msgstr "" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "Медіавміст, який може бути тривожним або недоречним для певних глядачів." +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "згадані користувачі" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Згадування" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Повідомлення {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Повідомлення видалено" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Повідомлення видалено" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "" @@ -6813,19 +7170,19 @@ msgstr "Повідомлення задовге" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Повідомлення" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Модерація" @@ -6894,7 +7247,7 @@ msgstr "Список модерації оновлено" msgid "Moderation lists" msgstr "Списки для модерації" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Списки для модерації" @@ -6903,7 +7256,7 @@ msgstr "Списки для модерації" msgid "moderation settings" msgstr "Налаштування модерації" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Статус модерації" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Додаткові опції" @@ -6949,7 +7302,7 @@ msgstr "Кіно" msgid "Music" msgstr "Музика" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Стишити" @@ -6965,8 +7318,8 @@ msgstr "Стишити" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "" msgid "Mute accounts" msgstr "Ігнорувати облікові записи" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Ігнорувати розмову" @@ -6994,7 +7347,7 @@ msgstr "Ігнорувати список" msgid "Mute these accounts?" msgstr "Ігнорувати ці облікові записи?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Ігнорувати це слово лише у тегах" msgid "Mute this word until you unmute it" msgstr "Ігнорувати це слово безстроково" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Ігнорувати обговорення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Ігнорувати слова та теги" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Ігноровані облікові записи" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Ігноровані облікові записи" @@ -7062,6 +7419,10 @@ msgstr "Ігноровані слова та теги" 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" @@ -7104,12 +7465,12 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Переходить до наступного екрана" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Переходить до вашого профілю" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Неважливо, створіть для мене псевдонім" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Новий" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Новий чат" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "" @@ -7171,32 +7533,30 @@ msgstr "" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Новий пост" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Новий пост" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Новини" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Наступне" msgid "Next image" msgstr "Наступне зображення" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "Стрічок не знайдено. Спробуйте пошукати щось інше." -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Ви більше не читаєте {0}" @@ -7362,7 +7726,7 @@ msgstr "Ви більше не читаєте {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Ще немає повідомлень" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Ще ніяких сповіщень!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Ніхто, окрім автора, не може цитувати цей пост." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Результати відсутні" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Нічого не знайдено" @@ -7446,8 +7810,8 @@ msgstr "Нічого не знайдено" msgid "No results for \"{0}\"." msgstr "" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Нічого не знайдено" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Несексуальна оголеність" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Не знайдено" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Примітка щодо поширення" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Налаштування сповіщень" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Звуки сповіщень" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Сповіщення" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "щойно" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Вимкнено" @@ -7623,9 +7974,10 @@ msgstr "" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "Добре" @@ -7648,35 +8000,35 @@ msgstr "на<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Скинути ознайомлення" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "Одна або декілька GIF не мають описового тексту." -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Для одного або кількох зображень відсутній опис." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "Одне або більше відео не мають описового тексту." @@ -7685,6 +8037,26 @@ msgstr "Одне або більше відео не мають описовог msgid "Only {0} can reply." msgstr "Тільки {0} можуть відповідати." +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Підтримуються лише файли зображень" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Підтримуються лише файли WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Підтримуються лише файли WebVTT (.vtt)" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ой, щось пішло не так!" msgid "Oops!" msgstr "Ой!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Відкрити створювач аватарів" @@ -7720,12 +8106,17 @@ msgstr "Відкрити створювач аватарів" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Відкрити налаштування розмови" @@ -7739,16 +8130,16 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Емоджі" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Відкрити меню налаштувань стрічки" @@ -7760,13 +8151,22 @@ msgstr "" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Відкрити посилання на {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "" msgid "Open post options menu" msgstr "Відкрити меню налаштувань посту" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Відкрити storybook сторінку" msgid "Open system log" msgstr "Відкрити системний журнал" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Відкриває діалогове вікно для додаванн msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Відкриє додаткову інформацію про запис для налагодження" @@ -7838,7 +8250,7 @@ msgstr "Відкриє додаткову інформацію про запис msgid "Opens alt text dialog" msgstr "" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Відкриє камеру на пристрої" @@ -7858,22 +8270,24 @@ msgstr "Відкриє редактор" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "Відкриє процес створення нового облікового запису Bluesky" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Відкриває форму скидання пароля" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Відкриває цей профіль" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Наші модератори переглянули скарги та вирішили позбавити вас доступу до чатів у Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Наші модератори переглянули скарги та msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Сторінку не знайдено" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "Призупинити відео" msgid "People" msgstr "Люди" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Люди, яких читає @{0}" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Люди, які читають @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Фотографування" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "" @@ -8152,12 +8578,12 @@ msgstr "" msgid "Pin to home" msgstr "Закріпити на головній" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Закріпити на головній" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Закріпити у своєму обліковому записі" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Закріплені" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "" @@ -8236,7 +8662,7 @@ msgstr "Просимо обрати псевдонім." msgid "Please choose your password." msgstr "Просимо обрати ваш пароль." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Просимо завершити перевірку Captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Просимо ввести адресу ел. пошти." msgid "Please enter your invite code." msgstr "Будь ласка, введіть код запрошення." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Просимо пояснити чому ви вважаєте, що ця мітка була помилково додана до {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Будь ласка, поясніть, чому ви вважаєте, що ваші чати були хибно відключені" @@ -8358,7 +8784,11 @@ msgstr "" msgid "Please sign in as @{0}" msgstr "Будь ласка, увійдіть як @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Політика" msgid "Porn" msgstr "Порнографія" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Запостити" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Опублікувати все" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Пост від @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Пост видалено" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Не вдалось завантажити пост. Будь ласка, перевірте з'єднання з інтернетом та спробуйте ще раз." @@ -8454,18 +8884,22 @@ msgstr "Пост приховано вами" msgid "Post interaction settings" msgstr "Налаштування взаємодії з постом" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "Пости можуть бути приглушені залежно в msgid "Posts hidden" msgstr "Пости приховано" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Натисніть для повторної спроби з'єднання" -#: src/components/Error.tsx:61 +#: 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 "Натиснути для повторної спроби" @@ -8536,7 +8966,7 @@ msgstr "Натиснути для повторної спроби" msgid "Press to view followers of this account that you also follow" msgstr "Натисніть для перегляду підписників цього облікового запису, яких ви також читаєте" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Конфіденційність" msgid "Privacy and security" msgstr "Конфіденційність та безпека" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "Конфіденційність та безпека" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Політика конфіденційності" @@ -8586,15 +9015,15 @@ msgstr "Політика конфіденційності" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Обробка відео..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Обробка..." @@ -8602,10 +9031,10 @@ msgstr "Обробка..." msgid "profile" msgstr "профіль" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Профіль" @@ -8613,6 +9042,7 @@ msgstr "Профіль" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR-код скопійовано до буфера обміну!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR-код завантажено!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR-код збережено до галереї!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Цитувати пост" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Цитування посту повторно додано" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Цитування посту успішно відкріплено" @@ -8711,12 +9138,12 @@ msgstr "Цитування постів вимкнено" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Цитування" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Цитування цього поста" @@ -8728,16 +9155,16 @@ msgstr "Перевищено ліміт — ви намагались зміни msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "" msgid "Reconnect" msgstr "Повторне з'єднання" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Перезавантажити розмови" @@ -8863,6 +9304,8 @@ msgstr "Перезавантажити розмови" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Видалити {displayName} з підбірки" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "" @@ -8891,22 +9339,22 @@ msgstr "" msgid "Remove account" msgstr "Видалити обліковий запис" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Видалити вкладення" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Видалити аватар" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Видалити банер" @@ -8914,8 +9362,9 @@ msgstr "Видалити банер" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Видалити вбудування" @@ -8929,12 +9378,12 @@ msgstr "Видалити стрічку" msgid "Remove feed?" msgstr "Видалити стрічку?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Видалити зображення" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Видалити репост" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "" msgid "Remove your verification for this account?" msgstr "" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Вилучено автором" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Вилучено вами" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Відповіді" @@ -9104,14 +9552,14 @@ msgstr "Відповіді вимкнуто" msgid "Replies to this post are disabled." msgstr "Відповіді в цьому пості вимкнено." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "" @@ -9125,10 +9573,6 @@ msgstr "Відповідь прихована автором гілки" msgid "Reply Hidden by You" msgstr "Відповідь прихована вами" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Налаштування відповіді визначаються автором гілки" @@ -9137,18 +9581,18 @@ msgstr "Налаштування відповіді визначаються а msgid "Reply sorting" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Оновлено видимість відповідей" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Відповідь успішно приховано" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Поскаржитися" @@ -9157,20 +9601,20 @@ msgstr "Поскаржитися" msgid "Report account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Діалогове вікно для скарг" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Поскаржитись на стрічку" @@ -9179,12 +9623,12 @@ msgstr "Поскаржитись на стрічку" msgid "Report list" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Поскаржитися на повідомлення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Поскаржитись на пост" @@ -9199,8 +9643,8 @@ msgstr "Поскаржитись на підбірку" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Поскаржитись на цю стрічку" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Поскаржитись на цей список" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Репост" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Репости ({0, plural, one {# репост} few {# репости} many {# репостів} other {# репостів}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Ви зробили репост" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Репости цього поста" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "" @@ -9328,7 +9791,17 @@ msgstr "Вимагається цим хостинг-провайдером" msgid "Required in your region" msgstr "Необхідно для вашого регіону" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "" msgid "Reset password" msgstr "Скинути пароль" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Повторити останню дію, яка спричинила п #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Повторити останню дію, яка спричинила п msgid "Retry" msgstr "Повторити спробу" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Повертає до попередньої сторінки" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Зберегти зміни" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Зберегти зображення" msgid "Save new handle" msgstr "Зберегти новий псевдонім" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Зберегти QR-код" @@ -9518,13 +9994,13 @@ msgstr "Зберегти QR-код" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Зберегти до моїх стрічок" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Збережені стрічки" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Збережено до ваших стрічок" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Привітайтесь!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Наука" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Прогорнути вгору" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Пошук" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Пошук профілів" msgid "Search..." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Вибрати колір" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Вибрати GIF" msgid "Select GIF \"{0}\"" msgstr "Вибрати GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Обрати мову..." msgid "Select languages" msgstr "Вибрати мови" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "" @@ -9904,11 +10390,11 @@ msgstr "Вибрати ваші інтереси з варіантів нижч msgid "Select your preferred language for translations in your feed." msgstr "Оберіть бажану мову для перекладів у вашій стрічці." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Надіслати ел. листа" @@ -9935,11 +10421,11 @@ msgstr "Надіслати ел. листа" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Надіслати відгук" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Надіслати повідомлення" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Надіслати пост до..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "" @@ -9960,7 +10446,7 @@ msgstr "" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Надіслати в особисті повідомлення" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Встановлює ел. адресу для скидання пароля" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "Налаштування" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Сексуальна активність або еротична ого msgid "Sexually Suggestive" msgstr "З сексуальним підтекстом" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Поширити" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Все одно поширити" @@ -10097,16 +10586,21 @@ msgstr "Все одно поширити" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Поділитись посиланням" @@ -10114,6 +10608,11 @@ msgstr "Поділитись посиланням" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Поширити QR-код" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "" @@ -10142,8 +10641,8 @@ msgstr "Поділіться цією підбіркою та допоможіт #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Тестувальник спільних налаштувань" @@ -10167,16 +10666,16 @@ msgstr "Показати альтернативний текст" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Показати все одно" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Показувати менше таких публікацій" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Показати більше" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Показувати більше таких публікацій" @@ -10246,8 +10745,8 @@ msgstr "Показувати відповіді" msgid "Show replies as" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Показувати відповіді усім" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Показати попередження і фільтрувати зі стрічки" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "" @@ -10297,15 +10796,17 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "" msgid "Sign in or create your account to join the conversation!" msgstr "Увійти або створити обліковий запис, щоб приєднатися до розмови!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "" @@ -10337,8 +10842,12 @@ msgstr "" msgid "Sign in to Bluesky or create a new account" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Вийти" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Вийти?" @@ -10391,7 +10900,7 @@ msgstr "Пропустити" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Менше" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Щось пішло не так!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "" @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Спорт" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Розпочати новий чат" @@ -10582,17 +11101,17 @@ msgstr "" msgid "Start adding people!" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Розпочати чат з {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Набір початківця" @@ -10654,12 +11173,12 @@ msgstr "Сховище очищено, тепер вам треба переза msgid "Stored as part of a secure code for matching with others" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Надіслати" @@ -10684,9 +11203,9 @@ msgstr "" msgid "Submit Appeal" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Підписатися" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Успіх!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Підтримка" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Перемкнути обліковий запис" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "" @@ -10824,11 +11347,15 @@ msgstr "Системний журнал" 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" 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:163 msgid "Tap to dismiss" msgstr "Торкніться, щоб пропустити" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Умови Використання" @@ -10939,7 +11484,7 @@ msgstr "Текст та мітки" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Поле вводу тексту" @@ -10981,9 +11526,9 @@ msgstr "На цьому все!" msgid "That's everything!" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Обліковий запис зможе взаємодіяти з вами після розблокування." @@ -11049,6 +11594,11 @@ msgstr "" 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Політика конфіденційності була переміщена до <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Тема" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "" msgid "There was an issue contacting the server" msgstr "При з'єднанні з сервером виникла проблема" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "Виникла проблема зі з'єднанням з сервером. Перевірте підключення до Інтернету і повторіть спробу знову." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу." @@ -11161,31 +11714,31 @@ msgstr "Під час отримання інформації про викор msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "Виникла проблема під час видалення цієї стрічки. Будь ласка, перевірте з'єднання з інтернетом та спробуйте знов." -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Виникла проблема! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Ці налаштування застосовуються лише для стрічки тих, кого ви читаєте." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "Цей {screenDescription} був позначений:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Це звернення буде надіслано до <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Це звернення буде направлено до сервісу модерації Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Це звернення буде направлено до сервіс msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Цей чат не в мережі" @@ -11310,7 +11881,11 @@ msgstr "Цей контент недоступний, оскільки один msgid "This content is not viewable without a Bluesky account." msgstr "Цей вміст не доступний для перегляду без облікового запису Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "" @@ -11318,7 +11893,7 @@ msgstr "" msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Стрічка порожня." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Ця стрічка більше не в мережі. Замість неї доступна <0>Стрічка відкриття." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "" msgid "This list is empty." msgstr "" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Зазначається, що пост було створено — <0>{0}, але вперше цей пост було оприлюднено на Bluesky — <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "Автор цього поста вимкнув можливість його цитувати." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "Ніхто не підписаний на користувача." -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "Цей користувач заблокував вас. Ви не можете бачити їх пости." -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Це прибере @{0} зі списку швидкого доступу." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Це видалить ваш пост з цитованого посту для усіх користувачів та замінить його на заповнювач." @@ -11574,7 +12166,7 @@ msgstr "Налаштування гілок" msgid "Threaded" msgstr "" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Налаштування обговорень" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Щоб вимкнути метод двофакторної автентифікації електронної пошти, будь ласка, перевірте свій доступ до адреси електронної пошти." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Топ" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Перекласти" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." 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:170 +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 "ТВ" @@ -11763,11 +12369,15 @@ msgstr "Не вдалося зв'язатися з вашим хостинг-п msgid "Unable to delete" msgstr "Неможливо видалити" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Розблокувати" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Розблокувати" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Розблокувати обліковий запис" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Розблокувати обліковий запис?" @@ -11837,8 +12452,8 @@ msgstr "" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Відписатися від {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "" @@ -11872,7 +12487,7 @@ msgstr "" msgid "Unfollows the user" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "" @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Не ігнорувати розмову" @@ -11955,12 +12562,12 @@ msgstr "Не ігнорувати розмову" msgid "Unmute list" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Перестати ігнорувати" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Відкріпити" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Відкріпити від головної сторінки" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Відкріпити від облікового запису" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "Відкріпити список модерації" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "" @@ -12030,14 +12637,18 @@ msgstr "Відписатися від цього мітника" msgid "Unsubscribed from list" msgstr "Відписано від списку" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "" msgid "Update <0>{displayName} in Lists" msgstr "Оновити <0>{displayName} у Списках" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Оновити на {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Не вдалось оновити вкладення з цитуванням" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "Не вдалось оновити видимість відповіді" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Натомість завантажити фото" @@ -12098,39 +12717,40 @@ msgstr "Натомість завантажити фото" msgid "Upload a text file to:" msgstr "Завантажити текстовий файл до:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Завантаження зображень..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Завантаження ескізу посилання..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Завантаження відео..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Список користувачів від {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "користувачі, яких читає <0>@{0}" msgid "users following <0>@{0}" msgstr "" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "" msgid "Verification settings" msgstr "" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Необхідно підтвердити запис DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Відео" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Не вдалось обробити відео" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "" @@ -12419,7 +13039,7 @@ msgstr "Відео не знайдено." msgid "Video settings" msgstr "Налаштування відео" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Відео завантажено" @@ -12432,18 +13052,18 @@ msgstr "Відео: {0}" msgid "Videos" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Переглянути профіль {0}" @@ -12467,20 +13087,15 @@ msgstr "Переглянути профіль {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Переглянути заблокований профіль користувача" @@ -12503,10 +13118,18 @@ msgstr "Переглянути деталі" msgid "View full thread" msgstr "Переглянути обговорення" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Переглянути інформацію про мітки" @@ -12522,7 +13145,7 @@ msgstr "" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Переглянути профіль" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Переглянути аватар" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Переглянути послуги мічення від @{0}" msgid "View this user's verifications" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Переглянути користувачів, які вподобали цю стрічку" @@ -12596,8 +13219,8 @@ msgstr "Переглянути ігноровані облікові запис msgid "View your verifications" msgstr "" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "" @@ -12640,8 +13263,8 @@ msgstr "Попереджувати про вміст" msgid "Warn content and filter from feeds" msgstr "Попереджувати про вміст і фільтрувати його зі стрічки" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Не вдалось завантажити цю розмову" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Ми не змогли визначити, чи ви можете завантажувати відео. Будь ласка, спробуйте ще раз." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Ми повідомимо вас, коли ваш обліковий запис буде готовий." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" msgid "We're having network issues, try again" msgstr "У нас виникли проблеми з мережею, спробуйте ще раз" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "" @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Нам прикро! Пост, на який ви відповідаєте, видалено." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Нам дуже прикро! Ми не можемо знайти сторінку, яку ви шукали." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Яку назву оберете для власної підбірки?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Як справи?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "" @@ -12878,7 +13505,7 @@ msgstr "" msgid "Who can interact with this post?" msgstr "Хто може взаємодіяти з цим постом?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Хто може відповідати" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Упс!" @@ -12939,7 +13566,7 @@ msgstr "Чому цю підбірку потрібно перевірити?" msgid "Why should this user be reviewed?" msgstr "Чому слід переглянути цього користувача?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Написати пост" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Написати відповідь" @@ -12978,7 +13605,8 @@ msgstr "Письменники" msgid "Wrong DID returned from server. Received: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Так, видалити цю підбірку" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Так, вилучити" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Так, сховати" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Ви не можете завантажувати відео." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Ви можете продовжувати поточні розмови незалежно від того, які налаштування ви оберете." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "Тепер ви можете увійти за допомогою нового пароля." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Ви можете відновити свій обліковий зап 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" msgid "You can update this later from your settings." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "У вас немає збережених стрічок." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "" msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "Ви тимчасово досягли ліміту завантаження відео. Будь ласка, спробуйте пізніше." -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ msgstr "" msgid "You may only add up to 3 feeds" msgstr "Ви можете додати лише 3 стрічки" +#: src/components/moderation/BlockDialog.tsx:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Ви маєте читати щонайменше сімох користувачів для генерування власної підбірки." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Ви маєте надати доступ до Фотографій для збереження QR-коду" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ msgstr "" msgid "You need to verify your email address before you can enable email 2FA." msgstr "" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Ви вийдете з усіх облікових записів." @@ -13378,11 +14038,11 @@ msgstr "Ви вийдете з усіх облікових записів." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Ви більше не будете отримувати сповіщення з цього обговорення" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Ви будете отримувати сповіщення з цього обговорення" @@ -13390,12 +14050,12 @@ msgstr "Ви будете отримувати сповіщення з цьог 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" 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 "Ви в черзі" @@ -13463,7 +14127,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашня стрічка закінчилась! Підпишіться на більше користувачів щоб отримувати більше постів." -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Ви досягли денного ліміту завантаження відео (забагато байтів)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Ви досягли денного ліміту завантаження відео (забагато відео)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Ваш обліковий запис створено недостатньо давно для завантаження відео. Будь ласка, спробуйте пізніше." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Дані з вашого облікового запису, які містять усі загальнодоступні записи, можна завантажити як \"CAR\" файл. Цей файл не містить медіафайлів, таких як зображення, або особисті дані, які необхідно отримати окремо." @@ -13519,7 +14191,7 @@ msgstr "" msgid "Your birth date" msgstr "Ваша дата народження" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Ваші чати вимкнено" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Не вдалося розпізнати адресу електронної пошти." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "Ваша домашня стрічка порожня! Підпишіт msgid "Your full handle will be <0>@{0}" msgstr "Вашим повним псевдонімом буде <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Ваші ігноровані слова" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "" msgid "Your password must be at least 8 characters long." msgstr "" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "Ваш обліковий запис, пости, стрічки та списки більше не будуть видимі іншим користувачам Bluesky. Ви можете відновити свій обліковий запис в будь-який момент ввівши дані облікового запису у поле для входу." -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "" @@ -13661,7 +14333,7 @@ msgstr "" msgid "Your selected interests help us serve you content you care about." msgstr "" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 dae8b22b9b..34343070a9 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(chứa nội dung nhúng)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, other {# lượt thích}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "" @@ -86,9 +90,14 @@ msgstr "{0, plural, other {# phút}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, other {# tháng}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "" @@ -109,15 +118,15 @@ msgstr "{0, plural, other {# giây}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, other {# mục chưa đọc}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0>trong <1>văn bản & thẻ" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "{0} trong số 50" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} đã bày tỏ cảm xúc {1}" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,14 +318,39 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "hình đại diện của {0}" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" msgstr "" #. How many days have passed, displayed in a narrow form @@ -343,25 +377,50 @@ msgstr "{0} phút" msgid "{0}s" msgstr "{0} giây" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, other {# mục chưa đọc}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, other {giờ}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {phút}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xoá xác minh của họ khỏi tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} và <0>{additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xác thực bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} đã theo dõi lại bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} đã xoá xác minh khỏi tài khoản tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} đã xác thực bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xoá xác minh của họ khỏi tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} và {additionalAuthorsCount, plural, other {{formattedAuthorsCount} người khác}} đã xác thực bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} đã theo dõi bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} đã theo dõi lại bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} đã thích bảng tin của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} đã thích bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} đã xoá xác minh khỏi tài khoản tài khoản của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} đã đăng lại bài của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} đã đăng ký gói khởi đầu của bạn" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} đã xác thực bạn" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} đã xác thực bạn" msgid "{following} following" msgstr "{following} đang theo dõi" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "không thể nhắn tin cho {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "" @@ -559,6 +618,16 @@ msgstr "" 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "" msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: 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:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ 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:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "" @@ -607,11 +676,11 @@ msgstr "" msgid "{name}'s starter pack" msgstr "" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, other {# mục chưa đọc}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "" @@ -656,6 +725,12 @@ msgstr "{userName} đã được xác minh" msgid "{userName}'s verifications" msgstr "Các xác minh của {userName}" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}, <1>{1}, và {2, plural, other {# người khác}} nằm #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {người theo dõi}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {đang theo dõi}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {lượt thích}}" #. 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:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {trích dẫn}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {lượt đăng lại}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} thành viên" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "" @@ -804,7 +884,7 @@ msgstr "" msgid "A new code has been sent" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "Một dạng xác thực hoàn toàn mới" @@ -827,11 +907,11 @@ msgstr "" 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:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "Chấp nhận" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. Accept a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:464 +msgctxt "button" +msgid "Accept" +msgstr "Chấp nhận" + +#: src/screens/Messages/components/RequestButtons.tsx:281 msgid "Accept chat request" msgstr "Chấp nhận yêu cầu trò chuyện" +#: src/screens/Messages/JoinRequests.tsx:458 +msgid "Accept join request" +msgstr "" + #. Accept a chat request -#: src/screens/Messages/components/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "Chấp nhận yêu cầu" @@ -860,17 +950,26 @@ msgstr "Chấp nhận yêu cầu" msgid "Accept this language suggestion" msgstr "" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "Trợ năng" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "Cài đặt trợ năng" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "Cài đặt trợ năng" msgid "Account" msgstr "Tài khoản" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "Tài khoản đã bị chặn" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "Tài khoản được theo dõi" @@ -899,7 +998,7 @@ msgstr "" msgid "Account is deactivated" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "" msgid "Account removed from quick access" msgstr "Tài khoản đã bị xóa khỏi truy cập nhanh" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "Tài khoản đã được bỏ chặn" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "Tài khoản đã bị bỏ theo dõi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "Tài khoản đã được bật lại thông báo" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "Tài khoản có dấu tích xanh hình viền răng cưa <0><1/> có thể xác minh người khác. Những người xác minh đáng tin cậy này được chọn bởi Bluesky." #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "Thêm" @@ -999,8 +1094,8 @@ msgstr "Thêm tài khoản" #: 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "Thêm văn bản thay thế (không bắt buộc)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: src/view/shell/desktop/LeftNav.tsx:276 +#: src/view/shell/desktop/LeftNav.tsx:279 msgid "Add another account" msgstr "Thêm tài khoản khác" -#: src/view/com/composer/Composer.tsx:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "Thêm bài" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "" @@ -1035,7 +1130,7 @@ msgstr "Thêm mật khẩu ứng dụng" msgid "Add App Password" msgstr "Thêm mật khẩu ứng dụng" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "" @@ -1043,7 +1138,7 @@ msgstr "" msgid "Add emoji reaction" msgstr "Thêm emoji để bày tỏ cảm xúc" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "Thêm thông tin chi tiết (không bắt buộc)" @@ -1091,6 +1186,10 @@ msgstr "Thêm người" msgid "Add people to list" msgstr "Thêm người dùng vào danh sách" +#: 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 "Thêm bày tỏ cảm xúc" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "" msgid "Additional details (limit 1000 characters)" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "Thông tin chi tiết thêm (tối đa 300 kí tự)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "" @@ -1228,12 +1327,12 @@ msgstr "" msgid "Age assurance only takes a few minutes" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "Tất cả" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "Cho phép truy cập tin nhắn của bạn" msgid "Allow anyone to reply" msgstr "" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "" msgid "Already signed in as @{0}" msgstr "Đã đăng nhập dưới tên @{0}" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "ALT" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "Văn bản thay thế" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "Văn bản thay thế mô tả hình ảnh cho người khiếm thị hoặc thị lực yếu, giúp bổ sung ngữ cảnh." @@ -1387,7 +1486,7 @@ msgstr "Đã có lỗi xảy ra" msgid "An error occurred" msgstr "Đã có lỗi xảy ra" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "Đã có lỗi xảy ra khi đang nén video." @@ -1421,7 +1520,8 @@ msgstr "Đã có lỗi xảy ra khi đang tải video. Vui lòng thử lại." msgid "An error occurred while loading your lists :/" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "Đã có lỗi xảy ra khi đang lưu mã QR!" @@ -1432,11 +1532,11 @@ msgstr "Đã có lỗi xảy ra khi đang lưu mã QR!" msgid "An error occurred while trying to follow all" msgstr "Đã có lỗi xảy ra khi đang cố gắng theo dõi tất cả" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "" @@ -1456,24 +1556,28 @@ msgstr "" 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 "Một hình vẽ cho thấy Bluesky chọn người xác minh đáng tin cậy, và rồi những người xác minh đáng tin cậy này xác minh từng tài khoản cá nhân khác." -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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 "Vấn đề không nằm trong các tùy chọn này" -#: src/components/dms/dialogs/NewChatDialog.tsx:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "Có vấn đề xảy ra khi đang mở cuộc trò chuyện" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "Có vấn đề xảy ra, vui lòng thử lại." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "Phác thảo một iPhone hiển thị ứng dụng Bluesky mở trang hồ sơ của một người dùng đã được xác minh với dấu tích xanh ngay cạnh tên hiển thị." @@ -1539,13 +1643,17 @@ msgstr "" msgid "Anyone can interact" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,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:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "Mật khẩu ứng dụng" @@ -1618,7 +1726,7 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "Kháng nghị đã được gửi" @@ -1632,14 +1740,14 @@ msgstr "Khiếu nại việc đình chỉ" msgid "Appeal Suspension" msgstr "Khiếu nại việc đình chỉ" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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 "Kháng nghị quyết định này" -#: src/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "Lưu trữ từ {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "Bài đăng lưu trữ" @@ -1675,7 +1783,7 @@ msgstr "" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "Bạn có chắc chắn muốn xóa mật khẩu ứng dụng \"{0}\" không?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "" @@ -1688,23 +1796,29 @@ msgstr "Bạn có chắc chắn muốn xóa gói khởi đầu này không?" msgid "Are you sure you want to discard your changes?" msgstr "Bạn có chắc chắn muốn hủy bỏ các thay đổi không?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "Bạn có chắc muốn rời khỏi cuộc trò chuyện này?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "Bạn có chắc chắn muốn rời hội thoại này? Tin nhắn của bạn sẽ bị xóa cho bạn, nhưng không phải cho người khác." +#: src/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 "Bạn có chắc chắn muốn xóa khỏi bảng tin của bạn không?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 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?" @@ -1724,8 +1838,8 @@ msgstr "Nghệ thuật" msgid "Artistic or non-erotic nudity." msgstr "Khỏa thân nghệ thuật hoặc không khiêu dâm." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "" @@ -1752,7 +1866,7 @@ msgstr "" msgid "Automation label" msgstr "" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "" @@ -1767,12 +1881,12 @@ msgstr "Tự động phát video và GIF" msgid "Available" msgstr "" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "" msgid "Back" msgstr "Trở lại" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "Trở lại Chats" @@ -1832,7 +1948,7 @@ msgstr "" 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." -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "" @@ -1840,13 +1956,14 @@ msgstr "" msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "" @@ -1874,45 +1991,39 @@ msgstr "" msgid "Birthday" msgstr "Ngày sinh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "Chặn" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "Chặn tài khoản" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -msgid "Block Account?" -msgstr "Chặn tài khoản" - #: src/screens/ProfileList/components/SubscribeMenu.tsx:91 #: src/screens/ProfileList/components/SubscribeMenu.tsx:94 msgid "Block accounts" msgstr "Chặn tài khoản" -#: src/components/dms/AfterReportDialog.tsx:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "Danh sách chặn" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "Chặn hoặc báo cáo" @@ -1936,9 +2047,9 @@ msgstr "Chặn các tài khoản này?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "Chặn người dùng" @@ -1946,9 +2057,9 @@ msgstr "Chặn người dùng" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "Chặn người dùng" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "" @@ -1956,7 +2067,7 @@ msgstr "" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "Đã bị chặn" @@ -1964,14 +2075,12 @@ msgstr "Đã bị chặn" msgid "Blocked accounts" msgstr "Tài khoản đã bị chặn" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "Tài khoản đã bị chặn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Tài khoản bị chặn không thể trả lời bài đăng của bạn, đề cập đến bạn hoặc tương tác với bạn." @@ -1987,7 +2096,7 @@ msgstr "Việc chặn không ngăn dịch vụ gắn nhãn này đặt nhãn tr msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "Việc chặn là công khai. Tài khoản bị chặng 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." -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "Việc chặn không ngăn nhãn gắn trên tài khoản của bạn, nhưng sẽ ngăn tài khoản này trả lời trong bài đăng của bạn hoặc tương tác với bạn." @@ -2000,7 +2109,7 @@ msgstr "Blog" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 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ố." @@ -2029,7 +2138,7 @@ msgstr "Bluesky cùng bạn bè sẽ vui hơn!" msgid "Bluesky is more fun with friends" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "" @@ -2037,11 +2146,15 @@ msgstr "" 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 "Điều khoản Dịch vụ của Bluesky Social" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "" @@ -2053,7 +2166,7 @@ msgstr "Bluesky sẽ chọn một tập hợp các tài khoản được đề x msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky sẽ không hiển thị hồ sơ và bài đăng của bạn cho người dùng không đăng nhập. Các ứng dụng khác có thể không tuân thủ yêu cầu này. Việc này không giúp tài khoản của bạn bảo mật." -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky sẽ chủ động xác thực các tài khoản nổi bật và đáng tin." @@ -2081,6 +2194,10 @@ msgstr "Sách" 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" @@ -2137,24 +2254,34 @@ msgstr "Doanh nghiệp" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "Bởi {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "Bởi <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "Bằng việc tạo tài khoản, bạn đồng ý với <0>Điều kho msgid "By you" msgstr "Bởi bạn" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 msgid "Camera" msgstr "Máy ảnh" +#: 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 @@ -2192,15 +2323,18 @@ msgstr "Máy ảnh" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "Máy ảnh" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "Máy ảnh" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "Hủy bỏ" @@ -2248,9 +2384,9 @@ msgstr "Hủy kích hoạt lại và đăng xuất" msgid "Cancel search" msgstr "Huỷ tìm kiếm" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "Không thể tương tác với người dùng đã bị chặn" @@ -2264,7 +2400,7 @@ msgstr "Phụ đề (.vtt)" msgid "Captions & alt text" msgstr "Phụ đề & văn bản thay thế" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "" @@ -2297,7 +2433,7 @@ msgstr "" msgid "Change Handle" msgstr "Thay đổi tên tài khoản" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "Thay đổi dịch vụ kiểm duyệt" @@ -2310,11 +2446,11 @@ msgstr "" msgid "Change password dialog" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "Thay đổi lý do báo cáo" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "Chat" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "Đã xóa đoạn chat" @@ -2361,6 +2497,12 @@ msgstr "Đã xóa đoạn chat" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "" @@ -2373,35 +2515,44 @@ msgstr "" msgid "Chat messages - sound" msgstr "" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "Đã tắt thông báo chat" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "Hộp thư yêu cầu trò chuyện" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "Yêu cầu trò chuyện" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "Cài đặt chat" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "Cài đặt chat" @@ -2418,14 +2569,14 @@ msgstr "" msgid "Chat unlocked" msgstr "" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "Đã bật lại thông báo chat" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "Chats" @@ -2479,7 +2630,7 @@ msgstr "" 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" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "" msgid "Click here to resend the email" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "" @@ -2567,7 +2718,7 @@ msgstr "" msgid "Click here to update your birthdate" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "Nhấn để thử lại tin nhắn không thành công" @@ -2594,28 +2745,30 @@ msgstr "Nhấn để thử lại tin nhắn không thành công" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "Nhấn để thử lại tin nhắn không thành công" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "Đóng" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "Đóng hộp thoại đang mở" @@ -2647,6 +2800,10 @@ msgstr "Đóng hộp thoại đang mở" msgid "Close alert" msgstr "Đóng cảnh báo" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "Đóng trình đơn kéo dưới" @@ -2657,8 +2814,10 @@ msgstr "Đóng trình đơn kéo dưới" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "Đóng hộp thoại" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "Đóng hình ảnh" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 msgid "Close menu" msgstr "Đóng bảng chọn" +#: 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "Đóng hộp thoại này" @@ -2695,18 +2866,22 @@ 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:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "Đóng trình soạn bài đăng và huỷ bỏ nháp" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "Thu gọn danh sách người dung" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "Thu gọn danh sách người dùng cho một thông báo cụ thể" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "Truyện tranh" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "Quy tắc cộng đồng" @@ -2740,12 +2915,12 @@ msgstr "Hoàn thành thử thách" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "Soạn bài đăng mới" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 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ự}}" @@ -2753,11 +2928,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:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "Đang nén video..." @@ -2780,7 +2955,7 @@ msgstr "Đã cấu hình trong <0>cài đặt kiểm duyệt." msgid "Confirm" msgstr "Xác nhận" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "Liên hệ hỗ trợ" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "" @@ -2825,11 +3000,11 @@ msgstr "" msgid "Contact us" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "" @@ -2842,7 +3017,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:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "Nội dung và phương tiện" @@ -2889,7 +3064,7 @@ msgstr "Nền trình đơn, nhấn để đóng trình đơn." #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "" msgid "Continue thread..." msgstr "Tiếp tục thảo luận..." -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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 "Tiếp tục bước tiếp theo" -#: src/screens/Messages/Conversation.tsx:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "Hội thoại đã bị xóa" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "Hội thoại đã bị xóa" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "Đã sao chép phiên bản xây dựng vào bảng ghi tạm" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "Đã sao chép!" msgid "Copies build version to clipboard" msgstr "Sao chép mã số phiên bản vào bản ghi tạm" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "Sao chép" @@ -2997,6 +3184,11 @@ msgstr "Sao chép DID" msgid "Copy host" msgstr "Sao chép máy chủ" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "Sao chép liên kết đến danh sách" msgid "Copy link to post" msgstr "Sao chép liên kết đến bài đăng" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "" @@ -3027,8 +3219,8 @@ msgstr "" msgid "Copy link to starter pack" msgstr "" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "Sao chép văn bản tin nhắn" @@ -3037,12 +3229,12 @@ msgstr "Sao chép văn bản tin nhắn" msgid "Copy post at:// URI" msgstr "Sao chép URI at:// của bài đăng" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "Sao chép văn bản bài đăng" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "Sao chép mã QR" @@ -3052,11 +3244,15 @@ 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:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "Chính sách bản quyền" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "" @@ -3065,7 +3261,15 @@ msgstr "" msgid "Could not connect to feed service" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: 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:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "Không thể rời khỏi chat" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "Không thể tải bảng tin" @@ -3100,7 +3308,11 @@ msgstr "Không thể tải bảng tin" msgid "Could not load list" msgstr "Không thể tải danh sách" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "Không thể tắt thông báo chat" @@ -3108,11 +3320,19 @@ msgstr "Không thể tắt thông báo chat" msgid "Could not process your video" msgstr "Không thể xử lý video của bạn" +#: src/components/moderation/BlockDialog.tsx:310 +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:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "Tạo" @@ -3153,13 +3373,13 @@ msgstr "" msgid "Create a list from this starter pack" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "Tạo gói khởi đầu" @@ -3174,13 +3394,14 @@ msgstr "Tạo gói khởi đầu cho tôi" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ 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:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "Tạo hình đại diện" @@ -3206,7 +3427,7 @@ msgstr "Tạo hình đại diện" msgid "Create another" msgstr "Tạo thêm" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "" @@ -3228,19 +3449,20 @@ msgstr "" msgid "Create moderation list" msgstr "" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "Tạo tài khoản mới" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "Tạo báo cáo cho {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "Đã tạo {0}" @@ -3270,6 +3492,10 @@ msgstr "Người tạo đã bị chặn" msgid "Culture" msgstr "Văn hóa" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "Chế độ tối" msgid "Date of birth" msgstr "Ngày sinh" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "Mặc định" msgid "Default icons" msgstr "Biểu tượng mặc định" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "Xóa mật khẩu ứng dụng" msgid "Delete app password?" msgstr "Xóa mật khẩu ứng dụng?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "Xóa đoạn chat" @@ -3378,19 +3612,19 @@ msgstr "Xóa đoạn chat" msgid "Delete chat declaration record" msgstr "Xóa bản ghi khai báo chat" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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 "Xóa cuộc trò chuyện" -#: src/components/dms/MessageContextMenu.tsx:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "Xóa cho tôi" @@ -3399,11 +3633,11 @@ msgstr "Xóa cho tôi" msgid "Delete list" msgstr "Xoá danh sách" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "Xóa tin nhắn" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "Xóa tin nhắn cho tôi" @@ -3411,9 +3645,9 @@ msgstr "Xóa tin nhắn cho tôi" msgid "Delete my account" msgstr "Xóa tài khoản của tôi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "Xóa bài đăng" @@ -3430,17 +3664,17 @@ msgstr "Xóa gói khởi đầu?" msgid "Delete this list?" msgstr "Xóa danh sách này?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "Xóa bài đăng này?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "Đã xóa" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "Đã xóa tài khoản" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "Văn bản thay thế mô tả" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "Gỡ trích dẫn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "Gỡ trích dẫn bài đăng?" @@ -3507,13 +3741,13 @@ msgstr "Hộp thoại: điều chỉnh ai có thể tương tác với bài đă msgid "Dim" msgstr "Mờ" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "" @@ -3521,7 +3755,7 @@ msgstr "" msgid "Disable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "" @@ -3534,8 +3768,8 @@ msgstr "Tắt Email 2FA" msgid "Disable haptic feedback" msgstr "Tắt phản hồi xúc giác" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "" msgid "Disable replies entirely" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "Đã tắt" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "Hủy bỏ" msgid "Discard changes?" msgstr "Hủy thay đổi?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "Hủy bài đăng?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "" @@ -3609,15 +3843,16 @@ msgstr "" msgid "Discover New Feeds" msgstr "Khám phá bảng tin mới" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "Bỏ qua" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "Bỏ qua lỗi " @@ -3642,6 +3877,10 @@ msgstr "Đóng phần này" 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" @@ -3673,7 +3912,7 @@ msgstr "Không chứa hình khỏa thân." msgid "Domain verified!" msgstr "Tên miền đã được xác minh!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "" @@ -3681,7 +3920,7 @@ msgstr "" msgid "Don’t see a code? <0>Click here to resend." msgstr "" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "" @@ -3700,16 +3939,21 @@ msgstr "" #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "Xong" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 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:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "Nhấn đúp để đóng hộp thoại" @@ -3737,19 +3981,14 @@ msgstr "Nhấn đúp để đóng hộp thoại" msgid "Double tap to like" msgstr "Chạm hai lần để thích" +#: src/features/inviteFriends/components/ActionButtons.tsx:36 +msgid "Download" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:329 msgid "Download Bluesky" msgstr "Tải Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "Tải tệp CAR" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "Tải tệp CAR" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "" msgid "Duration:" msgstr "Thời hạn:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "vd: alice" @@ -3823,9 +4079,8 @@ msgstr "" msgid "Eating disorders" msgstr "" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "Chỉnh sửa" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "Chỉnh sửa hình đại diện" @@ -3847,19 +4102,19 @@ msgstr "Chỉnh sửa hình đại diện" msgid "Edit Feeds" msgstr "Chỉnh sửa bảng tin" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "Chỉnh sửa hình ảnh" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "Chỉnh sửa cài đặt tương tác" @@ -3868,7 +4123,16 @@ msgstr "Chỉnh sửa cài đặt tương tác" msgid "Edit interests" msgstr "Chỉnh sửa mục quan tâm" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "" msgid "Edit moderation list" msgstr "" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "Chỉnh sửa bảng tin của tôi" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "Thay đổi người" @@ -3912,12 +4171,12 @@ msgstr "Chỉnh sửa cài đặt tương tác bài đăng" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "Chỉnh sửa hồ sơ" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "Chỉnh sửa hồ sơ" @@ -3925,7 +4184,8 @@ msgstr "Chỉnh sửa hồ sơ" msgid "Edit starter pack" msgstr "Chỉnh sửa gói khởi đầu" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "" @@ -3937,7 +4197,7 @@ msgstr "" msgid "Edit who can reply" msgstr "Chỉnh sửa ai có thể trả lời" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "Chỉnh sửa gói khởi đầu của bạn" @@ -3971,7 +4231,7 @@ msgstr "Địa chỉ email" msgid "Email Resent" msgstr "Đã gởi lại email" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "" @@ -4006,8 +4266,8 @@ msgstr "Nhúng bài đăng vào trang web của bạn. Chỉ cần sao chép đo msgid "Embedded video player" msgstr "Trình phát video nhúng" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "Bật" @@ -4025,7 +4285,7 @@ msgstr "Bật nội dung 18+" msgid "Enable captions" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "" @@ -4038,13 +4298,12 @@ 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:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "" @@ -4091,8 +4350,8 @@ msgstr "Nhập mật khẩu" msgid "Enter a word or tag" msgstr "Nhập từ hoặc thẻ" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "" @@ -4143,12 +4402,12 @@ msgstr "Mở toàn màn hình" msgid "Entertainment" msgstr "Giải trí" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "Lỗi" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "" @@ -4185,23 +4444,23 @@ 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:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "Tất cả mọi người" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "Tất cả mọi người" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "Tất cả mọi người" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "" @@ -4217,16 +4476,16 @@ msgstr "Trừ người dùng bạn đang theo dõi" msgid "Exit fullscreen" msgstr "Thoát toàn màn hình" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: src/components/Lightbox/chrome/Footer.tsx:69 +#: src/components/Lightbox/Lightbox.web.tsx:245 msgid "Expand alt text" msgstr "Mở rộng văn bản thay thế" -#: src/view/com/notifications/NotificationFeedItem.tsx:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "Mở rộng danh sách người dùng" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 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" @@ -4238,7 +4497,7 @@ msgstr "" msgid "Expands or collapses post text" msgstr "Mở rộng hoặc thu gọn nội dung bài đăng" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "Dự kiến uri sẽ phân giải thành một bản ghi" @@ -4277,10 +4536,10 @@ 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:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "Khám phá" @@ -4289,11 +4548,8 @@ msgstr "Khám phá" msgid "Explore the app" msgstr "" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "Tùy chỉnh phương tiện ngoại vi" @@ -4331,18 +4587,22 @@ msgstr "Tùy chỉnh phương tiện ngoại vi" msgid "Extremist content" msgstr "" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "Chấp nhận yêu cầu không thành công" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "Đã xảy ra lỗi khi thêm bày tỏ cảm xúc" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "" msgid "Failed to change handle. Please try again." msgstr "Không tạo được tên người dùng. Vui lòng thử lại." -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "Không tạo được mật khẩu ứng dụng. Vui lòng thử lại." #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "Tạo cuộc trò chuyện không thành công" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "Không tạo được gói khởi đầu" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: src/screens/Messages/components/RequestButtons.tsx:77 +#: src/screens/Messages/components/RequestButtons.tsx:318 msgctxt "toast" msgid "Failed to delete chat" msgstr "Xóa đoạn chat không thành công" -#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "Không xóa được tin nhắn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "Không xóa được bài đăng, vui lòng thử lại" @@ -4394,24 +4655,24 @@ msgstr "Không xóa được bài đăng, vui lòng thử lại" msgid "Failed to delete starter pack" msgstr "Không xóa được gói khởi đầu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "" msgid "Failed to hide suggestion, please check your internet connection" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "Tải cuộc trò chuyện không thành công" @@ -4456,17 +4725,8 @@ msgstr "" msgid "Failed to load feeds preferences" msgstr "Không tải được cài đặt bảng tin" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "" @@ -4493,16 +4753,15 @@ msgstr "Không tải được gợi ý bảng tin" msgid "Failed to load suggested follows" msgstr "Không tải được gợi ý theo dõi" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "Đánh dấu tất cả yêu cầu là đã đọc không thành công" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "Không ghim được bài đăng" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "Đã xảy ra lỗi khi xoá bày tỏ cảm xúc" @@ -4534,7 +4793,8 @@ msgstr "Đã xảy ra lỗi khi xoá bày tỏ cảm xúc" msgid "Failed to remove from starter pack" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "Đã có lỗi xảy ra khi xoá xác minh" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "Đã xảy ra lỗi khi lưu những mục quan tâm." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "Không gởi được kháng nghị, vui lòng thử lại." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "Không thay đổi được chế độ im lặng thảo luận, vui lòng thử lại" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "" @@ -4614,7 +4879,7 @@ msgstr "Không thể cập nhật bảng tin" msgid "Failed to update notification declaration" msgstr "" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "Không thể cập nhật cài đặt" @@ -4641,7 +4906,7 @@ msgstr "" msgid "False information about elections" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "Bảng tin" @@ -4649,7 +4914,7 @@ msgstr "Bảng tin" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "Bảng tin bởi {0}" @@ -4662,7 +4927,7 @@ msgstr "" msgid "Feed identifier" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "Menu bảng tin" @@ -4676,25 +4941,25 @@ msgstr "" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "Phản hồi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "Bảng tin" @@ -4739,7 +5004,7 @@ msgstr "Lọc tìm kiếm theo ngôn ngữ (hiện tại: {currentLanguageLabel} 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:166 msgid "Filter who you receive notifications from" msgstr "" @@ -4747,11 +5012,11 @@ msgstr "" msgid "Finalizing" msgstr "Đang hoàn tất" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "" @@ -4768,18 +5033,16 @@ msgstr "" msgid "Find accounts to follow" msgstr "Tìm tài khoản đề theo dõi" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" msgstr "" #: src/components/contacts/screens/GetContacts.tsx:273 @@ -4795,16 +5058,20 @@ msgstr "" msgid "Find people to follow" msgstr "Tìm người để theo dõi" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "Tìm bài đăng, người dùng, và bảng tin trên Bluesky" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "" @@ -4847,22 +5114,22 @@ msgstr "" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "Theo dõi" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "Theo dõi {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "Theo dõi tài khoản" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "Theo dõi lại" @@ -4916,7 +5183,7 @@ msgstr "Theo dõi lại" msgid "Followed all accounts!" msgstr "" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "" @@ -4944,8 +5211,12 @@ msgstr "Theo dõi bởi <0>{0} và <1>{1}" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Theo dõi bởi <0>{0}, <1>{1}, và {2, plural, other {# người khác}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "Người đang theo dõi @{0} mà bạn biết" @@ -4960,10 +5231,10 @@ msgstr "Người theo dõi bạn biết" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "Đang theo dõi" @@ -4977,12 +5248,12 @@ msgstr "Đang theo dõi" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "Đang theo dõi {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "Đang theo dõi {handle}" msgid "Following feed preferences" msgstr "Cài đặt bảng tin Đang theo dõi" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: 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:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "Theo dõi bạn" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "Theo dõi bạn" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "Phông chữ" @@ -5065,11 +5333,16 @@ msgstr "Quên mật khẩu?" msgid "Forgot?" msgstr "Quên?" +#. 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:12 msgid "Free your feed" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "" @@ -5086,82 +5359,86 @@ msgstr "Từ <0/>" msgid "Generate a starter pack" msgstr "Tạo gói khởi đầu" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: 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:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "Trợ giúp" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." +#: src/screens/Settings/NotificationSettings/index.tsx:302 +msgid "Get notifications when people repost your posts." msgstr "" -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 -msgid "Get notifications when people repost your posts." +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." msgstr "" #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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 "" @@ -5174,27 +5451,27 @@ msgstr "" msgid "Get notified when {name} posts" msgstr "" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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 "Bắt đầu" -#: src/components/MediaPreview.tsx:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "Chọn hình cho hồ sơ của bạn" @@ -5213,20 +5490,20 @@ msgstr "" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go back" msgstr "Quay lại" -#: src/components/Error.tsx:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "Quay lại" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "Quay lại bước trước" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "Về trang chủ" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "Về trang chủ" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "Về trang chủ" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "" msgid "Go live for" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "Đi đến hồ sơ của {firstAuthorName}" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "Đến hội thoại với {0}" @@ -5296,23 +5571,23 @@ msgstr "" msgid "Go to next" msgstr "Tiếp theo" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 "Đến hồ sơ" -#: src/screens/Messages/components/ChatListItem.tsx:211 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "Đến hồ sơ người dùng" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "" msgid "Grooming or predatory behavior" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "Tên tài khoản quá dài. Vui lòng thử tên ngắn hơn." #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "" @@ -5446,7 +5744,7 @@ msgstr "" msgid "Harming or endangering minors" msgstr "" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "Hashtag" @@ -5458,8 +5756,8 @@ msgstr "Hashtag {tag}" msgid "Hate speech" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "" @@ -5479,11 +5777,11 @@ msgstr "" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "Giúp đỡ" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 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." @@ -5522,7 +5820,7 @@ msgstr "Danh sách ẩn" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "Danh sách ẩn" msgid "Hide" msgstr "Ẩn" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "Ẩn" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide post for me" msgstr "Ẩn bài đăng cho tôi" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:684 msgid "Hide reply for everyone" msgstr "Ẩn trả lời cho tất cả mọi người" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "Ẩn trả lời cho tôi" @@ -5577,19 +5875,19 @@ msgstr "Ẩn thẻ này" msgid "Hide this event" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "Ẩn bài đăng này?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:852 msgid "Hide this reply?" msgstr "Ẩn trả lời này?" #: src/components/Post/Translated/index.tsx:216 #: src/components/Post/Translated/index.tsx:350 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "" @@ -5606,7 +5904,7 @@ msgstr "Ẩn chủ đề nổi trội?" msgid "Hide trending videos?" msgstr "Ẩn video nổi trội?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "Ẩn danh sách người dùng" @@ -5620,6 +5918,10 @@ msgstr "Ẩn các dấu xác minh" msgid "Hides the content" msgstr "Ẩn nội dung" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "" @@ -5652,19 +5954,15 @@ msgstr "Hmmmm, có vấn đề khi tải dữ liệu này. Xem bên dưới đ msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, không thể tải dịch vụ kiểm duyệt đó." -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "Chờ nhé! Chúng tôi đang dần dần cấp quyền truy cập video, và bạn vẫn đang trong hàng chờ. Hãy kiểm tra lại sau!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "Trang chủ" @@ -5721,7 +6019,7 @@ msgstr "Tôi hiểu" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "Hãy mở rộng nếu văn bản thay thế quá dài" @@ -5757,15 +6055,15 @@ msgstr "Danh sách không thể được khôi phục sau khi đã bị xóa." msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "Nếu bạn có tên miền riêng, bạn có thể sử dụng nó làm tên người dùng. Điều này giúp bạn tự xác minh danh tính của mình. <0>Tìm hiểu thêm tại đây." -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:810 msgid "If you remove this post, you won't be able to recover it." msgstr "Bài đăng không thể được khôi phục sau khi đã bị xóa." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "" @@ -5786,23 +6083,23 @@ msgstr "Nếu bạn là một lập trình viên, bạn có thể tự quản l msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "Nếu bạn muốn thay đổi tên người dùng hoặc email, hãy thực hiện trước khi vô hiệu hóa." -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "Ảnh" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "Đã xoá bộ nhớ đệm hình ảnh, giải phóng {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 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:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "" @@ -5881,40 +6182,40 @@ msgstr "" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "Không có yêu cầu nào!" @@ -5954,6 +6255,10 @@ msgstr "" 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 "" @@ -5963,11 +6268,15 @@ msgstr "" msgid "Invalid 2FA confirmation code." msgstr "Mã xác nhận 2FA không hợp lệ" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +msgid "Invalid group chat code." +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:615 msgid "Invalid handle. Please try a different one." msgstr "Tên người dùng không hợp lệ. Vui lòng thử tên khác." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "" @@ -5977,10 +6286,15 @@ msgstr "" msgid "Invalid phone number" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "Tiêu đề báo cáo không hợp lệ" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "Mã xác minh không hợp lệ" @@ -6001,8 +6315,15 @@ msgstr "Mã mời" 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." +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "" @@ -6010,21 +6331,31 @@ msgstr "" msgid "Invite friends <0/>" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "" @@ -6040,11 +6371,16 @@ msgstr "" msgid "Invite people to this starter pack!" msgstr "Mời mọi người vào gói khởi đầu này!" +#: 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 "Mời bạn bè theo dõi bảng tin và người bạn yêu thích" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "ID công việc: {0}" @@ -6083,6 +6419,11 @@ msgstr "ID công việc: {0}" msgid "Jobs" msgstr "Công việc" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "Công việc" msgid "Join Bluesky" msgstr "Tham gia Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "Tham gia trò chuyện" msgid "Journalism" msgstr "Báo chí" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "" @@ -6109,6 +6460,11 @@ msgstr "" msgid "Keep me posted" msgstr "" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "" @@ -6143,7 +6499,7 @@ msgstr "Nhãn trên tài khoản của bạn" msgid "Labels on your content" msgstr "Nhãn trên nội dung của bạn" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "Cài đặt ngôn ngữ" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "Mới nhất" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "Tìm hiểu thêm về cảnh báo này" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "" @@ -6239,7 +6595,7 @@ msgstr "" msgid "Learn more about what is public on Bluesky." msgstr "Tìm hiểu thêm về những gì công khai trên Bluesky." -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "" @@ -6252,31 +6608,33 @@ msgstr "" msgid "Learn more." msgstr "Tìm hiểu thêm." -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "Rời đi" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: src/screens/Messages/components/ChatStatusInfo.tsx:72 msgctxt "Button" msgid "Leave" 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/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "Rời chat" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "Rời đối thoại" @@ -6284,13 +6642,14 @@ msgstr "Rời đối thoại" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "Rời đối thoại" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "" @@ -6299,6 +6658,14 @@ msgstr "" msgid "Leaving Bluesky" msgstr "Rời Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "còn lại." @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "Sáng" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Like" msgstr "Thích" #. Accessibility label for the like button when the post has not been liked, verb form followed by number of likes and noun form #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "Thích ({0, plural, other {# lượt thích}})" @@ -6346,11 +6713,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/Navigation.tsx:475 -msgid "Like notifications" -msgstr "" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "Thích bảng tin này" @@ -6358,8 +6721,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:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "Thích bởi" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "Thích bởi {0, plural, other {# người dùng}}" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 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:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "Lượt thích" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "Lượt thích cho bài đăng này" @@ -6409,11 +6768,11 @@ msgstr "Lượt thích cho bài đăng này" msgid "Linear" msgstr "Ngang hàng" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "Danh sách" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "Đã đã bỏ ẩn toàn danh sách" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "Danh sách" @@ -6545,7 +6904,7 @@ msgstr "" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "" @@ -6595,27 +6954,27 @@ msgstr "" msgid "Loading..." msgstr "Đang tải..." -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "Log" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "Logo bởi @sawaratsuki.bsky.social" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "Logo bởi <0>@sawaratsuki.bsky.social" @@ -6662,7 +7021,7 @@ msgstr "Có vẻ như bạn đang thiếu bảng tin theo dõi. <0>Nhấn vào msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "" @@ -6687,24 +7046,22 @@ msgstr "Quản lý cài đặt xác minh" msgid "Manage your muted words and tags" msgstr "Quản lý từ cấm và thẻ" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "Đánh dấu tất cả là đã đọc" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "Đánh dấu đã đọc" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "Đã đánh dấu tất cả là đã đọc" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "Để sau" @@ -6726,26 +7083,26 @@ 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:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "người dùng được đề cập" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "Nhắc đến" @@ -6761,7 +7118,7 @@ msgstr "" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "" @@ -6771,26 +7128,26 @@ msgstr "" msgid "Message {0}" msgstr "Tin nhắn {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "Đã xóa tin nhắn" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "Đã xóa tin nhắn" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "Tin nhắn từ @{0}: {1}" @@ -6813,19 +7170,19 @@ msgstr "Tin nhắn quá dài" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "Tuỳ chọn tin nhắn" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "Tin nhắn" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "Nửa đêm" msgid "Minor harassment or bullying" msgstr "" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "" @@ -6850,7 +7203,7 @@ msgstr "" msgid "Missing media" msgstr "" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "Kiểm duyệt" @@ -6894,7 +7247,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:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "Danh sách kiểm duyệt" @@ -6903,7 +7256,7 @@ msgstr "Danh sách kiểm duyệt" msgid "moderation settings" msgstr "Cài đặt kiểm duyệt" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "Trạng thái kiểm duyệt" @@ -6928,8 +7281,8 @@ msgstr "" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "Lựa chọn khác" @@ -6949,7 +7302,7 @@ msgstr "Phim ảnh" msgid "Music" msgstr "Âm nhạc" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "Tắt tiếng" @@ -6965,8 +7318,8 @@ msgstr "Tắt tiếng" msgid "Mute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "Ẩn tài khoản" msgid "Mute accounts" msgstr "Ẩn tài khoản" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "Tắt thông báo đối thoại" @@ -6994,7 +7347,7 @@ msgstr "Danh sách ẩn" msgid "Mute these accounts?" msgstr "Ẩn các tài khoản này?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "" @@ -7022,17 +7375,21 @@ msgstr "Chỉ ẩn từ này trong thẻ" msgid "Mute this word until you unmute it" msgstr "Ẩn từ này cho đến khi bạn bật lại" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "Tắt thông báo thảo luận" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "Ẩn từ & thẻ" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "" @@ -7040,7 +7397,7 @@ msgstr "" msgid "Muted accounts" msgstr "Tài khoản bị ẩn" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "Tài khoản bị ẩn" @@ -7062,6 +7419,10 @@ msgstr "Từ & thẻ bị ẩn" msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." msgstr "Việc ẩn là riêng tư. Tài khoản bị ẩn có thể tương tác với bạn nhưng bạn sẽ không thấy bài đăng của họ hoặc nhận thông báo từ họ." +#: 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" @@ -7104,12 +7465,12 @@ msgstr "Đi đến gói khởi đầu" msgid "Navigates to the next screen" msgstr "Điều hướng đến màn hình kế tiếp" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "Điều hướng đến hồ sơ của bạn" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "" @@ -7117,6 +7478,7 @@ msgstr "" msgid "Nevermind, create a handle for me" msgstr "Thôi, tạo tên người dùng cho tôi" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "Tạo mới" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "Chat mới" @@ -7163,7 +7525,7 @@ msgstr "" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "Địa chỉ email mới" @@ -7171,32 +7533,30 @@ msgstr "Địa chỉ email mới" #: 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 "Tính năng mới" -#: src/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" msgstr "" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "Bài đăng mới" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "Bài đăng mới" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "" @@ -7262,8 +7622,8 @@ msgstr "Tin tức" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "Tiếp theo" msgid "Next image" msgstr "Hình kế tiếp" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "" @@ -7321,7 +7685,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:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "" @@ -7353,8 +7717,8 @@ msgstr "" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "Không còn theo dõi {0}" @@ -7362,7 +7726,7 @@ msgstr "Không còn theo dõi {0}" msgid "No media yet" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "Chưa có tin nhắn nào" @@ -7378,12 +7742,12 @@ msgstr "" msgid "No notifications yet!" msgstr "Chưa có thông báo nào!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "" @@ -7399,7 +7763,7 @@ msgstr "" msgid "No one but the author can quote this post." msgstr "Không ai ngoài tác giả có thể trích dẫn bài đăng này." -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "Không có kết quả" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "Không có kết quả" @@ -7446,8 +7810,8 @@ msgstr "Không có kết quả" msgid "No results for \"{0}\"." msgstr "Không có kết quả nào cho \"{0}\"." -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "Không tìm thấy kết quả nào" @@ -7509,12 +7873,12 @@ msgstr "" msgid "Non-sexual Nudity" msgstr "Khỏa thân không khiêu dâm" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" +#: src/features/inviteFriends/InviteScannerScreen.web.tsx:31 +msgid "Not available on this platform" msgstr "" #: src/screens/FindContactsFlowScreen.tsx:62 -#: src/screens/Settings/FindContactsSettings.tsx:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "" @@ -7522,16 +7886,16 @@ msgstr "" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "Không tìm thấy" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "Chú ý về việc chia sẻ" @@ -7548,44 +7912,31 @@ msgstr "" msgid "Nothing saved yet" msgstr "" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "Cài đặt thông báo" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "Âm thanh thông báo" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "Thông báo" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "bây giờ" @@ -7601,7 +7952,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "Tắt" @@ -7623,9 +7974,10 @@ msgstr "OK" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "OK" @@ -7648,35 +8000,35 @@ msgstr "trên<0><1/><2><3/>" msgid "Onboarding reset" msgstr "Đặt lại quá trình hướng dẫn" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 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:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "Một hoặc nhiều hình ảnh thiếu văn bản thay thế." -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 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ế" @@ -7685,6 +8037,26 @@ msgstr "Một hoặc nhiều video thiếu văn bản thay thế" msgid "Only {0} can reply." msgstr "Chỉ {0} có thể trả lời" +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "" msgid "Only image files are supported" msgstr "Chỉ hỗ trợ tệp hình ảnh" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "Chỉ hỗ trợ tệp WebVTT (.vtt)" @@ -7703,6 +8085,10 @@ msgstr "Chỉ hỗ trợ tệp WebVTT (.vtt)" msgid "Oops, something went wrong!" msgstr "Ôi, có gì đó không đúng!" +#: 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "Ôi, có gì đó không đúng!" msgid "Oops!" msgstr "Ôi!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "Mở trình tạo hình đại diện" @@ -7720,12 +8106,17 @@ msgstr "Mở trình tạo hình đại diện" msgid "Open camera" msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +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:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "Mở tùy chọn hội thoại" @@ -7739,16 +8130,16 @@ msgstr "Mở trình đơn" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "Mở trình chọn biểu tượng cảm xúc" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "Mở trình đơn tùy chọn bảng tin" @@ -7760,13 +8151,22 @@ msgstr "Mở danh sách emoji đầy đủ" msgid "Open Germ DM" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "Mở liên kết đến {niceUrl}" @@ -7790,11 +8190,15 @@ msgstr "Mở gói" msgid "Open post options menu" msgstr "Mở bảng tùy chọn bài đăng" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "Mở trang storybook" msgid "Open system log" msgstr "Mở log hệ thống" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "Mở hộp thoại để thêm cảnh báo nội dung cho bài đăng c msgid "Opens a dialog to choose who can interact with this post" msgstr "" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "Mở chi tiết bổ sung cho một mục gỡ lỗi" @@ -7838,7 +8250,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:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "Mở máy ảnh trên thiết bị" @@ -7858,22 +8270,24 @@ msgstr "Mở trình soạn thảo" msgid "Opens device camera" msgstr "" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 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:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 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" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "" @@ -7890,7 +8304,7 @@ msgstr "" msgid "Opens link {0}" msgstr "" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "" @@ -7902,15 +8316,23 @@ msgstr "Mở biểu mẫu đặt lại mật khẩu" msgid "Opens post language settings" msgstr "" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "" @@ -7919,9 +8341,8 @@ msgstr "" msgid "Opens this draft in the composer" msgstr "" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "Mở hồ sơ này" @@ -7997,12 +8418,12 @@ msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: src/components/dms/AfterReportDialog.tsx:89 +#: src/components/dms/AfterReportDialog.tsx:181 msgid "Our moderation team has received your report." msgstr "Đội ngũ kiểm duyệt của chúng tôi đã nhận được báo cáo của bạn." -#: src/screens/Messages/components/ChatDisabled.tsx:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "Kiểm duyệt viên của chúng tôi đã xem xét các báo cáo và quyết định vô hiệu hóa quyền truy cập chat của bạn trên Bluesky." @@ -8010,14 +8431,15 @@ msgstr "Kiểm duyệt viên của chúng tôi đã xem xét các báo cáo và msgid "Owner" msgstr "" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "Không tìm thấy trang" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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 "Không tìm thấy trang" #. Accessibility label for the icon-only pill that filters the GIF picker to celebration/party GIFs. @@ -8068,34 +8490,34 @@ msgstr "Dừng video" msgid "People" msgstr "Con người" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "Người\tđược @{0} theo dõi" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "Người đang theo dõi @{0}" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "" msgid "Photography" msgstr "Nhiếp ảnh" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +msgid "Pick a color theme" +msgstr "" + #: src/view/com/composer/labels/LabelsBtn.tsx:165 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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "Ghim bảng tin" @@ -8152,12 +8578,12 @@ msgstr "Ghim bảng tin" msgid "Pin to home" msgstr "Ghim vào trang chủ" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "Ghim vào trang chủ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "Ghim vào hồ sơ của bạn" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "Đã ghim" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "Đã ghim {0} vào trang chủ" @@ -8236,7 +8662,7 @@ msgstr "Vui lòng chọn tên tài khoản." msgid "Please choose your password." msgstr "Vui lòng chọn mật khẩu." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "" @@ -8244,7 +8670,7 @@ msgstr "" msgid "Please complete the verification captcha." msgstr "Vui lòng hoàn thành xác minh captcha." -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "" @@ -8265,14 +8691,14 @@ msgstr "Vui lòng điền mật khẩu. Mật khẩu phải có ít nhất 8 ký msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "Vui lòng nhập tên cho mật khẩu ứng dụng này hoặc sử dụng một tên được tạo ngẫu nhiên." -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "" @@ -8293,7 +8719,7 @@ msgstr "" msgid "Please enter the code you received and the new password you would like to use." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "" @@ -8306,7 +8732,7 @@ msgstr "Vui lòng nhập email của bạn." msgid "Please enter your invite code." msgstr "Vui lòng nhập mã mời." -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "" @@ -8323,7 +8749,7 @@ msgstr "Vui lòng nhập tên tài khoản" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Vui lòng giải thích vì sao bạn nghĩ nhãn này đã được áp dụng sai bởi {0}" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "Vui lòng giải thích vì sao bạn nghĩ chat của bạn đã bị vô hiệu hóa sai" @@ -8358,7 +8784,11 @@ msgstr "Vui lòng chọn một lý do cho báo cáo này" msgid "Please sign in as @{0}" msgstr "Vui lòng đăng nhập bằng @{0}" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "" @@ -8366,7 +8796,7 @@ msgstr "" msgid "Please use the native app to sync your contacts." msgstr "" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "" @@ -8383,7 +8813,7 @@ msgstr "Chính trị" msgid "Porn" msgstr "Hình ảnh khiêu dâm" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "Đăng" @@ -8403,12 +8833,12 @@ msgstr "" msgid "Post a video" msgstr "" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "Đăng tất cả" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "Đăng bởi @{0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "Đã xóa bài đăng" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "Không đăng bài đăng được. Vui lòng kiểm tra kết nối mạng và thử lại." @@ -8454,18 +8884,22 @@ 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:205 +#: src/Navigation.tsx:198 #: src/screens/ModerationInteractionSettings/index.tsx:35 msgid "Post Interaction Settings" msgstr "Cài đặt tương tác bài đăng" +#: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ 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:217 -msgid "Posts, Replies" -msgstr "" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "" @@ -8525,9 +8954,10 @@ msgstr "" msgid "Press to attempt reconnection" msgstr "Nhấn để thử kết nối lại" -#: src/components/Error.tsx:61 +#: 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 "Nhấn để thử lại" @@ -8536,7 +8966,7 @@ msgstr "Nhấn để thử lại" msgid "Press to view followers of this account that you also follow" msgstr "Nhấn để xem người theo dõi của tài khoản này mà bạn cũng theo dõi" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "" @@ -8559,26 +8989,25 @@ msgstr "Quyền riêng tư" msgid "Privacy and security" msgstr "Quyền riêng tư và bảo mật" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: 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:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "Chính sách bảo mật" @@ -8586,15 +9015,15 @@ msgstr "Chính sách bảo mật" msgid "Privacy violation of a minor" msgstr "" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "Đang xử lý video..." -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "Đang xử lý..." @@ -8602,10 +9031,10 @@ msgstr "Đang xử lý..." msgid "profile" msgstr "hồ sơ" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "Hồ sơ" @@ -8613,6 +9042,7 @@ msgstr "Hồ sơ" msgid "Profile banner placeholder" msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "Đăng bài" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "Đăng bài" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "Đăng trả lời" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "Đăng trả lời" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "Mã QR đã được sao chép vào bảng ghi tạm!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "Đã tải mã QR!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "Đã lưu mã QR vào camera roll!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "" msgid "Quote post" msgstr "Trích dẫn bài đăng" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "Bài đăng trích dẫn đã được đính kèm lại" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "Bài đăng trích dẫn đã được gỡ thành công" @@ -8711,12 +9138,12 @@ msgstr "Trích dẫn bài đăng đã bị tắt" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "Trích dẫn" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "Trích dẫn của bài đăng này" @@ -8728,16 +9155,16 @@ msgstr "Vượt quá giới hạn - bạn đã thử thay đổi tên người d msgid "Rate limit exceeded. Please try again later." msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:699 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:709 msgid "Re-attach quote" msgstr "Đính kèm lại trích dẫn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "Bày tỏ cảm xúc với {emoji}" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "Đọc bài blog" @@ -8812,11 +9239,11 @@ msgstr "" msgid "Reason for appeal" msgstr "Lý do khiếu nại" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "" @@ -8841,17 +9268,31 @@ msgstr "Đề xuất" msgid "Reconnect" msgstr "Kết nối lại" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "Từ chối" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. Reject a request to join a chat +#: src/screens/Messages/JoinRequests.tsx:489 +msgctxt "button" +msgid "Reject" +msgstr "Từ chối" + +#: src/screens/Messages/components/RequestButtons.tsx:125 msgid "Reject chat request" msgstr "Từ chối yêu cầu trò chuyện" -#: src/screens/Messages/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "Tải lại hội thoại" @@ -8863,6 +9304,8 @@ msgstr "Tải lại hội thoại" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "" msgid "Remove {displayName} from starter pack" msgstr "Xóa {displayName} khỏi gói khởi đầu" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: 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:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "Xóa {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "Xóa {historyItem}" msgid "Remove account" msgstr "Xóa tài khoản" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "Xóa tệp đính kèm" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "Xóa hình đại diện" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "Xóa hình bìa" @@ -8914,8 +9362,9 @@ msgstr "Xóa hình bìa" msgid "Remove caption file" msgstr "" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "Xóa nhúng" @@ -8929,12 +9378,12 @@ msgstr "Xóa bảng tin" msgid "Remove feed?" msgstr "Xóa bảng tin?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "" msgid "Remove from your feeds?" msgstr "Xóa khỏi bảng tin của bạn?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "Xóa hình" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "Xóa lượt đăng lại" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "" @@ -9009,11 +9458,11 @@ msgstr "Xoá xác minh" msgid "Remove your verification for this account?" msgstr "Xoá xác minh của bạn khỏi tài khoản này?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "Xóa bởi tác giả" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "Xóa bởi bạn" @@ -9035,7 +9484,7 @@ msgstr "" msgid "Removed from starter pack" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "Trả lời" @@ -9104,14 +9552,14 @@ msgstr "Trả lời đã bị tắt" msgid "Replies to this post are disabled." msgstr "Trả lời cho bài đăng này đã bị tắt." -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 msgctxt "action" msgid "Reply" msgstr "Trả lời" #. 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "Trả lời ({0, plural, other {# trả lời}})" @@ -9125,10 +9573,6 @@ msgstr "Trả lời bị ẩn bởi tác giả của thảo luận" msgid "Reply Hidden by You" msgstr "Trả lời bị ẩn bởi bạn" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "Cài đặt trả lời được chọn bởi tác giả của thảo luận" @@ -9137,18 +9581,18 @@ msgstr "Cài đặt trả lời được chọn bởi tác giả của thảo lu msgid "Reply sorting" msgstr "Sắp xếp trả lời" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "Đã cập nhật trạng thái hiển thị trả lời" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "Ẩn thành công trả lời" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "Báo cáo" @@ -9157,20 +9601,20 @@ msgstr "Báo cáo" msgid "Report account" msgstr "Báo cáo tài khoản" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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 "Báo cáo hội thoại" -#: src/components/moderation/ReportDialog/index.tsx:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "Hộp thoại báo cáo" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "Báo cáo bảng tin" @@ -9179,12 +9623,12 @@ msgstr "Báo cáo bảng tin" msgid "Report list" msgstr "Báo cáo danh sách" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "Báo cáo tin nhắn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "Báo cáo bài đăng" @@ -9199,8 +9643,8 @@ msgstr "Báo cáo gói khởi đầu" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "Đã gửi báo cáo" @@ -9213,7 +9657,7 @@ msgstr "" msgid "Report this feed" msgstr "Báo cáo bảng tin này" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "Báo cáo danh sách này" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "" @@ -9256,10 +9700,6 @@ msgstr "Đăng lại" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Đăng lại ({0, plural, other {# đăng lại}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,23 +9722,27 @@ msgid "Reposted by you" msgstr "Đăng lại bởi bạn" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "Lượt đăng lại của bài đăng này" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +msgid "Request access to group chat" +msgstr "" + +#: src/screens/Messages/JoinRequests.tsx:182 +msgid "Request approved." msgstr "" #: src/screens/Settings/components/ChangePasswordDialog.tsx:226 @@ -9306,17 +9750,36 @@ msgstr "" msgid "Request code" msgstr "" +#: src/screens/Messages/JoinRequests.tsx:215 +msgid "Request ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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 "Yêu cầu văn bản thay thế trước khi đăng" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "Yêu cầu một mã gửi qua email để đăng nhập vào tài khoản của bạn." @@ -9328,7 +9791,17 @@ msgstr "Bắt buộc đối với nhà quản lý này" msgid "Required in your region" msgstr "Bắt buộc đối với khu vực của bạn" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "" @@ -9373,8 +9846,8 @@ msgstr "Đặt lại trại thái hướng dẫn" msgid "Reset password" msgstr "Đặt lại mật khẩu" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "" @@ -9391,17 +9864,18 @@ msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "Thử lại hành động cuối cùng (đã xảy ra lỗi)" msgid "Retry" msgstr "Thử lại" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "Thử tải lại tùy chọn báo cáo" -#: src/components/Error.tsx:73 +#: src/components/Error.tsx:68 #: src/screens/List/ListHiddenScreen.tsx:223 #: src/screens/StarterPack/StarterPackScreen.tsx:801 msgid "Return to previous page" msgstr "Trở về trang trước" -#: src/view/screens/NotFound.tsx:50 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to home page" msgstr "Trở về trang chủ" #: src/screens/ProfileList/components/ErrorScreen.tsx:36 #: src/screens/Settings/components/ChangeHandleDialog.tsx:577 #: src/screens/VideoFeed/index.tsx:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "Trở về trang trước" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "Lưu thay đổi" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "Lưu hình" msgid "Save new handle" msgstr "Lưu tên tài khoản mới" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "Lưu mã QR" @@ -9518,13 +9994,13 @@ msgstr "Lưu mã QR" msgid "Save these options for next time" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "Lưu vào bảng tin của tôi" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "" @@ -9534,25 +10010,25 @@ msgstr "" msgid "Saved Feeds" msgstr "Bảng tin đã lưu" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "Đã lưu vào bảng tin của bạn" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Gửi lời chào!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "Khoa học" @@ -9576,18 +10062,18 @@ msgstr "" msgid "Scroll to top" msgstr "Cuộn đến đầu trang" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "Tìm kiếm" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "Tìm kiếm bài đăng của @{0}" @@ -9662,12 +10148,12 @@ msgstr "" msgid "Search my posts" msgstr "Tìm kiếm bài đăng của tôi" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "Tìm kiếm bài đăng" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "Tìm hồ sơ" msgid "Search..." msgstr "Tìm kiếm..." -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: src/components/dialogs/SearchablePeopleList.tsx:688 #: src/components/dms/components/UserSearchInput.tsx:64 #: src/components/ProgressGuide/FollowDialog.tsx:728 msgid "Searches for profiles" msgstr "Tìm hồ sơ" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "" @@ -9759,7 +10245,7 @@ msgstr "" msgid "Select a color" msgstr "Chọn màu" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "" @@ -9828,7 +10314,7 @@ msgstr "Chọn GIF" msgid "Select GIF \"{0}\"" msgstr "Chọn GIF \"{0}\"" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "" @@ -9850,7 +10336,7 @@ msgstr "Chọn ngôn ngữ..." msgid "Select languages" msgstr "Chọn ngôn ngữ..." -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "Chọn dịch vụ kiểm duyệt" @@ -9904,11 +10390,11 @@ msgstr "Chọn sở thích của bạn từ các tùy chọn dưới đây" msgid "Select your preferred language for translations in your feed." msgstr "Chọn ngôn ngữ ưa thích cho bản dịch trong bảng tin của bạn." -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "" @@ -9921,9 +10407,9 @@ msgstr "" msgid "Send code" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "Gửi email" @@ -9935,11 +10421,11 @@ msgstr "Gửi email" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "Gửi phản hồi" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "Gửi tin nhắn" @@ -9952,7 +10438,7 @@ msgstr "" msgid "Send post to..." msgstr "Gửi bài đăng đến..." -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "Gửi báo cáo cho {title}" @@ -9960,7 +10446,7 @@ msgstr "Gửi báo cáo cho {title}" msgid "Send the message from your phone" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "Gửi qua tin nhắn" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "" msgid "Sets email for password reset" msgstr "Đặt email để đặt lại mật khẩu" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: 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:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "" @@ -10030,39 +10516,39 @@ msgstr "" msgid "Settings for allowing others to be notified of your posts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "" @@ -10079,16 +10565,19 @@ msgstr "Hành vi gợi dục hoặc khỏa thân khiêu dâm." msgid "Sexually Suggestive" msgstr "Khiêu dâm" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "Chia sẻ" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "Vẫn chia sẻ" @@ -10097,16 +10586,21 @@ msgstr "Vẫn chia sẻ" msgid "Share author DID" msgstr "" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "Chia sẻ liên kết" @@ -10114,6 +10608,11 @@ msgstr "Chia sẻ liên kết" msgid "Share link dialog" msgstr "Hộp thoại chia sẻ liên kết" +#: src/screens/Settings/FindContactsSettings.tsx:172 +#: src/screens/Settings/FindContactsSettings.tsx:181 +msgid "Share my profile" +msgstr "" + #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "" msgid "Share QR code" msgstr "Chia sẻ mã QR" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "Chia sẻ bảng tin này" @@ -10142,8 +10641,8 @@ msgstr "Chia sẻ gói khởi đầu này và giúp mọi người tham gia cộ #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "" @@ -10151,7 +10650,7 @@ msgstr "" msgid "Share your contacts to find friends" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "Trình kiểm tra cài đặt đã chia sẻ" @@ -10167,16 +10666,16 @@ msgstr "Hiển thị văn bản thay thế" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "Vẫn hiển thị" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "" @@ -10197,8 +10696,8 @@ msgstr "Hiện tùy chọn tùy chỉnh" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "Hiển thị ít bài như thế này hơn" @@ -10219,8 +10718,8 @@ msgstr "" msgid "Show More" msgstr "Hiển thị thêm" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "Hiển thị nhiều bài như thế này hơn" @@ -10246,8 +10745,8 @@ msgstr "Hiển thị trả lời" msgid "Show replies as" msgstr "Hiển thị trả lời dưới dạng" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "Hiển thị trả lời cho tất cả mọi người" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "Hiển thị cảnh báo và bộ lọc từ bảng tin" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 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" @@ -10297,15 +10796,17 @@ msgstr "Hiển thị nội dung" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "Đăng nhập hoặc đăng ký tài khoản" msgid "Sign in or create your account to join the conversation!" msgstr "Đăng nhập hoặc tạo tài khoản để tham gia cuộc trò chuyện!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "Đăng nhập vào tải khoản chưa được liệt kê" @@ -10337,8 +10842,12 @@ msgstr "Đăng nhập vào tải khoản chưa được liệt kê" msgid "Sign in to Bluesky or create a new account" msgstr "Đăng nhập vào Bluesky hoặc tạo tài khoản mới" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "" @@ -10348,9 +10857,9 @@ msgstr "" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "Đăng xuất" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "Đăng xuất" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "Đăng xuất?" @@ -10391,7 +10900,7 @@ msgstr "Bỏ qua" msgid "Skip contact sharing and continue to the app" msgstr "" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "" @@ -10405,7 +10914,7 @@ msgstr "" msgid "Skip to next step" msgstr "" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "" @@ -10413,7 +10922,7 @@ msgstr "" msgid "Smaller" msgstr "Nhỏ hơn" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "Tạm bỏ qua lời nhắc" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "Ai đó đã bày tỏ cảm xúc {0}" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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 "Có điều gì đó không đúng với dữ liệu bạn đang cố gắng báo cáo. Vui lòng liên hệ bộ phận hỗ trợ." -#: src/screens/Messages/Conversation.tsx:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: src/screens/Messages/Conversation.tsx:133 +#: src/screens/Messages/ConversationSettings/index.tsx:137 +#: src/screens/Messages/JoinRequests.tsx:88 msgid "Something went wrong" msgstr "Có gì đó không đúng" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:139 -#: src/components/moderation/ReportDialog/index.tsx:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "Có gì đó không đúng!" msgid "Something went wrong. Please try again in a moment." msgstr "" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 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:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "Có gì không đúng? Hãy cho chúng tôi biết." @@ -10564,11 +11078,16 @@ msgstr "" msgid "Sports" msgstr "Thể thao" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "Bắt đầu cuộc trò chuyện mới" @@ -10582,17 +11101,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:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "Bắt đầu trò chuyện với {displayName}" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "Gói khởi đầu" @@ -10654,12 +11173,12 @@ 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:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "" @@ -10671,8 +11190,8 @@ msgstr "" #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "Gửi" @@ -10684,9 +11203,9 @@ msgstr "Gửi khiếu nại" msgid "Submit Appeal" msgstr "Gửi khiếu nại" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "Gửi báo cáo" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "Đăng ký" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "Thành công!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "Đã xác minh thành công" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "Hoàng hôn" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "Hỗ trợ" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "Chuyển tài khoản" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "Chuyển tài khoản" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "Chuyển sang {0}" @@ -10824,11 +11347,15 @@ msgstr "Log hệ thống" msgid "Tags only" msgstr "Chỉ thẻ tag" +#: 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:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "" msgid "Tap to close context menu" msgstr "Nhấp để đóng menu tuỳ chọn" +#: src/components/dms/ChatInvite/Root.tsx:92 +msgid "Tap to copy this invite link" +msgstr "" + #: src/components/ProgressGuide/Toast.tsx:163 msgid "Tap to dismiss" msgstr "Nhấn để bỏ qua" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "" @@ -10924,12 +11469,12 @@ 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:343 +#: src/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "Điều khoản dịch vụ" @@ -10939,7 +11484,7 @@ msgstr "Văn bản & thẻ" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "Trường nhập văn bản" @@ -10981,9 +11526,9 @@ msgstr "Hết!" msgid "That's everything!" msgstr "Hết bảng tin video!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "Tài khoản có thể tương tác với bạn sau khi bỏ chặn." @@ -11049,6 +11594,11 @@ msgstr "Các cài đặt sau sẽ được sử dụng làm mặc định khi b 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "" @@ -11057,9 +11607,9 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "Chính sách bảo mật đã được chuyển đến <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "Giao diện" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,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:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 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." @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 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." @@ -11161,31 +11714,31 @@ 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:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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 "Có vấn đề cập nhật bảng tin của bạn, vui lòng kiểm tra kết nối mạng của bạn và thử lại." #. placeholder {0}: e.toString() -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "Đã xảy ra vấn đề! {0}" @@ -11221,6 +11774,14 @@ msgstr "" msgid "These settings only apply to the Following feed." msgstr "Các cài đặt này chỉ áp dụng cho bảng tin Following." +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} này đã bị đánh dấu:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "Kháng nghị này sẽ được gởi đến <0>{sourceName}." #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "Kháng nghị này sẽ được gởi đến dịch vụ kiểm duyệt của Bluesky." @@ -11263,7 +11824,7 @@ msgstr "Kháng nghị này sẽ được gởi đến dịch vụ kiểm duyệt msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "" @@ -11271,11 +11832,21 @@ msgstr "" msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "Hội thoại đã bị ngắt kết nối" @@ -11310,7 +11881,11 @@ msgstr "Nội dung này không có hiệu lực vì một trong số người d msgid "This content is not viewable without a Bluesky account." msgstr "Không thể xem nội dung này nếu không có tài khoản Bluesky." -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "Nội dung này thuộc tài khoản đã xóa hoặc vô hiệu hóa. Nhấn để xem tùy chọn" @@ -11318,7 +11893,7 @@ msgstr "Nội dung này thuộc tài khoản đã xóa hoặc vô hiệu hóa. N msgid "This draft will be permanently deleted." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "" @@ -11356,11 +11931,15 @@ msgstr "Bảng tin này đang trống." msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Bảng tin này không còn trực tuyến. Chúng tôi đang hiển thị <0>Khám phá thay thế." +#: src/screens/Messages/components/ChatLocked.tsx:73 +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 "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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "" @@ -11368,6 +11947,14 @@ msgstr "" msgid "This information is private and not shared with other users." msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "" @@ -11377,7 +11964,7 @@ msgstr "" msgid "This is not a valid link" msgstr "" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "" @@ -11410,13 +11997,17 @@ msgstr "Danh sách này của bạn tạo có thể chứa vi phạm nguyên t msgid "This list is empty." msgstr "Danh sách này đang trống." -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "Bài đăng này khai rằng đã được tạo vào <0>{0}, nhưng lần đầu tiên được Bluesky nhìn thấy vào <1>{1}." @@ -11450,23 +12041,24 @@ msgstr "" msgid "This post was deleted by its author" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:818 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:963 +#: src/view/com/composer/Composer.tsx:1043 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." -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 msgid "This profile is only visible to logged-in users. It won't be visible to people who aren't signed in." msgstr "Chỉ những người dùng đã đăng nhập mới xem được hồ sơ người dùng này. Người chưa đăng nhập sẽ không thể xem được." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:844 +#: 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 "Trả lời này sẽ được sắp xếp vào mục ẩn ở cuối thảo luận của bạn và sẽ tắt thông báo cho các trả lời tiếp theo - cho cả bạn và người khác." -#: src/screens/Messages/ConversationSettings/index.tsx:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ 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:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 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:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" 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:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "" msgid "This will remove @{0} from the quick access list." msgstr "Tác vụ này sẽ xóa @{0} khỏi danh sách truy cập nhanh." -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "Tác vụ này sẽ xóa bài đăng của bạn khỏi bài đăng trích dẫn này cho tất cả người dùng, và thay thế nó bằng một chỗ trống." @@ -11574,7 +12166,7 @@ msgstr "Cài đặt thảo luận" msgid "Threaded" msgstr "Phân luồng" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "Cài đặt thảo luận" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "Để tắt email 2FA, vui lòng xác minh quyền truy cập vào địa chỉ email." #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "" @@ -11646,16 +12238,16 @@ msgstr "Hàng đầu" msgid "Top replies first" msgstr "" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "Chủ đề" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "Dịch" @@ -11667,8 +12259,8 @@ msgstr "" msgid "Translating" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "" @@ -11702,7 +12294,7 @@ msgstr "Video nổi bật" msgid "Trolling" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "Niềm tin hình thành từ các mối quan hệ, cộng đồng và bối cảnh chung, vì vậy chúng tôi cũng kích hoạt <0>người xác minh đáng tin cậy: các tổ chức có thể trực tiếp cấp xác minh." @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "" +#: src/features/inviteFriends/InviteScannerScreen.tsx:221 +#: src/features/inviteFriends/InviteScannerScreen.tsx:226 +msgid "Try again" +msgstr "Thử lại" + #: src/view/com/util/error/ErrorScreen.tsx:97 msgctxt "action" msgid "Try again" msgstr "Thử lại" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:170 +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 "TV" @@ -11763,11 +12369,15 @@ msgstr "Không thể kết nối với dịch vụ của bạn. Vui lòng kiểm msgid "Unable to delete" msgstr "Không thể xóa" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "" msgid "Unavailable feed information" msgstr "" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "Bỏ chặn" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "Bỏ chặn" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "Bỏ chặn tài khoản" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "Bỏ chặn tài khoản" @@ -11837,8 +12452,8 @@ msgstr "Mở khoá danh sách" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "Huỷ đăng lại ({0, plural, other {# đăng lại}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "Bỏ theo dõi {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "Bỏ theo dõi tài khoản" @@ -11872,7 +12487,7 @@ msgstr "Bỏ theo dõi tài khoản" msgid "Unfollows the user" msgstr "Bỏ theo dõi người này" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "Rất tiếc, không có dịch vụ gắn nhãn nào bạn đã đăng ký hỗ trợ loại báo cáo này." @@ -11884,14 +12499,6 @@ msgstr "" msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "Nhà xác minh không xác định" @@ -11904,21 +12511,21 @@ msgstr "" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 msgid "Unlike" msgstr "Bỏ thích" #. Accessibility label for the like button when the post has been liked, verb followed by number of likes and noun #. placeholder {0}: post.likeCount || 0 -#: src/components/PostControls/index.tsx:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "Bỏ thích ({0, plural, other {# lượt thích}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "" @@ -11939,14 +12546,14 @@ msgstr "Bỏ ẩn" msgid "Unmute {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "Bỏ ẩn tài khoản" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "Bật lại thông báo cho hội thoại" @@ -11955,12 +12562,12 @@ msgstr "Bật lại thông báo cho hội thoại" msgid "Unmute list" msgstr "Bỏ ẩn danh sách" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "Bật lại thông báo cho thảo luận" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "Bỏ ghim" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "Bỏ ghim bảng tin" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "Bỏ ghim khỏi trang chủ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "Bỏ ghim khỏi hồ sơ" @@ -11996,7 +12603,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:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "Đã bỏ ghim {0} khỏi Trang chủ" @@ -12030,14 +12637,18 @@ 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:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" 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" @@ -12047,16 +12658,20 @@ msgstr "Cập nhật" msgid "Update <0>{displayName} in Lists" msgstr "Cập nhật <0>{displayName} trong danh sách" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "Cập nhật thành {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "" @@ -12080,17 +12699,17 @@ msgstr "" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "Không thể cập nhật tệp đính kèm trong trích dẫn" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 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:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "Tải lên ảnh" @@ -12098,39 +12717,40 @@ msgstr "Tải lên ảnh" msgid "Upload a text file to:" msgstr "Tải lên tệp văn bản đến:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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 "Tải lên từ máy ảnh" -#: src/view/com/util/UserAvatar.tsx:507 -#: src/view/com/util/UserBanner.tsx:177 +#: src/view/com/util/UserAvatar.tsx:511 +#: src/view/com/util/UserBanner.tsx:181 msgid "Upload from Files" msgstr "Tải lên từ Files" -#: src/view/com/util/UserAvatar.tsx:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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 "Tải lên từ Thư viện" -#: src/view/com/composer/Composer.tsx:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "Đang tải lên hình..." -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "Đang tải lên hình cho liên kết..." -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "Đang tải lên video..." @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "Đã chặn người dùng" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "Danh sách người dùng của {0}" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "" @@ -12255,12 +12875,12 @@ msgstr "người dùng theo dõi bởi <0>@{0}" msgid "users following <0>@{0}" msgstr "người dùng theo dõi <0>@{0}" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,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:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "Cài đặt xác minh" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "Xác minh bản ghi DNS" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "" @@ -12349,7 +12969,7 @@ msgstr "Xác minh tài khoản này?" msgid "Verify your age" msgstr "" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "" msgid "Video" msgstr "Video" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "Không thể xử lý video" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "Bảng tin video" @@ -12419,7 +13039,7 @@ msgstr "Không tìm thấy video." msgid "Video settings" msgstr "Cài đặt video" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "Đã tải lên video" @@ -12432,18 +13052,18 @@ msgstr "Video: {0}" msgid "Videos" msgstr "Video" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "Xem hồ sơ của {0}" @@ -12467,20 +13087,15 @@ msgstr "Xem hồ sơ của {0}" msgid "View {0}’s profile" msgstr "" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: 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:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "Xem hồ sơ của người dùng bị chặn" @@ -12503,10 +13118,18 @@ msgstr "Xem chi tiết" msgid "View full thread" msgstr "Xem toàn bộ thảo luận" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "Xem thông tin về những nhãn này" @@ -12522,7 +13145,7 @@ msgstr "Xem thêm" msgid "View more trending videos" msgstr "" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "" @@ -12539,10 +13162,10 @@ msgstr "Xem hồ sơ" msgid "View profile banner" msgstr "" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "Xem hình đại diện" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "Xem dịch vụ gắn nhãn bởi @{0}" 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:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "Xem người dùng thích bảng tin này" @@ -12596,8 +13219,8 @@ msgstr "Xem tài khoản bạn đã ẩn" msgid "View your verifications" msgstr "Xem xác minh của bạn" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "Xem hình đầy đủ" @@ -12640,8 +13263,8 @@ msgstr "Cảnh báo nội dung" msgid "Warn content and filter from feeds" msgstr "Cảnh bảo nội dung và lọc từ bảng tin" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "" @@ -12665,11 +13288,15 @@ msgstr "" msgid "We couldn't find any results for that topic." msgstr "Chúng tôi không tìm thấy kết quả nào cho chủ đề đó." -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "Không thể tải hội thoại này" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "Chúng tôi đề xuất chọn ít nhất hai mục quan tâm." #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "Chúng tôi không thể xác định bạn có được phép tải lên video hay không. Vui lòng thử lại." @@ -12744,12 +13371,12 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "Chúng tôi sẽ thông báo cho bạn khi tài khoản của bạn đã sẵn sàng." -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "" @@ -12779,12 +13406,12 @@ msgstr "" 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:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 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." @@ -12814,12 +13441,12 @@ msgstr "" msgid "We're sorry, you cannot access this screen at this time." msgstr "" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Xin lỗi! Bài đăng bạn đang trả lời đã bị xóa." -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "Xin lỗi! Chúng tôi không thể tìm thấy trang bạn đang tìm kiếm." @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "Bạn muốn gọi gói khởi đầu của mình là gì?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "Có gì mới?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "Khi bạn nhấp vào dấu tích, bạn sẽ thấy tổ chức đã xác minh người đó." @@ -12878,7 +13505,7 @@ msgstr "Khi bạn nhấp vào dấu tích, bạn sẽ thấy tổ chức đã x msgid "Who can interact with this post?" msgstr "Ai có thể tương tác với bài đăng này?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "Ai có thể trả lời" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "Ai có thể xác minh?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "Ôi không!" @@ -12939,7 +13566,7 @@ msgstr "Tại sao gói khởi đầu này cần được xem xét?" msgid "Why should this user be reviewed?" msgstr "Tại sao người dùng này cần được xem xét?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "" @@ -12960,12 +13587,12 @@ msgstr "" msgid "Write a post" msgstr "" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "Soạn bài đăng" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "Soạn trả lời" @@ -12978,7 +13605,8 @@ msgstr "Tác giả" msgid "Wrong DID returned from server. Received: {0}" msgstr "Máy chủ trả về sai mã DID. Nhận được: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "" msgid "Yes, delete this starter pack" msgstr "Có, xóa gói khởi đầu này" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "Có, gỡ bỏ" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "Có, ẩn" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "" msgid "You are no longer live" msgstr "" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "Bạn không được phép tải lên video." @@ -13117,21 +13745,30 @@ msgstr "" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "Bạn có thể tiếp tục cuộc trò chuyện đang diễn ra bất kể cài đặt nào bạn chọn." -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 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." -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "" @@ -13139,11 +13776,11 @@ msgstr "" 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:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "" @@ -13155,9 +13792,9 @@ msgstr "Bạn có thể kích hoạt lại tài khoản của mình để tiếp 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +msgid "You can select up to {MAX_GALLERY_IMAGES, plural, other {# images}} in total." msgstr "" #: src/components/interstitials/Trending.tsx:132 @@ -13166,7 +13803,12 @@ msgstr "" 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." -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "Bạn không có bảng tin nào được lưu." msgid "You got here first" msgstr "" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,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:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "" @@ -13332,11 +13982,12 @@ msgstr "" msgid "You must be following at least seven other people to generate a starter pack." msgstr "Bạn phải theo dõi ít nhất bảy người khác để tạo gói khởi đầu." -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "Bạn phải cấp quyền truy cập vào thư viện ảnh của mình để lưu mã QR" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "" @@ -13344,6 +13995,10 @@ 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 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,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:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "Bạn đã bày tỏ cảm xúc {0}" @@ -13368,8 +14023,13 @@ msgstr "" msgid "You recently changed your birthdate" msgstr "" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "Bạn sẽ đăng xuất khỏi tất cả tài khoản của mình." @@ -13378,11 +14038,11 @@ msgstr "Bạn sẽ đăng xuất khỏi tất cả tài khoản của mình." msgid "You will no longer receive notifications for {0}" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "Bạn sẽ không còn nhận thông báo cho thảo luận này" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "Bạn sẽ bắt đầu nhận thông báo cho thảo luận này" @@ -13390,12 +14050,12 @@ msgstr "Bạn sẽ bắt đầu nhận thông báo cho thảo luận này" msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." msgstr "Bạn sẽ nhận email với mã \"khôi phục\". Nhập mã đó ở đây, sau đó nhập mật khẩu mới của bạn." -#: src/screens/Messages/ConversationSettings/prompts.tsx:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "" @@ -13429,6 +14089,10 @@ msgstr "" msgid "You'll stay updated with these feeds" msgstr "Bạn sẽ được cập nhật với những bảng tin này" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:205 +msgid "You’re in control" +msgstr "" + #: src/screens/SignupQueued.tsx:130 msgid "You're in line" msgstr "Bạn đang trong hàng chờ" @@ -13463,7 +14127,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:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "" @@ -13475,11 +14139,11 @@ msgstr "" msgid "You've reached the start of the active content." msgstr "" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "Bạn đã đến quá giới hạn tải lên video hàng ngày (quá nhiều byte)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "Bạn đã đến giới hạn tải lên video hàng ngày (quá nhiều video)" @@ -13499,10 +14163,18 @@ msgstr "" msgid "Your account has been suspended" msgstr "Tài khoản của bạn đã bị đình chỉ" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "Tài khoản của bạn chưa đủ tuổi để tải lên video. Vui lòng thử lại sau." +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "Thư mục tài khoản của bạn, chứa tất cả các bản ghi dữ liệu công khai, có thể được tải xuống dưới dạng tệp \"CAR\". Tệp này không bao gồm nhúng phương tiện, chẳng hạn như hình ảnh, hoặc dữ liệu riêng tư của bạn, mà phải được tải riêng lẻ." @@ -13519,7 +14191,7 @@ msgstr "Khiếu nại của bạn đã được gửi. Nếu khiếu nại của msgid "Your birth date" msgstr "Ngày sinh của bạn" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "Chat của bạn đã bị vô hiệu hóa" @@ -13527,11 +14199,11 @@ msgstr "Chat của bạn đã bị vô hiệu hóa" msgid "Your choice will be remembered for future links. You can change it at any time in settings." msgstr "Lựa chọn của bạn sẽ được ghi nhớ cho các liên kết tới. Bạn có thể thay đổi bất cứ lúc nào trong cài đặt." -#: src/view/com/notifications/NotificationFeedItem.tsx:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "" @@ -13561,7 +14233,7 @@ msgstr "" msgid "Your email appears to be invalid." msgstr "Email của bạn có vẻ không hợp lệ." -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "" @@ -13582,7 +14254,7 @@ msgstr "Bảng tin theo dõi còn trống! Hãy theo dõi thêm người dùng msgid "Your full handle will be <0>@{0}" msgstr "Tên tài khoản đầy đủ của bạn sẽ là <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "" msgid "Your muted words" msgstr "Từ cấm của bạn" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,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:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "" @@ -13635,7 +14307,7 @@ msgstr "" msgid "Your preferred language" msgstr "" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "" @@ -13648,12 +14320,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 "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:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "Báo cáo của bạn sẽ được gửi tới <0>{0}." @@ -13661,7 +14333,7 @@ msgstr "Báo cáo của bạn sẽ được gửi tới <0>{0}." msgid "Your selected interests help us serve you content you care about." msgstr "Mục quan tâm mà bạn chọn giúp chúng tôi đưa nội dung mà bạn quan tâm đến." -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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 f8246b8b31..346d7bd60b 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "“{interestsDisplayName}”类别(已选中)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(包含嵌入内容)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# 次喜欢} other {# 次喜欢}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural,one {# 个成员}other {# 个成员}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# 分钟} other {# 分钟}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# 个月} other {# 个月}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, one {# 条新的加入申请} other {# 条新的加入申请}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural,one {# 个人} other {# 个人}} 对此做出了 {1} 反应" @@ -109,17 +118,17 @@ msgstr "{0, plural, one {# 秒} other {# 秒}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# 条未读} other {# 条未读}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" -msgstr "" +msgstr "{0, plural, one {#分} other {#分}}" #. How many months have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> - <1>文本及标签" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} 已受邀加入对话" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} 和 {1} 已受邀加入对话" @@ -206,9 +215,9 @@ msgid "{0} following" msgstr "{0} 位正在关注" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" -msgstr "" +msgstr "{0} 屏蔽了你" #. placeholder {0}: sanitizeHandle(profile.handle) #: src/features/liveNow/components/LiveStatusDialog.tsx:84 @@ -228,7 +237,7 @@ msgstr "你的设备不支持翻译{0}。" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:83 msgid "{0} joined" -msgstr "" +msgstr "{0} 加入了" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:84 @@ -243,7 +252,7 @@ msgstr "本周加入了 {0} 人" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:96 msgid "{0} left" -msgstr "" +msgstr "{0} 离开了" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:97 @@ -264,14 +273,14 @@ msgstr "已输入 {0} 个字符,最多 50 个字符" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} 作出了 {1} 反应" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:57 msgid "{0} was added" -msgstr "" +msgstr "{0} 已受邀加入" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:58 @@ -281,7 +290,7 @@ msgstr "{0} 已受邀加入群组" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:70 msgid "{0} was removed" -msgstr "" +msgstr "{0} 已被移除" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:71 @@ -290,7 +299,7 @@ msgstr "{0} 已被移除出群组" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}、{1} 以及{memberCount, plural,one {其他 # 人}other {其他 # 人}}已受邀加入对话" @@ -309,15 +318,40 @@ msgstr "{0},由 {1} 创建的列表" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0}的头像" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}的头像" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1}{2, plural,one {个成员}other {个成员}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} 个成员" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} 分钟前" msgid "{0}s" msgstr "{0} 秒前" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural,=0 {暂无加入申请} one {# 条加入请求}other {# 条加入申请}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, one {# 条对话更新} other {# 条对话更新}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural,one {# 条新的加入申请}other {# 条新的加入申请}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, one {# 条邀请} other {# 条邀请}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# 条未读} other {# 条未读}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural,one {刷新页面以显示该内容。} other {刷新页面以显示该内容。}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural,one {这则帖文有 # 张照片。}other {这则帖文有 # 张照片。}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural,one {更新应用以显示该内容。}other {更新应用以显示该内容。}}" + +#. 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 "{count, plural,other {超过 # 条加入申请}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "超过 {count} 条邀请" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {时} other {时}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 及 <0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 及<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 及 <0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 对你授予了认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 回关了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 对你授予了认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 及 {additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 及{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 及 {additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}} 对你授予了认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 关注了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 回关了你" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 喜欢了你的自定义动态源" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 喜欢了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} 喜欢了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 撤回了对你账户的认证" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 转发了你的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} 转发了你转发的帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 使用了你的新手包注册" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 对你授予了认证" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} 对你授予了认证" msgid "{following} following" msgstr "{following} 位正在关注" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "无法添加 {handle}" @@ -547,7 +606,7 @@ msgstr "无法添加 {handle}" msgid "{handle} can't be messaged" msgstr "目前无法向 {handle} 发送信息" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "目前无法向 {handle} 发送信息" @@ -559,6 +618,16 @@ msgstr "{hours, plural, one {# 小时 {minutesString}} other {# 小时 {minutesS msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, one {# 小时} other {# 小时}}" +#. 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 "超过 {JOIN_REQUESTS_THRESHOLD} 条加入申请" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "超过 {JOIN_REQUESTS_THRESHOLD} 条加入申请" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {描述太长,不能超过 # 个字符 msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {名称太长,不能超过 # 个字符。}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural,other {你最多可以隐藏 # 则回复。}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} 对 {target} 做出了 {0} 反应" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}:{message}" @@ -607,11 +676,11 @@ msgstr "{name}最喜欢的动态源和人物——快来加入我的行列吧! msgid "{name}'s starter pack" msgstr "{name}的新手包" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# 条未读通知} other {# 条未读通知}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, one {找到了 # 位联系人} other {找到了 # 位联系人}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" -msgstr "{requestCount, plural, one {# 个邀请} other {# 个邀请}}" +msgstr "{requestCount, plural, one {# 条邀请} other {# 条邀请}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "超过 {requestCount} 条邀请" @@ -656,6 +725,12 @@ msgstr "{userName} 已获得认证" msgid "{userName}'s verifications" msgstr "{userName} 的认证" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}、<1>{1} 及{2, plural, one {其他 # } other {其他 # } #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {关注者} other {关注者}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {正在关注} other {正在关注}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0}{1, plural,one {喜欢}other {喜欢}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0}{1, plural,one {引用}other {引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0}{1, plural,one {转发}other {转发}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0}{1, plural,one {收藏}other {收藏}}" @@ -736,9 +811,9 @@ msgid "<0>{0} members" msgstr "<0>{0} 的成员" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" -msgstr "" +msgstr "<0>{displayName}<1/><2>添加了你" #: src/screens/Hashtag.tsx:226 #: src/screens/Search/SearchResults.tsx:315 @@ -747,7 +822,7 @@ msgstr "<0>登录<1>或<2>创建账户<3><4>即可在 Bluesky #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 msgid "<0>Tap here to update your location with GPS." -msgstr "" +msgstr "<0>点击此处以使用 GPS 更新你的位置信息。" #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #: src/screens/StarterPack/Wizard/index.tsx:494 @@ -795,8 +870,13 @@ msgstr "发生了网络错误,请检查你的网络连接" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "发生了网络错误,请检查你的网络连接。" @@ -804,7 +884,7 @@ msgstr "发生了网络错误,请检查你的网络连接。" msgid "A new code has been sent" msgstr "已发送新的代码" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "全新的认证机制" @@ -827,11 +907,11 @@ msgstr "一张个人主页的截图,显示“关注”按钮旁新增的提醒 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 "一张帖文编辑器的截图。在发布按钮旁边有一个新的草稿按钮,并带有彩虹烟花效果。编辑区内的文本内容为:“嘿,你听说了吗?Bluesky 现在有草稿功能了!!!”。" -#: src/components/dms/dialogs/NewChatDialog.tsx:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "选择的收信人未被发信人关注。" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,34 +923,53 @@ msgid "Abusive or discriminatory behavior" msgstr "粗暴对待或歧视行为" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "接受" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" -msgstr "接受请求" +msgstr "接受申请" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:460 msgid "Accept this language suggestion" msgstr "应用此建议语言" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "已接受的对话" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "已发送申请!请等待群组所有者同意以加入群组。" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "无障碍" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "无障碍设置" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "无障碍设置" msgid "Account" msgstr "账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "已屏蔽该账户" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "已关注该账户" @@ -899,7 +998,7 @@ msgstr "账户已冻结" msgid "Account is deactivated" msgstr "账户已停用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "账户提供商" msgid "Account removed from quick access" msgstr "已从快速访问中移除该账户" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "已取消屏蔽该账户" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "已取消关注该账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "已取消隐藏该账户" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "带有蓝色扇形外观认证徽章的账户 <0><1/> 可以为其他账户授予认证,这些可信认证人由 Bluesky 官方所挑选。" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "其他人的动态" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "动态提醒" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "添加" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "添加替代文本(可选)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "添加另一则帖文" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "添加另一则帖文至帖文串" @@ -1035,7 +1130,7 @@ msgstr "添加应用密码" msgid "Add App Password" msgstr "添加应用密码" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "添加自动化标签至此账户" @@ -1043,7 +1138,7 @@ msgstr "添加自动化标签至此账户" msgid "Add emoji reaction" msgstr "添加表情符号反应" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "添加群组对话成员" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "添加媒体内容至帖文" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "补充更多细节(可选)" @@ -1091,6 +1186,10 @@ msgstr "添加用户" 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 "添加反应" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "由 {0} 受邀加入" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "通过邀请链接加入" @@ -1165,12 +1264,12 @@ msgstr "正在添加成员至列表……" msgid "Additional details (limit 1000 characters)" msgstr "补充说明(一千个字以内)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "补充说明(300 个字以内)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "管理员" @@ -1228,12 +1327,12 @@ msgstr "已提交年龄验证信息" msgid "Age assurance only takes a few minutes" msgstr "只需几分钟即可完成年龄验证" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "全部" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "一共 {0} 个" @@ -1278,13 +1377,13 @@ msgstr "允许读取你的私人信息" msgid "Allow anyone to reply" msgstr "允许任何人回复" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "允许以下来源直接向你发起对话" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "允许以下来源向你发送群组对话邀请" @@ -1338,12 +1437,12 @@ msgstr "已经有账户了?" msgid "Already signed in as @{0}" msgstr "已经以 @{0} 身份登录" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "替代文本" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "替代文本" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "为图片新增替代文本,从而帮助视障者大致了解图片内容。" @@ -1387,7 +1486,7 @@ msgstr "发生错误" msgid "An error occurred" msgstr "发生错误" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "压缩视频时发生错误。" @@ -1421,7 +1520,8 @@ msgstr "播放视频时发生错误,请重试。" msgid "An error occurred while loading your lists :/" msgstr "加载列表时发生错误 :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "保存二维码时发生错误!" @@ -1432,11 +1532,11 @@ msgstr "保存二维码时发生错误!" msgid "An error occurred while trying to follow all" msgstr "关注全部账户时发生错误" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "上传视频时发生错误。{message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "上传视频时发生错误。请检查网络连接并重试。" @@ -1456,26 +1556,30 @@ msgstr "一张图片,显示用户头像从通讯录流向 Bluesky 应用程序 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "包含 Bluesky 的几则帖文插图,旁边还有转发、喜欢和评论图标" +#: 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 "这张图片显示 Bluesky 官方可挑选信任的认证人,并由可信认证人为其他账户授予认证。" -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "创建群组对话时出现问题,请重试。" -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +msgstr "开始对话时出现问题,请重试。" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 msgid "An issue occurred while trying to open the chat" @@ -1485,12 +1589,12 @@ msgstr "开启对话时出现问题" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "出现问题,请重试。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "这个 iPhone 模型正在显示 Bluesky 应用界面,其中打开了一个已认证账户的个人资料,名称旁边拥有认证徽章。" @@ -1539,13 +1643,17 @@ msgstr "任何人" msgid "Anyone can interact" msgstr "任何人都可以参与互动" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "任何人都可以申请加入" @@ -1555,11 +1663,11 @@ msgstr "任何人都可以申请加入" msgid "Anyone who follows me" msgstr "关注我的人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1569,7 +1677,7 @@ msgstr "应用图标" #: src/screens/Settings/LanguageSettings.tsx:107 #: src/screens/Settings/LanguageSettings.tsx:123 msgid "App language" -msgstr "应用程序语言" +msgstr "应用语言" #: src/screens/Settings/components/AddAppPasswordDialog.tsx:122 msgid "App Password" @@ -1597,7 +1705,7 @@ msgstr "应用密码名称至少应包含 4 个字符" msgid "App passwords" msgstr "应用密码" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "应用密码" @@ -1618,7 +1726,7 @@ msgstr "申请解除直播限制" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "已提交申诉" @@ -1632,14 +1740,14 @@ msgstr "暂停申诉" msgid "Appeal Suspension" msgstr "暂停申诉" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "应用提交变更" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "自 {0} 起被归档" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "已归档帖文" @@ -1675,7 +1783,7 @@ msgstr "你真的确定要继续吗?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "你确定要删除此应用密码“{0}”吗?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "你确定要删除这条信息吗?此操作将仅为你删除信息,而不会为其他参与者删除。" @@ -1688,23 +1796,29 @@ msgstr "你确定要删除此新手包吗?" msgid "Are you sure you want to discard your changes?" msgstr "你确定要放弃更改吗?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "你确定要离开 {groupName} 吗?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "你确定要离开这个对话吗?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." +#: 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 "你确定要将此从你的动态源中删除吗?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "你确定要放弃发布这则帖文吗?" @@ -1724,8 +1838,8 @@ msgstr "艺术" msgid "Artistic or non-erotic nudity." msgstr "带有艺术性或非色情的裸露。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "为算法指定主题" @@ -1752,7 +1866,7 @@ msgstr "自动化账户" msgid "Automation label" msgstr "自动化标签" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "自动化标签" @@ -1767,12 +1881,12 @@ msgstr "自动播放视频及 GIF" msgid "Available" msgstr "可用" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "可用" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "可用" msgid "Back" msgstr "返回" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "返回对话" @@ -1832,7 +1948,7 @@ msgstr "在你撰写帖文或回复之前,你必须首先验证你的电子邮 msgid "Before creating a starter pack, you must first verify your email." msgstr "在创建新手包之前,你必须首先验证你的电子邮箱。" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "在你接受此对话邀请之前,你必须首先验证你的电子邮箱。" @@ -1840,13 +1956,14 @@ msgstr "在你接受此对话邀请之前,你必须首先验证你的电子邮 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "在你接收 {name} 的发帖提醒之前,你必须首先验证你的电子邮箱。" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "在与其他人展开对话以前,你必须首先验证你的电子邮箱。" @@ -1874,59 +1991,53 @@ msgstr "出生日期" msgid "Birthday" msgstr "出生日期" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "屏蔽" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "屏蔽 {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "屏蔽账户" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "屏蔽账户?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "屏蔽并删除" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "屏蔽并离开" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "屏蔽列表" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "屏蔽或举报" @@ -1936,9 +2047,9 @@ msgstr "要屏蔽这些账户吗?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "屏蔽用户" @@ -1946,17 +2057,17 @@ msgstr "屏蔽用户" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "屏蔽用户" -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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 "" +msgstr "屏蔽该用户或离开对话(多选)" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "已被屏蔽" @@ -1964,14 +2075,12 @@ msgstr "已被屏蔽" msgid "Blocked accounts" msgstr "已屏蔽账户" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "已屏蔽账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "已被屏蔽的账户无法在你的帖文下回复、提及你或以其他方式与你互动。" @@ -1987,7 +2096,7 @@ msgstr "屏蔽该用户不会阻止其继续标记你的账户。" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "屏蔽是公开可见的。被屏蔽的账户无法在你的帖文下回复、提及你或以其他方式与你互动。" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "屏蔽不会阻止其继续标记你的账户,但会阻止该账户在你发布的帖文下回复或与你互动。" @@ -2000,7 +2109,7 @@ msgstr "博客" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 无法确认帖文发布时间的真实性。" @@ -2029,7 +2138,7 @@ msgstr "与天友们一起,Bluesky 更美好!" msgid "Bluesky is more fun with friends" msgstr "与朋友一起使用 Bluesky 更有趣" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "与朋友一起使用 Bluesky 更有趣!导入你的通讯录来看看谁正在使用吧。" @@ -2037,11 +2146,15 @@ msgstr "与朋友一起使用 Bluesky 更有趣!导入你的通讯录来看看 msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "与朋友一起使用 Bluesky 更有趣。你想要邀请一些朋友加入吗?<0/>" +#: 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 "Bluesky 服务条款" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky 将你的联系人信息编码加密存储,若你删除联系人将会立即删除此数据。" @@ -2053,7 +2166,7 @@ msgstr "Bluesky 将从你的关系网中选择一组推荐关注的账户。" msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky 将不会向未登录的用户显示你的个人资料和帖文。但第三方应用未必会遵从该请求,这不会使你的账号转为非公开状态。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky 官方会主动确认部分知名账户的真实性并授予认证。" @@ -2081,6 +2194,10 @@ msgstr "书籍" 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" @@ -2137,25 +2254,35 @@ msgstr "商务" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "来自 {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "来自 <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "来自 <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "继续创建账户即代表你同意我们的<0>服务条款。" msgid "By you" msgstr "由你创建" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "相机" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "相机" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "相机" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "取消" @@ -2248,9 +2384,9 @@ msgstr "取消重新启用账户并登出" msgid "Cancel search" msgstr "取消搜索" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "无法与被屏蔽的用户进行互动" @@ -2264,7 +2400,7 @@ msgstr "字幕(.vtt)" msgid "Captions & alt text" msgstr "字幕及替代文本" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "轮播" @@ -2297,7 +2433,7 @@ msgstr "更改应用语言" msgid "Change Handle" msgstr "更改账户代码" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "更改内容审核提供方" @@ -2310,11 +2446,11 @@ msgstr "更改密码" msgid "Change password dialog" msgstr "更改密码对话框" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "更改举报类型" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "更改举报原因" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "对话" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "已删除对话" @@ -2361,6 +2497,12 @@ msgstr "已删除对话" msgid "Chat ended" msgstr "对话已结束" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "对话邀请链接已失效" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "对话已锁定" @@ -2373,35 +2515,44 @@ msgstr "对话信息 - 静音" msgid "Chat messages - sound" msgstr "对话信息 - 提示音" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "已隐藏对话" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "对话收信人未被发信人关注。" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "对话邀请收件箱" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "对话邀请" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "对话设置" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "对话设置" @@ -2418,14 +2569,14 @@ msgstr "已将对话标题更改为 {0}" msgid "Chat unlocked" msgstr "对话已解锁" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "已取消隐藏对话" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "对话" @@ -2479,7 +2630,7 @@ msgstr "选择帖文语言" msgid "Choose this color as your avatar" msgstr "选择此颜色作为你的头像背景" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "选择哪些人可以加入此群组及加入策略。" @@ -2558,7 +2709,7 @@ msgstr "点击这里来登出" msgid "Click here to resend the email" msgstr "点击此处以重新发送电子邮件" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "点击这里来重新开始验证流程。" @@ -2567,7 +2718,7 @@ msgstr "点击这里来重新开始验证流程。" msgid "Click here to update your birthdate" msgstr "点击这里来更新你的出生日期" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "点击这里来更新你的电子邮箱" @@ -2580,7 +2731,7 @@ msgstr "点击此处以查看此群组对话的邀请链接" msgid "Click to open tag menu for {0}" msgstr "点按以开启 {0} 的标签菜单" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "点击以重试发送信息" @@ -2594,28 +2745,30 @@ msgstr "点击以重试发送信息" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "点击以重试发送信息" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "关闭" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "关闭活动对话框" @@ -2647,6 +2800,10 @@ msgstr "关闭活动对话框" msgid "Close alert" msgstr "关闭警告" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "关闭横幅" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "关闭底部抽屉" @@ -2657,8 +2814,10 @@ msgstr "关闭底部抽屉" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "关闭对话框" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "关闭图片" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "关闭此窗口" @@ -2695,18 +2866,22 @@ msgstr "关闭欢迎界面" msgid "Closes password update alert" msgstr "关闭密码更新警告" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "关闭编辑器并舍弃草稿" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "折叠用户列表" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "折叠指定通知的用户列表" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "漫画" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "社群准则" @@ -2740,12 +2915,12 @@ msgstr "完成验证" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "撰写新帖文" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰写最多 {0, plural,other {# 个字符}} 的帖文" @@ -2753,11 +2928,11 @@ msgstr "撰写最多 {0, plural,other {# 个字符}} 的帖文" msgid "Compose reply" msgstr "撰写回复" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "正在压缩 GIF……" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "正在压缩视频……" @@ -2780,7 +2955,7 @@ msgstr "已在 <0>内容审核设置 中进行配置。" msgid "Confirm" msgstr "确认" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "联系支持" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "因应用程序无法访问你的通讯录,此设备无法使用联系人同步功能。" @@ -2825,11 +3000,11 @@ msgstr "因应用程序无法访问你的通讯录,此设备无法使用联系 msgid "Contact us" msgstr "联系我们" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "已导入通讯录" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "已删除通讯录" @@ -2842,7 +3017,7 @@ msgstr "内容与媒体" msgid "Content and media" msgstr "内容与媒体" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "内容与媒体" @@ -2889,7 +3064,7 @@ msgstr "上下文菜单背景,点击以关闭菜单。" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "加载更多帖文串" msgid "Continue thread..." msgstr "加载更多帖文串……" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "继续设置群组名称" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "对话" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "已删除对话" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "已删除对话" @@ -2939,15 +3114,22 @@ msgstr "已删除对话" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +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:162 msgid "Copied build version to clipboard" msgstr "已复制构建版本号至剪贴板" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "已复制!" msgid "Copies build version to clipboard" msgstr "已复制构建版本号至剪贴板" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "复制" @@ -2997,6 +3184,11 @@ msgstr "复制 DID" msgid "Copy host" msgstr "复制主机" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "复制列表链接" msgid "Copy link to post" msgstr "复制帖文链接" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "复制个人资料链接" @@ -3027,8 +3219,8 @@ msgstr "复制个人资料链接" msgid "Copy link to starter pack" msgstr "复制新手包链接" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "复制信息文本" @@ -3037,12 +3229,12 @@ msgstr "复制信息文本" msgid "Copy post at:// URI" msgstr "复制帖文 at:// 链接" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "复制帖文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "复制二维码" @@ -3052,11 +3244,15 @@ msgstr "复制 TXT 记录值" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "版权许可" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "无法连接到自定义动态源" @@ -3065,31 +3261,43 @@ msgstr "无法连接到自定义动态源" msgid "Could not connect to feed service" msgstr "无法连接到动态源服务" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 -msgid "Could not fetch post" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +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:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "无法关注所有匹配的联系人。{0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "无法离开对话" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "无法加载动态源" @@ -3100,7 +3308,11 @@ msgstr "无法加载动态源" msgid "Could not load list" msgstr "无法加载列表" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "无法隐藏对话" @@ -3108,11 +3320,19 @@ msgstr "无法隐藏对话" msgid "Could not process your video" msgstr "无法处理你的视频" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "无法保存如下更改:{0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "无法更新通知设置" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "创建" @@ -3153,13 +3373,13 @@ msgstr "创建列表" msgid "Create a list from this starter pack" msgstr "从新手包创建列表" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "创建新手包" @@ -3174,13 +3394,14 @@ msgstr "为我创建新手包" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "创建一个账户" msgid "Create an account without using this starter pack" msgstr "不使用此新手包注册账号" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "创建一个头像" @@ -3206,7 +3427,7 @@ msgstr "创建一个头像" msgid "Create another" msgstr "再创建一个" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "创建群组对话" @@ -3228,19 +3449,20 @@ msgstr "从新手包创建列表" msgid "Create moderation list" msgstr "创建内容审核列表" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "创建新的账户" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "创建针对 {0} 的举报" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "创建于 {0}" @@ -3270,6 +3492,10 @@ msgstr "已屏蔽此列表的创建者" msgid "Culture" msgstr "文化" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "深色模式" msgid "Date of birth" msgstr "出生日期" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "默认" msgid "Default icons" msgstr "默认图标" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "删除应用密码" msgid "Delete app password?" msgstr "要删除应用密码吗?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "删除对话" @@ -3378,19 +3612,19 @@ msgstr "删除对话" msgid "Delete chat declaration record" msgstr "删除对话声明记录" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "删除通讯录" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "仅为我删除" @@ -3399,11 +3633,11 @@ msgstr "仅为我删除" msgid "Delete list" msgstr "删除列表" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "删除信息" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "仅为我删除信息" @@ -3411,9 +3645,9 @@ msgstr "仅为我删除信息" msgid "Delete my account" msgstr "删除我的账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "删除帖文" @@ -3430,17 +3664,17 @@ msgstr "要删除新手包吗?" msgid "Delete this list?" msgstr "要删除此列表吗?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "要删除这则帖文吗?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "已删除" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "已删除的账户" @@ -3471,12 +3705,12 @@ msgstr "描述(最多 1000 个字符)" msgid "Descriptive alt text" msgstr "扩充描述替代文本" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "分离引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "要分离引用帖文吗?" @@ -3507,13 +3741,13 @@ msgstr "对话框:调整哪些人可以参与这则帖文的互动" msgid "Dim" msgstr "昏暗" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "停用两步验证" @@ -3521,7 +3755,7 @@ msgstr "停用两步验证" msgid "Disable captions" msgstr "关闭字幕" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "停用电子邮箱两步验证" @@ -3534,8 +3768,8 @@ msgstr "停用电子邮箱两步验证" msgid "Disable haptic feedback" msgstr "停用触觉反馈" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "禁用链接" @@ -3547,7 +3781,7 @@ msgstr "禁止其他人引用这则帖文" msgid "Disable replies entirely" msgstr "完全停用回复" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "禁用此邀请链接?" @@ -3560,9 +3794,9 @@ msgstr "停用" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "舍弃" msgid "Discard changes?" msgstr "要放弃更改吗?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "要放弃发布吗?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "已断开与 Germ DM 的连接" @@ -3609,15 +3843,16 @@ msgstr "探索新的动态源" msgid "Discover New Feeds" msgstr "探索新的动态源" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "跳过" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "忽略横幅提示" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "忽略错误" @@ -3642,6 +3877,10 @@ msgstr "忽略此部分" 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" @@ -3673,7 +3912,7 @@ msgstr "不包含裸露内容。" msgid "Domain verified!" msgstr "域名已通过验证!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "没有收到或需要新的验证码吗?<0>点击这里。" @@ -3681,7 +3920,7 @@ msgstr "没有收到或需要新的验证码吗?<0>点击这里。" msgid "Don’t see a code? <0>Click here to resend." msgstr "没有收到验证码吗?<0>点击这里来重新发送。" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "没有收到电子邮件吗?<0>点击这里来重新发送。" @@ -3700,16 +3939,21 @@ msgstr "别担心!你现有的对话及设置都已保存,只需验证你已 #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "完成" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "双击或长按信息以添加反应" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "双击以关闭对话框" @@ -3737,19 +3981,14 @@ msgstr "双击以关闭对话框" 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 "下载 Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "下载 CAR 文件" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "下载 CAR 文件" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "下载对话数据" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "下载对话数据" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "由于你所在地区的法律规定,Bluesky 的某些功能目前受 msgid "Duration:" msgstr "持续时间:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "例如:alice" @@ -3823,9 +4079,8 @@ msgstr "例如:滥发广告内容的用户。" msgid "Eating disorders" msgstr "进食障碍" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "编辑" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "编辑头像" @@ -3847,19 +4102,19 @@ msgstr "编辑头像" msgid "Edit Feeds" msgstr "编辑动态源" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "编辑图片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "编辑互动选项" @@ -3868,7 +4123,16 @@ msgstr "编辑互动选项" msgid "Edit interests" msgstr "编辑兴趣" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "编辑链接设置" @@ -3886,20 +4150,15 @@ msgstr "编辑直播状态" msgid "Edit moderation list" msgstr "编辑内容审核列表" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "编辑我的动态源" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "编辑名称" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "编辑来自 {0} 的动态提醒" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "编辑用户" @@ -3912,12 +4171,12 @@ msgstr "编辑帖文互动选项" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "编辑个人资料" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "编辑个人资料" @@ -3925,7 +4184,8 @@ msgstr "编辑个人资料" msgid "Edit starter pack" msgstr "编辑新手包" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "编辑此群组对话的名称" @@ -3937,7 +4197,7 @@ msgstr "编辑用户列表" msgid "Edit who can reply" msgstr "编辑哪些人可以回复" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "编辑你的新手包" @@ -3971,7 +4231,7 @@ msgstr "电子邮箱地址" msgid "Email Resent" msgstr "重新发送电子邮件" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "已发送电子邮件!" @@ -4006,8 +4266,8 @@ msgstr "将这则帖文嵌入到你的网站。只需复制以下代码片段, msgid "Embedded video player" msgstr "嵌入式视频播放器" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "启用" @@ -4025,7 +4285,7 @@ msgstr "启用成人内容显示" msgid "Enable captions" msgstr "开启字幕" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "启用电子邮箱两步验证" @@ -4038,13 +4298,12 @@ msgstr "启用外部媒体" msgid "Enable media players for" msgstr "启用媒体播放器" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "转到其个人主页,点击 <0>提醒图标 即可接收该账户的动态提醒<1/>。" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "启用推送通知" @@ -4091,8 +4350,8 @@ msgstr "输入密码" msgid "Enter a word or tag" msgstr "输入字词或标签" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "输入验证码" @@ -4143,12 +4402,12 @@ msgstr "进入全屏模式" msgid "Entertainment" msgstr "娱乐" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "错误" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "获取最新数据时发生错误。" @@ -4185,23 +4444,23 @@ msgstr "任何人都可以回复" msgid "Everybody can reply to this post." msgstr "任何人都可以回复这则帖文。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "所有人" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "所有人" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "其他内容" @@ -4217,16 +4476,16 @@ msgstr "排除你已关注的用户" msgid "Exit fullscreen" msgstr "退出全屏模式" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "展开用户列表" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "展开或折叠你正在回复的完整帖文" @@ -4238,7 +4497,7 @@ msgstr "展开帖文文本" msgid "Expands or collapses post text" msgstr "展开或折叠帖文文本" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "URL 应解析为记录" @@ -4277,10 +4536,10 @@ msgstr "血腥、露骨或其他可能引起不适的媒体内容。" msgid "Explicit sexual images." msgstr "露骨的色情图片。" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "探索" @@ -4289,11 +4548,8 @@ msgstr "探索" msgid "Explore the app" msgstr "探索应用" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "导出对话数据" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "导出我的对话数据" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部媒体偏好设置" @@ -4331,18 +4587,22 @@ msgstr "外部媒体偏好设置" msgid "Extremist content" msgstr "极端主义内容" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "无法接受对话邀请" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "无法接受加入申请" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "无法添加表情符号反应" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "无法加入成员" @@ -4354,7 +4614,8 @@ msgstr "无法添加到新手包" msgid "Failed to change handle. Please try again." msgstr "无法更改账户代码,请重试。" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "无法复制链接" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "无法创建应用密码。请重试。" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "无法创建对话" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "无法创建邀请链接" @@ -4376,17 +4637,17 @@ msgstr "无法创建邀请链接" msgid "Failed to create starter pack" msgstr "无法创建新手包" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "无法删除信息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "无法删除帖文,请重试" @@ -4394,24 +4655,24 @@ msgstr "无法删除帖文,请重试" msgid "Failed to delete starter pack" msgstr "无法删除新手包" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "无法停用邀请链接" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "无法断开与 Germ DM 的连接。错误:{0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "无法编辑群组对话名称" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "无法编辑邀请链接" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "无法启用邀请链接" @@ -4427,19 +4688,27 @@ msgstr "无法关注所有朋友,请重试" msgid "Failed to hide suggestion, please check your internet connection" msgstr "无法隐藏建议,请检查你的网络连接" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "无法忽略加入申请" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "无法离开群组对话" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "无法加载对话" @@ -4456,17 +4725,8 @@ msgstr "无法加载动态源" msgid "Failed to load feeds preferences" msgstr "无法加载动态源偏好设置" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "无法加载通知设置。" @@ -4493,16 +4753,15 @@ msgstr "无法加载建议的动态源" msgid "Failed to load suggested follows" msgstr "无法加载建议关注" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "无法锁定群组对话" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "无法标记所有为已读" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "无法隐藏群组对话" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "无法固定帖文" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "无法重新连接 Germ DM。错误:{0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "无法删除资料。{0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "无法删除表情符号反应" @@ -4534,7 +4793,8 @@ msgstr "无法删除表情符号反应" msgid "Failed to remove from starter pack" msgstr "无法从新手包删除" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "无法移除群组对话成员" @@ -4542,15 +4802,20 @@ msgstr "无法移除群组对话成员" msgid "Failed to remove verification" msgstr "无法撤回认证" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "无法保存草稿" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "无法保存图片" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "无法保存你的兴趣。" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "无法发送电子邮件,请重试。" @@ -4580,16 +4845,16 @@ msgstr "无法提交报告" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "无法提交申诉,请重试。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "无法隐藏讨论串,请重试" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "无法解锁群组对话" @@ -4597,12 +4862,12 @@ msgstr "无法解锁群组对话" msgid "Failed to unpin list" msgstr "无法取消固定列表" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "无法更新电子邮箱,请重试。" @@ -4614,7 +4879,7 @@ msgstr "无法更新动态源" msgid "Failed to update notification declaration" msgstr "无法更新动态提醒范围" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "无法更新设置" @@ -4641,7 +4906,7 @@ msgstr "虚假账户或机器人" msgid "False information about elections" msgstr "散布选举相关虚假信息" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "动态源" @@ -4649,7 +4914,7 @@ msgstr "动态源" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "由 {0} 创建的动态源" @@ -4662,7 +4927,7 @@ msgstr "动态源创建者" msgid "Feed identifier" msgstr "动态源标识符" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "动态源菜单" @@ -4676,25 +4941,25 @@ msgstr "动态源不可用" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "反馈" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "动态源" @@ -4739,7 +5004,7 @@ msgstr "按语言过滤搜索(当前:{currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "筛选你想接收的通知来源" @@ -4747,11 +5012,11 @@ msgstr "筛选你想接收的通知来源" msgid "Finalizing" msgstr "正在完成" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "终于!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "终于来啦!收藏你感兴趣的帖文,以便能随时回来查看。" @@ -4768,19 +5033,17 @@ msgstr "财经" msgid "Find accounts to follow" msgstr "去关注更多账户" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "寻找联系人" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "寻找朋友" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "从通讯录寻找朋友" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "寻找联系人" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "寻找我的朋友" msgid "Find people to follow" msgstr "寻找一些人来关注" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "在 Bluesky 寻找感兴趣的帖文、用户和动态源" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "寻找你的朋友" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "通过验证你的电话号码并与你的通讯录匹配,即可找到正在使用 Bluesky 的朋友。我们严格保护你的数据信息,你可随时掌握后续任何操作。<0>了解更多" @@ -4847,22 +5114,22 @@ msgstr "聚焦搜索栏" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "关注" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "关注 {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "关注 {displayName}" @@ -4892,8 +5159,8 @@ msgstr "关注账户" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "关注所有账户" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "回关" @@ -4916,7 +5183,7 @@ msgstr "回关" msgid "Followed all accounts!" msgstr "关注所有账户!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "关注所有匹配的联系人" @@ -4944,8 +5211,12 @@ msgstr "已被你认识的 <0>{0} 及 <1>{1} 关注" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "已被你认识的<0>{0}、<1>{1} 及{2, plural, one {其他#人} other {其他#人}}关注" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "关注者可以加入" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "你认识的这些人也关注了 @{0}" @@ -4960,10 +5231,10 @@ msgstr "你认识的关注者" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "正在关注" @@ -4977,12 +5248,12 @@ msgstr "正在关注" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "已关注 {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "正在关注 {displayName}" @@ -4995,19 +5266,16 @@ msgstr "已关注 {handle}" msgid "Following feed preferences" msgstr "“Following”动态源偏好设置" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "“Following”动态源偏好设置" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "关注了你" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "关注了你" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "字体" @@ -5065,11 +5333,16 @@ msgstr "忘记密码?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "还你一个干净的时间线" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "发自" @@ -5086,82 +5359,86 @@ msgstr "来自 <0/>" msgid "Generate a starter pack" msgstr "创建一个新手包" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "创建新的群组链接" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "Germ DM 已断开" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM 链接" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "重新连接 Germ DM" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "获取帮助" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "当有人通过你的新手包加入、账户验证或其他状态更新时收到通知。" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "当有人关注你时收到通知。" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "当有人喜欢了你转发的帖文时收到通知。" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "当有人喜欢了你的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "当有人喜欢了你转发的帖文时收到通知。" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "当有人提及你时收到通知。" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "当有人引用了你的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "当有人回复了你的帖文时收到通知。" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "当有人转发了你转发的帖文时收到通知。" - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "当有人转发了你的帖文时收到通知。" +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "当有人转发了你转发的帖文时收到通知。" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "当你订阅的帖文有状态更新时收到通知。" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "当其发布新帖文时收到提醒" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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} 发布新帖文时收到提醒" @@ -5174,27 +5451,27 @@ msgstr "当该账户有新动态时收到提醒" msgid "Get notified when {name} posts" msgstr "当 {name} 发帖时收到提醒" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "当有人发帖时收到提醒" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "已上传 GIF" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "为你的个人资料选择头像" @@ -5213,20 +5490,20 @@ msgstr "颂扬暴力" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "返回" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "返回上一步" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "转到主页" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "转到主页" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "转到主页" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "直播(已停用)" msgid "Go live for" msgstr "直播时长" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "转到 {firstAuthorName} 的个人资料" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "转至账户设置" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "转到你与 {0} 的对话" @@ -5296,35 +5571,42 @@ msgstr "前往动态源" msgid "Go to next" msgstr "前往下一步" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "前往名称为“{chatName}”的群组对话" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "转到用户的个人资料" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" -msgstr "" +msgstr "转到用户的个人资料" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 msgid "Going live is currently disabled for your account" msgstr "你账户的直播功能已被停用" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "露骨暴力内容" msgid "Grooming or predatory behavior" msgstr "引诱拐骗行为" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "群组对话" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "群组对话邀请链接对话框" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "群组对话已锁定" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "已隐藏群组对话" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "已更新群组对话名称" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "群组对话设置" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "群组对话已解锁" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "已取消隐藏群组对话" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "群组对话暂不可用" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "现已推出群组对话" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "群组对话最多只能拥有 {0, plural,other {# 名成员}}。" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "群组已锁定" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "群组名称" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "黑客入侵或系统攻击行为" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "账户代码太长,请缩短后重试。" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "正在进行" @@ -5446,7 +5744,7 @@ msgstr "有害或高风险活动" msgid "Harming or endangering minors" msgstr "伤害或危及未成年人安全" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "标签" @@ -5458,14 +5756,14 @@ msgstr "标签 {tag}" msgid "Hate speech" msgstr "仇恨言论" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "已经有验证码了?<0>点击这里。" #: src/screens/Signup/StepInfo/index.tsx:320 msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." -msgstr "" +msgstr "位置信息判断有误?<0>点击此处来通过 GPS 更新你所在的位置。" #: src/screens/Signup/index.tsx:231 msgid "Having trouble?" @@ -5479,11 +5777,11 @@ msgstr "由 Bluesky 保留 7 天以防止滥用,并在之后删除" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "帮助" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "通过上传图片或生成头像,来让大家知道你不是机器人。" @@ -5522,7 +5820,7 @@ msgstr "隐藏列表" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "隐藏列表" msgid "Hide" msgstr "隐藏" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "隐藏" @@ -5553,18 +5851,18 @@ msgstr "隐藏群组对话更新" msgid "Hide lists" msgstr "隐藏列表" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "仅为我隐藏回复" @@ -5577,19 +5875,19 @@ msgstr "隐藏这张卡片" msgid "Hide this event" msgstr "隐藏这则活动" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "要隐藏这则帖文吗?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "隐藏翻译" @@ -5606,7 +5904,7 @@ msgstr "要隐藏热门话题吗?" msgid "Hide trending videos?" msgstr "要隐藏热门视频吗?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "隐藏用户列表" @@ -5620,6 +5918,10 @@ msgstr "隐藏认证徽章" msgid "Hides the content" msgstr "隐藏内容" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "抱歉,你似乎正在使用<0>应用密码登录。如需更改你的出生日期,请改用主密码登录,或告知此账户的拥有人进行更改。" @@ -5652,19 +5954,15 @@ msgstr "抱歉,看起来在加载数据时遇到了问题。请查看下方获 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我们无法加载该内容审核提供服务方。" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "请稍等!我们正在逐步开放上传视频的权限。你目前仍在等待队伍中,请稍后再回来查看!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "稍安毋躁!此功能暂不可用,请晚点再来看看吧。" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "主页" @@ -5721,7 +6019,7 @@ msgstr "我了解" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "我在 Bluesky 的账户是 {0} —— 快来和我一起使用吧!https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "若替代文本过长,切换替代文本的展开状态" @@ -5757,15 +6055,15 @@ msgstr "如果你删除此列表,则以后将无法恢复。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "若你拥有自己的域名,你可以将其用作自己的账户代码,这同时还能帮你验证身份。<0>在此了解详情。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "如果你需要更新你的电子邮箱,请<0>点击这里。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "如果你更新电子邮箱地址,电子邮箱两步验证将会停用。" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "如果你想限制其他人接收你账户的动态提醒,可以转到<0>设置 → 隐私与安全更改允许范围。" @@ -5786,23 +6083,23 @@ msgstr "如果你是开发者,你可以自行托管服务器。" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "如果你想更改你的账户代码或电子邮箱,请记得在停用之前进行更改。" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "图片" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "图片 {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "第 {0} 张图片,共 {1} 张" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "第 {0} 张图片,共 {imageCount} 张" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "已清除图片缓存,释放了{0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "图片集,{0} 张图片" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "无法显示图片。" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "冒充身份" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "导入联系人" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "已于 {0} 导入" @@ -5881,40 +6182,40 @@ msgstr "已于 {0} 导入" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "应用内" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "应用内通知" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "应用内、所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "应用内、你关注的人" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "应用内、系统推送" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "应用内、系统推送、所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "应用内、系统推送、你关注的人" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "收件箱为空" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "收件箱清空啦!" @@ -5954,6 +6255,10 @@ msgstr "隆重介绍草稿功能" 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 "隆重介绍帖文收藏(又名书签)" @@ -5963,11 +6268,15 @@ msgstr "隆重介绍帖文收藏(又名书签)" msgid "Invalid 2FA confirmation code." msgstr "两步验证码无效。" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "无效的互动选项。" @@ -5977,10 +6286,15 @@ msgstr "无效的互动选项。" msgid "Invalid phone number" msgstr "无效的电话号码" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "无效的举报内容" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "无效的撤销申请。" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "验证码无效" @@ -6001,8 +6315,15 @@ msgstr "邀请码" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "邀请码无效,请检查你输入的邀请码并重试。" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "邀请朋友" @@ -6010,21 +6331,31 @@ msgstr "邀请朋友" msgid "Invite friends <0/>" msgstr "邀请朋友 <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "邀请链接" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "邀请链接" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "已禁用邀请链接" @@ -6040,11 +6371,16 @@ msgstr "已启用邀请链接" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "已邀请" @@ -6054,7 +6390,7 @@ msgstr "以个性化的方式邀请朋友加入" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "当前的位置信息不准确吗?<0>点击此处来通过 GPS 更新你所在的位置。 " #: 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." @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "作业 ID:{0}" @@ -6083,6 +6419,11 @@ msgstr "作业 ID:{0}" msgid "Jobs" msgstr "工作" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "加入" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "工作" msgid "Join Bluesky" msgstr "加入 Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "加入群组对话" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "加入对话" msgid "Journalism" msgstr "新闻学" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "保留编辑内容" @@ -6109,6 +6460,11 @@ msgstr "保留编辑内容" msgid "Keep me posted" msgstr "保持联系" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS 官网" @@ -6143,7 +6499,7 @@ msgstr "你账户上的标记" msgid "Labels on your content" msgstr "你内容上的标记" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "语言设置" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "最新" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "了解更多邀请朋友功能" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "了解更多导入通讯录功能" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "深入了解有关此警告的信息" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "深入了解 Bluesky 的认证机制(英文)" @@ -6239,7 +6595,7 @@ msgstr "深入了解 Bluesky 的认证机制(英文)" msgid "Learn more about what is public on Bluesky." msgstr "深入了解有关 Bluesky 公开内容的信息。" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "了解更多关于你的 Germ DM 链接" @@ -6252,31 +6608,33 @@ msgstr "在你的<0>账户设置了解详情" msgid "Learn more." msgstr "了解详情。" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "离开" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "离开对话" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "离开对话" @@ -6284,13 +6642,14 @@ msgstr "离开对话" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "离开对话" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "离开群组对话" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "离开此群组对话" @@ -6299,6 +6658,14 @@ msgstr "离开此群组对话" msgid "Leaving Bluesky" msgstr "离开 Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "个人排在你前面。" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "浅色" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "喜欢({0, plural, one {# 次喜欢} other {# 次喜欢}})" @@ -6346,11 +6713,7 @@ msgstr "喜欢 10 则帖文" msgid "Like 10 posts to train the Discover feed" msgstr "喜欢 10 则帖文以训练“Discover”资讯源" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "喜欢通知" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "喜欢此动态源" @@ -6358,8 +6721,8 @@ msgstr "喜欢此动态源" msgid "Like this labeler" msgstr "喜欢此标记者" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "喜欢的用户" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# 位用户} other {# 位用户}}喜欢" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# 位用户} other {# 位用户}}喜欢" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "喜欢" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "喜欢你转发的帖文" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "喜欢你转发帖文的通知" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "这则帖文的喜欢数" @@ -6409,11 +6768,11 @@ msgstr "这则帖文的喜欢数" msgid "Linear" msgstr "线性视图" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "已复制链接至剪贴板" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "列表" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "已取消隐藏该列表" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "列表" @@ -6545,7 +6904,7 @@ msgstr "已取消隐藏直播活动" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "每逢发生精彩活动时,我们会在这里及时呈现给你。你可以隐藏这则活动,或直接隐藏今后所有直播活动的显示。" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "直播功能正在测试阶段" @@ -6581,7 +6940,7 @@ msgstr "加载更多帖文" #: src/screens/Messages/components/MessageInput.web.tsx:202 msgctxt "placeholder" msgid "Loading chat…" -msgstr "" +msgstr "正在加载对话……" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 msgid "Loading lists..." @@ -6595,27 +6954,27 @@ msgstr "正在加载帖文互动选项……" msgid "Loading..." msgstr "加载中……" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "锁定" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "锁定群组对话" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "锁定群组对话?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "锁定此群组对话" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "已锁定" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "日志" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "网站标志由 @sawaratsuki.bsky.social 绘制" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "网站标志由 <0>@sawaratsuki.bsky.social 绘制" @@ -6662,7 +7021,7 @@ msgstr "看起来你似乎缺少“Following”动态源。<0>点击这里来重 msgid "Love GIFs" msgstr "爱情 GIFs" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "调整你账户关联的电子邮箱设置" @@ -6687,24 +7046,22 @@ msgstr "管理认证设置" msgid "Manage your muted words and tags" msgstr "管理你的隐藏字词和标签" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "标记所有为已读" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "标记为已读" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "已标记所有为已读" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "之后再说" @@ -6726,26 +7083,26 @@ msgstr "媒体文件已存储到其他设备" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能会令部分受众不安或造成不适的媒体内容。" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "成员" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "成员仍然可以查看此群组对话记录,但无法发送新信息。" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "提及通知" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "被提及的用户" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "提及" @@ -6761,7 +7118,7 @@ msgstr "信息" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "信息" @@ -6771,26 +7128,26 @@ msgstr "信息" msgid "Message {0}" msgstr "发送信息给 {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "发信息给 {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "已删除信息" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "已删除信息" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "信息发送失败。" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "来自 @{0} 的信息:{1}" @@ -6813,21 +7170,21 @@ msgstr "信息过长" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "信息过长({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "信息选项" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "信息" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." -msgstr "" +msgstr "当此用户屏蔽你时,其发送的信息将会隐藏。" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." -msgstr "" +msgstr "当你屏蔽此用户时,其发送的信息将会隐藏。" #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" @@ -6838,10 +7195,6 @@ msgstr "午夜" msgid "Minor harassment or bullying" msgstr "轻度骚扰或霸凌行为" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "其他通知" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "误导" @@ -6850,7 +7203,7 @@ msgstr "误导" msgid "Missing media" msgstr "缺失媒体文件" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "内容审核" @@ -6894,7 +7247,7 @@ msgstr "已更新内容审核列表" msgid "Moderation lists" msgstr "内容审核列表" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "内容审核列表" @@ -6903,7 +7256,7 @@ msgstr "内容审核列表" msgid "moderation settings" msgstr "内容审核设置" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "内容审核状态" @@ -6928,8 +7281,8 @@ msgstr "更多语言……" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "更多选项" @@ -6949,7 +7302,7 @@ msgstr "电影" msgid "Music" msgstr "音乐" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "隐藏" @@ -6965,8 +7318,8 @@ msgstr "隐藏" msgid "Mute {0}" msgstr "隐藏 {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "隐藏账户" msgid "Mute accounts" msgstr "隐藏账户" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "隐藏对话" @@ -6994,7 +7347,7 @@ msgstr "隐藏列表" msgid "Mute these accounts?" msgstr "要隐藏这些账户吗?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "隐藏此群组对话" @@ -7022,17 +7375,21 @@ msgstr "仅隐藏包含该字词的标签" msgid "Mute this word until you unmute it" msgstr "将这个字词隐藏,直到你取消为止" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "隐藏讨论串" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "隐藏字词和标签" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "已隐藏" @@ -7040,7 +7397,7 @@ msgstr "已隐藏" msgid "Muted accounts" msgstr "已隐藏账户" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "已隐藏账户" @@ -7062,6 +7419,10 @@ msgstr "隐藏字词和标签" 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" @@ -7104,12 +7465,12 @@ msgstr "转到新手包" msgid "Navigates to the next screen" msgstr "转到下一页" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "转到个人资料" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "需要举报侵害版权、法律要求及合规性问题吗?" @@ -7117,6 +7478,7 @@ msgstr "需要举报侵害版权、法律要求及合规性问题吗?" msgid "Nevermind, create a handle for me" msgstr "不用了,请帮我创建一个账户代码" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "新建" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "来自 {firstAuthorLink} 的新{postsCount, plural, one {帖文} other {帖文}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "来自 {firstAuthorName} 的新{postsCount, plural, one {帖文} other {帖文}}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "新对话" @@ -7163,7 +7525,7 @@ msgstr "与 {0} 和 {1} 的新对话" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "与 {0}、{1} 及{memberCount, plural, one {其他 {memberCount} 人} other {其他 {memberCount} 人}}的新对话。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "新的电子邮箱地址" @@ -7171,32 +7533,30 @@ msgstr "新的电子邮箱地址" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "新关注者通知" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "新关注者" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "创建群组对话" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "与这些人开始群组对话:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "新帖文" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "新帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "来自 {firstAuthorLink} 及<0>其他 {additionalAuthorsCount, plural, one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}的新帖文 " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "来自 {firstAuthorName} 及其他 {additionalAuthorsCount, plural,one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}的新帖文" @@ -7262,8 +7622,8 @@ msgstr "新闻" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "下一步" msgid "Next image" msgstr "下一张图片" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "无广告,无侵入式追踪,更没有成瘾性设计。Bluesky 充分尊重你宝贵的时间与注意力。" @@ -7321,7 +7685,7 @@ msgstr "未设置到期时间" msgid "No feeds found. Try searching for something else." msgstr "找不到动态源,尝试搜索点别的。" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "目前还没有关注者" @@ -7335,7 +7699,7 @@ msgstr "找不到符合“{query}”的 GIF。" msgid "No GIFs to show right now. Try again in a moment." msgstr "暂无可以显示的 GIF,请稍后再试。" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "没有图片" @@ -7353,8 +7717,8 @@ msgstr "没有列表" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "已不再关注 {0}" @@ -7362,7 +7726,7 @@ msgstr "已不再关注 {0}" msgid "No media yet" msgstr "目前还没有媒体内容" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "目前还没有信息" @@ -7378,12 +7742,12 @@ msgstr "没有名字" msgid "No notifications yet!" msgstr "目前还没有通知!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "没有人" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "没有人" @@ -7399,7 +7763,7 @@ msgstr "没有人" msgid "No one but the author can quote this post." msgstr "仅限发布者可以引用这则帖文。" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "没有人可以发送信息" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "没有结果" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "没有结果" @@ -7446,8 +7810,8 @@ msgstr "没有结果" msgid "No results for \"{0}\"." msgstr "找不到符合“{0}”的结果。" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "找不到结果" @@ -7509,12 +7873,12 @@ msgstr "非自愿的亲密视频" msgid "Non-sexual Nudity" msgstr "非色情裸露" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -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:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "此功能无法在这个平台上使用。" @@ -7522,16 +7886,16 @@ msgstr "此功能无法在这个平台上使用。" msgid "Not followed by anyone you’re following" msgstr "没有被任何你认识的人关注" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "找不到" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "分享注意事项" @@ -7548,44 +7912,31 @@ msgstr "注:这则帖文仅对已登录用户可见。" msgid "Nothing saved yet" msgstr "目前没有收藏内容" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知设置" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "通知提示音" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "通知" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "其他通知,例如有人使用了你的新手包注册账号。" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "现在" @@ -7601,7 +7952,7 @@ msgstr "必须使用手机号码" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "显示" @@ -7623,9 +7974,10 @@ msgstr "好的" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "好的" @@ -7648,35 +8000,35 @@ msgstr "于<0><1/><2><3/>" msgid "Onboarding reset" msgstr "重新开始入门引导" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "选择的收信人中有人不允许群组对话。" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "选择的收信人中有人屏蔽了你,无法发送信息。" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "至少有一张 GIF 缺失了替代文本。" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "至少有一张图片缺失了替代文本。" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "你所选中的部分文件格式不被支持。" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "你选中的部分太大,最大的文件大小为 100 MB。" +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "至少有一段视频缺失了替代文本。" @@ -7685,6 +8037,26 @@ msgstr "至少有一段视频缺失了替代文本。" msgid "Only {0} can reply." msgstr "仅限{0}可以回复。" +#. 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:234 +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}" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "只有管理员可以接受加入申请。" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "只有管理员可以忽略加入申请。" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "仅限我关注的人" msgid "Only image files are supported" msgstr "仅支持图片文件" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "只有 {0} 关注的人可以加入。" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "只有群组所有者关注的人可以加入" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "仅支持 WebVTT(.vtt)格式" @@ -7703,6 +8085,10 @@ msgstr "仅支持 WebVTT(.vtt)格式" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "糟糕,出了点问题!" msgid "Oops!" msgstr "糟糕!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "开启头像创建工具" @@ -7720,12 +8106,17 @@ msgstr "开启头像创建工具" msgid "Open camera" msgstr "开启相机" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "开启对话" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "开启 {displayName} 的对话成员选项" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "开启对话选项" @@ -7739,16 +8130,16 @@ msgstr "开启抽屉菜单" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "开启表情符号选择器" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "开启动态源选项菜单" @@ -7760,13 +8151,22 @@ msgstr "开启完整的表情符号列表" msgid "Open Germ DM" msgstr "开启 Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "开启指向 {niceUrl} 的链接" @@ -7790,11 +8190,15 @@ msgstr "开启新手包" msgid "Open post options menu" msgstr "开启帖文选项菜单" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "开启 Storybook 页面" msgid "Open system log" msgstr "开启系统日志" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "开启此群组对话" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "开启对话框以向你的帖文内容添加警告" msgid "Opens a dialog to choose who can interact with this post" msgstr "开启对话框来选择哪些人可以与这则帖文产生互动" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "开启调试记录的额外详细信息" @@ -7838,7 +8250,7 @@ msgstr "开启调试记录的额外详细信息" msgid "Opens alt text dialog" msgstr "打开替代文本对话框" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "开启设备相机" @@ -7858,22 +8270,24 @@ msgstr "开启编辑器" msgid "Opens device camera" msgstr "开启设备相机" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "开启设备相册以选择最多 {MAX_IMAGES, plural, other {# 张图片}}、单段视频或一张 GIF。" +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "开启设备相册以选择最多 {MAX_GALLERY_IMAGES, plural, other {# 张图片}}、一段视频或一张 GIF。" +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "开启创建新 Bluesky 账户流程" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "开启登录到你现有的 Bluesky 账户流程" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "开启完整图片" @@ -7890,7 +8304,7 @@ msgstr "开启图片选择器" msgid "Opens link {0}" msgstr "开启链接 {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "打开直播状态对话框" @@ -7902,15 +8316,23 @@ msgstr "开启密码重置申请" msgid "Opens post language settings" msgstr "开启帖文语言设置" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "开启 GIF 选择器对话框" +#: 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 "开启帖文编辑器" @@ -7919,9 +8341,8 @@ msgstr "开启帖文编辑器" msgid "Opens this draft in the composer" msgstr "在编辑器中开启这份草稿" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "开启该个人资料" @@ -7997,12 +8418,12 @@ msgstr "我们的博客文章" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "内容审核服务提供方已收到相关举报,并决定停用你的 Bluesky 对话功能。" @@ -8010,14 +8431,15 @@ msgstr "内容审核服务提供方已收到相关举报,并决定停用你的 msgid "Owner" msgstr "所有者" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "无法找到此页面" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "所有者必须在离开前锁定群组。" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "暂停视频" msgid "People" msgstr "用户" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "{ownerName} 的关注者可以直接加入" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "{ownerName} 的关注者可以申请加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "被 @{0} 关注的用户" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "关注 @{0} 的用户" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "我关注的人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "我关注的人可以直接加入" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "我关注的人可以申请加入" @@ -8136,13 +8558,17 @@ msgstr "已验证电话号码" msgid "Photography" msgstr "摄影" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "固定动态源" @@ -8152,12 +8578,12 @@ msgstr "固定动态源" msgid "Pin to home" msgstr "固定到主页" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "固定到主页" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "固定到你的个人资料" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "已固定" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "固定 {0} 到主页" @@ -8236,7 +8662,7 @@ msgstr "请设置你的账户代码。" msgid "Please choose your password." msgstr "请设置你的密码。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "请点击我们发送给你电子邮件中的链接来验证你的新电子邮箱地址。你需要先完成此步骤才能继续使用 Bluesky 的所有功能。" @@ -8244,7 +8670,7 @@ msgstr "请点击我们发送给你电子邮件中的链接来验证你的新电 msgid "Please complete the verification captcha." msgstr "请完成 CAPTCHA(人机验证)。" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "请先验证你的电子邮箱地址以上传视频。" @@ -8265,14 +8691,14 @@ msgstr "请输入密码,至少应包含 8 个字符。" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "请输入有效的电子邮件地址。" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "请输入一个有效、非临时的电子邮箱地址,你日后可能需要再次使用此电子邮箱。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "请输入我们发送到 <0>{0} 的验证码。" @@ -8293,7 +8719,7 @@ msgstr "请输入我们发送到 <0>{0} 的验证码。" msgid "Please enter the code you received and the new password you would like to use." msgstr "请输入你收到的验证码以及你想使用的新密码。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "请输入我们之前发送到你电子邮箱地址的验证码。" @@ -8306,7 +8732,7 @@ msgstr "请输入你的电子邮箱地址。" msgid "Please enter your invite code." msgstr "请输入你的邀请码。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "请输入你的新电子邮箱地址。" @@ -8323,7 +8749,7 @@ msgstr "请输入你的用户名" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "请说明你为什么认为 {0} 错误应用了此标记" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "请说明你为什么认为你的对话被错误停用" @@ -8358,7 +8784,11 @@ msgstr "请选择你要举报的违规项目" msgid "Please sign in as @{0}" msgstr "请以 @{0} 身份登录" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "请使用应用程序来导入你的通讯录。" @@ -8366,7 +8796,7 @@ msgstr "请使用应用程序来导入你的通讯录。" msgid "Please use the native app to sync your contacts." msgstr "请使用应用程序来同步你的通讯录。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "请验证你的电子邮箱" @@ -8383,7 +8813,7 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "发布" @@ -8403,12 +8833,12 @@ msgstr "发布一张图片" msgid "Post a video" msgstr "发布一段视频" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "全部发布" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "仍然发布" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "帖文已被屏蔽" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} 的帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "已删除帖文" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "帖文发布失败。请检查网络连接并重试。" @@ -8454,18 +8884,22 @@ msgstr "你已隐藏这则帖文" msgid "Post interaction settings" msgstr "帖文互动选项" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "帖文链接" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "可以根据文本、标签或结合两者来隐藏帖文。我们建议 msgid "Posts hidden" msgstr "已隐藏帖文" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "帖文、回复" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "潜在误导性链接" @@ -8525,9 +8954,10 @@ msgstr "主要语言" msgid "Press to attempt reconnection" msgstr "点按此处以重试连接" -#: src/components/Error.tsx:61 +#: 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 "点按以重试" @@ -8536,7 +8966,7 @@ msgstr "点按以重试" msgid "Press to view followers of this account that you also follow" msgstr "点按此处以查看同样关注该账户的关注者" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "预览" @@ -8559,26 +8989,25 @@ msgstr "隐私" msgid "Privacy and security" msgstr "隐私与安全" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "隐私与安全" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "隐私政策" @@ -8586,15 +9015,15 @@ msgstr "隐私政策" msgid "Privacy violation of a minor" msgstr "侵犯未成年隐私" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "正在处理 GIF……" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "正在处理视频……" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "处理中……" @@ -8602,10 +9031,10 @@ msgstr "处理中……" msgid "profile" msgstr "个人资料" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "个人资料" @@ -8613,6 +9042,7 @@ msgstr "个人资料" msgid "Profile banner placeholder" msgstr "个人资料横幅占位符" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "无法找到个人页面" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "发布帖文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "发布帖文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "发布回复" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "发布回复" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "推送" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "推送通知" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "系统推送、所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "系统推送、你关注的人" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "已复制二维码到剪切板!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "已下载二维码!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "已保存二维码至照片图库!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "引用通知" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "引用通知" msgid "Quote post" msgstr "引用帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "已重新关联引用帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "已成功分离引用帖文" @@ -8711,12 +9138,12 @@ msgstr "已停用帖文引用" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "引用这则帖文" @@ -8728,16 +9155,16 @@ msgstr "超过速率限制——你在短时间内尝试修改账户代码的次 msgid "Rate limit exceeded. Please try again later." msgstr "超出频率限制,请稍后再试。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "重新启用邀请链接" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "重新启用链接" @@ -8745,8 +9172,8 @@ msgstr "重新启用链接" msgid "React with {emoji}" msgstr "使用 {emoji} 做出反应" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "反应" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "阅读如何使用搜索过滤器" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "阅读博客文章" @@ -8812,11 +9239,11 @@ msgstr "真实的用户。" msgid "Reason for appeal" msgstr "申诉原因" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "接收应用内通知" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "接收推送通知" @@ -8841,17 +9268,31 @@ msgstr "推荐" msgid "Reconnect" msgstr "重新连接" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "刷新页面以显示该内容。" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "拒绝" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "重新加载对话" @@ -8863,6 +9304,8 @@ msgstr "重新加载对话" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "从群组对话中移除 {displayName}" msgid "Remove {displayName} from starter pack" msgstr "从你的新手包中删除 {displayName}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "从群组对话中移除 {displayName}" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "删除 {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "删除 {historyItem}" msgid "Remove account" msgstr "移除账户" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "删除所有联系人" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "删除关联" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "删除头像" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "删除横幅图片" @@ -8914,8 +9362,9 @@ msgstr "删除横幅图片" msgid "Remove caption file" msgstr "删除字幕文件" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "删除嵌入" @@ -8929,12 +9378,12 @@ msgstr "删除此动态源" msgid "Remove feed?" msgstr "要删除动态源吗?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "从对话中移除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "从帖文收藏里删除" msgid "Remove from your feeds?" msgstr "要从你的动态源中删除吗?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "删除图片" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "撤销转发" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "删除建议" @@ -9009,11 +9458,11 @@ msgstr "撤回认证" msgid "Remove your verification for this account?" msgstr "要撤回你对这个账户的认证吗?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "已被发布者删除" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "你已删除" @@ -9035,7 +9484,7 @@ msgstr "已从帖文收藏里删除" msgid "Removed from starter pack" msgstr "已从你的新手包中删除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "对你进行回复" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "回复" @@ -9104,14 +9552,14 @@ msgstr "已停用回复" msgid "Replies to this post are disabled." msgstr "这则帖文的回复已被停用。" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "回复({0, plural, one {# 则回复} other {# 则回复}})" @@ -9125,10 +9573,6 @@ msgstr "已被这条讨论串的发布者隐藏回复" msgid "Reply Hidden by You" msgstr "你已隐藏这则回复" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "回复通知" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "由这条讨论串的发布者设置的回复选项" @@ -9137,18 +9581,18 @@ msgstr "由这条讨论串的发布者设置的回复选项" msgid "Reply sorting" msgstr "回复排序" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "已更新回复可见性" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "已成功隐藏回复" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "举报" @@ -9157,20 +9601,20 @@ msgstr "举报" msgid "Report account" msgstr "举报账户" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "举报页面" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "举报动态源" @@ -9179,12 +9623,12 @@ msgstr "举报动态源" msgid "Report list" msgstr "举报列表" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "举报信息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "举报帖文" @@ -9199,8 +9643,8 @@ msgstr "举报新手包" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "已提交举报" @@ -9213,7 +9657,7 @@ msgstr "举报此对话" msgid "Report this feed" msgstr "举报此动态源" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "举报此群组对话" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "举报此列表" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "举报这场直播" @@ -9256,10 +9700,6 @@ msgstr "转发" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "转发({0, plural, one {# 次转发} other {# 次转发}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "转发通知" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "你已转发" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "转发" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "转发这则帖文" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "转发你转发的帖文" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "转发你转发帖文的通知" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "已忽略申请。" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "申请加入" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "已发送申请" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "邀请" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "需要电子邮件验证码才能登录到你的账户。" @@ -9328,7 +9791,17 @@ msgstr "服务提供商有此要求" msgid "Required in your region" msgstr "你所在的地区有此要求" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "重新发送" @@ -9373,8 +9846,8 @@ msgstr "重置入门引导状态" msgid "Reset password" msgstr "重置密码" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "重新同步通讯录" @@ -9391,17 +9864,18 @@ msgstr "重试上次出错的操作" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "重试上次出错的操作" msgid "Retry" msgstr "重试" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "重新加载举报选项" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "返回上一页" @@ -9451,10 +9925,10 @@ msgstr "悲伤 GIFs" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "保存出生日期" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "保存更改" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "保存更改?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "保存草稿" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "保存草稿?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "保存图片" msgid "Save new handle" msgstr "保存新的账户代码" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "保存二维码" @@ -9518,13 +9994,13 @@ msgstr "保存二维码" msgid "Save these options for next time" msgstr "保存这些选项以供下次使用" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "保存到我的动态源" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "收藏" @@ -9534,25 +10010,25 @@ msgstr "收藏" msgid "Saved Feeds" msgstr "已保存动态源" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "帖文收藏" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "已保存到你的动态源" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "问声好!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "向某人问声好" @@ -9560,6 +10036,16 @@ msgstr "向某人问声好" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "科学" @@ -9576,18 +10062,18 @@ msgstr "向右旋转" msgid "Scroll to top" msgstr "滚动到顶部" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "搜索" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搜索 @{0} 的帖文" @@ -9662,12 +10148,12 @@ msgstr "搜索语言" msgid "Search my posts" msgstr "搜索我的帖文" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "搜索帖文" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "搜索个人资料" msgid "Search..." msgstr "搜索……" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "所需的安全步骤" @@ -9759,7 +10245,7 @@ msgstr "选择 {langName}" msgid "Select a color" msgstr "选择一个颜色" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "选择一个原因" @@ -9828,7 +10314,7 @@ msgstr "选择 GIF" msgid "Select GIF \"{0}\"" msgstr "选择 GIF “{0}”" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "选择群组对话成员" @@ -9850,7 +10336,7 @@ msgstr "选择语言……" msgid "Select languages" msgstr "选择语言" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "选择内容审核服务提供方" @@ -9904,11 +10390,11 @@ msgstr "在下面选择你感兴趣的选项" msgid "Select your preferred language for translations in your feed." msgstr "选择动态源内容的翻译目标语言。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "自定义你的通知推送选项" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "不支持选择多种媒体类型。" @@ -9921,9 +10407,9 @@ msgstr "自我伤害或其他危险行为" msgid "Send code" msgstr "发送代码" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "发送电子邮件" @@ -9935,11 +10421,11 @@ msgstr "发送电子邮件" msgid "Send error report" msgstr "提交错误报告" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "提交反馈" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "发送信息" @@ -9952,7 +10438,7 @@ msgstr "发送帖文给 {name}" msgid "Send post to..." msgstr "发送帖文给……" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "将举报提交给 {title}" @@ -9960,7 +10446,7 @@ msgstr "将举报提交给 {title}" msgid "Send the message from your phone" msgstr "从你的手机发送这则信息" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "通过私人信息发送" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "发送于 {0}" @@ -10015,14 +10501,14 @@ msgstr "请在下方设置你的出生日期,我们很快就会让你继续四 msgid "Sets email for password reset" msgstr "设置用于重置密码的电子邮箱" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "设置" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "来自其他人的动态提醒设置" @@ -10030,39 +10516,39 @@ msgstr "来自其他人的动态提醒设置" msgid "Settings for allowing others to be notified of your posts" msgstr "允许他人接收你发布帖文提醒的设置" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "喜欢通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "提及通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "新关注者通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "其他通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "转发的喜欢通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "转发的转发通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "引用通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "回复通知设置" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "转发通知设置" @@ -10079,16 +10565,19 @@ msgstr "性行为或色情裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "分享" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "仍然分享" @@ -10097,16 +10586,21 @@ msgstr "仍然分享" msgid "Share author DID" msgstr "分享作者 DID" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "分享链接" @@ -10114,6 +10608,11 @@ msgstr "分享链接" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "分享帖文 at:// 链接" msgid "Share QR code" msgstr "分享二维码" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "分享此动态源" @@ -10142,8 +10641,8 @@ msgstr "分享此新手包,以帮助其他人更快融入你在 Bluesky 上的 #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "分享到……" @@ -10151,7 +10650,7 @@ msgstr "分享到……" msgid "Share your contacts to find friends" msgstr "分享你的联系人来寻找朋友" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "共享偏好测试器" @@ -10167,16 +10666,16 @@ msgstr "显示替代文本" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "仍然显示" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "显示自动化标签" @@ -10197,8 +10696,8 @@ msgstr "显示自定义选项" msgid "Show group chat updates" msgstr "显示群组聊天更新" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "显示更少类似内容" @@ -10219,8 +10718,8 @@ msgstr "在你的“Discover”动态源显示直播活动" msgid "Show More" msgstr "显示更多" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "显示更多类似内容" @@ -10246,8 +10745,8 @@ msgstr "显示回复" msgid "Show replies as" msgstr "将回复显示为" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "公开显示回复" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "显示警告并从动态源中过滤" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "显示直播状态" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "显示这则帖文的创建时间" @@ -10297,15 +10796,17 @@ msgstr "显示内容" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "登录或创建账户" msgid "Sign in or create your account to join the conversation!" msgstr "登录或创建你的账户来加入对话吧!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "登录以接受邀请。" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "登录未列出的账户" @@ -10337,8 +10842,12 @@ msgstr "登录未列出的账户" msgid "Sign in to Bluesky or create a new account" msgstr "登录 Bluesky 或创建新账户" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "登录以查看帖文" @@ -10348,9 +10857,9 @@ msgstr "登录以查看帖文" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "登出" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "登出" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "确定要登出吗?" @@ -10391,7 +10900,7 @@ msgstr "跳过" msgid "Skip contact sharing and continue to the app" msgstr "跳过分享通讯录并继续使用应用程序" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "跳过空白帖文?" @@ -10405,7 +10914,7 @@ msgstr "跳过介绍并开始使用你的账户" msgid "Skip to next step" msgstr "跳至下一步" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "幻灯片" @@ -10413,7 +10922,7 @@ msgstr "幻灯片" msgid "Smaller" msgstr "更小" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "暂停提醒" @@ -10447,7 +10956,7 @@ msgstr "一些人可以回复" #: src/components/dms/getSystemMessageInfo.ts:86 msgid "Someone joined" -msgstr "" +msgstr "有人加入了" #: src/components/dms/getSystemMessageInfo.ts:87 msgid "Someone joined the group" @@ -10455,14 +10964,14 @@ msgstr "有人加入了群组" #: src/components/dms/getSystemMessageInfo.ts:99 msgid "Someone left" -msgstr "" +msgstr "有人离开了" #: src/components/dms/getSystemMessageInfo.ts:100 msgid "Someone left the group" msgstr "有人离开了群组" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "有人作出了 {0} 反应" @@ -10473,7 +10982,7 @@ msgstr "有人对 {target} 作出了 {0} 反应" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" -msgstr "" +msgstr "有人已受邀加入" #: src/components/dms/getSystemMessageInfo.ts:61 msgid "Someone was added to the group" @@ -10481,23 +10990,28 @@ msgstr "有人已受邀加入到群组" #: src/components/dms/getSystemMessageInfo.ts:73 msgid "Someone was removed" -msgstr "" +msgstr "有人被移除了" #: src/components/dms/getSystemMessageInfo.ts:74 msgid "Someone was removed from the group" msgstr "有人已被移除出群组" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "出了点问题!" msgid "Something went wrong. Please try again in a moment." msgstr "发生错误,请稍后重试。" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "发生错误,请重试。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "看起来有点问题?请告诉我们。" @@ -10564,11 +11078,16 @@ msgstr "垃圾信息或其他虚假欺骗行为" msgid "Sports" msgstr "运动" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "当你和其他人开始聊天后,对话就会出现在这里。" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "开始一个新对话" @@ -10582,17 +11101,17 @@ msgstr "开始添加用户" msgid "Start adding people!" msgstr "开始添加用户!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "开始对话" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "与 {displayName} 开始对话" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "新手包" @@ -10654,12 +11173,12 @@ msgstr "已清除数据,请立即重新启动应用。" msgid "Stored as part of a secure code for matching with others" msgstr "存储为安全代码的一部分,以匹配其他人" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "Storybook" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "正在 Twitch 上直播吗?在 Bluesky 设置直播状态,你的头像上就会显示直播徽章,点击徽章即可直接前往你的直播页面。" @@ -10671,8 +11190,8 @@ msgstr "正在 Twitch 上直播吗?在 Bluesky 设置直播状态,你的头 #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "提交" @@ -10684,9 +11203,9 @@ msgstr "提交申诉" msgid "Submit Appeal" msgstr "提交申诉" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "提交举报" @@ -10695,15 +11214,15 @@ msgid "Subscribe" msgstr "订阅" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" -msgstr "" +msgstr "订阅 {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" -msgstr "" +msgstr "在 {0} 上订阅 {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle #: src/screens/Profile/Sections/Labels.tsx:231 @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "完成" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "完成!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "已加入群组对话!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "成功认证" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "建议" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "支持" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "你所在的国家尚不支持此功能!请过几天再回来看看。" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "已冻结的用户无法加入群组对话。" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "已冻结的用户无法参与聊天。" #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "切换账户" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "切换账户" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "切换到 {0}" @@ -10824,13 +11347,17 @@ msgstr "系统日志" 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 "点击下方的“允许”按钮以允许 Bluesky 读取你的位置信息,我们将使用该数据来更准确地确认你所在地区可用的内容及功能。" -#: src/components/dms/MessageItem.tsx:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" -msgstr "" +msgstr "点击以获取详细信息" #: src/view/com/feeds/MissingFeed.tsx:90 msgid "Tap for information" @@ -10842,7 +11369,7 @@ msgstr "点击以了解详情" #: src/screens/Signup/StepInfo/index.tsx:323 msgid "Tap here to update your location with GPS." -msgstr "" +msgstr "点击此处以使用 GPS 更新你的位置信息。" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" @@ -10854,33 +11381,51 @@ msgstr "点击这里以表示你已了解并同意这些改动,并继续使用 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:163 msgid "Tap to dismiss" msgstr "点按以跳过" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "点击以移除" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "点击以移除你的 {0} 反应" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "点击以申请加入此群组对话" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "点击以重试" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "点击以显示 {0} 反应" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "点击以显示所有反应" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "点击以显示反应" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "服务条款" @@ -10939,7 +11484,7 @@ msgstr "文本及标签" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "文本输入框" @@ -10981,9 +11526,9 @@ msgstr "就这些,完毕!" msgid "That's everything!" msgstr "就这些了!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "取消屏蔽后,该账户将重新能够与你互动。" @@ -11049,6 +11594,11 @@ msgstr "在发布新帖文时,以下设置将被用作默认值。你可以通 msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "你所在地的相关法律要求需要验证你已成年后,才能使用 Bluesky 上的部分功能。点击以了解详情。" +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "已达到群组成员上限。" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "你正在回复的帖文已被发布者标记为使用 {suggestedLanguageName} 撰写,要把回复语言更改为使用 <0>{suggestedLanguageName} 撰写吗?" @@ -11057,10 +11607,10 @@ msgstr "你正在回复的帖文已被发布者标记为使用 {suggestedLanguag msgid "The Privacy Policy has been moved to <0/>" msgstr "隐私政策已移动到 <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "" +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "你所选择的视频大小大于 {VIDEO_MAX_SIZE_MB} MB,请选择其他较小的视频文件。" #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "主题" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "此聊天对话没有邀请链接。" @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "无法加载 GIFs,检查你的网络链接并再试一次。" #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "你的网络连接发生了一些问题,请重试" msgid "There was an issue contacting the server" msgstr "连接服务器时出现问题" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "连接至服务器时出现问题。请检查网络连接并重试。" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "刷新帖文时出现问题,点击重试。" @@ -11161,31 +11714,31 @@ msgstr "获取你的服务信息时出现问题" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "更新动态源时出现问题。请检查网络连接并重试。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "出现问题了!{0}" @@ -11221,6 +11774,14 @@ msgstr "这些是你的默认设置" msgid "These settings only apply to the Following feed." msgstr "这些偏好设置只适用于“Following”动态源。" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被标记:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "这条申诉将提交给 <0>{sourceName}。" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "这条申诉将提交给 Bluesky 内容审核服务。" @@ -11263,7 +11824,7 @@ msgstr "这条申诉将提交给 Bluesky 内容审核服务。" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "该作者仅限已登录用户可以查看其帖文。" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "此按钮允许其他人开启 Germ DM 向你发送信息,你可以通过 Germ DM 来管理其可见性,或者点击下方按钮断开你 Bluesky 账户与 Germ DM 的连接。" @@ -11271,11 +11832,21 @@ msgstr "此按钮允许其他人开启 Germ DM 向你发送信息,你可以通 msgid "This chat has ended" msgstr "此对话已结束" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "此对话已满员" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "此对话已锁定" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "对话已被断开" @@ -11310,7 +11881,11 @@ msgstr "由于有用户被另一个用户屏蔽,导致无法查看该内容。 msgid "This content is not viewable without a Bluesky account." msgstr "该内容需要登录 Bluesky 账户方可查看。" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "此对话的参与者已停用或删除账户,点击以获取更多详情" @@ -11318,7 +11893,7 @@ msgstr "此对话的参与者已停用或删除账户,点击以获取更多详 msgid "This draft will be permanently deleted." msgstr "这份草稿将被永久删除。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "此电子邮箱已与你的账户关联。" @@ -11356,11 +11931,15 @@ msgstr "此动态源为空。" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "此动态源已离线。我们将改为显示来自 <0>Discover 动态源的内容。" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "无法使用这张图片,请改用其他图片格式,例如 .jpg 或 .png。" @@ -11368,6 +11947,14 @@ msgstr "无法使用这张图片,请改用其他图片格式,例如 .jpg 或 msgid "This information is private and not shared with other users." msgstr "此信息将保持私密,不会分享给其他用户。" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "此邀请链接已被禁用。" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "此邀请链接无效" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "这个状态为空" @@ -11377,7 +11964,7 @@ msgstr "这个状态为空" msgid "This is not a valid link" msgstr "无效链接" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "此标签让大家了解这是自动管理的账户。如果选择开启,此标签会显示在个人资料及帖文的账户名称旁,你可以随时决定添加或移除此标签。" @@ -11410,15 +11997,19 @@ msgstr "此列表由你创建,其名称或描述可能违反了 Bluesky 社群 msgid "This list is empty." msgstr "此列表为空。" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 -msgid "This message is hidden because this user is blocking you." +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" msgstr "" +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +msgid "This message is hidden because this user is blocking you." +msgstr "此信息已被隐藏,因为此用户屏蔽了你。" + +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." -msgstr "" +msgstr "此信息已被隐藏,因为你屏蔽了此用户。" #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." @@ -11430,11 +12021,11 @@ msgstr "此内容审核已应用于用户全局,并将显示在所有帖文中 #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "This person is blocking you" -msgstr "" +msgstr "这个人屏蔽了你" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "这则帖文声称发布于 <0>{0},但首次出现在 Bluesky 的时间为 <1>{1}。" @@ -11450,23 +12041,24 @@ msgstr "这则帖文仅对已登录用户可见。" msgid "This post was deleted by its author" msgstr "这则帖文已被发布者删除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "这则帖文的发布者已停用引用帖文。" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "此界面仅适用于群组对话。" @@ -11490,22 +12082,22 @@ msgstr "这应该只需要几分钟。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "此用户没有设置名称,因此无法授予认证。" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "该用户目前没有任何关注者。" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "此用户屏蔽了你,无法发送信息。" #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 msgid "This user has blocked you. You cannot view their content." msgstr "你已被该用户屏蔽,无法查看其内容。" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "此用户已禁用对话功能,无法发送信息。" #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11531,7 +12123,7 @@ msgstr "该账户目前没有关注任何人。" #: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 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 "" +msgstr "此视频无法在你的设备上播放,你的浏览器或系统可能缺失所需的视频解码器(H.264/AAC)。" #: 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." @@ -11551,7 +12143,7 @@ msgstr "这将永久删除你的 Bluesky 账户 <0>{currentHandle} 及所有 msgid "This will remove @{0} from the quick access list." msgstr "这将从你的快速访问中移除 @{0}。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "你的帖文将从这则引用中删除,并替换为一个占位符。" @@ -11574,7 +12166,7 @@ msgstr "讨论串偏好设置" msgid "Threaded" msgstr "树形视图" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "讨论串偏好设置" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "如果需要停用电子邮箱两步验证,请首先验证你的电子邮箱地址。" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "如果需要停用电子邮箱两步验证,请首先验证你的电子邮箱地址 <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "热门" msgid "Top replies first" msgstr "热门回复优先" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "话题" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "翻译" @@ -11667,8 +12259,8 @@ msgstr "已翻译" msgid "Translating" msgstr "正在翻译" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "正在翻译……" @@ -11702,7 +12294,7 @@ msgstr "热门视频" msgid "Trolling" msgstr "引战" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信任源于人际关系、社群和共享环境,因此我们也引入了<0>可信的认证人:可以直接为其他账户授予认证的组织。" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "尝试搜点其他关键字,或<0>阅读如何使用搜索过滤器。" +#: 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:170 +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 "尝试 Google 翻译" +#: 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 "电视节目" @@ -11763,13 +12369,17 @@ msgstr "无法连接到服务,请检查网络连接。" msgid "Unable to delete" msgstr "无法删除" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "无法获取加入申请。" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "找不到选中的收信人。" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "找不到选中的收信人。" #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "目前无法使用" msgid "Unavailable feed information" msgstr "动态源信息不可用" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "取消屏蔽" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "取消屏蔽" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "取消屏蔽 {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "取消屏蔽账户" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "要取消屏蔽账户吗?" @@ -11837,8 +12452,8 @@ msgstr "取消屏蔽列表" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "撤消" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "取消转发({0, plural, one {# 次转发} other {# 次转发}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "取消关注 {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "取消关注账户" @@ -11872,7 +12487,7 @@ msgstr "取消关注账户" msgid "Unfollows the user" msgstr "取消关注用户" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "抱歉,你订阅的标记者不支持此举报类型。" @@ -11884,14 +12499,6 @@ msgstr "很抱歉,你在个人资料中保存的出生日期信息显示你的 msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "很抱歉,你设置的年龄无法在你所在的地区使用 Bluesky。" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "取消邀请" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "取消邀请 {displayName} 加入此群组对话" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "未知的认证人" @@ -11904,21 +12511,21 @@ msgstr "未标记的成人内容" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "未标记、具骚扰性,或非自愿的成人内容" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "取消喜欢({0, plural, one {# 次喜欢} other {# 次喜欢}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "解锁对话" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "解锁此群组聊天" @@ -11939,14 +12546,14 @@ msgstr "取消隐藏" msgid "Unmute {0}" msgstr "取消隐藏 {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "取消隐藏账户" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "取消隐藏对话" @@ -11955,12 +12562,12 @@ msgstr "取消隐藏对话" msgid "Unmute list" msgstr "取消隐藏列表" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "取消隐藏此群组对话" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "取消隐藏讨论串" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "取消固定" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "取消固定动态源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "从主页取消固定" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "从个人资料取消固定" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "取消固定限制列表" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "从主页取消固定 {0}" @@ -12030,14 +12637,18 @@ msgstr "取消订阅此标记者" msgid "Unsubscribed from list" msgstr "已从列表中取消订阅" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "不支持的剪贴板内容" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "不支持的视频类型:{mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "更新" msgid "Update <0>{displayName} in Lists" msgstr "要把 <0>{displayName} 更新或删除自哪些列表?" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "更新应用" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "更新电子邮箱" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "更新邀请链接" @@ -12065,11 +12680,15 @@ msgstr "更新邀请链接" msgid "Update to {domain}" msgstr "更新至 {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "更新应用版本至最新即可加入!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "更新你的应用" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "更新应用以显示该内容。" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "更新你的电子邮箱" @@ -12078,19 +12697,19 @@ msgstr "更新你的电子邮箱" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 msgid "Update your location" -msgstr "" +msgstr "更新你的位置信息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "更新引用关联状态失败" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新回复可见性失败" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "上传图片" @@ -12098,39 +12717,40 @@ msgstr "上传图片" msgid "Upload a text file to:" msgstr "将文本文件上传至:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "正在上传 GIF……" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "正在上传图片……" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "正在上传链接缩略图……" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "正在上传视频……" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "用户" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "已屏蔽该用户" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "{0} 的用户列表" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "{0} 的用户列表" @@ -12255,12 +12875,12 @@ msgstr "被 <0>@{0} 关注的用户" msgid "users following <0>@{0}" msgstr "正在关注 <0>@{0} 的用户" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "我关注的用户" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "我关注的用户" @@ -12277,7 +12897,7 @@ msgstr "无法授予认证,请重试。" msgid "Verification settings" msgstr "认证设置" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "认证设置" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "验证码" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "验证 DNS 记录" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "电子邮箱验证码" @@ -12349,7 +12969,7 @@ msgstr "要对此账户授予认证吗?" msgid "Verify your age" msgstr "验证你的年龄" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "版本号 {0}" msgid "Video" msgstr "视频" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "视频处理失败" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "视频动态源" @@ -12419,7 +13039,7 @@ msgstr "无法找到视频。" msgid "Video settings" msgstr "视频设置" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "已上传视频" @@ -12432,20 +13052,20 @@ msgstr "视频:{0}" msgid "Videos" msgstr "视频" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "视频长度不得超过 3 分钟。" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" -msgstr "" +msgstr "查看 {0}" #. placeholder {0}: profile.handle #: src/screens/Profile/Header/Shell.tsx:257 @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "查看 {0} 的个人资料" @@ -12467,19 +13087,14 @@ msgstr "查看 {0} 的个人资料" msgid "View {0}’s profile" msgstr "查看 {0} 的个人资料" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "查看 {displayName} 的个人资料" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" -msgstr "" - -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" +msgstr "查看 {publicationTitle}" #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" @@ -12503,10 +13118,18 @@ msgstr "查看详情" msgid "View full thread" msgstr "查看完整讨论串" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "查看关于此标记的详细信息" @@ -12522,7 +13145,7 @@ msgstr "查看更多" msgid "View more trending videos" msgstr "浏览更多热门视频" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "查看帖文" @@ -12539,18 +13162,18 @@ msgstr "查看个人资料" msgid "View profile banner" msgstr "查看个人资料横幅" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" -msgstr "" +msgstr "查看发布信息" #: src/view/com/profile/ProfileSubpageHeader.tsx:108 msgid "View the avatar" msgstr "查看头像" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "查看此群组对话的邀请链接" @@ -12563,7 +13186,7 @@ msgstr "查看由 @{0} 提供的标记服务。" msgid "View this user's verifications" msgstr "查看此用户的认证" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "查看此动态源被谁喜欢" @@ -12596,8 +13219,8 @@ msgstr "查看你隐藏的账户" msgid "View your verifications" msgstr "查看你的认证" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "查看完整图片" @@ -12640,8 +13263,8 @@ msgstr "警告内容" msgid "Warn content and filter from feeds" msgstr "警告内容并从动态源中过滤" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "立即观看" @@ -12665,11 +13288,15 @@ msgstr "我们无法找到任何与该标签相关的结果。" msgid "We couldn't find any results for that topic." msgstr "我们无法找到任何与该话题相关的结果。" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "我们目前无法加载此对话" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "我们目前无法加载此对话选项" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "我们建议至少选择两个感兴趣的主题。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我们将向 <0>{0} 发送一封含有链接的电子邮件,请点击邮件内容来完成电子邮箱的验证流程。" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "我们无法确定你是否有权上传视频,请重试。" @@ -12744,12 +13371,12 @@ msgstr "我们因连接问题无法接收验证状态,可能需要等待一段 msgid "We will let you know when your account is ready." msgstr "我们会在你的账户准备好时通知你。" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "我们会在找到你的朋友时发送通知。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我们将向 <0>{0} 发送一封含有链接的电子邮件,请点击邮件内容来完成电子邮箱的验证流程。" @@ -12779,12 +13406,12 @@ msgstr "我们在初始化年龄验证流程时遇到了问题,请<0>联系支 msgid "We're having network issues, try again" msgstr "我们遇到了网络问题,请再试一次" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "我们遇到了网络问题,请再试一次" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "为你介绍 Bluesky 的全新认证机制 —— 认证徽章。" @@ -12814,12 +13441,12 @@ msgstr "很抱歉,无法完成你的搜索。请几分钟后重试。" msgid "We're sorry, you cannot access this screen at this time." msgstr "很抱歉,你目前无法访问此页面。" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!你回复的帖文已被删除。" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "很抱歉!我们找不到你正在寻找的页面。" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "你希望如何命名你的新手包?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "发生了什么新鲜事?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "当你点按验证徽章时,你会看到哪些组织已为其授予认证。" @@ -12878,7 +13505,7 @@ msgstr "当你点按验证徽章时,你会看到哪些组织已为其授予认 msgid "Who can interact with this post?" msgstr "哪些人可以参与这则帖文的互动?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "谁可以加入此群组及加入策略" @@ -12887,13 +13514,13 @@ msgstr "谁可以加入此群组及加入策略" msgid "Who can reply" msgstr "哪些人可以回复" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "哪些人可以获得认证?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "糟糕!" @@ -12939,19 +13566,19 @@ msgstr "此新手包为何需要受到审核?" msgid "Why should this user be reviewed?" msgstr "此用户为何需要受到审核?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: 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 "" +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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "需要把现有内容保存为草稿,以便日后编辑吗?" @@ -12960,12 +13587,12 @@ msgstr "需要把现有内容保存为草稿,以便日后编辑吗?" msgid "Write a post" msgstr "撰写一篇帖文" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "撰写帖文" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "撰写你的回复" @@ -12978,7 +13605,8 @@ msgstr "作家" msgid "Wrong DID returned from server. Received: {0}" msgstr "服务器返回了错误的 DID。接收到的 DID: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "对话类型错误" @@ -13005,11 +13633,11 @@ msgstr "是,删除我的账户" msgid "Yes, delete this starter pack" msgstr "确定删除此新手包" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "确定分离" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "确定隐藏" @@ -13030,17 +13658,17 @@ 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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" -msgstr "" +msgstr "你屏蔽了 {0}" #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "You are blocking the chat owner" -msgstr "" +msgstr "你屏蔽了对话所有者" #: src/components/dms/MessagesListBlockedFooter.tsx:83 msgid "You are blocking this person" -msgstr "" +msgstr "你正在屏蔽这个人" #: src/components/forms/HostingProvider.tsx:46 msgid "You are creating an account on" @@ -13068,7 +13696,7 @@ msgstr "你已开始直播" msgid "You are no longer live" msgstr "你已停止直播" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "你目前无法上传视频。" @@ -13117,21 +13745,30 @@ msgstr "你可以随时选择退出并删除数据" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "你可以自定义应用内的对话通知是否播放提示音" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "无论使用哪种设置,都不会影响已发起的对话。" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "你现在可以使用新密码登录。" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "你目前只能保存最多 1000 个字符的草稿。" @@ -13139,11 +13776,11 @@ msgstr "你目前只能保存最多 1000 个字符的草稿。" msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "你目前只能保存最多 1000 个字符的草稿,你想在查看其他草稿之前放弃这则帖文内容吗?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "你一次只能选择一个 GIF。" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "你一次只能选择一个视频。" @@ -13153,12 +13790,12 @@ msgstr "你可以继续登录以重新启用你的账户,其他用户将能够 #: src/components/dms/MessagesListBlockedFooter.tsx:93 msgid "You can read chat history but can’t send new messages." -msgstr "" +msgstr "你仍然可以查看对话记录,但无法发送新信息。" -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "你最多只能选择 {MAX_IMAGES, plural, other {# 张图片}}。" +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,10 +13803,15 @@ msgstr "你最多只能选择 {MAX_IMAGES, plural, other {# 张图片}}。" msgid "You can update this later from your settings." msgstr "你可以随时在设置里重新更改。" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 -msgid "You cannot create a group chat yet." +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "你暂时无法创建群组对话。" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13197,6 +13839,10 @@ msgstr "你还没有已保存的动态源。" msgid "You got here first" msgstr "你是第一个抵达这里的人" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "你已被移出此群组,无法使用此邀请链接再次加入。" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "你已成功验证电子邮箱地址,现在你可以关闭此对话框 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "你已暂时达到视频上传的限制。请稍后再试。" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "你有未保存的更改,需要保存吗?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "你必须年满13周岁才能使用 Bluesky,阅读我们的<0>服务条款以获取更多资讯。" @@ -13332,11 +13982,12 @@ msgstr "你必须年满13周岁才能使用 Bluesky,阅读我们的<0>服务 msgid "You must be following at least seven other people to generate a starter pack." msgstr "你必须至少关注 7 个人以创建新手包。" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "你必须授权访问照片图库以保存二维码" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "你必须授予权限以访问媒体内容。" @@ -13344,6 +13995,10 @@ msgstr "你必须授予权限以访问媒体内容。" msgid "You need to verify your email address before you can enable email 2FA." msgstr "你需要验证你的电子邮箱地址才能启用电子邮箱两步验证。" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "你可能需要重启应用程序。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "你作出了 {0} 反应" @@ -13368,8 +14023,13 @@ msgstr "你对 {target} 作出了 {0} 反应" msgid "You recently changed your birthdate" msgstr "你最近修改了你的出生日期" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "你将登出所有账户。" @@ -13378,11 +14038,11 @@ msgstr "你将登出所有账户。" msgid "You will no longer receive notifications for {0}" msgstr "你将不再收到 {0} 的动态提醒" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "你将不再收到这条讨论串的通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "你将收到这条讨论串的通知" @@ -13390,12 +14050,12 @@ msgstr "你将收到这条讨论串的通知" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "你:{message}" @@ -13429,6 +14089,10 @@ msgstr "你将开始收到 {0} 的动态提醒!" msgid "You'll stay updated with these feeds" 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 "轮到你了" @@ -13463,7 +14127,7 @@ msgstr "你已到达内容的结尾。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你已经浏览完动态源的所有帖文啦!寻找一些更多的账户关注吧。" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "你已达到最大草稿保存数量" @@ -13475,11 +14139,11 @@ msgstr "你已达到请求上限,请稍后再试。" msgid "You've reached the start of the active content." msgstr "你已到达内容的开头。" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "你已达到每日上传视频上限(文件太大)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "你已达到每日上传视频上限(数量太多)" @@ -13499,10 +14163,18 @@ msgstr "你的账户已删除,有缘再会! ✌️" msgid "Your account has been suspended" msgstr "你的账户已被冻结" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "你的账户注册时间过短,暂时无法上传视频。请稍后再试。" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "你的账户创建时间太短了" + +#: src/components/dms/InitiateChatFlow.tsx:732 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "要建立新的群组对话,你的账号必须创建至少 7 天以上。" + #: 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 "你可以将你的账户数据导出为一个“CAR”文件,该文件包含了该账户所有公开的数据记录,但不包括任何嵌入媒体,例如图像或你的私人资料,这些数据需要另外获取。" @@ -13519,7 +14191,7 @@ msgstr "已提交申诉。如果申诉成功,我们会通过电子邮件通知 msgid "Your birth date" msgstr "你的出生日期" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "你的对话功能已被停用" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "你的联系人 {firstAuthorLink} 已加入 Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "你的联系人 {firstAuthorName} 已加入 Bluesky" @@ -13561,7 +14233,7 @@ msgstr "你的电子邮件" msgid "Your email appears to be invalid." msgstr "你的电子邮箱似乎无效。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "你的电子邮箱尚未验证,请验证你的电子邮箱以便继续使用 Bluesky 的所有功能。" @@ -13582,7 +14254,7 @@ msgstr "你的“Following”动态源看起来空荡荡的。快去关注更多 msgid "Your full handle will be <0>@{0}" msgstr "你的完整账户代码将修改为 <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "已更新你的位置信息。" msgid "Your muted words" msgstr "你的隐藏字词" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -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." @@ -13623,11 +14295,11 @@ msgstr "已成功更改你的密码!请你今后使用你的新密码登录 Bl msgid "Your password must be at least 8 characters long." msgstr "你输入的密码至少应包含 8 个字符。" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "已发布你的帖文" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "已发布你的帖文" @@ -13635,7 +14307,7 @@ msgstr "已发布你的帖文" msgid "Your preferred language" msgstr "你的主要语言" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "你的头像" @@ -13648,12 +14320,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 "其他 Bluesky 用户将无法看到你的个人资料、帖文、列表与其他相关个人信息。你可以随时登录以重新启用你的账户。" -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "已发布你的回复" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "你的举报信息将提交给 <0>{0}。" @@ -13661,7 +14333,7 @@ msgstr "你的举报信息将提交给 <0>{0}。" msgid "Your selected interests help us serve you content you care about." msgstr "你选择的兴趣主题将帮助我们提供更多你想看到的内容。" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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-HK/messages.po b/src/locale/locales/zh-HK/messages.po index 47d6c0ebff..42e9c820e3 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Chinese Traditional, Hong Kong\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "「{interestsDisplayName}」類別(已揀選)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(包含嵌入內容)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# 人讚佢} other {# 人讚佢}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# 個成員}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# 分鐘} other {# 分鐘}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# 個月} other {# 個月}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +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:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {# 個人}}畀咗個 {1} 反應" @@ -109,15 +118,15 @@ msgstr "{0, plural, one {# 秒鐘} other {# 秒鐘}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# 條未讀} other {# 條未讀}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" msgstr "" @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> - <1>文字同標籤" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: 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:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "" @@ -206,7 +215,7 @@ msgid "{0} following" msgstr "{0} 個跟緊" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" msgstr "" @@ -264,7 +273,7 @@ msgstr "已輸入 {0} 個字元,最多輸入 50 個字元" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} 畀咗個 {1} 反應" @@ -290,7 +299,7 @@ msgstr "" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "" @@ -309,15 +318,40 @@ msgstr "{0},嚟自 {1} 清單" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "{0} 嘅頭像" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "{0}嘅頭像" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} 分鐘前" msgid "{0}s" msgstr "{0} 秒鐘前" +#: 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/InboxRequests.tsx:33 +#: 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:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# 條未讀} other {# 條未讀}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +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 "" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {個鐘} other {個鐘}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分鐘} other {分鐘}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 同<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}授予咗你驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 跟返你" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} 讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} 轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 授予咗你驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 人} other {另外 {formattedAuthorsCount} 人}}跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, one {另外 {formattedAuthorsCount} 個人} other {另外 {formattedAuthorsCount} 個人}}用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 同{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}授予咗你驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 跟咗你" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 跟返你" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 讚咗你嘅自訂動態源" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 讚咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} 讚咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 撤回咗你帳號嘅驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 轉發咗你嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} 轉發咗你轉發嘅帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 用咗你嘅新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 授權咗你驗證" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} 授權咗你驗證" msgid "{following} following" msgstr "{following} 個跟緊" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "" @@ -547,7 +606,7 @@ msgstr "" msgid "{handle} can't be messaged" msgstr "唔得同 {handle} 傳送訊息" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "傳送唔到訊息畀 {handle}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, other {# 個鐘 {minutesString}}}" msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, other {# 個鐘}}" +#. 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:220 +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!" @@ -576,12 +645,12 @@ msgstr "{MAX_DESCRIPTION, plural, other {簡介太長,唔得超過 # 個字元 msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {名稱太長,唔得超過 # 個字元。}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {你最多可以隱藏 # 條回覆。}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" msgstr "" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} 向 {target} 畀咗個 {0} 反應" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}:{message}" @@ -607,11 +676,11 @@ msgstr "{name} 至愛嘅人同動態源⸺快啲嚟加入啦!" msgid "{name}'s starter pack" msgstr "{name} 嘅新手包" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# 條未讀} other {# 條未讀}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {搵到 # 個聯絡人}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, other {# 個邀請}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "{requestCount}+ 個請求" @@ -656,6 +725,12 @@ msgstr "{userName} 已取得驗證" msgid "{userName}'s verifications" msgstr "{userName} 嘅驗證" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}、<1>{1} 同{2, plural, one {另外 # } other {另外 # } #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {個擁躉} other {個擁躉}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {個跟緊} other {個跟緊}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {人讚佢}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {次引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {次轉發}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, other {次收藏}}" @@ -736,7 +811,7 @@ msgid "<0>{0} members" msgstr "<0>{0} 嘅成員" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" msgstr "" @@ -795,8 +870,13 @@ msgstr "發生網絡錯誤,請檢查你嘅網絡連線狀態" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "發生網絡錯誤,請檢查你嘅網絡連線狀態。" @@ -804,7 +884,7 @@ msgstr "發生網絡錯誤,請檢查你嘅網絡連線狀態。" msgid "A new code has been sent" msgstr "已傳送新代碼" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "全新嘅驗證機制" @@ -827,11 +907,11 @@ msgstr "呢張係個人檔案頁面嘅截圖,「跟佢」掣隔籬有隻鐘仔 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 "呢張係帖文編輯器嘅截圖,「發布」掣隔籬多咗粒寫住「草稿」嘅新掣,仲有彩虹煙花特效。下低輸入框寫住:「喂,收到風未?Bluesky 而家有草稿功能喇!!!」。" -#: src/components/dms/dialogs/NewChatDialog.tsx:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "虐待或歧視行爲" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "接受" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "接受邀請" @@ -860,17 +950,26 @@ msgstr "接受邀請" msgid "Accept this language suggestion" msgstr "套用此建議語言" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "無障礙" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "無障礙設定" msgid "Account" msgstr "帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "已封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "已跟蹤帳號" @@ -899,7 +998,7 @@ msgstr "帳號已被停權" msgid "Account is deactivated" msgstr "帳號已停用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "帳號提供者" msgid "Account removed from quick access" msgstr "已從快速存取度移除帳號" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "已解除封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "已唔再跟蹤帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "已唔再靜音帳號" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "帶有圓齒藍色剔號徽章嘅帳號<0><1/>可以授權驗證其他帳號。呢啲受信任嘅驗證者係由 Bluesky 官方所揀。" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "其他人嘅動態" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "動態通知" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "新增" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "新增替代文字(可選)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "加多另一條帖文" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "加多另一條帖文到討論串" @@ -1035,7 +1130,7 @@ msgstr "新增應用程式專用密碼" msgid "Add App Password" msgstr "新增應用程式專用密碼" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "加入自動化標記到此帳號" @@ -1043,7 +1138,7 @@ msgstr "加入自動化標記到此帳號" msgid "Add emoji reaction" msgstr "加入 Emoji 反應" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "加入羣組傾偈成員" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "加入媒體到帖文" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "補充更多資料(可選)" @@ -1091,6 +1186,10 @@ msgstr "加人" 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 "加入反應" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "" @@ -1165,12 +1264,12 @@ msgstr "加緊成員到清單……" msgid "Additional details (limit 1000 characters)" msgstr "補充資訊(1000 個字元以內)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "補充資訊(300 個字元以內)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "管理員" @@ -1228,12 +1327,12 @@ msgstr "已提交年齡驗證資訊" msgid "Age assurance only takes a few minutes" msgstr "淨係用幾分鐘就攪掂年齡認證" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "所有" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "" @@ -1278,13 +1377,13 @@ msgstr "允許取用你嘅私人訊息" msgid "Allow anyone to reply" msgstr "允許任何人回覆" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "" @@ -1338,12 +1437,12 @@ msgstr "有咗帳號?" msgid "Already signed in as @{0}" msgstr "用咗 @{0} 身分登入" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "替代文字" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "替代文字" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "加入替代文字會幫盲人同視障人士講述圖片內容,同埋幫助每個人提供更多資料。" @@ -1387,7 +1486,7 @@ msgstr "發生錯誤" msgid "An error occurred" msgstr "發生錯誤" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "壓縮影片嗰陣發生錯誤。" @@ -1421,7 +1520,8 @@ msgstr "撈緊影片嗰陣發生錯誤。唔該試多次。" msgid "An error occurred while loading your lists :/" msgstr "撈緊清單嗰陣發生錯誤 :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "儲存 QR Code 嗰陣發生錯誤!" @@ -1432,11 +1532,11 @@ msgstr "儲存 QR Code 嗰陣發生錯誤!" msgid "An error occurred while trying to follow all" msgstr "試緊跟晒所有帳號嗰陣發生錯誤" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "上載影片嗰陣發生錯誤。{message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "上載影片嗰陣發生錯誤。請檢查你嘅網絡連線狀態,跟住試多次。" @@ -1456,24 +1556,28 @@ msgstr "一張插圖,展示用戶頭像從聯絡人湧入去 Bluesky 應用程 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Bluesky 嘅幾條帖文嘅插圖,旁邊仲有轉發、讚好同留言嘅圖標" +#: 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 "呢張插圖說明 Bluesky 所揀受信任嘅驗證者,兼由受信任嘅驗證者授權驗證個別嘅帳號。" -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." +#: 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:85 +#: 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:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." msgstr "" @@ -1485,12 +1589,12 @@ msgstr "開啓傾偈嗰陣出咗問題" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "出咗問題,唔該試多次。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "一張使用 iPhone 嘅示範圖,顯示住 Bluesky 應用程式開咗喺一個驗證咗用戶嘅個人檔案度,喺佢哋名稱隔籬有個藍色剔號標記。" @@ -1539,13 +1643,17 @@ msgstr "任何人" msgid "Anyone can interact" msgstr "任何人都可以參與互動" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "" @@ -1555,11 +1663,11 @@ msgstr "" msgid "Anyone who follows me" msgstr "跟我嘅人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "密碼名稱必須至少有 4 個字元" msgid "App passwords" msgstr "應用程式專用密碼" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "應用程式專用密碼" @@ -1618,7 +1726,7 @@ msgstr "申請解除直播停權" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "已提交申訴" @@ -1632,14 +1740,14 @@ msgstr "申請解除停權" msgid "Appeal Suspension" msgstr "申請解除停權" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "套用 Pull Request" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "封存於 {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "封存咗嘅帖文" @@ -1675,7 +1783,7 @@ msgstr "你眞係確定要繼續?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "你確定要刪咗呢個應用程式專用密碼「{0}」?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "你確定要刪咗呢條訊息?呢條訊息淨係會幫你刪咗佢,但係其他人仲係睇到。" @@ -1688,23 +1796,29 @@ msgstr "你確定要刪咗個新手包?" msgid "Are you sure you want to discard your changes?" msgstr "你確定要放棄你嘅變更?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "你確定要離開 {groupName}?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "你確定要離開呢個對話?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "你確定要離開呢個對話?你嘅訊息會喺你嗰邊刪除,但係其他參與者仲係睇到。" +#: src/components/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 "你確定要喺你嘅動態源度刪除呢個?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "你確定要放棄發布呢條帖文?" @@ -1724,8 +1838,8 @@ msgstr "藝術" msgid "Artistic or non-erotic nudity." msgstr "藝術或非情色嘅裸體。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "爲演算法指定主題" @@ -1752,7 +1866,7 @@ msgstr "自動化帳號" msgid "Automation label" msgstr "機械人標記" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "機械人標記" @@ -1767,12 +1881,12 @@ msgstr "自動播放影片同 GIF" msgid "Available" msgstr "用到" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "用到" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "用到" msgid "Back" msgstr "返去" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "返去傾偈" @@ -1832,7 +1948,7 @@ msgstr "喺你讚寫帖文或回覆之前,你必須驗證你嘅電郵先。" msgid "Before creating a starter pack, you must first verify your email." msgstr "喺建立新手包之前,你必須驗證你嘅電郵先。" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "喺你接受呢個傾偈邀請之前,你必須驗證你嘅電郵先。" @@ -1840,13 +1956,14 @@ msgstr "喺你接受呢個傾偈邀請之前,你必須驗證你嘅電郵先。 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "喺你接收 {name} 帖文通知之前,你必須驗證你嘅電郵。" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "喺你傳送訊息畀其他人之前,你必須驗證你嘅電郵先。" @@ -1874,45 +1991,39 @@ msgstr "出世日期" msgid "Birthday" msgstr "生日" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "封鎖" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "封鎖 {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "封鎖帳號" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "封鎖帳號?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" msgstr "" @@ -1926,7 +2037,7 @@ msgstr "" msgid "Block list" msgstr "封鎖清單" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "封鎖或擧報" @@ -1936,9 +2047,9 @@ msgstr "係咪要封鎖呢啲帳號?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "封鎖用戶" @@ -1946,9 +2057,9 @@ msgstr "封鎖用戶" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "封鎖用戶" -#: src/components/dms/AfterReportDialog.tsx:180 +#: src/components/dms/AfterReportDialog.tsx:185 msgid "Block user and/or delete this conversation" msgstr "封鎖呢個用戶或刪除呢個對話(複選)" @@ -1956,7 +2067,7 @@ msgstr "封鎖呢個用戶或刪除呢個對話(複選)" msgid "Block user and/or leave this conversation" msgstr "" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "已被封鎖" @@ -1964,14 +2075,12 @@ msgstr "已被封鎖" msgid "Blocked accounts" msgstr "被封鎖嘅帳號" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "封鎖咗嘅帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "被封鎖嘅帳號唔得喺你嘅討論串度回覆、提及你或用其他方式同你互動。" @@ -1987,7 +2096,7 @@ msgstr "封鎖唔會阻止呢個用戶標記你嘅帳號。" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "封鎖嘅帳號公開。被封鎖嘅帳號唔得喺你嘅討論串度回覆、提及你或用其他方式同你互動。" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "封鎖帳號唔會阻止佢標記你嘅帳號,但係會阻止佢喺你嘅討論串度回覆或同你互動。" @@ -2000,7 +2109,7 @@ msgstr "網誌" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期嘅真實性。" @@ -2029,7 +2138,7 @@ msgstr "Bluesky 係要同多啲天友玩先正!" msgid "Bluesky is more fun with friends" msgstr "同你班 Friend 一齊玩 Bluesky 先過癮" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "同你班 Friend 一齊玩 Bluesky 先過癮!匯入你嘅聯絡人睇吓邊個喺度用緊。" @@ -2037,11 +2146,15 @@ msgstr "同你班 Friend 一齊玩 Bluesky 先過癮!匯入你嘅聯絡人睇 msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "同你班 Friend 一齊玩 Bluesky 先過癮。你想邀請啲朋友加入嗎?<0/>" +#: 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 "Bluesky Social 服務條款" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky 將你嘅聯絡人儲存成加密資訊,刪除聯絡人亦都會即刻刪除此資訊。" @@ -2053,7 +2166,7 @@ msgstr "Bluesky 將會喺你社交網絡度揀一啲推薦嘅帳號。" msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky 官方平臺唔會向未登入嘅用戶顯示你嘅個人檔案同帖文,但其他 App 未必會聽 Bluesky 支笛。佢哋唔會令你嘅帳號成爲非公開狀態。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky 官方會主動幫一啲出名同眞實嘅帳號授權驗證。" @@ -2081,6 +2194,10 @@ msgstr "書" 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" @@ -2137,24 +2254,34 @@ msgstr "商業" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "嚟自 {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "嚟自 <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" msgstr "" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 @@ -2181,10 +2308,14 @@ msgstr "建立帳號即係表示你同意<0>服務條款。" msgid "By you" msgstr "你所建立" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "相機" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "相機" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "相機" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "咪喇" @@ -2248,9 +2384,9 @@ msgstr "取消重新啓動兼登出" msgid "Cancel search" msgstr "唔再搵嘢" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "唔得同被封鎖嘅用戶互動" @@ -2264,7 +2400,7 @@ msgstr "字幕(.vtt)" msgid "Captions & alt text" msgstr "字幕同替代文字" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "輪播" @@ -2297,7 +2433,7 @@ msgstr "變更應用程式語言" msgid "Change Handle" msgstr "變更帳號代碼" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "切換內容審覈服務" @@ -2310,11 +2446,11 @@ msgstr "變更密碼" msgid "Change password dialog" msgstr "變更密碼對話框" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "變更擧報類別" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "變更擧報理由" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "傾偈" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "已刪除傾偈" @@ -2361,6 +2497,12 @@ msgstr "已刪除傾偈" msgid "Chat ended" msgstr "" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "傾偈已鎖定" @@ -2373,35 +2515,44 @@ msgstr "傾偈訊息 - 靜音" msgid "Chat messages - sound" msgstr "傾偈訊息 - 聲音" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "已靜音傾偈" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 msgid "Chat recipient is not followed by the sender." msgstr "" -#: src/Navigation.tsx:588 +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "傾偈請求收件箱" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "傾偈邀請" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "傾偈設定" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "傾偈設定" @@ -2418,14 +2569,14 @@ msgstr "傾偈標題經已改成 {0}" msgid "Chat unlocked" msgstr "傾偈已解鎖" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "已唔再靜音傾偈" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "傾偈" @@ -2479,7 +2630,7 @@ msgstr "揀選帖文語言" msgid "Choose this color as your avatar" msgstr "用呢隻色做你嘅頭像背景" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "" @@ -2558,7 +2709,7 @@ msgstr "撳呢度登出" msgid "Click here to resend the email" msgstr "撳呢度重新傳送電郵" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "撳呢度重新開始驗證流程。" @@ -2567,7 +2718,7 @@ msgstr "撳呢度重新開始驗證流程。" msgid "Click here to update your birthdate" msgstr "撳呢度更新你嘅出世日期" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "撳呢度更新你嘅電郵" @@ -2580,7 +2731,7 @@ msgstr "" msgid "Click to open tag menu for {0}" msgstr "撳低去打開 {0} 嘅標籤選單" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "撳低去試多次傳送訊息" @@ -2594,28 +2745,30 @@ msgstr "撳低去試多次傳送訊息" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "撳低去試多次傳送訊息" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "閂" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "閂咗目前嘅對話框" @@ -2647,6 +2800,10 @@ msgstr "閂咗目前嘅對話框" msgid "Close alert" msgstr "閂咗警示" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "閂咗下低櫃桶" @@ -2657,8 +2814,10 @@ msgstr "閂咗下低櫃桶" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "閂咗對話框" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "閂咗圖片" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "閂呢個對話框" @@ -2695,18 +2866,22 @@ msgstr "刪咗歡迎介面" msgid "Closes password update alert" msgstr "閂咗密碼更新警示" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "閂咗帖文編輯器兼棄置草稿" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "摺疊用戶清單" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "摺疊特定通知嘅用戶清單" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "漫畫" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "社羣準則" @@ -2740,12 +2915,12 @@ msgstr "完成呢個挑戰" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "撰寫新帖文" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰寫最多 {0, plural,other {# 個字元}}嘅帖文" @@ -2753,11 +2928,11 @@ msgstr "撰寫最多 {0, plural,other {# 個字元}}嘅帖文" msgid "Compose reply" msgstr "撰寫回覆" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "壓縮緊 GIF……" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "壓縮緊條片……" @@ -2780,7 +2955,7 @@ msgstr "已喺 <0>內容審覈設定 度設定。" msgid "Confirm" msgstr "確認" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "聯絡支援" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "事緣呢隻 App 取用唔到你嘅聯絡人資訊,導致用唔到呢部裝置嘅聯絡人同步功能。" @@ -2825,11 +3000,11 @@ msgstr "事緣呢隻 App 取用唔到你嘅聯絡人資訊,導致用唔到呢 msgid "Contact us" msgstr "聯絡我哋" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "已匯入聯絡人" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "已刪除聯絡人" @@ -2842,7 +3017,7 @@ msgstr "內容同媒體" msgid "Content and media" msgstr "內容同媒體" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "內容同媒體" @@ -2889,7 +3064,7 @@ msgstr "內容選單背景,撳低去閂咗選單。" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "繼續撈啲討論串" msgid "Continue thread..." msgstr "繼續撈啲討論串……" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "繼續設定羣組名稱" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "對話" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "已刪除對話" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "已刪除對話" @@ -2941,13 +3116,20 @@ 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:162 msgid "Copied build version to clipboard" msgstr "複製咗組建版本去剪貼簿喇" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "複製咗喇!" msgid "Copies build version to clipboard" msgstr "已複製構建版本到剪貼簿" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "複製" @@ -2997,6 +3184,11 @@ msgstr "複製 DID" msgid "Copy host" msgstr "複製 Host" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "複製清單連結" msgid "Copy link to post" msgstr "複製貼文連結" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "複製個人檔案連結" @@ -3027,8 +3219,8 @@ msgstr "複製個人檔案連結" msgid "Copy link to starter pack" msgstr "複製新手包連結" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "複製訊息文字" @@ -3037,12 +3229,12 @@ msgstr "複製訊息文字" msgid "Copy post at:// URI" msgstr "複製貼文 at:// 連結" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "複製帖文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "複製 QR Code" @@ -3052,11 +3244,15 @@ msgstr "複製 TXT 記錄值" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "版權政策" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "連唔到線到自訂動態源" @@ -3065,7 +3261,15 @@ msgstr "連唔到線到自訂動態源" msgid "Could not connect to feed service" msgstr "連唔到線到動態源服務" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" +msgstr "" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +msgid "Could not download – please try again" +msgstr "" + +#: src/screens/Messages/components/MessageInputEmbed.tsx:200 msgid "Could not fetch post" msgstr "" @@ -3073,23 +3277,27 @@ msgstr "" msgid "Could not find profile" msgstr "搵唔到個人檔案" -#: src/screens/Settings/FindContactsSettings.tsx:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "跟唔到所有確認嘅聯絡人。{0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "離開唔到傾偈" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "撈唔到動態源" @@ -3100,7 +3308,11 @@ msgstr "撈唔到動態源" msgid "Could not load list" msgstr "撈唔到清單" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "靜音唔到對話" @@ -3108,11 +3320,19 @@ msgstr "靜音唔到對話" msgid "Could not process your video" msgstr "處理唔到你條片" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "存唔到呢啲變更:{0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "更新唔到通知設定" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "建立" @@ -3153,13 +3373,13 @@ msgstr "建立清單" msgid "Create a list from this starter pack" msgstr "從呢個新手包建立清單" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "建立一個新手包" @@ -3174,13 +3394,14 @@ msgstr "幫我建立一個新手包" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "建立一個帳號" msgid "Create an account without using this starter pack" msgstr "唔用呢個新手包註冊帳號" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "或建立一個頭像" @@ -3206,7 +3427,7 @@ msgstr "或建立一個頭像" msgid "Create another" msgstr "建立多一個" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "建立羣組傾偈" @@ -3228,19 +3449,20 @@ msgstr "從新手包建立清單" msgid "Create moderation list" msgstr "建立內容審覈清單" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "建立新帳號" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "擧報 {0}" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "建立於 {0}" @@ -3270,6 +3492,10 @@ msgstr "已封鎖此清單建立者" msgid "Culture" msgstr "文化" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "深色主題" msgid "Date of birth" msgstr "出世日期" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "預設" msgid "Default icons" msgstr "預設圖標" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "刪除應用程式專用密碼" msgid "Delete app password?" msgstr "係咪要刪咗呢個應用程式專用密碼?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "刪除傾偈" @@ -3378,19 +3612,19 @@ msgstr "刪除傾偈" msgid "Delete chat declaration record" msgstr "刪除傾偈申報記錄" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "刪除聯絡人" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "幫我刪除" @@ -3399,11 +3633,11 @@ msgstr "幫我刪除" msgid "Delete list" msgstr "刪除清單" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "刪除訊息" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "淨係刪我嗰度嘅訊息" @@ -3411,9 +3645,9 @@ msgstr "淨係刪我嗰度嘅訊息" msgid "Delete my account" msgstr "刪除我嘅帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "刪除帖文" @@ -3430,17 +3664,17 @@ msgstr "係咪要刪除新手包?" msgid "Delete this list?" msgstr "係咪要刪咗呢份清單?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "係咪要刪咗呢條帖文?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "已刪除" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "刪除咗嘅帳號" @@ -3471,12 +3705,12 @@ msgstr "" msgid "Descriptive alt text" msgstr "描述性替代文字" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "拆開引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "係咪要拆開引用帖文?" @@ -3507,13 +3741,13 @@ msgstr "對話框:調整邊啲人可以喺呢條帖文度互動" msgid "Dim" msgstr "昏暗" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "停用雙重驗證" @@ -3521,7 +3755,7 @@ msgstr "停用雙重驗證" msgid "Disable captions" msgstr "關閉字幕" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "停用電郵雙重驗證" @@ -3534,8 +3768,8 @@ msgstr "停用電郵雙重驗證" msgid "Disable haptic feedback" msgstr "停用觸覺回饋" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "" @@ -3547,7 +3781,7 @@ msgstr "拒絕其他人引用呢條帖文" msgid "Disable replies entirely" msgstr "徹底關閉回覆" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "" @@ -3560,9 +3794,9 @@ msgstr "停用" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "棄置" msgid "Discard changes?" msgstr "係咪要放棄變更?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "係咪要放棄發布?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "中斷連結 Germ DM" @@ -3609,15 +3843,16 @@ msgstr "發掘新嘅動態源" msgid "Discover New Feeds" msgstr "發掘新嘅動態源" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "跳過" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "忽略提示" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "跳過錯誤" @@ -3642,6 +3877,10 @@ msgstr "忽略此部分" 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" @@ -3673,7 +3912,7 @@ msgstr "唔包括裸體。" msgid "Domain verified!" msgstr "已驗證網域!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "未有代碼定係要個新嘅代碼?<0>撳呢度。" @@ -3681,7 +3920,7 @@ msgstr "未有代碼定係要個新嘅代碼?<0>撳呢度。" msgid "Don’t see a code? <0>Click here to resend." msgstr "未收到驗證碼?<0>撳呢度重新傳送。" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "未有見到電郵?<0>撳呢度重新傳送。" @@ -3700,16 +3939,21 @@ msgstr "唔使驚!你所有現存嘅訊息同設定經已儲存,只要驗證 #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "攪掂" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "撳兩吓或撳住訊息去加入反應" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "撳兩吓閂咗呢個對話框" @@ -3737,19 +3981,14 @@ msgstr "撳兩吓閂咗呢個對話框" 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 "下載 Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "下載 CAR 檔案" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "下載 CAR 檔案" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "下載傾偈資料" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "下載傾偈資料" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "因應你身處地區嘅法例規定,Bluesky 部分功能目前受到 msgid "Duration:" msgstr "持續時間:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "例如:alice" @@ -3823,9 +4079,8 @@ msgstr "例如:不停用廣告洗版嘅用戶。" msgid "Eating disorders" msgstr "飲食失調" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "編輯" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "編輯頭像" @@ -3847,19 +4102,19 @@ msgstr "編輯頭像" msgid "Edit Feeds" msgstr "編輯動態源" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "編輯圖片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "編輯互動設定" @@ -3868,7 +4123,16 @@ msgstr "編輯互動設定" msgid "Edit interests" msgstr "編輯心水主題" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "" @@ -3886,20 +4150,15 @@ msgstr "編輯直播狀態" msgid "Edit moderation list" msgstr "編輯內容審覈清單" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "編輯我嘅動態源" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "編輯名稱" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "編輯嚟自 {0} 嘅動態通知" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "編輯用戶" @@ -3912,12 +4171,12 @@ msgstr "編輯帖文互動設定" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "編輯個人檔案" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "編輯個人檔案" @@ -3925,7 +4184,8 @@ msgstr "編輯個人檔案" msgid "Edit starter pack" msgstr "編輯新手包" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "編輯此羣組傾偈名稱" @@ -3937,7 +4197,7 @@ msgstr "編輯用戶清單" msgid "Edit who can reply" msgstr "調整邊啲人可以回覆" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "編輯你嘅新手包" @@ -3971,7 +4231,7 @@ msgstr "電郵地址" msgid "Email Resent" msgstr "重新傳送電郵" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "已傳送電郵!" @@ -4006,8 +4266,8 @@ msgstr "將呢條帖文嵌入到你嘅網站嘅話,淨係需要複製下低程 msgid "Embedded video player" msgstr "嵌入式影片播放器" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "啓用" @@ -4025,7 +4285,7 @@ msgstr "啓用成人內容" msgid "Enable captions" msgstr "啓用字幕" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "啓用電郵雙重驗證" @@ -4038,13 +4298,12 @@ msgstr "啓用外部媒體" msgid "Enable media players for" msgstr "啓用媒體播放器" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "去到此帳號嘅個人檔案,撳<0>鐘仔圖標,即可收到該帳號動態通知<1/>。" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "啓用推播通知" @@ -4091,8 +4350,8 @@ msgstr "輸入密碼" msgid "Enter a word or tag" msgstr "輸入字詞或標籤" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "輸入代碼" @@ -4143,12 +4402,12 @@ msgstr "進入全螢幕" msgid "Entertainment" msgstr "娛樂" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "錯誤" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "攞緊最新資料嗰陣發生錯誤。" @@ -4185,23 +4444,23 @@ msgstr "所有人都可以回覆" msgid "Everybody can reply to this post." msgstr "所有人都可以回覆呢條帖文。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "所有人" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "所有人" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "其他內容" @@ -4217,16 +4476,16 @@ msgstr "排除你跟嘅用戶" msgid "Exit fullscreen" msgstr "離開全螢幕" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "展開用戶清單" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊你覆緊嘅完整帖文" @@ -4238,7 +4497,7 @@ msgstr "展開帖文文字" msgid "Expands or collapses post text" msgstr "展開或摺疊帖文文字" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "URI 應解析爲記錄" @@ -4277,10 +4536,10 @@ msgstr "血腥、暴露或獵奇等其他可能令人反感嘅媒體內容。" msgid "Explicit sexual images." msgstr "打大赤肋嘅鹹溼相。" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "探索" @@ -4289,11 +4548,8 @@ msgstr "探索" msgid "Explore the app" msgstr "探索應用程式" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部媒體偏好設定" @@ -4331,18 +4587,22 @@ msgstr "外部媒體偏好設定" msgid "Extremist content" msgstr "極端主義內容" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "接受唔到傾偈邀請" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "加唔到 Emoji 反應" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "" @@ -4354,7 +4614,8 @@ msgstr "加唔到到新手包" msgid "Failed to change handle. Please try again." msgstr "改唔到帳號代碼,唔該試多次。" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "建立唔到應用程式專用密碼,唔該試多次。" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "建唔到對話" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "" @@ -4376,17 +4637,17 @@ msgstr "" msgid "Failed to create starter pack" msgstr "建立唔到新手包" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "刪唔到訊息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "刪唔到帖文,唔該試多次" @@ -4394,24 +4655,24 @@ msgstr "刪唔到帖文,唔該試多次" msgid "Failed to delete starter pack" msgstr "刪唔到新手包" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "中斷連結 Germ DM 嗰陣出咗問題。錯誤:{0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "編輯唔到羣組傾偈名稱" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "" @@ -4427,19 +4688,27 @@ msgstr "跟唔到你所有嘅朋友,唔該試多次" msgid "Failed to hide suggestion, please check your internet connection" msgstr "隱藏唔到建議,請檢查你嘅網絡連線狀態" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "離開唔到羣組傾偈" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "撈唔到對話" @@ -4456,17 +4725,8 @@ msgstr "撈唔到動態源" msgid "Failed to load feeds preferences" msgstr "撈唔到動態源偏好設定" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "撈唔到通知設定。" @@ -4493,16 +4753,15 @@ msgstr "撈唔到建議嘅動態源" msgid "Failed to load suggested follows" msgstr "撈唔到建議你跟嘅人" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "標記唔到所有邀請做已讀" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "靜音唔到羣組傾偈" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "固定唔到帖文" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "連唔返 Germ DM。錯誤:{0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "刪唔到資料。{0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "刪唔到 Emoji 反應" @@ -4534,7 +4793,8 @@ msgstr "刪唔到 Emoji 反應" msgid "Failed to remove from starter pack" msgstr "喺新手包度刪唔到佢" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "" @@ -4542,15 +4802,20 @@ msgstr "" msgid "Failed to remove verification" msgstr "撤回唔到認證" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "存儲唔到草稿" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "下載唔到圖片" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "儲存唔到你嘅心水主題。" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "傳送唔到郵件,唔該試多次。" @@ -4580,16 +4845,16 @@ msgstr "" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "未能提交申訴,唔該試多次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "靜音唔到討論串,唔該試多次" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "" @@ -4597,12 +4862,12 @@ msgstr "" msgid "Failed to unpin list" msgstr "取消固定唔到清單" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "更新唔到電郵,唔該試多次。" @@ -4614,7 +4879,7 @@ msgstr "更新唔到動態源" msgid "Failed to update notification declaration" msgstr "更新唔到動態通知範圍" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "更新唔到設定" @@ -4641,7 +4906,7 @@ msgstr "虛假帳號或機械人" msgid "False information about elections" msgstr "散播選擧相關虛假資訊" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "動態源" @@ -4649,7 +4914,7 @@ msgstr "動態源" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "{0} 建立嘅動態源" @@ -4662,7 +4927,7 @@ msgstr "動態源建立者" msgid "Feed identifier" msgstr "動態源 ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "動態源選單" @@ -4676,25 +4941,25 @@ msgstr "動態源目前用唔到" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "意見" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "動態源" @@ -4739,7 +5004,7 @@ msgstr "按語言篩選去搵(目前:{currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "篩選你想接收嘅通知來源" @@ -4747,11 +5012,11 @@ msgstr "篩選你想接收嘅通知來源" msgid "Finalizing" msgstr "幫緊你幫緊你" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "卒之!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "卒之嚟喇!mark 低你嘅心水帖文,收藏佢哋方便隨時重溫。" @@ -4768,19 +5033,17 @@ msgstr "財經" msgid "Find accounts to follow" msgstr "去跟更多帳號" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "尋找聯絡人" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "尋找朋友" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "從聯絡人尋找朋友" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "尋找聯絡人" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "尋找我嘅朋友" msgid "Find people to follow" msgstr "睇吓跟啲乜人好" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "喺 Bluesky 度搵帖文、用戶同埋動態源" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "尋找你嘅朋友" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "透過驗證你嘅電話號碼兼匹配聯絡人,即可尋找你 Bluesky 上嘅朋友。我哋保護你嘅資料,後續操作你話事。<0>想知多啲" @@ -4847,22 +5114,22 @@ msgstr "聚焦搵嘢欄位" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "跟佢" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "跟 {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "" @@ -4892,8 +5159,8 @@ msgstr "跟佢" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "跟晒所有帳號" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "跟返佢" @@ -4916,7 +5183,7 @@ msgstr "跟返佢" msgid "Followed all accounts!" msgstr "跟晒所有帳號!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "跟晒所有確認嘅聯絡人" @@ -4944,8 +5211,12 @@ msgstr "你識嘅 <0>{0} 同 <1>{1} 亦都跟咗佢" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "你識嘅 <0>{0}, <1>{1} 同{2, plural, one {另外 # 人亦都跟咗佢} other {另外 # 人亦都跟咗佢}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "你識嘅 @{0} 亦都跟咗佢" @@ -4960,10 +5231,10 @@ msgstr "你識嘅擁躉" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "跟緊" @@ -4977,12 +5248,12 @@ msgstr "跟緊" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "跟緊 {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "" @@ -4995,19 +5266,16 @@ msgstr "跟緊 {handle}" msgid "Following feed preferences" msgstr "「Following」動態源偏好設定" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "「Following」動態源偏好設定" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "跟緊你" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "跟緊你" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "字型" @@ -5065,11 +5333,16 @@ msgstr "唔記得密碼?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "光復 Timeline" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "嚟自" @@ -5086,82 +5359,86 @@ msgstr "嚟自 <0/>" msgid "Generate a starter pack" msgstr "生成一個新手包" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "已中斷連結 Germ DM" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM 連結" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "重新連結 Germ DM" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "尋求協助" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "喺有人跟你嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "喺有人讚你轉發嘅帖文嗰陣收到通知。" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "喺有人讚你帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "喺有人提及你嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "喺有人引用你帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "喺有人回覆你帖文嗰陣收到通知。" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "喺有人轉發你轉發嘅帖文嗰陣收到通知。" - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "喺有人轉發你帖文嗰陣收到通知。" +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "喺佢出新帖嗰陣收到通知" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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} 出新帖嗰陣收到通知" @@ -5174,27 +5451,27 @@ msgstr "喺呢個帳號有新動態嗰陣收到通知" msgid "Get notified when {name} posts" msgstr "喺 {name} 出新帖嗰陣收到通知" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "喺有人出新帖嗰陣收到通知" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF 已上載" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "整張相喺你嘅 profile 嗰度先啦" @@ -5213,20 +5490,20 @@ msgstr "歌頌暴力" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "返去" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "返去上一步" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "去返首頁" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "去返首頁" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "去返首頁" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "直播(已停用)" msgid "Go live for" msgstr "直播持續時長" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "去到 {firstAuthorName} 嘅個人檔案" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "去到帳號設定" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "同 {0} 傾偈" @@ -5296,23 +5571,23 @@ msgstr "去到動態源" msgid "Go to next" msgstr "去到下一步" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "去到「{chatName}」嘅羣組傾偈" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "去到用戶嘅個人檔案" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" msgstr "" @@ -5320,11 +5595,18 @@ msgstr "" msgid "Going live is currently disabled for your account" msgstr "你帳號嘅直播功能已被停用" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "寫實暴力內容" msgid "Grooming or predatory behavior" msgstr "性誘識行爲" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "已靜音羣組傾偈" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "羣組傾偈設定" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "已唔再靜音羣組傾偈" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "羣組傾偈暫時用唔到" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "羣組傾偈現已推出" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 msgid "Group is locked" msgstr "羣組已鎖定" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "羣組名稱" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "黑客入侵或系統攻擊" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "呢個帳號代碼太長,唔該試吓校短啲。" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "進行緊" @@ -5446,7 +5744,7 @@ msgstr "有害或高風險活動" msgid "Harming or endangering minors" msgstr "侵害或危害未成年人" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "標籤" @@ -5458,8 +5756,8 @@ msgstr "標籤 {tag}" msgid "Hate speech" msgstr "仇恨言論" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "有咗代碼?<0>撳呢度。" @@ -5479,11 +5777,11 @@ msgstr "由 Bluesky 保留 7 天以防濫用,隨後刪除" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "協助" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "上載一張相或整張頭像,等大家知道你唔係機械人。" @@ -5522,7 +5820,7 @@ msgstr "隱藏清單" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "隱藏清單" msgid "Hide" msgstr "隱藏" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "隱藏" @@ -5553,18 +5851,18 @@ msgstr "" msgid "Hide lists" msgstr "隱藏清單" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "幫我隱藏回覆" @@ -5577,19 +5875,19 @@ msgstr "隱藏呢張卡片" msgid "Hide this event" msgstr "隱藏呢個活動" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "係咪要隱藏呢條帖文?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "隱藏翻譯" @@ -5606,7 +5904,7 @@ msgstr "係咪要隱藏時興話題?" msgid "Hide trending videos?" msgstr "係咪要隱藏時興影片?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "隱藏用戶清單" @@ -5620,6 +5918,10 @@ msgstr "隱藏認證標記" msgid "Hides the content" msgstr "隱藏內容" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "咦,睇嚟你用緊<0>應用程式專用密碼登入。想設定出世日期嘅話,你需要用主帳號密碼登入,抑或搵帳號控制人幫手去攪。" @@ -5652,19 +5954,15 @@ msgstr "唔好意思,我哋好似喺撈緊數據嗰陣遇到問題。睇吓下 msgid "Hmmmm, we couldn't load that moderation service." msgstr "唔好意思,我哋撈唔到嗰個審覈服務。" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "幫緊你幫緊你!我哋而家逐步開放影片功能,而你仲喺等候名單嗰度。遲啲返嚟睇吓啦!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "首頁" @@ -5721,7 +6019,7 @@ msgstr "我明" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "我喺 Bluesky 嘅帳號係 {0} - 快啲陪我一齊玩啦!https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "若然替代文字太長,就會切換替代文字展開狀態" @@ -5757,15 +6055,15 @@ msgstr "若然你刪咗呢份清單,之後就冇得恢復。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "若然你有自己嘅網域,你可以用佢作爲你嘅帳號代碼。同時亦都可以證明你嘅身份。<0> 想知多啲 。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "若然你需要更新你嘅電郵,<0>撳呢度。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "若然你更新咗電郵地址,電郵雙重驗證將會停用。" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "若然你想限制邊個可以收到你帳號嘅動態通知,可去到<0>設定 → 私隱同保安變更呢個設定。" @@ -5786,23 +6083,23 @@ msgstr "若然你係開發人員,你可以自己托管伺服器。" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "喺停用帳號前,記得確認你係咪需要變更你嘅帳號代碼或電郵。" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "圖片" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "圖片 {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "第 {0} 張圖片(共 {1} 張)" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "第 {0} 張圖片(共 {imageCount} 張)" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "已剷走圖片快取,釋放咗 {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "相冊,{0} 張圖片" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "顯示唔到圖片。" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "冒充身份" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "匯入聯絡人" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "匯入於 {0}" @@ -5881,40 +6182,40 @@ msgstr "匯入於 {0}" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "應用程式內" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "應用程式內通知" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" -msgstr "應用程式內、所有人" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" -msgstr "應用程式內、你跟嘅人" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" -msgstr "應用程式內、推播" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" -msgstr "應用程式內、推播、所有人" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" -msgstr "應用程式內、推播、你跟嘅人" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" +msgstr "" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "收件箱乾淨晒!" @@ -5954,6 +6255,10 @@ msgstr "同你介紹草稿功能" 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 "同你介紹帖文收藏(又稱書籤)" @@ -5963,11 +6268,15 @@ msgstr "同你介紹帖文收藏(又稱書籤)" msgid "Invalid 2FA confirmation code." msgstr "雙重驗證確認碼無效。" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "無效嘅互動設定。" @@ -5977,10 +6286,15 @@ msgstr "無效嘅互動設定。" msgid "Invalid phone number" msgstr "無效嘅電話號碼" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "無效嘅擧報內容" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "無效嘅驗證碼" @@ -6001,8 +6315,15 @@ msgstr "邀請碼" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "邀請碼無效。請檢查你輸入嘅驗證碼啱定唔啱,跟住試多次。" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "邀請朋友" @@ -6010,21 +6331,31 @@ msgstr "邀請朋友" msgid "Invite friends <0/>" msgstr "邀請朋友 <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "邀請連結" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "邀請連結" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "已停用邀請連結" @@ -6040,11 +6371,16 @@ msgstr "已啓用邀請連結" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "已邀請" @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "作業 ID:{0}" @@ -6083,6 +6419,11 @@ msgstr "作業 ID:{0}" msgid "Jobs" msgstr "工作" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "工作" msgid "Join Bluesky" msgstr "加入 Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "加入對話" msgid "Journalism" msgstr "記者" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "繼續編輯" @@ -6109,6 +6460,11 @@ msgstr "繼續編輯" msgid "Keep me posted" msgstr "有新動態嗰陣通知我" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS 網站" @@ -6143,7 +6499,7 @@ msgstr "你帳號上嘅標記" msgid "Labels on your content" msgstr "你內容上嘅標記" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "語言設定" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "最新" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "想知多啲邀請朋友功能" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "想知多啲匯入聯絡人功能" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "想知多啲呢個警告" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "想知多啲 Bluesky 嘅驗證機制" @@ -6239,7 +6595,7 @@ msgstr "想知多啲 Bluesky 嘅驗證機制" msgid "Learn more about what is public on Bluesky." msgstr "想知多啲 Bluesky 上面公開嘅內容。" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "想知多啲你嘅 Germ DM 連結" @@ -6252,31 +6608,33 @@ msgstr "想知多啲去你嘅<0>帳號設定。" msgid "Learn more." msgstr "想知多啲。" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "離開" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "離開唔再傾偈" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "離開對話" @@ -6284,13 +6642,14 @@ msgstr "離開對話" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "離開對話" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "離開羣組傾偈" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "離開此羣組傾偈" @@ -6299,6 +6658,14 @@ msgstr "離開此羣組傾偈" msgid "Leaving Bluesky" msgstr "離開 Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "個人排喺你前面。" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "淺色" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "讚佢({0, plural, one {# 人讚佢} other {# 人讚佢}})" @@ -6346,11 +6713,7 @@ msgstr "讚好 10 條帖文" msgid "Like 10 posts to train the Discover feed" msgstr "讚夠 10 條帖文去訓練「Discover」動態源" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "讚好通知" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "讚好呢個動態源" @@ -6358,8 +6721,8 @@ msgstr "讚好呢個動態源" msgid "Like this labeler" msgstr "讚呢個標記服務" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "讚過" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "有 {0, plural, one {# 人} other {# 人}}讚佢" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "有 {likeCount, plural, one {# 人} other {# 人}}讚佢" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "讚好" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "讚好你轉發嘅帖文" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "讚好你轉發嘅帖文之通知" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "呢條帖文嘅讚數" @@ -6409,11 +6768,11 @@ msgstr "呢條帖文嘅讚數" msgid "Linear" msgstr "直列模式" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "清單" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "已唔再靜音清單" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "清單" @@ -6545,7 +6904,7 @@ msgstr "已唔再隱藏直播活動" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "有咩精彩嘢發生嗰陣,平臺會間唔中顯示直播活動。你可以隱藏呢個活動,抑或隱藏晒之後所有直播活動。" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "直播功能仲喺測試階段" @@ -6595,27 +6954,27 @@ msgstr "撈緊帖文互動設定……" msgid "Loading..." msgstr "撈緊……" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "鎖定" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "鎖定羣組傾偈" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "鎖定羣組傾偈?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "鎖定此羣組傾偈" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "已鎖定" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "日誌" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "LOGO 由 @sawaratsuki.bsky.social 所繪製" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "LOGO 由 <0>@sawaratsuki.bsky.social 所繪製" @@ -6662,7 +7021,7 @@ msgstr "睇落你好似唔見咗「Following」動態源喎。<0>撳呢度加返 msgid "Love GIFs" msgstr "" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "調整你帳號綁定嘅電郵設定" @@ -6687,24 +7046,22 @@ msgstr "管理驗證設定" msgid "Manage your muted words and tags" msgstr "管理你嘅靜音字詞同標籤" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "標記晒做已讀" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "標記爲已讀" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "已標記晒做已讀" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "遲啲先啦" @@ -6726,26 +7083,26 @@ msgstr "媒體已儲存到其他裝置" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能會令某啲受眾感到不安或造成不適嘅媒體內容。" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "成員" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "成員始終可以睇到傾偈記錄,但無法傳送新訊息。" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "提及通知" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "提到嘅用戶" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "提及" @@ -6761,7 +7118,7 @@ msgstr "訊息" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "訊息" @@ -6771,26 +7128,26 @@ msgstr "訊息" msgid "Message {0}" msgstr "訊息 {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "傳送訊息畀 {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "已刪除訊息" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "已刪除訊息" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "傳送唔到訊息。" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "嚟自 @{0} 嘅訊息:{1}" @@ -6813,19 +7170,19 @@ msgstr "訊息太長" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "訊息內容太長({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "訊息選項" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "傾偈" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." msgstr "" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." msgstr "" @@ -6838,10 +7195,6 @@ msgstr "半夜" msgid "Minor harassment or bullying" msgstr "輕度騷擾或欺凌" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "其他通知" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "誤導" @@ -6850,7 +7203,7 @@ msgstr "誤導" msgid "Missing media" msgstr "缺失媒體檔案" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "內容審覈" @@ -6894,7 +7247,7 @@ msgstr "已更新內容審覈清單" msgid "Moderation lists" msgstr "內容審覈清單" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "內容審覈清單" @@ -6903,7 +7256,7 @@ msgstr "內容審覈清單" msgid "moderation settings" msgstr "內容審覈設定" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "內容審覈狀態" @@ -6928,8 +7281,8 @@ msgstr "更多語言……" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "更多選項" @@ -6949,7 +7302,7 @@ msgstr "電影" msgid "Music" msgstr "音樂" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "靜音" @@ -6965,8 +7318,8 @@ msgstr "靜音" msgid "Mute {0}" msgstr "靜音 {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "靜音帳號" msgid "Mute accounts" msgstr "靜音帳號" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "靜音對話" @@ -6994,7 +7347,7 @@ msgstr "靜音清單" msgid "Mute these accounts?" msgstr "係咪要靜音呢啲帳號?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "靜音此羣組傾偈" @@ -7022,17 +7375,21 @@ msgstr "淨係靜音包含呢個字詞嘅標籤" msgid "Mute this word until you unmute it" msgstr "將呢個字詞靜音,直至你唔再靜音爲止" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "靜音討論串" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "靜音字詞同標籤" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "已靜音" @@ -7040,7 +7397,7 @@ msgstr "已靜音" msgid "Muted accounts" msgstr "靜音咗嘅帳號" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "靜音咗嘅帳號" @@ -7062,6 +7419,10 @@ msgstr "靜音字詞同標籤" 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" @@ -7104,12 +7465,12 @@ msgstr "去到新手包" msgid "Navigates to the next screen" msgstr "去到下一個畫面" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "去到你嘅個人檔案" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "需要擧報侵犯版權、法律要求,或監管合規問題?" @@ -7117,6 +7478,7 @@ msgstr "需要擧報侵犯版權、法律要求,或監管合規問題?" msgid "Nevermind, create a handle for me" msgstr "唔使喇,幫我整個帳號代碼" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "新增" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "嚟自 {firstAuthorLink} 嘅新{postsCount, plural, one {帖文} other {帖文}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "嚟自 {firstAuthorName} 嘅新{postsCount, plural, one {帖文} other {帖文}}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "同人傾偈" @@ -7163,7 +7525,7 @@ msgstr "{0} 同 {1} 嘅新傾偈" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "新嘅電郵地址" @@ -7171,32 +7533,30 @@ msgstr "新嘅電郵地址" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "新擁躉通知" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "新擁躉" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "建立羣組傾偈" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "同呢啲人建立羣組傾偈:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "新帖文" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "新帖文" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "嚟自 {firstAuthorLink} 及<0>其他 {additionalAuthorsCount, plural, one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}嘅新帖文 " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "嚟自 {firstAuthorName} 及其他 {additionalAuthorsCount, plural,one {{formattedAuthorsCount} 人} other {{formattedAuthorsCount} 人}}嘅新帖文" @@ -7262,8 +7622,8 @@ msgstr "新聞" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "下一步" msgid "Next image" msgstr "下一張圖片" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "冇廣告,冇侵入式追踪,當然亦冇成癮性設計。 Bluesky 尊重你嘅時間同注意力。" @@ -7321,7 +7685,7 @@ msgstr "未有設定過期時間" msgid "No feeds found. Try searching for something else." msgstr "搵唔到任何動態源,試吓搵過第啲。" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "而家仲未有擁躉" @@ -7335,7 +7699,7 @@ msgstr "" msgid "No GIFs to show right now. Try again in a moment." msgstr "" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "冇圖片" @@ -7353,8 +7717,8 @@ msgstr "仲未有清單" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "已唔再跟随 {0}" @@ -7362,7 +7726,7 @@ msgstr "已唔再跟随 {0}" msgid "No media yet" msgstr "而家仲未有媒體內容" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "而家仲未有訊息" @@ -7378,12 +7742,12 @@ msgstr "冇名" msgid "No notifications yet!" msgstr "而家仲未有通知!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "冇人" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "冇人" @@ -7399,7 +7763,7 @@ msgstr "冇人" msgid "No one but the author can quote this post." msgstr "凈係得作者可以引用呢篇帖文。" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "冇嘢到" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "冇嘢到" @@ -7446,8 +7810,8 @@ msgstr "冇嘢到" msgid "No results for \"{0}\"." msgstr "搵唔到「{0}」嘅結果。" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "搵唔到結果" @@ -7509,12 +7873,12 @@ msgstr "非自願嘅私密影像(NCII)" msgid "Non-sexual Nudity" msgstr "非性裸體" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -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:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "此功能喺呢個平臺用唔到。" @@ -7522,16 +7886,16 @@ msgstr "此功能喺呢個平臺用唔到。" msgid "Not followed by anyone you’re following" msgstr "" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "搵唔到" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "關於分享嘅注意事項" @@ -7548,44 +7912,31 @@ msgstr "註:呢條帖文淨係得登入咗嘅用戶先睇到。" msgid "Nothing saved yet" msgstr "而家仲未有收藏內容" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知設定" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "通知音效" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "通知" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "其他通知,譬如有人用咗你嘅新手包註冊帳號嗰陣。" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "而家" @@ -7601,7 +7952,7 @@ msgstr "必須使用電話號碼" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "顯示" @@ -7623,9 +7974,10 @@ msgstr "好嘅" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "好嘅" @@ -7648,35 +8000,35 @@ msgstr "喺<0><1/><2><3/>" msgid "Onboarding reset" msgstr "重新開始引導流程" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." msgstr "" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "部分 GIF 圖片缺少替代文字。" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "部分圖片缺少替代文字。" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "你所揀選嘅部分檔案格式唔支援。" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "你所揀選嘅部分檔案過大。最大檔案大細係 100 MB。" +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "部分影片缺少替代文字。" @@ -7685,6 +8037,26 @@ msgstr "部分影片缺少替代文字。" msgid "Only {0} can reply." msgstr "淨係得{0}可以回覆。" +#. 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:234 +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 ignore join requests." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "僅限我跟返嘅人" msgid "Only image files are supported" msgstr "淨係支援圖片檔案" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "淨係支援 WebVTT(.vtt)檔案" @@ -7703,6 +8085,10 @@ msgstr "淨係支援 WebVTT(.vtt)檔案" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "弊,出咗問題!" msgid "Oops!" msgstr "大鑊!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "打開頭像製作器" @@ -7720,12 +8106,17 @@ msgstr "打開頭像製作器" msgid "Open camera" msgstr "打開相機" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "打開 {displayName} 嘅傾偈成員選項" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "打開對話選項" @@ -7739,16 +8130,16 @@ msgstr "打開櫃桶選單" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "打開 Emoji 選擇器" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "打開動態源選項選單" @@ -7760,13 +8151,22 @@ msgstr "打開完整 Emoji 清單" msgid "Open Germ DM" msgstr "打開 Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "打開去 {niceUrl} 嘅連結" @@ -7790,11 +8190,15 @@ msgstr "打開新手包" msgid "Open post options menu" msgstr "打開帖文選項選單" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "打開故仔書頁面" msgid "Open system log" msgstr "打開系統日誌" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "打開對話框嚟喺你嘅帖文度加入內容警告" msgid "Opens a dialog to choose who can interact with this post" msgstr "打開對話框畀你揀邊啲人可以同呢條帖文互動" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "打開調試條目嘅額外詳細資訊" @@ -7838,7 +8250,7 @@ msgstr "打開調試條目嘅額外詳細資訊" msgid "Opens alt text dialog" msgstr "打開替代文字對話框" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "打開你嘅裝置上嘅相機" @@ -7858,22 +8270,24 @@ msgstr "打開帖文編輯器" msgid "Opens device camera" msgstr "打開裝置相機" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "開啓裝置相片圖庫去揀選最多 {MAX_IMAGES, plural, other {# 張圖片}}、1 條影片或 1 張 GIF。" +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +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:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "打開流程去建立一個新嘅 Bluesky 帳號" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "打開流程去登入你現有嘅 Bluesky 帳號" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "打開完整圖片" @@ -7890,7 +8304,7 @@ msgstr "打開圖片選擇器" msgid "Opens link {0}" msgstr "打開連結 {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "打開直播狀態對話框" @@ -7902,15 +8316,23 @@ msgstr "打開密碼重設表單" msgid "Opens post language settings" msgstr "打開帖文語言設定" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "打開帖文編輯器" @@ -7919,9 +8341,8 @@ msgstr "打開帖文編輯器" msgid "Opens this draft in the composer" msgstr "喺編輯器度打開呢份草稿" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "打開呢個人嘅個人檔案" @@ -7997,12 +8418,12 @@ msgstr "我哋嘅網誌文章" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "我哋嘅內容審覈服務提供者已經睇過你嘅擧報,決定停用你使用 Bluesky 嘅傾偈功能。" @@ -8010,14 +8431,15 @@ msgstr "我哋嘅內容審覈服務提供者已經睇過你嘅擧報,決定停 msgid "Owner" msgstr "擁有者" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "搵唔到頁面" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "暫停影片" msgid "People" msgstr "用戶" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "@{0} 跟咗嘅人" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "跟緊 @{0} 嘅人" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "我跟嘅人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "" @@ -8136,13 +8558,17 @@ msgstr "已驗證電話號碼" msgid "Photography" msgstr "攝影" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "固定動態源" @@ -8152,12 +8578,12 @@ msgstr "固定動態源" msgid "Pin to home" msgstr "固定到首頁" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "固定到首頁" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "固定到你嘅個人檔案" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "固定咗" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "固定 {0} 到首頁" @@ -8236,7 +8662,7 @@ msgstr "請設定你嘅帳號代碼。" msgid "Please choose your password." msgstr "請設定你嘅密碼。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "請打開我哋正話送咗去你新電郵入邊嗰條連結嚟驗證新電郵。呢個步驟關乎你可以繼續享用所有 Bluesky 嘅功能。" @@ -8244,7 +8670,7 @@ msgstr "請打開我哋正話送咗去你新電郵入邊嗰條連結嚟驗證新 msgid "Please complete the verification captcha." msgstr "請完成 Captcha 驗證(人機驗證)。" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "請先驗證你嘅電郵地址去上載影片。" @@ -8265,14 +8691,14 @@ msgstr "請輸入密碼,必須至少要 8 個字元。" msgid "Please enter a unique name for this app password or use our randomly generated one." msgstr "請幫呢個 App 專用密碼輸入一個獨特嘅名稱,或用我哋隨機產生嘅密碼。" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "請輸入有效嘅電郵地址。" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "請輸入有效、非臨時嘅電郵地址。你日後可能需要再次使用呢個電郵信箱。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "請輸入我哋傳送到 <0>{0} 嘅代碼。" @@ -8293,7 +8719,7 @@ msgstr "請輸入我哋傳送到 <0>{0} 嘅代碼。" msgid "Please enter the code you received and the new password you would like to use." msgstr "請輸入你收到嘅代碼同埋你想用嘅新密碼。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "請輸入我哋正話送咗去你電郵地址嗰個保安編碼。" @@ -8306,7 +8732,7 @@ msgstr "請輸入你嘅電郵地址。" msgid "Please enter your invite code." msgstr "請輸入你嘅邀請碼。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "請輸入你新嘅電郵地址。" @@ -8323,7 +8749,7 @@ msgstr "請輸入你嘅用戶名稱" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "請解釋點解你覺得 {0} 唔應該套用呢個標籤" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "請解釋點解你以爲我哋唔應該停用你傾偈功能" @@ -8358,7 +8784,11 @@ msgstr "請揀選你要擧報嘅理由" msgid "Please sign in as @{0}" msgstr "請用 @{0} 身份登入" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "請使用應用程式來匯入你嘅聯絡人。" @@ -8366,7 +8796,7 @@ msgstr "請使用應用程式來匯入你嘅聯絡人。" msgid "Please use the native app to sync your contacts." msgstr "請使用應用程式去同步你嘅聯絡人。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "請驗證你嘅電郵" @@ -8383,7 +8813,7 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "發布" @@ -8403,12 +8833,12 @@ msgstr "發布一張相片" msgid "Post a video" msgstr "發布一條影片" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "發晒佢哋" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "點都要發布" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "帖文經已封鎖" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} 嘅帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "已刪除帖文" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "帖文發布失敗。請檢查你嘅網絡連線狀態,跟住試多次。" @@ -8454,18 +8884,22 @@ msgstr "呢條帖文俾你隱藏咗" msgid "Post interaction settings" msgstr "帖文互動設定" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "可以根據字詞、標籤,又或兩種一齊去靜音帖文。我哋 msgid "Posts hidden" msgstr "帖文隱藏咗" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "帖文、回覆" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "潛在誤導性連結" @@ -8525,9 +8954,10 @@ msgstr "偏好語言" msgid "Press to attempt reconnection" msgstr "撳低去試吓重新連線" -#: src/components/Error.tsx:61 +#: 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 "撳低去試多次" @@ -8536,7 +8966,7 @@ msgstr "撳低去試多次" msgid "Press to view followers of this account that you also follow" msgstr "撳低去睇吓有邊啲你識嘅人跟咗呢個帳號" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "預覽" @@ -8559,26 +8989,25 @@ msgstr "私隱" msgid "Privacy and security" msgstr "私隱同保安" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "私隱同保安" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "私隱政策" @@ -8586,15 +9015,15 @@ msgstr "私隱政策" msgid "Privacy violation of a minor" msgstr "侵犯未成年人私隱" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "處理緊 GIF……" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "處理緊條片……" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "幫緊你……" @@ -8602,10 +9031,10 @@ msgstr "幫緊你……" msgid "profile" msgstr "個人檔案" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "個人檔案" @@ -8613,6 +9042,7 @@ msgstr "個人檔案" msgid "Profile banner placeholder" msgstr "個人檔案橫幅佔位標記" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "搵唔到個人檔案" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "發布帖文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "發布帖文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "發布回覆" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "發布回覆" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "推送" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "推播通知" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" -msgstr "推播,所有人" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" +msgstr "" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" -msgstr "推播,你跟嘅人" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" +msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR code 複製咗去你嘅剪貼簿喇!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "QR code 下載咗喇!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR code 存咗去你嘅相簿度喇!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "引用通知" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "引用通知" msgid "Quote post" msgstr "引用帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "已重新連結引用帖文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "已成功分離引用帖文" @@ -8711,12 +9138,12 @@ msgstr "已拒絕引用帖文" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "引用呢條篇帖文" @@ -8728,16 +9155,16 @@ msgstr "超過咗速率限制——你喺短時間內改過帳號代碼太多, msgid "Rate limit exceeded. Please try again later." msgstr "超出速率限制,唔該陣間試多次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "" @@ -8745,8 +9172,8 @@ msgstr "" msgid "React with {emoji}" msgstr "用 {emoji} 畀個反應" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "反應" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "閱讀點樣使用搵嘢篩選器" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "閱讀網誌文章" @@ -8812,11 +9239,11 @@ msgstr "眞實用戶。" msgid "Reason for appeal" msgstr "申訴理由" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "接收應用程式內通知" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "接收推播通知" @@ -8841,17 +9268,31 @@ msgstr "推薦" msgid "Reconnect" msgstr "重新連線" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "拒絕" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "撈多次對話" @@ -8863,6 +9304,8 @@ msgstr "撈多次對話" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "將 {displayName} 踢出羣組" msgid "Remove {displayName} from starter pack" msgstr "喺新手包度刪除 {displayName}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "將 {displayName} 移出此羣組傾偈" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "刪除 {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "刪除 {historyItem}" msgid "Remove account" msgstr "移除帳號" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "刪除所有聯絡人" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "刪除關聯" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "刪除頭像" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "刪除橫額" @@ -8914,8 +9362,9 @@ msgstr "刪除橫額" msgid "Remove caption file" msgstr "刪除字幕檔案" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "刪除嵌入" @@ -8929,12 +9378,12 @@ msgstr "刪除動態源" msgid "Remove feed?" msgstr "係咪要刪除動態源?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "喺傾偈度刪除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "從帖文收藏度刪除" msgid "Remove from your feeds?" msgstr "係咪要喺你嘅動態源度刪除?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "刪除圖片" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "刪除轉發" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "刪除建議" @@ -9009,11 +9458,11 @@ msgstr "撤回驗證" msgid "Remove your verification for this account?" msgstr "係咪要撤回你對呢個帳號嘅驗證?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "俾發布者刪咗" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "俾你刪咗" @@ -9035,7 +9484,7 @@ msgstr "已從帖文收藏度刪除" msgid "Removed from starter pack" msgstr "已從新手包度刪除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "覆你" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "回覆" @@ -9104,14 +9552,14 @@ msgstr "已關閉回覆" msgid "Replies to this post are disabled." msgstr "呢條帖文嘅回覆經已關閉。" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "回覆({0, plural, one {# 個回覆} other {# 個回覆}})" @@ -9125,10 +9573,6 @@ msgstr "回覆俾呢個討論串嘅發布者隱藏" msgid "Reply Hidden by You" msgstr "呢個回覆俾你隱藏咗" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "回覆通知" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "回覆設定係由討論串嘅作者所設" @@ -9137,18 +9581,18 @@ msgstr "回覆設定係由討論串嘅作者所設" msgid "Reply sorting" msgstr "回覆排序" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "已更新回覆可見度" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "成功隱藏回覆" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "擧報" @@ -9157,20 +9601,20 @@ msgstr "擧報" msgid "Report account" msgstr "擧報帳號" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "擧報對話框" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "擧報動態源" @@ -9179,12 +9623,12 @@ msgstr "擧報動態源" msgid "Report list" msgstr "擧報清單" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "擧報訊息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "擧報帖文" @@ -9199,8 +9643,8 @@ msgstr "擧報新手包" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "已提交擧報" @@ -9213,7 +9657,7 @@ msgstr "擧報此對話" msgid "Report this feed" msgstr "擧報呢個動態源" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "擧報此羣組傾偈" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "擧報呢份清單" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "擧報呢個直播" @@ -9256,10 +9700,6 @@ msgstr "轉發" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "轉發({0, plural, one {# 次轉發} other {# 次轉發}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "轉發通知" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "你所轉發" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "轉發" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "轉發呢條帖文" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "轉發你轉發嘅帖文" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "轉發你轉發帖文嘅通知" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "登入嗰陣要用埋電郵驗證碼先至得。" @@ -9328,7 +9791,17 @@ msgstr "服務提供者要求此必填" msgid "Required in your region" msgstr "你身處嘅地區要求必填" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "重新傳送" @@ -9373,8 +9846,8 @@ msgstr "去返引導流程重設個人檔案" msgid "Reset password" msgstr "重設密碼" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "重新同步聯絡人" @@ -9391,17 +9864,18 @@ msgstr "試多次執行上一個出錯誤嘅動作" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "試多次執行上一個出錯誤嘅動作" msgid "Retry" msgstr "試多次" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "撈多次擧報選項" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "返去上一頁" @@ -9451,10 +9925,10 @@ msgstr "" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "儲存出世日期" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "儲存變更" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "係咪要儲存變更?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "儲存草稿" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "係咪要儲存草稿?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "儲存圖片" msgid "Save new handle" msgstr "儲存新嘅帳號代碼" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "儲存 QR code" @@ -9518,13 +9994,13 @@ msgstr "儲存 QR code" msgid "Save these options for next time" msgstr "儲存呢啲選項供下次使用" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "儲存到我嘅動態源度" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "收藏" @@ -9534,25 +10010,25 @@ msgstr "收藏" msgid "Saved Feeds" msgstr "儲存咗嘅動態源" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "帖文收藏" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "已儲存到你嘅動態源度" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "Say 哈嘍!" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "" @@ -9560,6 +10036,16 @@ msgstr "" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "科學" @@ -9576,18 +10062,18 @@ msgstr "向右捲動" msgid "Scroll to top" msgstr "轆到去頂部" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "搵嘢" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搵 @{0} 嘅帖文" @@ -9662,12 +10148,12 @@ msgstr "搵語言" msgid "Search my posts" msgstr "搵我嘅帖文" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "搵帖文" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "搵個人檔案" msgid "Search..." msgstr "搵……" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "所需嘅保安步驟" @@ -9759,7 +10245,7 @@ msgstr "揀選 {langName}" msgid "Select a color" msgstr "揀一隻色" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "揀選一個理由" @@ -9828,7 +10314,7 @@ msgstr "揀選 GIF" msgid "Select GIF \"{0}\"" msgstr "揀選 GIF「{0}」" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "揀選羣組傾偈成員" @@ -9850,7 +10336,7 @@ msgstr "揀選語言……" msgid "Select languages" msgstr "揀選語言" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "揀選內容審覈服務" @@ -9904,11 +10390,11 @@ msgstr "喺下低揀選啱你心水嘅選項" msgid "Select your preferred language for translations in your feed." msgstr "揀選你喺訂閱嘅動態源度要翻譯嘅目標語言" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "揀選你想要嘅通知類型" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "唔支援揀選多種媒體類型。" @@ -9921,9 +10407,9 @@ msgstr "自殘或其他危險行爲" msgid "Send code" msgstr "傳送代碼" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "傳送電郵" @@ -9935,11 +10421,11 @@ msgstr "傳送電郵" msgid "Send error report" msgstr "" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "提交意見" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "傳送訊息" @@ -9952,7 +10438,7 @@ msgstr "傳送帖文畀 {name}" msgid "Send post to..." msgstr "傳送帖文到……" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "將擧報提交到 {title}" @@ -9960,7 +10446,7 @@ msgstr "將擧報提交到 {title}" msgid "Send the message from your phone" msgstr "從你嘅電話傳送呢條訊息" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "透過私人訊息傳送" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "" @@ -10015,14 +10501,14 @@ msgstr "喺下低設定好出世日期,我哋即刻畀你繼續出 Post 同探 msgid "Sets email for password reset" msgstr "設定電郵嚟重設密碼" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "設定" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "嚟自其他人嘅動態通知設定" @@ -10030,39 +10516,39 @@ msgstr "嚟自其他人嘅動態通知設定" msgid "Settings for allowing others to be notified of your posts" msgstr "允許其他人接收你出新貼通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "讚好通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "提及通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "新擁躉通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "其他通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "轉發嘅讚好通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "轉發嘅轉發通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "引用通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "回覆通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "轉發通知設定" @@ -10079,16 +10565,19 @@ msgstr "性行爲或色情裸體。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "分享" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "點都要分享" @@ -10097,16 +10586,21 @@ msgstr "點都要分享" msgid "Share author DID" msgstr "分享發布者 DID" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "分享連結" @@ -10114,6 +10608,11 @@ msgstr "分享連結" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "分享帖文 at:// 連結" msgid "Share QR code" msgstr "分享 QR code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "分享呢個動態源" @@ -10142,8 +10641,8 @@ msgstr "分享呢個新手包,等更多人加入你喺 Bluesky 度嘅社羣。 #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "分享到……" @@ -10151,7 +10650,7 @@ msgstr "分享到……" msgid "Share your contacts to find friends" msgstr "分享你嘅聯絡人去尋找朋友" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "共用偏好測試器" @@ -10167,16 +10666,16 @@ msgstr "顯示替代文字" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "點都要顯示" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "顯示自動化標記" @@ -10197,8 +10696,8 @@ msgstr "顯示自訂選項" msgid "Show group chat updates" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "推少啲噉嘅嘢畀我" @@ -10219,8 +10718,8 @@ msgstr "喺你「Discover」動態源顯示直播活動" msgid "Show More" msgstr "顯示更多" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "推多啲噉嘅嘢畀我" @@ -10246,8 +10745,8 @@ msgstr "顯示回覆" msgid "Show replies as" msgstr "回覆顯示成" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "公開顯示回覆" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "顯示警告兼且喺動態源度篩選" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "顯示直播狀態" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "顯示關於呢條帖文嘅建立時間資訊" @@ -10297,15 +10796,17 @@ msgstr "顯示內容" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "登入或建立帳號" msgid "Sign in or create your account to join the conversation!" msgstr "登入或建立帳號嚟加入對話!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "登入未有列出嘅帳號" @@ -10337,8 +10842,12 @@ msgstr "登入未有列出嘅帳號" msgid "Sign in to Bluesky or create a new account" msgstr "登入 Bluesky 或整個新帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "登入以檢視帖文" @@ -10348,9 +10857,9 @@ msgstr "登入以檢視帖文" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "登出" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "登出" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "係咪要登出?" @@ -10391,7 +10900,7 @@ msgstr "跳過" msgid "Skip contact sharing and continue to the app" msgstr "跳過分享聯絡人兼繼續使用應用程式" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "跳過空白帖文?" @@ -10405,7 +10914,7 @@ msgstr "跳過介紹直接開始使用你嘅帳號" msgid "Skip to next step" msgstr "跳到下一步" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "幻燈片" @@ -10413,7 +10922,7 @@ msgstr "幻燈片" msgid "Smaller" msgstr "細啲" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "暫停提醒" @@ -10462,7 +10971,7 @@ msgid "Someone left the group" msgstr "有人離開咗羣組" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "有人畀咗個 {0} 反應" @@ -10487,17 +10996,22 @@ msgstr "" msgid "Someone was removed from the group" msgstr "有人已被移出羣組" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "出咗問題!" msgid "Something went wrong. Please try again in a moment." msgstr "出咗問題,唔該遲啲試多次。" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "出咗問題,唔該試多次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "有輘輷?話畀我哋知。" @@ -10564,11 +11078,16 @@ msgstr "垃圾訊息或其他虛假欺騙行爲" msgid "Sports" msgstr "運動" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "當你同第個人傾偈之後,對話內容就會喺度出現。" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "開始同人傾偈" @@ -10582,17 +11101,17 @@ msgstr "開始搵人加入" msgid "Start adding people!" msgstr "開始搵人加入!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "開始傾偈" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "開始同 {displayName} 傾偈" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "新手包" @@ -10654,12 +11173,12 @@ msgstr "已剷晒儲存資料,請即刻重啓應用程式。" msgid "Stored as part of a secure code for matching with others" msgstr "儲存為安全代碼嘅一部分,去匹配其他人" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "故仔書" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "喺 Twitch 開緊 Live?去 Bluesky 設定你嘅直播狀態,你頭像嗰度就會顯示直播徽章,同時一撳就可以直入你個直播台喇。" @@ -10671,8 +11190,8 @@ msgstr "喺 Twitch 開緊 Live?去 Bluesky 設定你嘅直播狀態,你頭 #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "提交" @@ -10684,9 +11203,9 @@ msgstr "提交申訴" msgid "Submit Appeal" msgstr "提交申訴" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "提交擧報" @@ -10695,13 +11214,13 @@ msgid "Subscribe" msgstr "訂閱" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" msgstr "" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" msgstr "" @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "攪掂" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "攪掂!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "成功驗證" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "建議" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,11 +11303,11 @@ msgstr "支援" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "您所在國家而家未支援呢個功能!唔該遲啲過嚟睇睇。" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." msgstr "" @@ -10793,7 +11316,7 @@ msgstr "" #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "切換帳號" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "切換帳號" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "切換去 {0}" @@ -10824,11 +11347,15 @@ msgstr "系統日誌" 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 "撳下低「允許」掣允許 Bluesky 取用你嘅位置資訊,我哋會用佢去更準確噉確定你身處地區可用內容同功能。" -#: src/components/dms/MessageItem.tsx:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" msgstr "" @@ -10854,33 +11381,51 @@ msgstr "撳吓即表示你瞭解同同意呢啲更新,兼繼續使用 Bluesky" 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:163 msgid "Tap to dismiss" msgstr "撳吓即跳過" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "撳吓移除" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "撳吓移除你嘅 {0} 反應" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "撳吓試多次" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "撳吓顯示 {0} 反應" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "撳吓顯示所有反應" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "撳吓顯示反應" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "服務條款" @@ -10939,7 +11484,7 @@ msgstr "字詞同標籤" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "文字輸入欄位" @@ -10981,9 +11526,9 @@ msgstr "就噉先,咁多位!" msgid "That's everything!" msgstr "就係咁多喇!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "解除封鎖之後,呢個帳號就可以同你互動。" @@ -11049,6 +11594,11 @@ msgstr "下低嘅設定會套用到你新帖文度。你亦都可以對個別帖 msgid "The laws in your region require you to verify you're an adult to access certain features. Tap to learn more." msgstr "你所在地區嘅法例需要先驗證你係成年人,先至可以喺 Bluesky 度使用部分特定功能。撳吓即時知多啲。" +#: src/components/intents/GroupChatJoinDialog.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "你覆緊嘅帖文,發布者標記咗係用 {suggestedLanguageName} 寫嘅。係咪要將回覆語言改成 <0>{suggestedLanguageName} 嚟覆佢?" @@ -11057,9 +11607,9 @@ msgstr "你覆緊嘅帖文,發布者標記咗係用 {suggestedLanguageName} msgid "The Privacy Policy has been moved to <0/>" msgstr "私隱政策擺咗去 <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +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 @@ -11101,7 +11651,7 @@ msgstr "主題" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "" @@ -11115,10 +11665,13 @@ 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:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "你嘅網絡連線出咗問題,唔該試多次" msgid "There was an issue contacting the server" msgstr "連線到伺服器嗰陣出咗問題" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "連線到伺服器嗰陣出咗問題,請檢查網絡連線狀態跟住試多次。" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "攞緊帖文嗰陣出咗問題,撳呢度試多次。" @@ -11161,31 +11714,31 @@ msgstr "攞緊你嘅服務資料嗰陣出咗問題" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "刪除動態源嗰陣出咗問題。請檢查你嘅網絡連線狀態,跟住試多次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "{0} 出咗問題!" @@ -11221,6 +11774,14 @@ msgstr "呢啲係你嘅預設設定" msgid "These settings only apply to the Following feed." msgstr "呢啲設定淨係俾「Following」動態源用。" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被標記:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "呢份上訴會提交到 <0>{sourceName} 度。" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "呢份申訴會提交到 Bluesky 嘅內容審覈服務度。" @@ -11263,7 +11824,7 @@ msgstr "呢份申訴會提交到 Bluesky 嘅內容審覈服務度。" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "呢位作者設定咗得登入咗嘅人先睇到佢啲帖文。" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "呢粒掣方便其他人打開 Germ DM 向你傳送訊息。你可以喺 Germ DM 度設定佢係咪顯示出嚟,抑或撳下低粒掣將你嘅 Bluesky 帳號同 Germ DM 帳號斷開連線。" @@ -11271,11 +11832,21 @@ msgstr "呢粒掣方便其他人打開 Germ DM 向你傳送訊息。你可以喺 msgid "This chat has ended" msgstr "" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "傾偈經已中斷連線" @@ -11310,7 +11881,11 @@ msgstr "由於佢哋其中一人封鎖咗對方,導致睇唔到呢個內容。 msgid "This content is not viewable without a Bluesky account." msgstr "呢個內容要你有 Bluesky 帳號先至睇到。" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "同你對話嗰個人經已停用或刪除帳號,撳低去檢視選項" @@ -11318,7 +11893,7 @@ msgstr "同你對話嗰個人經已停用或刪除帳號,撳低去檢視選項 msgid "This draft will be permanently deleted." msgstr "呢份草稿將會永久刪除。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "呢個電郵經已綁定咗你嘅帳號。" @@ -11356,11 +11931,15 @@ msgstr "呢個動態源度得個吉。" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "呢個動態源唔再用到,我哋改成顯示 <0>Discover。" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "無法使用呢張圖片,試吓第種檔案格式,好似 .jpg 或 .png。" @@ -11368,6 +11947,14 @@ msgstr "無法使用呢張圖片,試吓第種檔案格式,好似 .jpg 或 .p msgid "This information is private and not shared with other users." msgstr "呢份資訊係私人內容唔會分享畀其他用戶。" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "呢個係空狀態" @@ -11377,7 +11964,7 @@ msgstr "呢個係空狀態" msgid "This is not a valid link" msgstr "呢條連結無效" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "呢個標記話畀人知呢個係自動化帳號。開咗之後,個標記就會出現喺帳號名同帖文隔籬。你可以隨時加上抑或移除此標記。" @@ -11410,13 +11997,17 @@ msgstr "呢份清單係你所建立,佢嘅名或描述度可能違反咗 Blues msgid "This list is empty." msgstr "呢份清單度得個吉。" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" +msgstr "" + +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 msgid "This message is hidden because this user is blocking you." msgstr "" +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." msgstr "" @@ -11434,7 +12025,7 @@ msgstr "" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "呢條帖文話係話喺 <0>{0} 發布嘅,但係最先出現喺 Bluesky 嘅時間係喺 <1>{1}。" @@ -11450,23 +12041,24 @@ msgstr "呢條帖文淨係得登入咗嘅用戶先睇到。" msgid "This post was deleted by its author" msgstr "呢條帖文經已俾發布者刪除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "呢條帖文嘅發布者唔俾人引用。" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "" @@ -11490,11 +12082,11 @@ msgstr "呢個過程幾分鐘就攪掂。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "呢個用戶仲未設定名稱,因此唔得授予驗證。" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "呢個用戶仲未有人跟佢。" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." msgstr "" @@ -11503,7 +12095,7 @@ msgstr "" msgid "This user has blocked you. You cannot view their content." msgstr "呢個用戶封鎖咗你,你冇得睇佢發嘅內容。" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." msgstr "" @@ -11551,7 +12143,7 @@ msgstr "噉做會永久刪除你嘅 Bluesky 帳號 <0>{currentHandle} 同所 msgid "This will remove @{0} from the quick access list." msgstr "噉樣會喺快速存取清單度移除 @{0}。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "你嘅帖文會喺呢篇引用嘅帖文度刪除,兼且將佢換成一個佔位標記。" @@ -11574,7 +12166,7 @@ msgstr "討論串偏好設定" msgid "Threaded" msgstr "樹狀模式" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "討論串偏好設定" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "若然停用電郵雙重驗證,請驗證你嘅電郵地址。" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "要停用電郵雙重驗證,請驗證你電郵地址 <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "至 Hit" msgid "Top replies first" msgstr "熱門回覆行先" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "話題" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "翻譯" @@ -11667,8 +12259,8 @@ msgstr "已翻譯" msgid "Translating" msgstr "翻譯緊" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "翻譯緊……" @@ -11702,7 +12294,7 @@ msgstr "時興影片" msgid "Trolling" msgstr "引戰" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信任源於人際關係、社羣同共享嘅背景,所以我哋亦都引入咗<0>受信任嘅驗證者:可以直接授予驗證其他帳號嘅組織。" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "試吓搵第啲關鍵字,抑或<0>閱讀點樣使用搵嘢篩選器。" +#: 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:170 +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 "改用 Google 翻譯" +#: 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 "電視節目" @@ -11763,11 +12369,15 @@ msgstr "連唔到線到服務,請檢查你嘅網絡連線狀態。" msgid "Unable to delete" msgstr "刪唔到" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:113 msgid "Unable to find a selected recipient." msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." msgstr "" @@ -11791,38 +12401,43 @@ msgstr "目前用唔到" msgid "Unavailable feed information" msgstr "取用唔到動態源資訊" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "解除封鎖" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "解除封鎖" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "解除封鎖 {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "解除封鎖帳號" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "係咪要解除封鎖帳號?" @@ -11837,8 +12452,8 @@ msgstr "解除封鎖清單" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "咪喇" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "唔再轉發({0, plural, one {# 次轉發} other {# 次轉發}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "唔再跟 {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "唔再跟佢" @@ -11872,7 +12487,7 @@ msgstr "唔再跟佢" msgid "Unfollows the user" msgstr "唔再跟呢位用戶" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "唔好意思,你訂閱嘅標記服務冇一個係支援呢個擧報類型。" @@ -11884,14 +12499,6 @@ msgstr "唔好意思,事緣你個人檔案嘅出世日期顯示你年紀太細 msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "唔好意思,你所申報嘅年齡唔得喺你所在地區使用 Bluesky。" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "撤回邀請" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "撤回畀 {displayName} 嘅羣組傾偈邀請" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "未知嘅驗證者" @@ -11904,21 +12511,21 @@ msgstr "未標記嘅成人內容" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "未標記、具虐待性、或非自願嘅成人內容" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "唔再讚佢({0, plural, one {# 人讚佢} other {# 人讚佢}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "唔再鎖定此羣組傾偈" @@ -11939,14 +12546,14 @@ msgstr "唔再靜音" msgid "Unmute {0}" msgstr "唔再靜音 {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "唔再靜音帳號" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "唔再靜音對話" @@ -11955,12 +12562,12 @@ msgstr "唔再靜音對話" msgid "Unmute list" msgstr "唔再靜音清單" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "唔再靜音此羣組傾偈" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "唔再靜音討論串" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "唔再固定" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "唔再固定動態源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "唔再喺首頁度固定" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "唔再喺個人檔案度固定" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "唔再固定內容審覈清單" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "唔再喺首頁度固定 {0}" @@ -12030,14 +12637,18 @@ msgstr "唔再訂閱呢個標記服務" msgid "Unsubscribed from list" msgstr "經已喺清單度唔再訂閱" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "唔支援呢種剪貼簿內容" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "唔支援嘅影片類型:{mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "更新" msgid "Update <0>{displayName} in Lists" msgstr "要喺邊啲清單度加入或刪除 <0> {displayName} ?" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "更新電郵" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "" @@ -12065,11 +12680,15 @@ msgstr "" msgid "Update to {domain}" msgstr "更新成 {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "更新 App 至最新版本即可加入!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "更新你嘅電郵" @@ -12080,17 +12699,17 @@ msgstr "更新你嘅電郵" msgid "Update your location" msgstr "" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "更新唔到引用連結狀態" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新唔到回覆可見度" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "或上載圖片" @@ -12098,39 +12717,40 @@ msgstr "或上載圖片" msgid "Upload a text file to:" msgstr "上載文字檔案到:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "上載緊 GIF……" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "上載緊圖片……" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "上載緊連結縮圖……" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "上載緊條片……" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "用戶經已封鎖" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "{0} 嘅用戶清單" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "{0} 嘅用戶清單" @@ -12255,12 +12875,12 @@ msgstr "<0>@{0} 跟咗嘅用戶" msgid "users following <0>@{0}" msgstr "跟緊 <0>@{0} 嘅用戶" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "" @@ -12277,7 +12897,7 @@ msgstr "授予唔到驗證,唔該試多次。" msgid "Verification settings" msgstr "驗證設定" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "驗證設定" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "驗證碼" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "驗證 DNS 記錄" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "驗證電郵碼" @@ -12349,7 +12969,7 @@ msgstr "係咪要授予驗證呢個帳號?" msgid "Verify your age" msgstr "驗證你嘅年齡" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "版本 {0}" msgid "Video" msgstr "影片" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "影片處理失敗" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "影片動態源" @@ -12419,7 +13039,7 @@ msgstr "搵唔到條片。" msgid "Video settings" msgstr "影片設定" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "影片上載成功" @@ -12432,18 +13052,18 @@ msgstr "影片:{0}" msgid "Videos" msgstr "影片" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "影片長度唔得超過 3 分鐘。" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" msgstr "" @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "睇吓 {0} 嘅個人檔案" @@ -12467,20 +13087,15 @@ msgstr "睇吓 {0} 嘅個人檔案" msgid "View {0}’s profile" msgstr "睇吓 {0} 嘅個人檔案" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "睇吓 {displayName} 嘅個人檔案" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" msgstr "" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" msgstr "睇吓被封鎖用戶嘅個人檔案" @@ -12503,10 +13118,18 @@ msgstr "睇吓詳細資訊" msgid "View full thread" msgstr "睇吓完整嘅討論串" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "睇吓同呢啲標記有挐掕嘅詳細資訊" @@ -12522,7 +13145,7 @@ msgstr "睇晒佢哋" msgid "View more trending videos" msgstr "睇多啲時興影片" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "睇吓帖文" @@ -12539,10 +13162,10 @@ msgstr "睇吓個人檔案" msgid "View profile banner" msgstr "睇吓個人檔案橫幅" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" msgstr "" @@ -12550,7 +13173,7 @@ msgstr "" msgid "View the avatar" msgstr "睇吓頭像" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "" @@ -12563,7 +13186,7 @@ msgstr "睇吓 @{0} 提供嘅標記服務" msgid "View this user's verifications" msgstr "睇吓呢個用戶嘅認證" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "睇吓邊啲人讚過呢個動態源" @@ -12596,8 +13219,8 @@ msgstr "睇吓你靜音咗嘅帳號" msgid "View your verifications" msgstr "睇吓你嘅認證" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "睇吓完整圖片" @@ -12640,8 +13263,8 @@ msgstr "警告內容" msgid "Warn content and filter from feeds" msgstr "警告內容兼且喺動態源度篩選" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "即刻去睇" @@ -12665,11 +13288,15 @@ msgstr "我哋搵唔到同呢個標籤有挐掕嘅結果。" msgid "We couldn't find any results for that topic." msgstr "我哋搵唔到同呢個話題有挐掕嘅結果。" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "我哋撈唔到呢個對話" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "我哋撈唔到呢個對話設定" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "我哋建議你至少揀兩個啱心水嘅主題。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我哋送咗封含有連結嘅電郵去 <0>{0} 度。請撳開佢去完成電郵驗證流程。" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "我哋確定唔到你有冇上載影片權限,唔該試多次。" @@ -12744,12 +13371,12 @@ msgstr "我哋因遇着連線問題接收唔到驗證狀態,可能需要啲時 msgid "We will let you know when your account is ready." msgstr "我哋會喺攪掂你嘅帳號嗰陣通知你。" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "我哋會喺搵到你朋友嗰陣通知你。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我哋將送封含有連結嘅電郵去 <0>{0} 度。請撳開佢去完成電郵驗證流程。" @@ -12779,12 +13406,12 @@ msgstr "我哋喺請求開始你嘅帳號年齡驗證流程遇着問題。請<0> msgid "We're having network issues, try again" msgstr "我哋遇到網絡問題,唔該試多次" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "我哋遇到網絡問題,唔該試多次" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "同你介紹 Bluesky 嘅全新驗證機制 —— 驗證標記。" @@ -12814,12 +13441,12 @@ msgstr "對唔住,無法完成你嘅搵嘢要求。唔該等多幾分鐘試吓 msgid "We're sorry, you cannot access this screen at this time." msgstr "唔好意思,你目前進入唔到呢個頁面。" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "對唔住!你覆緊嘅帖文經已俾人刪咗。" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "對唔住!我哋搵唔到你要搵嘅頁面。" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "你諗住點嗌你嘅新手包?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "有咩大件事?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "當你撳低認證標記之後,你會睇到邊啲組織授予咗驗證。" @@ -12878,7 +13505,7 @@ msgstr "當你撳低認證標記之後,你會睇到邊啲組織授予咗驗證 msgid "Who can interact with this post?" msgstr "邊個可以喺呢篇帖文度互動?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "" @@ -12887,13 +13514,13 @@ msgstr "" msgid "Who can reply" msgstr "邊個可以回覆" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "邊啲人可以授權認證?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "大鑊!" @@ -12939,7 +13566,7 @@ msgstr "點解要審查呢個新手包?" msgid "Why should this user be reviewed?" msgstr "點解要審查呢個用戶?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: src/components/dms/AfterReportDialog.tsx:51 msgid "Would you like to block this user and/or delete this conversation?" msgstr "需要封鎖呢個用戶或刪除呢個對話,定一齊執行?" @@ -12951,7 +13578,7 @@ msgstr "" msgid "Would you like to save this as a draft before viewing your drafts?" msgstr "睇其他草稿之前,你使唔使儲存現有內容先?" -#: src/view/com/composer/Composer.tsx:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "你使唔使儲存現有內容做草稿,留返遲啲再編輯?" @@ -12960,12 +13587,12 @@ msgstr "你使唔使儲存現有內容做草稿,留返遲啲再編輯?" msgid "Write a post" msgstr "撰寫一條帖文" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "撰寫帖文" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "寫低你嘅回覆" @@ -12978,7 +13605,8 @@ msgstr "作家" msgid "Wrong DID returned from server. Received: {0}" msgstr "伺服器返回 DID 錯誤,收到嘅 DID:{0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "" @@ -13005,11 +13633,11 @@ msgstr "係,刪除我嘅帳號" msgid "Yes, delete this starter pack" msgstr "係,刪咗呢個新手包" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "係,分離佢" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "係,隱藏佢" @@ -13030,7 +13658,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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" msgstr "" @@ -13068,7 +13696,7 @@ msgstr "你已開始直播" msgid "You are no longer live" msgstr "你已停止直播" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "你唔得上載影片。" @@ -13117,21 +13745,30 @@ msgstr "你可以隨時選擇退出兼且刪除你嘅資料" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "你可以喺應用程式度嘅傾偈設定揀返通知想唔想有聲" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "無論你揀咗邊個設定,你都可以繼續返之前嘅對話。" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "你而家可以用你嘅新密碼登入。" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +msgid "You can only add up to {MAX_GALLERY_IMAGES, plural, other {# images}} per post" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1444 msgid "You can only save drafts up to 1000 characters." msgstr "你淨係可以儲存 1000 字元嘅草稿。" @@ -13139,11 +13776,11 @@ msgstr "你淨係可以儲存 1000 字元嘅草稿。" msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "你淨係可以儲存 1000 個字元字嘅草稿。你想唔想喺睇其他草稿之前放棄呢條帖文內容?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "你一次淨係揀得一張 GIF。" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "你一次淨係揀得一條片。" @@ -13155,10 +13792,10 @@ msgstr "你可以重新啓用你嘅帳號嚟繼續登入,你嘅個人檔案同 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, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "你最多只能揀選 {MAX_IMAGES, plural, other {# 張圖片}}。" +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,7 +13803,12 @@ msgstr "你最多只能揀選 {MAX_IMAGES, plural, other {# 張圖片}}。" msgid "You can update this later from your settings." msgstr "你可以遲啲喺設定度改返。" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:105 msgid "You cannot create a group chat yet." msgstr "" @@ -13197,6 +13839,10 @@ msgstr "你仲未有任何儲存咗嘅動態源。" msgid "You got here first" msgstr "你係第一個抵達呢度嘅人" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "你經已成功驗證電郵地址。你而家可以閂咗呢個對話框 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "你暫時經已達到上載影片嘅上限,唔該遲啲試多次。" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "你呢份草稿有未儲存嘅變更,使唔使儲存咗先?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "您必須年滿 13 歲先可以使用 Bluesky。閱讀我哋嘅<0>服務條款知多啲。" @@ -13332,11 +13982,12 @@ msgstr "您必須年滿 13 歲先可以使用 Bluesky。閱讀我哋嘅<0>服務 msgid "You must be following at least seven other people to generate a starter pack." msgstr "你必須跟住至少 7 個人先至可以生成新手套裝。" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "你必須授予相片圖庫取用權限先至可以儲存 QR code" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "你必須允許取用你嘅媒體內容。" @@ -13344,6 +13995,10 @@ msgstr "你必須允許取用你嘅媒體內容。" msgid "You need to verify your email address before you can enable email 2FA." msgstr "你需要驗證你個電郵地址先至啓用到電郵雙重驗證。" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "你家陣可能要重新啓用個應用程式。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "你畀咗個 {0} 反應" @@ -13368,8 +14023,13 @@ msgstr "你向 {target} 畀咗個 {0} 反應" msgid "You recently changed your birthdate" msgstr "你近排變更咗出世日期" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "你將會登出所有帳號。" @@ -13378,11 +14038,11 @@ msgstr "你將會登出所有帳號。" msgid "You will no longer receive notifications for {0}" msgstr "你將唔會再收到 {0} 嘅動態通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "你唔會再收到呢個討論串嘅通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "你而家會持續收到呢個討論串嘅通知" @@ -13390,12 +14050,12 @@ msgstr "你而家會持續收到呢個討論串嘅通知" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "你:{message}" @@ -13429,6 +14089,10 @@ msgstr "你將開始收到 {0} 嘅動態通知!" msgid "You'll stay updated with these feeds" 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 "輪到你喇" @@ -13463,7 +14127,7 @@ msgstr "你經已轆到最㞘。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你經已睇晒你嘅動態源喇!去搵更多人嚟跟佢哋啦。" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "你經已達到儲存草稿數量上限" @@ -13475,11 +14139,11 @@ msgstr "你經已達到請求數上限。唔該遲啲試多次。" msgid "You've reached the start of the active content." msgstr "你經已轆到頭位。" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "你經已達到每日上載影片嘅上限(總計影片大細過大)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "你經已達到每日上載影片嘅上限(影片數量過多)" @@ -13499,10 +14163,18 @@ msgstr "你嘅帳號經已刪除,有緣再會!✌️" msgid "Your account has been suspended" msgstr "你嘅帳號已被停權" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "你嘅帳號註冊時間太短未畀得你上載影片。唔該遲啲試多次。" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "" + +#: src/components/dms/InitiateChatFlow.tsx:732 +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 "你可以將你嘅帳號所有公開資料匯出成一份「CAR」檔案。呢份檔案唔包括嵌入媒體(譬如圖片同影片)或你嘅私人資料,呢啲資料需要另外擷取。" @@ -13519,7 +14191,7 @@ msgstr "你嘅申訴經已提交。若然判決上訴得直我哋會透過電郵 msgid "Your birth date" msgstr "你嘅出世日期" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "你傾偈功能俾人停用咗" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "你嘅聯絡人 {firstAuthorLink} 加入咗 Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "你嘅聯絡人 {firstAuthorName} 加入咗 Bluesky" @@ -13561,7 +14233,7 @@ msgstr "你嘅電郵" msgid "Your email appears to be invalid." msgstr "你嘅電郵似乎無效。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "你嘅電郵仲未驗證。請驗證你嘅電郵以便享用所有 Bluesky 嘅功能。" @@ -13582,7 +14254,7 @@ msgstr "你嘅「Following」動態源度得個吉!跟多啲用戶睇吓發生 msgid "Your full handle will be <0>@{0}" msgstr "你嘅完整帳號代碼會係 <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,8 +14283,8 @@ msgstr "已更新你嘅位置資訊。" msgid "Your muted words" msgstr "你設定咗嘅靜音字" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." +#: 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 @@ -13623,11 +14295,11 @@ msgstr "你嘅密碼經已變更成功!由而家開始請使用你新嘅密碼 msgid "Your password must be at least 8 characters long." msgstr "你輸入嘅密碼必須至少要 8 個字元。" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "已發布你嘅帖文" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "已發布你嘅帖文" @@ -13635,7 +14307,7 @@ msgstr "已發布你嘅帖文" msgid "Your preferred language" msgstr "你嘅偏好語言" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "你嘅頭像" @@ -13648,12 +14320,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 "你嘅個人檔案、帖文、動態源同埋清單唔會再畀其他 Bluesky 用戶睇到。你幾時都可以登入重新啓用你嘅帳號。" -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "已發布你嘅回覆" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "你嘅擧報會提交去 <0>{0}。" @@ -13661,7 +14333,7 @@ msgstr "你嘅擧報會提交去 <0>{0}。" msgid "Your selected interests help us serve you content you care about." msgstr "你揀選嘅心水主題可以幫我哋提供更多你所關注嘅內容。" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 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-TW/messages.po b/src/locale/locales/zh-TW/messages.po index bcb71a6fb3..fef4dfce6e 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-05-27 19:42\n" +"PO-Revision-Date: 2026-06-10 21:06\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -23,7 +23,11 @@ msgstr "" msgid "\"{interestsDisplayName}\" category (active)" msgstr "「{interestsDisplayName}」類別(已選取)" -#: src/components/dms/getMessageInfo.ts:66 +#: src/components/dms/getMessageInfo.ts:91 +msgid "(chat invite link)" +msgstr "" + +#: src/components/dms/getMessageInfo.ts:73 msgid "(contains embedded content)" msgstr "(包含嵌入內容)" @@ -72,7 +76,7 @@ msgid "{0, plural, one {# like} other {# likes}}" msgstr "{0, plural, one {# 個喜歡} other {# 個喜歡}}" #. placeholder {0}: convo.members.length -#: src/components/dialogs/SearchablePeopleList.tsx:559 +#: src/components/dialogs/SearchablePeopleList.tsx:555 msgid "{0, plural, one {# member} other {# members}}" msgstr "{0, plural, other {# 個成員}}" @@ -86,9 +90,14 @@ msgstr "{0, plural, one {# 分鐘} other {# 分鐘}}" msgid "{0, plural, one {# month} other {# months}}" msgstr "{0, plural, one {# 個月} other {# 個月}}" +#. placeholder {0}: convo.details.unreadJoinRequestCount +#: src/screens/Messages/components/ChatListItem.tsx:225 +msgid "{0, plural, one {# new join request} other {# new join requests}}" +msgstr "{0, plural, other {# 個新的加入申請}}" + #. placeholder {0}: reactions.length #. placeholder {1}: groupedReactions.map(g => g.value).join(' ') -#: src/components/dms/MessageItem.tsx:297 +#: src/components/dms/MessageItem.tsx:269 msgid "{0, plural, one {# person} other {# people}} reacted – {1}" msgstr "{0, plural, other {# 個人}}對此做出了 {1} 反應" @@ -109,17 +118,17 @@ msgstr "{0, plural, one {# 秒} other {# 秒}}" #. placeholder {0}: numUnreadMessages.numUnread ?? 0 #. placeholder {0}: numUnreadNotifications ?? 0 -#: src/view/shell/bottom-bar/BottomBar.tsx:233 -#: src/view/shell/bottom-bar/BottomBar.tsx:265 -#: src/view/shell/Drawer.tsx:501 +#: src/view/shell/bottom-bar/BottomBar.tsx:234 +#: src/view/shell/bottom-bar/BottomBar.tsx:266 +#: src/view/shell/Drawer.tsx:557 msgid "{0, plural, one {# unread item} other {# unread items}}" msgstr "{0, plural, one {# 則未讀} other {# 則未讀}}" #. 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:232 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:231 msgid "{0, plural, one {#m} other {#m}}" -msgstr "" +msgstr "{0, plural, other {約 # 分鐘}}" #. How many months have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -190,13 +199,13 @@ msgid "{0} <0>in <1>text & tags" msgstr "{0} <0> — <1>文字和標籤" #. placeholder {0}: createSanitizedDisplayName(members[0]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:41 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:44 msgid "{0} added to chat" msgstr "{0} 已受邀加入對話" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:43 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 msgid "{0} and {1} added to chat" msgstr "{0} 和 {1} 已受邀加入對話" @@ -206,9 +215,9 @@ msgid "{0} following" msgstr "{0} 個跟隨中" #. placeholder {0}: sanitizeHandle(profile.handle, '@') -#: src/components/dms/MessageItem.tsx:640 +#: src/components/dms/MessageItem.tsx:614 msgid "{0} is blocking you" -msgstr "" +msgstr "{0} 已封鎖您" #. placeholder {0}: sanitizeHandle(profile.handle) #: src/features/liveNow/components/LiveStatusDialog.tsx:84 @@ -228,7 +237,7 @@ msgstr "您的裝置不支援翻譯{0}。" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:83 msgid "{0} joined" -msgstr "" +msgstr "{0} 加入了" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:84 @@ -243,7 +252,7 @@ msgstr "本週加入了 {0} 人" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:96 msgid "{0} left" -msgstr "" +msgstr "{0} 離開了" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:97 @@ -264,14 +273,14 @@ msgstr "已輸入 {0} 個字元,最多 50 個字元" #. placeholder {0}: createSanitizedDisplayName(memberSender) #. placeholder {1}: reaction.value -#: src/components/dms/MessageItem.tsx:292 +#: src/components/dms/MessageItem.tsx:264 msgid "{0} reacted {1}" msgstr "{0} 做出了 {1} 反應" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:57 msgid "{0} was added" -msgstr "" +msgstr "{0} 已受邀加入" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:58 @@ -281,7 +290,7 @@ msgstr "{0} 已受邀加入群組" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:70 msgid "{0} was removed" -msgstr "" +msgstr "{0} 被移出了" #. placeholder {0}: action.displayName #: src/components/dms/getSystemMessageInfo.ts:71 @@ -290,7 +299,7 @@ msgstr "{0} 已被移出群組" #. placeholder {0}: createSanitizedDisplayName(members[0]) #. placeholder {1}: createSanitizedDisplayName(members[1]) -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:46 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:49 msgid "{0}, {1} and {memberCount, plural, one {# other} other {# others}} added to chat" msgstr "{0}、{1} 及{memberCount, plural, other {其他 # 人}}已受邀加入對話" @@ -309,15 +318,40 @@ msgstr "{0},來自 {1} 的列表" #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || sanitizeHandle(profile.handle), ) -#: src/view/com/util/UserAvatar.tsx:595 -#: src/view/com/util/UserAvatar.tsx:613 +#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:617 msgid "{0}'s avatar" msgstr "「{0}」的大頭貼照" -#. placeholder {0}: createSanitizedDisplayName(profile) -#: src/components/dms/MessageItem.tsx:228 -msgid "{0}’s avatar" -msgstr "「{0}」的大頭貼照" +#. 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:143 +msgctxt "group-chat-member-count" +msgid "{0}/{1}" +msgstr "" + +#. The number of members in a group chat, in the format '{members}/{total} members'. +#. placeholder {0}: preview.memberCount +#. placeholder {1}: preview.memberLimit +#. placeholder {2}: preview.memberCount +#: src/components/dms/ChatInvite/Card.tsx:57 +msgid "{0}/{1} {2, plural, one {member} other {members}}" +msgstr "{0}/{1} {2, plural, other {個成員}}" + +#. The number of active group chat members out of the total number allowed. +#. placeholder {0}: joinLinkPreview.memberCount +#. placeholder {1}: joinLinkPreview.memberLimit +#: src/components/intents/GroupChatJoinDialog.tsx:329 +msgid "{0}/{1} members" +msgstr "{0}/{1} 個成員" + +#. 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:526 +msgctxt "gallery-badge-image-position-numbers" +msgid "{0}/{imageCount}" +msgstr "" #. How many days have passed, displayed in a narrow form #. placeholder {0}: diff.value @@ -343,25 +377,50 @@ msgstr "{0} 分鐘前" msgid "{0}s" msgstr "{0} 秒前" +#: src/screens/Messages/JoinRequests.tsx:433 +msgid "{count, plural, =0 {No requests to join} one {# request to join} other {# requests to join}}" +msgstr "{count, plural, =0 {尚未加入申請} other {# 個加入申請}}" + #: src/components/dms/SystemMessageGroup.tsx:38 msgid "{count, plural, one {# chat update} other {# chat updates}}" msgstr "{count, plural, other {# 則對話更新}}" -#: src/screens/Messages/components/InboxRequests.tsx:33 +#: src/screens/Messages/components/RequestStatus.tsx:74 +msgid "{count, plural, one {# new join request} other {# new join requests}}" +msgstr "{count, plural, other {# 個加入申請}}" + +#: src/screens/Messages/components/InboxRequests.tsx:35 msgid "{count, plural, one {# request} other {# requests}}" msgstr "{count, plural, other {# 個邀請}}" -#: src/view/shell/desktop/LeftNav.tsx:483 +#: src/view/shell/desktop/LeftNav.tsx:484 msgid "{count, plural, one {# unread item} other {# unread items}}" msgstr "{count, plural, one {# 則未讀} other {# 則未讀}}" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:67 +msgid "{count, plural, one {Refresh the page to see it.} other {Refresh the page to see them all.}}" +msgstr "{count, plural, other {重新整理以顯示該內容。}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:53 +msgid "{count, plural, one {This post has # photo.} other {This post has # photos.}}" +msgstr "{count, plural, other {這則貼文有 # 張圖片。}}" + +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:60 +msgid "{count, plural, one {Update your app to see it.} other {Update your app to see them all.}}" +msgstr "{count, plural, other {更新應用程式以顯示該內容。}}" + +#. 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 "{count, plural, other {超過 # 個加入申請}}" + #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:53 +#: src/screens/Messages/components/InboxRequests.tsx:56 msgid "{count}+" msgstr "{count}+" #. Displayed when the number of requests is greater than 20 -#: src/screens/Messages/components/InboxRequests.tsx:29 +#: src/screens/Messages/components/InboxRequests.tsx:31 msgid "{count}+ requests" msgstr "超過 {count} 個邀請" @@ -382,155 +441,155 @@ msgstr "{estimatedTimeHrs, plural, one {時} other {時}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:346 +#: src/view/com/notifications/NotificationFeedItem.tsx:355 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:380 +#: src/view/com/notifications/NotificationFeedItem.tsx:389 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:289 +#: src/view/com/notifications/NotificationFeedItem.tsx:298 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}表示喜歡您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:485 +#: src/view/com/notifications/NotificationFeedItem.tsx:494 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他{formattedAuthorsCount} 人}}對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:458 +#: src/view/com/notifications/NotificationFeedItem.tsx:467 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:313 +#: src/view/com/notifications/NotificationFeedItem.tsx:322 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:509 +#: src/view/com/notifications/NotificationFeedItem.tsx:518 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:404 +#: src/view/com/notifications/NotificationFeedItem.tsx:413 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:433 +#: src/view/com/notifications/NotificationFeedItem.tsx:442 msgid "{firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}對您授予了驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:358 +#: src/view/com/notifications/NotificationFeedItem.tsx:367 msgid "{firstAuthorLink} followed you" msgstr "{firstAuthorLink} 跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:335 +#: src/view/com/notifications/NotificationFeedItem.tsx:344 msgid "{firstAuthorLink} followed you back" msgstr "{firstAuthorLink} 回跟了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:392 +#: src/view/com/notifications/NotificationFeedItem.tsx:401 msgid "{firstAuthorLink} liked your custom feed" msgstr "{firstAuthorLink} 對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:301 +#: src/view/com/notifications/NotificationFeedItem.tsx:310 msgid "{firstAuthorLink} liked your post" msgstr "{firstAuthorLink} 對您的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:497 +#: src/view/com/notifications/NotificationFeedItem.tsx:506 msgid "{firstAuthorLink} liked your repost" msgstr "{firstAuthorLink} 對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:470 +#: src/view/com/notifications/NotificationFeedItem.tsx:479 msgid "{firstAuthorLink} removed their verification from your account" msgstr "{firstAuthorLink} 撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:325 +#: src/view/com/notifications/NotificationFeedItem.tsx:334 msgid "{firstAuthorLink} reposted your post" msgstr "{firstAuthorLink} 轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:521 +#: src/view/com/notifications/NotificationFeedItem.tsx:530 msgid "{firstAuthorLink} reposted your repost" msgstr "{firstAuthorLink} 轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:416 +#: src/view/com/notifications/NotificationFeedItem.tsx:425 msgid "{firstAuthorLink} signed up with your starter pack" msgstr "{firstAuthorLink} 使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:445 +#: src/view/com/notifications/NotificationFeedItem.tsx:454 msgid "{firstAuthorLink} verified you" msgstr "{firstAuthorLink} 對您授予了驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:339 +#: src/view/com/notifications/NotificationFeedItem.tsx:348 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} followed you" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:373 +#: src/view/com/notifications/NotificationFeedItem.tsx:382 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your custom feed" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:282 +#: src/view/com/notifications/NotificationFeedItem.tsx:291 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your post" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}對您的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:478 +#: src/view/com/notifications/NotificationFeedItem.tsx:487 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} liked your repost" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:451 +#: src/view/com/notifications/NotificationFeedItem.tsx:460 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} removed their verifications from your account" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:306 +#: src/view/com/notifications/NotificationFeedItem.tsx:315 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your post" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:502 +#: src/view/com/notifications/NotificationFeedItem.tsx:511 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} reposted your repost" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:397 +#: src/view/com/notifications/NotificationFeedItem.tsx:406 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} signed up with your starter pack" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, one {其他 {formattedAuthorsCount} 人} other {其他 {formattedAuthorsCount} 人}}使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:426 +#: src/view/com/notifications/NotificationFeedItem.tsx:435 msgid "{firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} verified you" msgstr "{firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}對您授予了驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:344 +#: src/view/com/notifications/NotificationFeedItem.tsx:353 msgid "{firstAuthorName} followed you" msgstr "{firstAuthorName} 跟隨了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:334 +#: src/view/com/notifications/NotificationFeedItem.tsx:343 msgid "{firstAuthorName} followed you back" msgstr "{firstAuthorName} 回跟了您" -#: src/view/com/notifications/NotificationFeedItem.tsx:378 +#: src/view/com/notifications/NotificationFeedItem.tsx:387 msgid "{firstAuthorName} liked your custom feed" msgstr "{firstAuthorName} 對您的自訂動態源表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:287 +#: src/view/com/notifications/NotificationFeedItem.tsx:296 msgid "{firstAuthorName} liked your post" msgstr "{firstAuthorName} 對您的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:483 +#: src/view/com/notifications/NotificationFeedItem.tsx:492 msgid "{firstAuthorName} liked your repost" msgstr "{firstAuthorName} 對您轉發的貼文表示喜歡" -#: src/view/com/notifications/NotificationFeedItem.tsx:456 +#: src/view/com/notifications/NotificationFeedItem.tsx:465 msgid "{firstAuthorName} removed their verification from your account" msgstr "{firstAuthorName} 撤回了對您帳號的驗證" -#: src/view/com/notifications/NotificationFeedItem.tsx:311 +#: src/view/com/notifications/NotificationFeedItem.tsx:320 msgid "{firstAuthorName} reposted your post" msgstr "{firstAuthorName} 轉發了您的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:507 +#: src/view/com/notifications/NotificationFeedItem.tsx:516 msgid "{firstAuthorName} reposted your repost" msgstr "{firstAuthorName} 轉發了您轉發的貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:402 +#: src/view/com/notifications/NotificationFeedItem.tsx:411 msgid "{firstAuthorName} signed up with your starter pack" msgstr "{firstAuthorName} 使用了您的新手包註冊" -#: src/view/com/notifications/NotificationFeedItem.tsx:431 +#: src/view/com/notifications/NotificationFeedItem.tsx:440 msgid "{firstAuthorName} verified you" msgstr "{firstAuthorName} 對您授予了驗證" @@ -538,8 +597,8 @@ msgstr "{firstAuthorName} 對您授予了驗證" msgid "{following} following" msgstr "{following} 個跟隨中" -#: src/components/dms/components/GroupChatProfileCard.tsx:56 -#: src/components/dms/InitiateChatFlow.tsx:856 +#: src/components/dms/components/GroupChatProfileCard.tsx:62 +#: src/components/dms/InitiateChatFlow.tsx:945 msgid "{handle} can’t be added" msgstr "無法邀請 {handle}" @@ -547,7 +606,7 @@ msgstr "無法邀請 {handle}" msgid "{handle} can't be messaged" msgstr "無法傳送訊息給 {handle}" -#: src/components/dms/InitiateChatFlow.tsx:817 +#: src/components/dms/InitiateChatFlow.tsx:906 msgid "{handle} can’t be messaged" msgstr "無法傳送訊息給 {handle}" @@ -559,6 +618,16 @@ msgstr "{hours, plural, other {# 小時 {minutesString}}}" msgid "{hours, plural, one {# hour} other {# hours}}" msgstr "{hours, plural, other {# 小時}}" +#. 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 "超過 {JOIN_REQUESTS_THRESHOLD} 個加入申請" + +#: src/screens/Messages/components/ChatListItem.tsx:220 +msgctxt "Displayed when there are more than 20 requests to join a group chat" +msgid "{JOIN_REQUESTS_THRESHOLD}+ new join requests" +msgstr "超過 {JOIN_REQUESTS_THRESHOLD} 個加入申請" + #. 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!" @@ -576,14 +645,14 @@ msgstr "{MAX_DESCRIPTION, plural, other {簡介太長了,不得超過 # 個字 msgid "{MAX_DISPLAY_NAME, plural, other {Display name is too long. The maximum number of characters is #.}}" msgstr "{MAX_DISPLAY_NAME, plural, other {名稱太長了,不得超過 # 個字元。}}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:394 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:395 msgid "{MAX_HIDDEN_REPLIES, plural, other {You can hide a maximum of # replies.}}" msgstr "{MAX_HIDDEN_REPLIES, plural, other {您最多可以隱藏 # 則回覆。}}" #. The number of group chat members out of the total number of permitted users. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:39 msgid "{memberCount}/{memberLimit}" -msgstr "" +msgstr "{memberCount}/{memberLimit}" #: src/features/liveNow/utils.ts:10 msgid "{minutes, plural, one {# minute} other {# minutes}}" @@ -595,7 +664,7 @@ msgid "{name} reacted {0} to {target}" msgstr "{name} 對 {target} 做出了 {0} 反應" #. When the last message in a group chat came from someone other than you. -#: src/components/dms/getMessageInfo.ts:50 +#: src/components/dms/getMessageInfo.ts:57 msgid "{name}: {message}" msgstr "{name}:{message}" @@ -607,11 +676,11 @@ msgstr "{name} 最愛的動態源和人物⸺快來加入我的行列吧!" msgid "{name}'s starter pack" msgstr "{name} 的新手包" -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:329 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:334 msgid "{notificationCount, plural, one {# unread item} other {# unread items}}" msgstr "{notificationCount, plural, one {# 則未讀通知} other {# 則未讀通知}}" -#: src/screens/Settings/FindContactsSettings.tsx:436 +#: src/screens/Settings/FindContactsSettings.tsx:457 msgid "{numMatches, plural, one {# contact found} other {# contacts found}}" msgstr "{numMatches, plural, other {找到了 # 位聯絡人}}" @@ -629,12 +698,12 @@ msgid "{rank}." msgstr "{rank}." #. The number of requests to join a group chat. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:53 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:61 msgid "{requestCount, plural, one {# request} other {# requests}}" msgstr "{requestCount, plural, other {# 個邀請}}" -#. Displayed when there are more than 50 requests to join a group chat -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:48 +#. Displayed when there are more than 20 requests to join a group chat +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:56 msgid "{requestCount}+ requests" msgstr "超過 {requestCount} 個邀請" @@ -656,6 +725,12 @@ msgstr "{userName} 已得到驗證" msgid "{userName}'s verifications" msgstr "{userName} 的驗證" +#. Number of images beyond the first 3 +#. placeholder {0}: totalNumber - 3 +#: 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 msgid "+{computedTotal}" @@ -679,41 +754,41 @@ msgstr "<0>{0}、<1>{1} 和{2, plural, one {其他 # } other {其他 # } #. placeholder {0}: formatCount(i18n, profile?.followersCount ?? 0) #. placeholder {1}: profile?.followersCount || 0 -#: src/view/shell/Drawer.tsx:110 +#: src/view/shell/Drawer.tsx:155 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {個跟隨者} other {個跟隨者}}" #. placeholder {0}: formatCount(i18n, profile?.followsCount ?? 0) #. placeholder {1}: profile?.followsCount || 0 -#: src/view/shell/Drawer.tsx:121 +#: src/view/shell/Drawer.tsx:166 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {個跟隨中} other {個跟隨中}}" #. Like count display, the <0> tags enclose the number of likes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.likeCount) #. placeholder {1}: post.likeCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:490 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:492 msgid "<0>{0} {1, plural, one {like} other {likes}}" msgstr "<0>{0} {1, plural, other {個喜歡}}" #. Quote count display, the <0> tags enclose the number of quotes in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.quoteCount) #. placeholder {1}: post.quoteCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:471 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:473 msgid "<0>{0} {1, plural, one {quote} other {quotes}}" msgstr "<0>{0} {1, plural, other {次引用}}" #. Repost count display, the <0> tags enclose the number of reposts in bold (will never be 0) #. placeholder {0}: formatPostStatCount(post.repostCount) #. placeholder {1}: post.repostCount -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:450 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:452 msgid "<0>{0} {1, plural, one {repost} other {reposts}}" msgstr "<0>{0} {1, plural, other {則轉發}}" #. 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:508 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:510 msgid "<0>{0} {1, plural, one {save} other {saves}}" msgstr "<0>{0} {1, plural, other {次收藏}}" @@ -736,9 +811,9 @@ msgid "<0>{0} members" msgstr "<0>{0} 的成員" #. Text identifying the person who added you to a group chat -#: src/screens/Messages/components/ChatStatusInfo.tsx:141 +#: src/screens/Messages/components/ChatStatusInfo.tsx:135 msgid "<0>{displayName}<1/><2> added you" -msgstr "" +msgstr "<0>{displayName}<1/><2> 已將您加入" #: src/screens/Hashtag.tsx:226 #: src/screens/Search/SearchResults.tsx:315 @@ -747,7 +822,7 @@ msgstr "<0>登入<1>或<2>建立帳號<3><4>即可在 Bluesky #: src/components/ageAssurance/AgeAssuranceAccountCard.tsx:276 msgid "<0>Tap here to update your location with GPS." -msgstr "" +msgstr "<0>點一下這裡以使用 GPS 確認您的位置。" #. placeholder {0}: getName(items[1] /* [0] is self, skip it */) #: src/screens/StarterPack/Wizard/index.tsx:494 @@ -795,8 +870,13 @@ msgstr "發生了網路錯誤,請檢查您的網路連線狀態" #: src/components/contacts/screens/VerifyNumber.tsx:99 #: src/components/contacts/screens/VerifyNumber.tsx:155 -#: src/components/dms/dialogs/NewChatDialog.tsx:49 -#: src/components/dms/dialogs/NewChatDialog.tsx:87 +#: src/components/dms/dialogs/NewChatDialog.tsx:56 +#: src/components/dms/dialogs/NewChatDialog.tsx:94 +#: src/components/dms/LeaveConvoPrompt.tsx:38 +#: src/components/moderation/BlockDialog.tsx:286 +#: src/components/moderation/BlockDialog.tsx:312 +#: src/screens/Messages/JoinRequests.tsx:192 +#: src/screens/Messages/JoinRequests.tsx:225 msgid "A network error occurred. Please check your internet connection." msgstr "發生了網路錯誤,請檢查您的網路連線狀態。" @@ -804,7 +884,7 @@ msgstr "發生了網路錯誤,請檢查您的網路連線狀態。" msgid "A new code has been sent" msgstr "已傳送新的驗證碼" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:93 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:94 msgid "A new form of verification" msgstr "全新的驗證機制" @@ -827,11 +907,11 @@ msgstr "一張個人檔案頁面的截圖,顯示跟隨按鈕旁邊新增的鈴 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 "一張貼文編輯器的螢幕截圖。在發布按鈕旁有一個標示為草稿的新按鈕,並帶有彩虹煙火特效。下方的編輯器文字顯示:「嘿,你聽說了嗎? Bluesky 現在有草稿功能了!!!」。" -#: src/components/dms/dialogs/NewChatDialog.tsx:102 +#: src/components/dms/dialogs/NewChatDialog.tsx:109 msgid "A selected recipient is not followed by the sender." -msgstr "" +msgstr "選擇的部分對象沒有被傳送者跟隨。" -#: src/Navigation.tsx:547 +#: src/Navigation.tsx:465 #: src/screens/Settings/AboutSettings.tsx:78 #: src/screens/Settings/Settings.tsx:255 #: src/screens/Settings/Settings.tsx:258 @@ -843,16 +923,26 @@ msgid "Abusive or discriminatory behavior" msgstr "虐待或歧視行為" #. Accept a chat request -#: src/screens/Messages/components/RequestButtons.tsx:286 +#: src/screens/Messages/components/RequestButtons.tsx:287 msgid "Accept" msgstr "接受" -#: src/screens/Messages/components/RequestButtons.tsx:280 +#. 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/RequestListItem.tsx:48 +#: src/screens/Messages/components/IncomingRequestListItem.tsx:51 msgid "Accept Request" msgstr "接受邀請" @@ -860,17 +950,26 @@ msgstr "接受邀請" msgid "Accept this language suggestion" msgstr "套用此建議語言" +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:182 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:186 +msgid "Accepted conversations" +msgstr "已接受的對話" + +#: src/components/intents/GroupChatJoinDialog.tsx:113 +msgid "Access requested! The group owner will review your request." +msgstr "已送出申請!請靜待擁有者確認以加入群組。" + #: src/screens/Settings/AccessibilitySettings.tsx:45 #: src/screens/Settings/Settings.tsx:233 #: src/screens/Settings/Settings.tsx:236 msgid "Accessibility" msgstr "無障礙" -#: src/Navigation.tsx:390 +#: src/Navigation.tsx:388 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/Navigation.tsx:406 +#: src/Navigation.tsx:404 #: src/screens/Login/LoginForm.tsx:192 #: src/screens/Settings/AccountSettings.tsx:56 #: src/screens/Settings/Settings.tsx:173 @@ -878,15 +977,15 @@ msgstr "無障礙設定" msgid "Account" msgstr "帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:426 -#: src/screens/Messages/components/RequestButtons.tsx:97 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:117 -#: src/view/com/profile/ProfileMenu.tsx:188 +#: 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:190 msgctxt "toast" msgid "Account blocked" msgstr "成功封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:203 +#: src/view/com/profile/ProfileMenu.tsx:206 msgctxt "toast" msgid "Account followed" msgstr "成功跟隨帳號" @@ -899,7 +998,7 @@ msgstr "帳號已被停權" msgid "Account is deactivated" msgstr "帳號已停用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:469 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:470 #: src/view/com/profile/ProfileMenu.tsx:160 msgctxt "toast" msgid "Account muted" @@ -926,44 +1025,40 @@ msgstr "帳號提供者" msgid "Account removed from quick access" msgstr "成功從快速存取中移除帳號" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:104 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:88 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 -#: src/view/com/profile/ProfileMenu.tsx:176 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:91 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/view/com/profile/ProfileMenu.tsx:177 msgctxt "toast" msgid "Account unblocked" msgstr "成功解除封鎖帳號" -#: src/view/com/profile/ProfileMenu.tsx:217 +#: src/view/com/profile/ProfileMenu.tsx:221 msgctxt "toast" msgid "Account unfollowed" msgstr "成功取消跟隨帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:449 -#: src/view/com/profile/ProfileMenu.tsx:148 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:450 +#: src/view/com/profile/ProfileMenu.tsx:147 msgctxt "toast" msgid "Account unmuted" msgstr "成功取消靜音帳號" -#: src/components/verification/VerifierDialog.tsx:99 +#: src/components/verification/VerifierDialog.tsx:100 msgid "Accounts with a scalloped blue check mark <0><1/> can verify others. These trusted verifiers are selected by Bluesky." msgstr "帶有扇形藍色勾號徽章的帳號<0><1/>可以對其他帳號授予驗證。這些可靠的驗證者由 Bluesky 官方親自挑選。" #: src/lib/hooks/useNotificationHandler.ts:216 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:105 -#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:204 +#: src/screens/Settings/NotificationSettings/index.tsx:309 msgid "Activity from others" msgstr "來自其他人的動態" -#: src/Navigation.tsx:515 -msgid "Activity notifications" -msgstr "動態通知" - #: src/components/dialogs/lists/ListAddRemoveUsersDialog.tsx:179 #: src/components/dialogs/MutedWords.tsx:337 #: src/components/dialogs/StarterPackDialog.tsx:376 #: src/components/dialogs/StarterPackDialog.tsx:388 -#: src/components/dms/AddMembersFlow.tsx:393 +#: src/components/dms/AddMembersFlow.tsx:410 #: src/view/com/modals/UserAddRemoveLists.tsx:236 msgid "Add" msgstr "新增" @@ -999,8 +1094,8 @@ 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:199 -#: src/view/com/composer/photos/Gallery.tsx:234 +#: 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" @@ -1012,16 +1107,16 @@ msgstr "新增替代文字(選填)" #: src/screens/Settings/Settings.tsx:575 #: src/screens/Settings/Settings.tsx:578 -#: src/view/shell/desktop/LeftNav.tsx:275 -#: src/view/shell/desktop/LeftNav.tsx:278 +#: 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:1401 +#: src/view/com/composer/Composer.tsx:1520 msgid "Add another post" msgstr "加入另一則貼文" -#: src/view/com/composer/Composer.tsx:2067 +#: src/view/com/composer/Composer.tsx:2183 msgid "Add another post to thread" msgstr "新增另一則貼文至討論串" @@ -1035,7 +1130,7 @@ msgstr "新增應用程式專用密碼" msgid "Add App Password" msgstr "新增應用程式專用密碼" -#: src/screens/Settings/AutomationLabelSettings.tsx:166 +#: src/screens/Settings/AutomationLabelSettings.tsx:170 msgid "Add automation label to account" msgstr "加入自動化標記到此帳號" @@ -1043,7 +1138,7 @@ msgstr "加入自動化標記到此帳號" msgid "Add emoji reaction" msgstr "加入表情符號反應" -#: src/components/dms/AddMembersFlow.tsx:474 +#: src/components/dms/AddMembersFlow.tsx:492 msgid "Add group chat members" msgstr "加入群組對話成員" @@ -1052,18 +1147,18 @@ 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:499 +#: src/view/com/composer/SelectMediaButton.tsx:505 msgid "Add media to post" msgstr "加入媒體到貼文" -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:69 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:103 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:122 +#: 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:526 -#: src/components/moderation/ReportDialog/index.tsx:530 +#: src/components/moderation/ReportDialog/index.tsx:528 +#: src/components/moderation/ReportDialog/index.tsx:532 msgid "Add more details (optional)" msgstr "補充更多資訊(選填)" @@ -1091,6 +1186,10 @@ msgstr "新增用戶" 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 "加入反應" @@ -1139,11 +1238,11 @@ 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:97 +#: src/screens/Messages/ConversationSettings/Member.tsx:109 msgid "Added by {0}" msgstr "由 {0} 邀請加入" -#: src/screens/Messages/ConversationSettings/Member.tsx:102 +#: src/screens/Messages/ConversationSettings/Member.tsx:114 msgid "Added by invite link" msgstr "透過邀請連結加入" @@ -1165,12 +1264,12 @@ msgstr "正在新增成員至列表……" msgid "Additional details (limit 1000 characters)" msgstr "補充資訊(1000 個字元以內)" -#: src/components/moderation/ReportDialog/index.tsx:544 +#: src/components/moderation/ReportDialog/index.tsx:546 msgid "Additional details (limit 300 characters)" msgstr "補充資訊(300 個字元以內)" -#: src/screens/Messages/ConversationSettings/Member.tsx:82 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:152 +#: src/screens/Messages/ConversationSettings/Member.tsx:94 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Admin" msgstr "管理員" @@ -1228,12 +1327,12 @@ msgstr "成功提交年齡驗證資訊" msgid "Age assurance only takes a few minutes" msgstr "只需幾分鐘即可完成年齡驗證" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:224 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:220 msgid "alice@example.com" msgstr "alice@example.com" #. the default tab in the interests tab bar -#: src/components/dms/ReactionsDialog.tsx:284 +#: src/components/dms/ReactionsDialog.tsx:288 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:201 #: src/view/screens/Notifications.tsx:86 msgid "All" @@ -1241,7 +1340,7 @@ msgstr "全部" #. Tab label showing the total count of reactions on a chat message. #. placeholder {0}: tab.count -#: src/components/dms/ReactionsDialog.tsx:381 +#: src/components/dms/ReactionsDialog.tsx:385 msgid "All {0}" msgstr "全部 {0} 個" @@ -1278,13 +1377,13 @@ msgstr "允許存取您的私人訊息" msgid "Allow anyone to reply" msgstr "允許任何人回覆" -#: src/screens/Messages/Settings.tsx:138 -#: src/screens/Messages/Settings.tsx:153 +#: src/screens/Messages/Settings.tsx:143 +#: src/screens/Messages/Settings.tsx:158 msgid "Allow direct messages from" msgstr "允許這些人向您發起對話" -#: src/screens/Messages/Settings.tsx:184 -#: src/screens/Messages/Settings.tsx:199 +#: src/screens/Messages/Settings.tsx:189 +#: src/screens/Messages/Settings.tsx:211 msgid "Allow group chat invites from" msgstr "允許這些人向您發起群組對話邀請" @@ -1338,12 +1437,12 @@ msgstr "已經有帳號了?" msgid "Already signed in as @{0}" msgstr "已經以 @{0} 的身分登入" -#: src/components/images/AutoSizedImage.tsx:190 -#: src/components/images/Gallery/index.tsx:522 -#: src/components/images/ImageLayoutGridItem.tsx:120 +#: src/components/images/AutoSizedImage.tsx:204 +#: src/components/images/Gallery/index.tsx:588 +#: src/components/images/ImageLayoutGridItem.tsx:142 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:94 #: src/view/com/composer/GifAltText.tsx:100 -#: src/view/com/composer/photos/Gallery.tsx:209 +#: src/view/com/composer/photos/Gallery.tsx:211 msgid "ALT" msgstr "替代文字" @@ -1362,7 +1461,7 @@ msgid "Alt Text" msgstr "替代文字" #: src/view/com/composer/GifAltText.tsx:105 -#: src/view/com/composer/photos/Gallery.tsx:128 +#: 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 "替代文字可協助失明及弱視人士瞭解圖片內容,也有助於為每個人提供更多資訊。" @@ -1387,7 +1486,7 @@ msgstr "發生錯誤" msgid "An error occurred" msgstr "發生錯誤" -#: src/view/com/composer/state/video.ts:411 +#: src/view/com/composer/state/video.ts:401 msgid "An error occurred while compressing the video." msgstr "壓縮影片時發生錯誤。" @@ -1421,7 +1520,8 @@ msgstr "載入影片時發生錯誤。請稍後再試。" msgid "An error occurred while loading your lists :/" msgstr "載入列表時發生錯誤 :/" -#: src/components/StarterPack/QrCodeDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:81 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:103 msgid "An error occurred while saving the QR code!" msgstr "儲存 QR Code 時發生錯誤!" @@ -1432,11 +1532,11 @@ msgstr "儲存 QR Code 時發生錯誤!" msgid "An error occurred while trying to follow all" msgstr "跟隨所有帳號時發生錯誤" -#: src/view/com/composer/state/video.ts:468 +#: src/view/com/composer/state/video.ts:453 msgid "An error occurred while uploading the video. {message}" msgstr "上傳影片時發生錯誤。{message}" -#: src/view/com/composer/state/video.ts:460 +#: src/view/com/composer/state/video.ts:445 msgid "An error occurred while uploading the video. Please check your internet connection and try again." msgstr "上傳影片時發生錯誤,請檢查您的網路連線狀態,然後再試一次。" @@ -1456,26 +1556,30 @@ msgstr "一張插圖,展示用戶大頭貼照從聯絡人流向 Bluesky 應用 msgid "An illustration of several Bluesky posts alongside repost, like, and comment icons" msgstr "Bluesky 的幾則貼文插圖,旁邊還有轉發、喜歡和留言圖示" +#: 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 "這張插圖說明 Bluesky 官方負責挑選可靠的驗證者,而這些驗證者則進一步為個別帳號授予驗證。" -#: src/screens/Messages/components/InviteLinkDialog.tsx:172 -msgid "An invite link lets people join this group chat without being added directly. You control who can use the link and whether they need your approval. You can disable the link at any time." -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:85 +#: src/components/dms/dialogs/NewChatDialog.tsx:92 msgid "An issue occurred creating the group chat, please try again." -msgstr "" +msgstr "建立群組對話時發生問題,請再試一次。" -#: src/components/dms/dialogs/NewChatDialog.tsx:47 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 msgid "An issue occurred starting the chat, please try again." -msgstr "" +msgstr "開始對話時發生問題,請再試一次。" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:50 msgid "An issue occurred while trying to open the chat" @@ -1485,12 +1589,12 @@ msgstr "開啟對話時發生問題" #: src/components/hooks/useFollowMethods.ts:52 #: src/components/ProfileCard.tsx:508 #: src/components/ProfileCard.tsx:530 -#: src/view/com/notifications/NotificationFeedItem.tsx:770 -#: src/view/com/notifications/NotificationFeedItem.tsx:792 +#: src/view/com/notifications/NotificationFeedItem.tsx:802 +#: src/view/com/notifications/NotificationFeedItem.tsx:824 msgid "An issue occurred, please try again." msgstr "發生問題,請再試一次。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:120 +#: 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 "一張使用 iPhone 示範的圖片,顯示 Bluesky 應用程式中已驗證用戶的個人檔案,其名稱旁邊有一個藍色勾號標記。" @@ -1539,13 +1643,17 @@ msgstr "任何人" msgid "Anyone can interact" msgstr "任何人都可以參與互動" -#: src/screens/Messages/components/InviteLinkDialog.tsx:143 -#: src/screens/Messages/components/InviteLinkDialog.tsx:144 +#: src/components/intents/GroupChatJoinDialog.tsx:340 +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:148 -#: src/screens/Messages/components/InviteLinkDialog.tsx:149 +#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:159 msgid "Anyone can request to join" msgstr "任何人都可以申請加入" @@ -1555,11 +1663,11 @@ msgstr "任何人都可以申請加入" msgid "Anyone who follows me" msgstr "跟隨我的人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:436 +#: 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 "任何都無法再透過此連結加入群組。您隨時都可以建立新的邀請連結。" +msgstr "任何人都無法再透過此連結加入群組,但您可以隨時建立新的邀請連結。" -#: src/Navigation.tsx:555 +#: src/Navigation.tsx:473 #: src/screens/Settings/AppIconSettings/index.tsx:65 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:19 #: src/screens/Settings/AppIconSettings/SettingsListItem.tsx:24 @@ -1597,7 +1705,7 @@ msgstr "密碼名稱必須至少包含 4 個字元" msgid "App passwords" msgstr "應用程式專用密碼" -#: src/Navigation.tsx:358 +#: src/Navigation.tsx:356 #: src/screens/Settings/AppPasswords.tsx:51 msgid "App Passwords" msgstr "應用程式專用密碼" @@ -1618,7 +1726,7 @@ msgstr "申請解除直播停權" #: src/components/moderation/LabelsOnMeDialog.tsx:272 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:83 -#: src/screens/Messages/components/ChatDisabled.tsx:121 +#: src/screens/Messages/components/ChatDisabled.tsx:125 msgctxt "toast" msgid "Appeal submitted" msgstr "成功提交申訴" @@ -1632,14 +1740,14 @@ msgstr "申請解除停權" msgid "Appeal Suspension" msgstr "申請解除停權" -#: src/screens/Messages/components/ChatDisabled.tsx:72 -#: src/screens/Messages/components/ChatDisabled.tsx:75 -#: src/screens/Messages/components/ChatDisabled.tsx:129 -#: src/screens/Messages/components/ChatDisabled.tsx:131 +#: 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/Navigation.tsx:398 +#: src/Navigation.tsx:396 #: src/screens/Settings/AppearanceSettings.tsx:73 #: src/screens/Settings/Settings.tsx:225 #: src/screens/Settings/Settings.tsx:228 @@ -1657,12 +1765,12 @@ msgid "Apply Pull Request" msgstr "套用拉取請求 (Pull Request)" #. placeholder {0}: niceDate(i18n, createdAt, 'medium') -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:630 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:632 msgid "Archived from {0}" msgstr "封存於 {0}" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:601 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:639 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:603 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:641 msgid "Archived post" msgstr "已封存的貼文" @@ -1675,7 +1783,7 @@ msgstr "您真的確定要繼續嗎?" msgid "Are you sure you want to delete the app password \"{0}\"?" msgstr "您確定要刪除此應用程式專用密碼「{0}」嗎?" -#: src/components/dms/MessageContextMenu.tsx:223 +#: 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 "您確定要刪除這則訊息嗎?此訊息只會從您的紀錄中消失,不會對其他成員刪除。" @@ -1688,23 +1796,29 @@ msgstr "您確定要刪除這個新手包嗎?" msgid "Are you sure you want to discard your changes?" msgstr "您確定要放棄變更嗎?" -#: src/screens/Messages/ConversationSettings/prompts.tsx:90 +#: src/screens/Messages/ConversationSettings/prompts.tsx:120 +#: src/screens/Messages/ConversationSettings/prompts.tsx:144 msgid "Are you sure you want to leave {groupName}?" msgstr "您確定要離開 {groupName} 嗎?" -#: src/components/dms/LeaveConvoPrompt.tsx:47 +#: src/components/dms/LeaveConvoPrompt.tsx:57 msgid "Are you sure you want to leave this conversation?" msgstr "您確定要離開這個對話嗎?" -#: src/components/dms/LeaveConvoPrompt.tsx:46 -msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "您確定要離開這段對話嗎?訊息將為您刪除,但不會為其他參與者刪除。" +#: src/components/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 "您確定要將此從您的動態源中移除嗎?" -#: src/view/com/composer/Composer.tsx:1541 +#. placeholder {0}: convoView.name +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:120 +msgid "Are you sure you want to rescind your request to join {0}?" +msgstr "" + +#: src/view/com/composer/Composer.tsx:1656 msgid "Are you sure you'd like to discard this post?" msgstr "您確定要放棄發布這則貼文嗎?" @@ -1724,8 +1838,8 @@ msgstr "藝術" msgid "Artistic or non-erotic nudity." msgstr "帶有藝術性或非色情的裸體。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:607 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:609 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:616 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:618 msgid "Assign topic for algo" msgstr "為演算法指定主題" @@ -1752,7 +1866,7 @@ msgstr "自動化帳號" msgid "Automation label" msgstr "自動化標記" -#: src/Navigation.tsx:414 +#: src/Navigation.tsx:412 #: src/screens/Settings/AutomationLabelSettings.tsx:103 msgid "Automation Label" msgstr "自動化標記" @@ -1767,12 +1881,12 @@ msgstr "自動播放影片和 GIF" msgid "Available" msgstr "可用" -#: src/components/dms/AddMembersFlow.tsx:342 -#: src/components/dms/AddMembersFlow.tsx:509 -#: src/components/dms/AddMembersFlow.tsx:515 -#: src/components/dms/InitiateChatFlow.tsx:491 -#: src/components/dms/InitiateChatFlow.tsx:676 -#: src/components/dms/InitiateChatFlow.tsx:683 +#: 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/moderation/LabelsOnMeDialog.tsx:334 #: src/components/moderation/LabelsOnMeDialog.tsx:335 #: src/screens/Login/ChooseAccountForm.tsx:98 @@ -1783,9 +1897,11 @@ msgstr "可用" #: src/screens/Login/LoginForm.tsx:322 #: src/screens/Login/SetNewPasswordForm.tsx:172 #: src/screens/Login/SetNewPasswordForm.tsx:178 -#: src/screens/Messages/components/ChatDisabled.tsx:160 -#: src/screens/Messages/components/ChatDisabled.tsx:162 -#: src/screens/Messages/Inbox.tsx:242 +#: 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:240 #: src/screens/Profile/Header/Shell.tsx:174 #: src/screens/Settings/components/ChangePasswordDialog.tsx:273 #: src/screens/Settings/components/ChangePasswordDialog.tsx:282 @@ -1796,7 +1912,7 @@ msgstr "可用" msgid "Back" msgstr "返回" -#: src/screens/Messages/Inbox.tsx:241 +#: src/screens/Messages/Inbox.tsx:239 msgid "Back to Chats" msgstr "返回對話" @@ -1832,7 +1948,7 @@ msgstr "在撰寫貼文或回覆之前,您必須先驗證您的電子信箱。 msgid "Before creating a starter pack, you must first verify your email." msgstr "在建立新手包之前,您必須先驗證您的電子信箱。" -#: src/screens/Messages/components/RequestButtons.tsx:259 +#: src/screens/Messages/components/RequestButtons.tsx:260 msgid "Before you can accept this chat request, you must first verify your email." msgstr "在接受此對話邀請之前,您必須先驗證您的電子信箱。" @@ -1840,13 +1956,14 @@ msgstr "在接受此對話邀請之前,您必須先驗證您的電子信箱。 msgid "Before you can get notifications for {name}'s posts, you must first verify your email." msgstr "在您開始接收 {name} 的貼文通知之前,您必須先驗證您的電子信箱。" -#: src/components/dms/dialogs/NewChatDialog.tsx:148 +#: src/components/dms/dialogs/NewChatDialog.tsx:155 #: src/components/dms/MessageProfileButton.tsx:60 -#: src/screens/Messages/ChatList.tsx:142 -#: src/screens/Messages/ChatList.tsx:200 -#: src/screens/Messages/ChatList.tsx:448 -#: src/screens/Messages/Conversation.tsx:200 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:94 +#: src/screens/Messages/ChatList.tsx:154 +#: src/screens/Messages/ChatList.tsx:172 +#: src/screens/Messages/ChatList.tsx:273 +#: 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 "在向其他人傳送訊息之前,您必須先驗證您的電子信箱。" @@ -1874,59 +1991,53 @@ msgstr "出生日期" msgid "Birthday" msgstr "生日" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:853 -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Messages/ConversationSettings/prompts.tsx:115 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:563 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:192 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 msgid "Block" msgstr "封鎖" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:216 msgid "Block {displayName}" msgstr "封鎖 {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:747 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:749 -#: src/screens/Messages/components/RequestButtons.tsx:149 -#: src/screens/Messages/components/RequestButtons.tsx:151 +#: 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:469 #: src/view/com/profile/ProfileMenu.tsx:476 msgid "Block account" msgstr "封鎖帳號" -#: src/screens/Messages/ConversationSettings/prompts.tsx:112 +#: src/components/moderation/BlockDialog.tsx:148 msgid "Block account?" msgstr "封鎖帳號?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:850 -#: src/view/com/profile/ProfileMenu.tsx:546 -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:143 +#: src/components/dms/AfterReportDialog.tsx:148 msgid "Block and delete" -msgstr "" +msgstr "封鎖並刪除" #. After-report action for a conversation #: src/components/dms/AfterReportConversationDialog.tsx:167 msgctxt "button" msgid "Block and leave" -msgstr "" +msgstr "封鎖並退出" #: src/screens/ProfileList/components/SubscribeMenu.tsx:119 msgid "Block list" msgstr "封鎖列表" -#: src/screens/Messages/components/ChatStatusInfo.tsx:67 +#: src/screens/Messages/components/ChatStatusInfo.tsx:61 msgid "Block or report" msgstr "封鎖或檢舉" @@ -1936,9 +2047,9 @@ msgstr "要封鎖這些帳號嗎?" #: src/components/dms/AfterReportConversationDialog.tsx:221 #: src/components/dms/AfterReportConversationDialog.tsx:224 -#: src/components/dms/AfterReportDialog.tsx:149 -#: src/components/dms/AfterReportDialog.tsx:184 -#: src/components/dms/AfterReportDialog.tsx:187 +#: src/components/dms/AfterReportDialog.tsx:154 +#: src/components/dms/AfterReportDialog.tsx:189 +#: src/components/dms/AfterReportDialog.tsx:192 msgid "Block user" msgstr "封鎖用戶" @@ -1946,17 +2057,17 @@ msgstr "封鎖用戶" #: src/components/dms/AfterReportConversationDialog.tsx:182 msgctxt "button" msgid "Block user" -msgstr "" +msgstr "封鎖用戶" -#: src/components/dms/AfterReportDialog.tsx:180 +#: 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 "" +msgstr "封鎖此帳號或退出對話(複選)" -#: src/components/Post/Embed/index.tsx:197 +#: src/components/Post/Embed/index.tsx:216 msgid "Blocked" msgstr "已被封鎖" @@ -1964,14 +2075,12 @@ msgstr "已被封鎖" msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:199 +#: src/Navigation.tsx:192 #: src/view/screens/ModerationBlockedAccounts.tsx:95 msgid "Blocked Accounts" msgstr "已封鎖帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:851 -#: src/screens/Messages/ConversationSettings/prompts.tsx:113 -#: src/view/com/profile/ProfileMenu.tsx:558 +#: src/components/moderation/BlockDialog.tsx:163 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "被封鎖的帳號無法在您的討論串中回覆、提及您,或以其他方式與您互動。" @@ -1987,7 +2096,7 @@ msgstr "封鎖該帳號無法阻止其標記您的帳號。" msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." msgstr "您封鎖的帳號對所有人可見。他們無法提及您、在您的討論串中回覆或以其他方式與您互動。" -#: src/view/com/profile/ProfileMenu.tsx:555 +#: 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 "封鎖該帳號無法阻止其標記您的帳號,但他將無法在您的討論串中回覆,或以其他方式與您互動。" @@ -2000,7 +2109,7 @@ msgstr "部落格" msgid "Bluesky" msgstr "Bluesky" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:655 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:657 msgid "Bluesky cannot confirm the authenticity of the claimed date." msgstr "Bluesky 無法確認貼文發布日期的真實性。" @@ -2029,7 +2138,7 @@ msgstr "Bluesky 因朋友而更好!" msgid "Bluesky is more fun with friends" msgstr "與朋友一起使用 Bluesky 更有趣" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:107 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:108 msgid "Bluesky is more fun with friends! Import your contacts to see who’s already here." msgstr "與朋友一起使用 Bluesky 更有趣!匯入聯絡人來看看誰也在使用吧。" @@ -2037,11 +2146,15 @@ msgstr "與朋友一起使用 Bluesky 更有趣!匯入聯絡人來看看誰也 msgid "Bluesky is more fun with friends. Do you want to invite some of yours? <0/>" msgstr "與朋友一起使用 Bluesky 更有趣。想邀請一些朋友加入嗎?<0/>" +#: 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 "Bluesky Social 服務條款" -#: src/screens/Settings/FindContactsSettings.tsx:549 +#: src/screens/Settings/FindContactsSettings.tsx:570 msgid "Bluesky stores your contacts as encoded data. Removing your contacts will immediately delete this data." msgstr "Bluesky 會把您的聯絡人以編碼加密形式儲存。刪除聯絡人也會立即刪除此資訊。" @@ -2053,7 +2166,7 @@ msgstr "Bluesky 將從您的個人社群網路中選擇一組推薦的帳號。" msgid "Bluesky will not show your profile and posts to logged-out users. Other apps may not honor this request. This does not make your account private." msgstr "Bluesky 的官方平台將不會向未登入的用戶顯示您的個人檔案和貼文。其他應用程式未必會遵循這個要求。這不會使您的帳號轉為非公開狀態。" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:134 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:136 msgid "Bluesky will proactively verify notable and authentic accounts." msgstr "Bluesky 官方會主動確認部分知名帳號的真實性並授予驗證。" @@ -2081,6 +2194,10 @@ msgstr "書籍" 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" @@ -2137,25 +2254,35 @@ msgstr "商務" 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, '@') -#. placeholder {0}: sanitizeHandle(labeler.creator.handle, '@') #: src/components/LabelingServiceCard/index.tsx:62 -#: src/components/moderation/ReportDialog/index.tsx:845 +#: src/components/moderation/ReportDialog/index.tsx:847 +#: src/screens/Messages/JoinRequest.tsx:181 #: src/screens/Search/components/StarterPackCard.tsx:107 #: src/screens/Search/Explore.tsx:971 msgid "By {0}" msgstr "來自 {0}" +#. 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}: sanitizeHandle(info.creatorHandle, '@') -#: src/screens/Profile/components/ProfileFeedHeader.tsx:462 +#: src/components/intents/GroupChatJoinDialog.tsx:363 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:451 msgid "By <0>{0}" msgstr "來自 <0>{0}" -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:79 -msgid "by <0>@{0}" -msgstr "" +#. The group chat creator, in the format 'By {displayName}'. +#: src/components/dms/ChatInvite/Card.tsx:79 +msgid "By <0>{ownerDisplayName}" +msgstr "來自 <0>{ownerDisplayName}" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:182 msgid "By clicking \"Continue\" you acknowledge that you understand and agree to these updates." @@ -2181,10 +2308,14 @@ msgstr "建立帳號即表示您同意<0>服務條款。" msgid "By you" msgstr "由您建立" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:69 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 @@ -2192,15 +2323,18 @@ msgstr "相機" #: 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:126 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:132 +#: 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:367 +#: src/components/moderation/BlockDialog.tsx:202 #: src/components/PostControls/RepostButton.tsx:210 #: src/components/Prompt.tsx:152 #: src/components/Prompt.tsx:154 @@ -2212,10 +2346,12 @@ msgstr "相機" #: src/features/liveNow/components/GoLiveDialog.tsx:254 #: src/lib/media/picker.tsx:38 #: src/screens/Deactivated.tsx:150 -#: src/screens/Messages/components/InviteLinkDialog.tsx:458 -#: src/screens/Messages/components/InviteLinkDialog.tsx:462 -#: src/screens/Messages/ConversationSettings/prompts.tsx:70 -#: src/screens/Messages/ConversationSettings/prompts.tsx:94 +#: src/screens/Messages/components/InviteLinkDialog.tsx:500 +#: src/screens/Messages/components/InviteLinkDialog.tsx:504 +#: src/screens/Messages/ConversationSettings/prompts.tsx:100 +#: src/screens/Messages/ConversationSettings/prompts.tsx:124 +#: src/screens/Messages/ConversationSettings/prompts.tsx:148 +#: src/screens/Messages/ConversationSettings/prompts.tsx:172 #: src/screens/Profile/Header/EditProfileDialog.tsx:215 #: src/screens/Profile/Header/EditProfileDialog.tsx:223 #: src/screens/Search/Shell.tsx:405 @@ -2228,11 +2364,11 @@ msgstr "相機" #: src/screens/Settings/Settings.tsx:300 #: src/screens/Takendown.tsx:102 #: src/screens/Takendown.tsx:105 -#: src/view/com/composer/Composer.tsx:1619 -#: src/view/com/composer/Composer.tsx:1629 +#: src/view/com/composer/Composer.tsx:1734 +#: src/view/com/composer/Composer.tsx:1744 #: src/view/com/composer/photos/EditImageDialog.web.tsx:44 #: src/view/com/composer/photos/EditImageDialog.web.tsx:53 -#: src/view/shell/desktop/LeftNav.tsx:227 +#: src/view/shell/desktop/LeftNav.tsx:228 msgid "Cancel" msgstr "取消" @@ -2248,9 +2384,9 @@ msgstr "取消重新啟用並登出" msgid "Cancel search" msgstr "放棄搜尋" -#: src/components/PostControls/index.tsx:110 -#: src/components/PostControls/index.tsx:141 -#: src/components/PostControls/index.tsx:169 +#: 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 "無法與被封鎖的用戶進行互動" @@ -2264,7 +2400,7 @@ msgstr "字幕 (.vtt)" msgid "Captions & alt text" msgstr "字幕和替代文字" -#: src/components/images/Gallery/index.tsx:255 +#: src/components/images/Gallery/index.tsx:275 msgid "carousel" msgstr "輪播" @@ -2297,7 +2433,7 @@ msgstr "變更應用程式語言" msgid "Change Handle" msgstr "變更帳號代碼" -#: src/components/moderation/ReportDialog/index.tsx:443 +#: src/components/moderation/ReportDialog/index.tsx:445 msgid "Change moderation service" msgstr "切換內容管理服務" @@ -2310,11 +2446,11 @@ msgstr "變更密碼" msgid "Change password dialog" msgstr "變更密碼對話框" -#: src/components/moderation/ReportDialog/index.tsx:310 +#: src/components/moderation/ReportDialog/index.tsx:312 msgid "Change report category" msgstr "變更檢舉類別" -#: src/components/moderation/ReportDialog/index.tsx:388 +#: src/components/moderation/ReportDialog/index.tsx:390 msgid "Change report reason" msgstr "變更檢舉理由" @@ -2344,15 +2480,15 @@ 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:573 -#: src/view/shell/bottom-bar/BottomBar.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:697 -#: src/view/shell/Drawer.tsx:469 +#: src/Navigation.tsx:491 +#: src/view/shell/bottom-bar/BottomBar.tsx:230 +#: src/view/shell/desktop/LeftNav.tsx:698 +#: src/view/shell/Drawer.tsx:525 msgid "Chat" msgstr "對話" -#: src/screens/Messages/components/RequestButtons.tsx:84 -#: src/screens/Messages/components/RequestButtons.tsx:330 +#: src/screens/Messages/components/RequestButtons.tsx:91 +#: src/screens/Messages/components/RequestButtons.tsx:331 msgctxt "toast" msgid "Chat deleted" msgstr "成功刪除對話" @@ -2361,6 +2497,12 @@ msgstr "成功刪除對話" msgid "Chat ended" msgstr "對話已結束" +#: src/components/dms/ChatInvite/Unavailable.tsx:25 +#: src/components/intents/GroupChatJoinDialog.tsx:256 +#: src/screens/Messages/JoinRequest.tsx:97 +msgid "Chat invite link no longer available" +msgstr "對話邀請連結已失效" + #: src/components/dms/getSystemMessageInfo.ts:104 msgid "Chat locked" msgstr "對話已鎖定" @@ -2373,35 +2515,44 @@ msgstr "對話訊息 - 靜音" msgid "Chat messages - sound" msgstr "對話訊息 - 聲音" -#: src/components/dms/ConvoMenu.tsx:216 +#: src/components/dms/ConvoMenu.tsx:206 msgctxt "toast" msgid "Chat muted" msgstr "成功靜音對話" -#: src/components/dms/dialogs/NewChatDialog.tsx:66 -msgid "Chat recipient is not followed by the sender." +#: src/components/moderation/BlockDialog.tsx:288 +#: src/components/moderation/BlockDialog.tsx:316 +msgid "Chat not found." msgstr "" -#: src/Navigation.tsx:588 +#: src/components/moderation/BlockDialog.tsx:292 +msgid "Chat owners cannot leave a group chat." +msgstr "" + +#: src/components/dms/dialogs/NewChatDialog.tsx:73 +msgid "Chat recipient is not followed by the sender." +msgstr "訊息接收者沒有被傳送者跟隨。" + +#: src/Navigation.tsx:511 msgid "Chat request inbox" msgstr "對話邀請收件匣" -#: src/screens/Messages/Inbox.tsx:57 -#: src/screens/Messages/Inbox.tsx:99 +#: src/screens/Messages/Inbox.tsx:61 +#: src/screens/Messages/Inbox.tsx:104 msgid "Chat requests" msgstr "對話邀請" -#: src/components/dms/ConvoMenu.tsx:84 -#: src/Navigation.tsx:583 -#: src/screens/Messages/ChatList.tsx:79 +#: src/components/dms/ConvoMenu.tsx:88 +#: src/Navigation.tsx:506 #: src/screens/Messages/ChatList.tsx:83 -#: src/screens/Messages/ChatList.tsx:472 -#: src/screens/Messages/ChatList.tsx:505 -#: src/screens/Messages/Settings.tsx:37 +#: src/screens/Messages/ChatList.tsx:87 +#: src/screens/Messages/ChatList.tsx:569 +#: src/screens/Messages/ChatList.tsx:604 +#: src/screens/Messages/Settings.tsx:39 msgid "Chat settings" msgstr "對話設定" -#: src/screens/Messages/Settings.tsx:129 +#: src/screens/Messages/Settings.tsx:134 msgid "Chat Settings" msgstr "對話設定" @@ -2418,14 +2569,14 @@ msgstr "已把對話標題變更為 {0}" msgid "Chat unlocked" msgstr "對話已解除鎖定" -#: src/components/dms/ConvoMenu.tsx:218 +#: src/components/dms/ConvoMenu.tsx:208 msgctxt "toast" msgid "Chat unmuted" msgstr "成功取消靜音對話" -#: src/screens/Messages/ChatList.tsx:73 -#: src/screens/Messages/ChatList.tsx:460 -#: src/screens/Messages/ChatList.tsx:494 +#: src/screens/Messages/ChatList.tsx:77 +#: src/screens/Messages/ChatList.tsx:555 +#: src/screens/Messages/ChatList.tsx:593 msgid "Chats" msgstr "對話" @@ -2479,7 +2630,7 @@ msgstr "選擇貼文語言" msgid "Choose this color as your avatar" msgstr "選擇這個顏色作為您的大頭貼照背景" -#: src/screens/Messages/components/InviteLinkDialog.tsx:211 +#: src/screens/Messages/components/InviteLinkDialog.tsx:243 msgid "Choose who can join this group chat and how." msgstr "選擇哪些人可以加入此群組及邀請規則。" @@ -2558,7 +2709,7 @@ msgstr "點一下這裡來登出" msgid "Click here to resend the email" msgstr "點一下這裡來重新傳送電子郵件" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:384 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:388 msgid "Click here to restart the verification process." msgstr "點一下這裡以重新開始驗證程序。" @@ -2567,7 +2718,7 @@ msgstr "點一下這裡以重新開始驗證程序。" msgid "Click here to update your birthdate" msgstr "點一下這裡來更新您的出生日期" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:276 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:285 msgid "Click here to update your email" msgstr "點一下這裡來更新您的電子信箱" @@ -2580,7 +2731,7 @@ msgstr "點一下這裡以檢視此群組對話的邀請連結" msgid "Click to open tag menu for {0}" msgstr "點此以開啟 {0} 的標籤選單" -#: src/components/dms/MessageItem.tsx:559 +#: src/components/dms/MessageItem.tsx:533 msgid "Click to retry failed message" msgstr "點此以重新傳送訊息" @@ -2594,28 +2745,30 @@ msgstr "點此以重新傳送訊息" #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:233 #: src/components/ageAssurance/AgeAssuranceRedirectDialog.tsx:239 #: src/components/dialogs/LanguageSelectDialog.tsx:359 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:159 -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:168 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:164 -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:172 -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:139 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:176 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:185 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:191 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:199 +#: 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:367 +#: 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:89 #: src/components/dms/AfterReportDialog.tsx:94 -#: src/components/dms/AfterReportDialog.tsx:207 +#: 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:516 +#: src/components/dms/InitiateChatFlow.tsx:565 +#: src/components/intents/GroupChatJoinDialog.tsx:233 +#: src/components/intents/GroupChatJoinDialog.tsx:268 #: src/components/NewskieDialog.tsx:169 #: src/components/NewskieDialog.tsx:175 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:107 @@ -2623,14 +2776,14 @@ msgstr "點此以重新傳送訊息" #: 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: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:217 #: src/features/liveNow/components/EditLiveDialog.tsx:223 -#: src/screens/Messages/components/InviteLinkDialog.tsx:481 -#: src/screens/Messages/components/InviteLinkDialog.tsx:486 +#: 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 @@ -2639,7 +2792,7 @@ msgid "Close" msgstr "關閉" #: src/components/Dialog/index.web.tsx:127 -#: src/components/Dialog/index.web.tsx:313 +#: src/components/Dialog/index.web.tsx:317 msgid "Close active dialog" msgstr "關閉目前的對話框" @@ -2647,6 +2800,10 @@ msgstr "關閉目前的對話框" msgid "Close alert" msgstr "關閉警告" +#: src/screens/Messages/components/RequestStatus.tsx:82 +msgid "Close banner" +msgstr "關閉橫幅" + #: src/view/com/util/BottomSheetCustomBackdrop.tsx:36 msgid "Close bottom drawer" msgstr "關閉底部導航列" @@ -2657,8 +2814,10 @@ msgstr "關閉底部導航列" #: src/components/dialogs/LanguageSelectDialog.tsx:221 #: src/components/dialogs/LanguageSelectDialog.tsx:322 #: src/components/dialogs/LanguageSelectDialog.tsx:354 +#: src/components/dialogs/NotificationSettingsDialog.tsx:94 +#: src/components/moderation/BlockDialog.tsx:199 #: src/components/verification/VerificationsDialog.tsx:138 -#: src/components/verification/VerifierDialog.tsx:139 +#: src/components/verification/VerifierDialog.tsx:140 #: src/features/gifPicker/components/GifPickerErrorBoundary.tsx:36 msgid "Close dialog" msgstr "關閉對話框" @@ -2672,17 +2831,29 @@ msgid "Close image" msgstr "關閉圖片" #: src/components/Lightbox/Lightbox.web.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:326 +#: 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 +#: src/components/Lightbox/chrome/ImageMenu.tsx:84 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:226 +#: src/components/intents/GroupChatJoinDialog.tsx:227 +#: src/components/intents/GroupChatJoinDialog.tsx:263 +#: src/components/intents/GroupChatJoinDialog.tsx:264 #: src/components/Menu/index.tsx:361 msgid "Close this dialog" msgstr "關閉此對話框" @@ -2695,18 +2866,22 @@ msgstr "關閉歡迎畫面" msgid "Closes password update alert" msgstr "關閉密碼更新警告" -#: src/view/com/composer/Composer.tsx:1627 +#: src/view/com/composer/Composer.tsx:1742 msgid "Closes post composer and discards post draft" msgstr "關閉貼文編輯器並捨棄草稿" -#: src/view/com/notifications/NotificationFeedItem.tsx:592 +#: src/view/com/notifications/NotificationFeedItem.tsx:605 msgid "Collapse list of users" msgstr "折疊用戶列表" -#: src/view/com/notifications/NotificationFeedItem.tsx:921 +#: src/view/com/notifications/NotificationFeedItem.tsx:953 msgid "Collapses list of users for a given notification" msgstr "折疊指定通知的用戶列表" +#: src/features/inviteFriends/components/ThemePicker.tsx:66 +msgid "Color" +msgstr "" + #: src/components/dialogs/Embed.tsx:150 #: src/screens/Settings/AppearanceSettings.tsx:81 msgid "Color mode" @@ -2725,7 +2900,7 @@ msgid "Comics" msgstr "漫畫" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:46 -#: src/Navigation.tsx:348 +#: src/Navigation.tsx:346 #: src/view/screens/CommunityGuidelines.tsx:28 msgid "Community Guidelines" msgstr "社群準則" @@ -2740,12 +2915,12 @@ msgstr "完成驗證" #: src/lib/hotkeys/index.tsx:66 #: src/view/com/feeds/ComposerPrompt.tsx:147 -#: src/view/shell/desktop/LeftNav.tsx:586 +#: src/view/shell/desktop/LeftNav.tsx:587 msgid "Compose new post" msgstr "撰寫新貼文" #. placeholder {0}: MAX_GRAPHEME_LENGTH || 0 -#: src/view/com/composer/Composer.tsx:1503 +#: src/view/com/composer/Composer.tsx:1618 msgid "Compose posts up to {0, plural, other {# characters}} in length" msgstr "撰寫最多 {0, plural,other {# 個字元}}的貼文" @@ -2753,11 +2928,11 @@ msgstr "撰寫最多 {0, plural,other {# 個字元}}的貼文" msgid "Compose reply" msgstr "撰寫回覆" -#: src/view/com/composer/Composer.tsx:2464 +#: src/view/com/composer/Composer.tsx:2580 msgid "Compressing GIF..." msgstr "正在壓縮 GIF……" -#: src/view/com/composer/Composer.tsx:2466 +#: src/view/com/composer/Composer.tsx:2582 msgid "Compressing video..." msgstr "正在壓縮影片……" @@ -2780,7 +2955,7 @@ msgstr "在 <0>內容篩選 中調整設定。" msgid "Confirm" msgstr "確認" -#: src/components/dialogs/EmailDialog/components/TokenField.tsx:38 +#: src/components/dialogs/EmailDialog/components/TokenField.tsx:37 #: src/screens/Login/LoginForm.tsx:284 #: src/screens/Settings/components/ChangePasswordDialog.tsx:187 #: src/screens/Settings/components/ChangePasswordDialog.tsx:191 @@ -2817,7 +2992,7 @@ msgid "Contact support" msgstr "聯絡支援" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:65 -#: src/screens/Settings/FindContactsSettings.tsx:157 +#: 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 "由於應用程式無法存取此裝置的聯絡資訊,因此無法使用聯絡人同步功能。" @@ -2825,11 +3000,11 @@ msgstr "由於應用程式無法存取此裝置的聯絡資訊,因此無法使 msgid "Contact us" msgstr "聯絡我們" -#: src/screens/Settings/FindContactsSettings.tsx:505 +#: src/screens/Settings/FindContactsSettings.tsx:526 msgid "Contacts imported" msgstr "已匯入聯絡人" -#: src/screens/Settings/FindContactsSettings.tsx:478 +#: src/screens/Settings/FindContactsSettings.tsx:499 msgid "Contacts removed" msgstr "已刪除聯絡人" @@ -2842,7 +3017,7 @@ msgstr "內容與媒體" msgid "Content and media" msgstr "內容與媒體" -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:449 msgid "Content and Media" msgstr "內容與媒體" @@ -2889,7 +3064,7 @@ msgstr "內容選單背景,點一下以關閉選單。" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:163 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:171 #: src/screens/Onboarding/StepInterests/index.tsx:93 -#: src/screens/Onboarding/StepProfile/index.tsx:303 +#: src/screens/Onboarding/StepProfile/index.tsx:304 #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:305 #: src/screens/Onboarding/StepSuggestedStarterpacks/index.tsx:117 msgid "Continue" @@ -2908,29 +3083,29 @@ msgstr "繼續載入討論串" msgid "Continue thread..." msgstr "繼續載入討論串……" -#: src/components/dms/AddMembersFlow.tsx:307 -#: src/components/dms/InitiateChatFlow.tsx:443 +#: src/components/dms/AddMembersFlow.tsx:324 +#: src/components/dms/InitiateChatFlow.tsx:493 msgid "Continue to group name" msgstr "繼續設定群組名稱" #: src/screens/Onboarding/StepInterests/index.tsx:90 -#: src/screens/Onboarding/StepProfile/index.tsx:300 +#: src/screens/Onboarding/StepProfile/index.tsx:301 #: 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:65 +#: src/screens/Messages/Conversation.tsx:63 msgid "Conversation" msgstr "對話" -#: src/screens/Messages/components/ChatListItem.tsx:309 +#: src/screens/Messages/components/ChatListItem.tsx:321 msgid "Conversation deleted" msgstr "對話已刪除" -#: src/components/dms/AfterReportDialog.tsx:144 -#: src/components/dms/AfterReportDialog.tsx:147 +#: src/components/dms/AfterReportDialog.tsx:149 +#: src/components/dms/AfterReportDialog.tsx:152 msgctxt "toast" msgid "Conversation deleted" msgstr "成功刪除對話" @@ -2939,15 +3114,22 @@ msgstr "成功刪除對話" #: src/components/dms/AfterReportConversationDialog.tsx:179 msgctxt "toast" msgid "Conversation left" -msgstr "" +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:162 msgid "Copied build version to clipboard" msgstr "成功複製組建版本號至剪貼簿" -#: src/components/dms/MessageContextMenu.tsx:79 +#: src/components/dms/ChatInvite/Root.tsx:99 +#: src/components/dms/MessageContextMenu.tsx:73 #: src/components/PostControls/DiscoverDebug.tsx:36 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:272 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:273 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:77 #: src/lib/sharing.ts:24 #: src/lib/sharing.ts:42 @@ -2964,7 +3146,12 @@ msgstr "複製成功!" msgid "Copies build version to clipboard" msgstr "複製組建版本號至剪貼簿" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:255 +msgid "Copies the canonical profile URL to the clipboard" +msgstr "" + +#: src/components/StarterPack/QrCodeDialog.tsx:198 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:265 msgid "Copy" msgstr "複製" @@ -2997,6 +3184,11 @@ msgstr "複製 DID" msgid "Copy host" msgstr "複製主機名稱 (Host)" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:254 +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" @@ -3018,8 +3210,8 @@ msgstr "複製列表連結" msgid "Copy link to post" msgstr "複製貼文連結" -#: src/view/com/profile/ProfileMenu.tsx:282 -#: src/view/com/profile/ProfileMenu.tsx:293 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:295 msgid "Copy link to profile" msgstr "複製個人檔案連結" @@ -3027,8 +3219,8 @@ msgstr "複製個人檔案連結" msgid "Copy link to starter pack" msgstr "複製新手包連結" +#: src/components/dms/MessageContextMenu.tsx:165 #: src/components/dms/MessageContextMenu.tsx:169 -#: src/components/dms/MessageContextMenu.tsx:173 msgid "Copy message text" msgstr "複製訊息文字" @@ -3037,12 +3229,12 @@ msgstr "複製訊息文字" msgid "Copy post at:// URI" msgstr "複製貼文 at:// 連結" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:562 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:564 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 msgid "Copy post text" msgstr "複製貼文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:181 +#: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Copy QR code" msgstr "複製 QR Code" @@ -3052,11 +3244,15 @@ msgstr "複製 TXT 記錄值" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:41 #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:108 -#: src/Navigation.tsx:353 +#: src/Navigation.tsx:351 #: src/view/screens/CopyrightPolicy.tsx:25 msgid "Copyright Policy" msgstr "著作權政策" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:79 +msgid "Could not capture QR code" +msgstr "" + #: src/view/com/feeds/MissingFeed.tsx:42 msgid "Could not connect to custom feed" msgstr "無法連線到自訂動態源" @@ -3065,31 +3261,43 @@ msgstr "無法連線到自訂動態源" msgid "Could not connect to feed service" msgstr "無法連線到動態源服務" -#: src/screens/Messages/components/MessageInputEmbed.tsx:158 -msgid "Could not fetch post" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:120 +msgid "Could not copy – please try again" msgstr "" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:74 +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:212 -#: src/screens/Settings/FindContactsSettings.tsx:403 +#: 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:218 -#: src/screens/Settings/FindContactsSettings.tsx:409 +#: src/screens/Settings/FindContactsSettings.tsx:239 +#: src/screens/Settings/FindContactsSettings.tsx:430 msgid "Could not follow all matches. {0}" msgstr "無法跟隨所有確認的聯絡人。{0}" #: src/components/dms/AfterReportConversationDialog.tsx:158 -#: src/components/dms/AfterReportDialog.tsx:134 -#: src/components/dms/LeaveConvoPrompt.tsx:34 +#: src/components/dms/AfterReportDialog.tsx:139 +#: src/components/dms/LeaveConvoPrompt.tsx:36 msgid "Could not leave chat" msgstr "無法離開對話" +#: src/components/moderation/BlockDialog.tsx:284 +msgid "Could not leave chat." +msgstr "" + #: src/screens/Profile/ProfileFeed/index.tsx:73 msgid "Could not load feed" msgstr "無法載入動態" @@ -3100,7 +3308,11 @@ msgstr "無法載入動態" msgid "Could not load list" msgstr "無法載入列表" -#: src/components/dms/ConvoMenu.tsx:222 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:169 +msgid "Could not load profile" +msgstr "" + +#: src/components/dms/ConvoMenu.tsx:212 msgid "Could not mute chat" msgstr "無法靜音對話" @@ -3108,11 +3320,19 @@ msgstr "無法靜音對話" msgid "Could not process your video" msgstr "無法處理您的影片" +#: src/components/moderation/BlockDialog.tsx:310 +msgid "Could not remove member." +msgstr "" + #. placeholder {0}: cleanError(error) #: src/components/activity-notifications/SubscribeProfileDialog.tsx:295 msgid "Could not save changes: {0}" msgstr "無法儲存這些變更:{0}" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:60 +msgid "Could not share – please try again" +msgstr "" + #: src/state/queries/notifications/settings.ts:49 msgid "Could not update notification settings" msgstr "無法更新通知設定" @@ -3139,7 +3359,7 @@ 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:452 +#: src/components/dms/InitiateChatFlow.tsx:502 #: src/components/StarterPack/ProfileStarterPacks.tsx:329 msgid "Create" msgstr "建立" @@ -3153,13 +3373,13 @@ msgstr "建立列表" msgid "Create a list from this starter pack" msgstr "轉存此新手包到新的列表" -#: src/components/StarterPack/QrCodeDialog.tsx:166 +#: src/components/StarterPack/QrCodeDialog.tsx:169 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:619 +#: src/Navigation.tsx:542 msgid "Create a starter pack" msgstr "建立一個新手包" @@ -3174,13 +3394,14 @@ msgstr "為我產生一個新手包" #: src/components/WelcomeModal.tsx:158 #: src/components/WelcomeModal.tsx:166 +#: src/screens/Messages/JoinRequest.tsx:314 #: src/screens/Signup/index.tsx:135 #: src/view/com/auth/SplashScreen.tsx:107 #: src/view/com/auth/SplashScreen.web.tsx:116 -#: src/view/shell/bottom-bar/BottomBar.tsx:332 -#: src/view/shell/bottom-bar/BottomBar.tsx:337 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:235 +#: src/view/shell/bottom-bar/BottomBar.tsx:333 +#: src/view/shell/bottom-bar/BottomBar.tsx:338 #: 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" @@ -3198,7 +3419,7 @@ msgstr "建立帳號" msgid "Create an account without using this starter pack" msgstr "不使用此新手包建立帳號" -#: src/screens/Onboarding/StepProfile/index.tsx:316 +#: src/screens/Onboarding/StepProfile/index.tsx:317 msgid "Create an avatar instead" msgstr "或是建立一個大頭貼照" @@ -3206,7 +3427,7 @@ msgstr "或是建立一個大頭貼照" msgid "Create another" msgstr "再建立一個" -#: src/components/dms/InitiateChatFlow.tsx:451 +#: src/components/dms/InitiateChatFlow.tsx:501 msgid "Create group chat" msgstr "建立群組對話" @@ -3228,19 +3449,20 @@ msgstr "轉存新手包到新的列表" msgid "Create moderation list" msgstr "建立內容管理列表" +#: src/screens/Messages/JoinRequest.tsx:308 #: src/view/com/auth/SplashScreen.tsx:100 #: src/view/com/auth/SplashScreen.web.tsx:108 msgid "Create new account" msgstr "建立新帳號" -#: src/screens/Messages/ConversationSettings/index.tsx:488 +#: src/screens/Messages/ConversationSettings/index.tsx:553 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:707 -#: src/components/moderation/ReportDialog/index.tsx:752 +#: src/components/moderation/ReportDialog/index.tsx:709 +#: src/components/moderation/ReportDialog/index.tsx:754 msgid "Create report for {0}" msgstr "建立 {0} 的檢舉" @@ -3256,8 +3478,8 @@ 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:312 -#: src/screens/Messages/ConversationSettings/index.tsx:441 +#: src/screens/Messages/components/InviteLinkDialog.tsx:355 +#: src/screens/Messages/ConversationSettings/index.tsx:505 #: src/screens/Settings/AppPasswords.tsx:174 msgid "Created {0}" msgstr "建立於 {0}" @@ -3270,6 +3492,10 @@ msgstr "已封鎖此列表的建立者" msgid "Culture" msgstr "文化" +#: src/components/moderation/BlockDialog.tsx:378 +msgid "Current chat" +msgstr "" + #: src/components/dialogs/ServerInput.tsx:152 #: src/components/dialogs/ServerInput.tsx:154 msgid "Custom" @@ -3311,6 +3537,14 @@ msgstr "深色主題" msgid "Date of birth" msgstr "出生日期" +#: src/features/inviteFriends/components/ThemePicker.tsx:28 +msgid "Dawn" +msgstr "" + +#: src/features/inviteFriends/components/ThemePicker.tsx:29 +msgid "Day" +msgstr "" + #: src/screens/Settings/AccountSettings.tsx:179 #: src/screens/Settings/AccountSettings.tsx:184 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 @@ -3341,8 +3575,8 @@ msgstr "預設" msgid "Default icons" msgstr "預設圖示" -#: src/components/dms/MessageContextMenu.tsx:224 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:803 +#: 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 @@ -3369,8 +3603,8 @@ msgstr "刪除應用程式專用密碼" msgid "Delete app password?" msgstr "要刪除應用程式專用密碼嗎?" -#: src/screens/Messages/components/RequestButtons.tsx:343 -#: src/screens/Messages/components/RequestButtons.tsx:349 +#: src/screens/Messages/components/RequestButtons.tsx:344 +#: src/screens/Messages/components/RequestButtons.tsx:350 msgid "Delete chat" msgstr "刪除對話" @@ -3378,19 +3612,19 @@ msgstr "刪除對話" msgid "Delete chat declaration record" msgstr "刪除對話聲明紀錄" -#: src/screens/Settings/FindContactsSettings.tsx:546 +#: src/screens/Settings/FindContactsSettings.tsx:567 msgid "Delete contacts" msgstr "刪除聯絡人" -#: src/components/dms/AfterReportDialog.tsx:146 -#: src/components/dms/AfterReportDialog.tsx:190 -#: src/components/dms/AfterReportDialog.tsx:193 -#: src/screens/Messages/components/RequestButtons.tsx:142 -#: src/screens/Messages/components/RequestButtons.tsx:144 +#: 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:184 +#: src/components/dms/MessageContextMenu.tsx:180 msgid "Delete for me" msgstr "為我刪除" @@ -3399,11 +3633,11 @@ msgstr "為我刪除" msgid "Delete list" msgstr "刪除列表" -#: src/components/dms/MessageContextMenu.tsx:222 +#: src/components/dms/MessageOverlays.tsx:182 msgid "Delete message" msgstr "刪除訊息" -#: src/components/dms/MessageContextMenu.tsx:181 +#: src/components/dms/MessageContextMenu.tsx:177 msgid "Delete message for me" msgstr "為我刪除訊息" @@ -3411,9 +3645,9 @@ msgstr "為我刪除訊息" msgid "Delete my account" msgstr "刪除我的帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:787 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:789 -#: src/view/com/composer/Composer.tsx:1515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:796 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:798 +#: src/view/com/composer/Composer.tsx:1630 msgid "Delete post" msgstr "刪除貼文" @@ -3430,17 +3664,17 @@ msgstr "要刪除新手包嗎?" msgid "Delete this list?" msgstr "要刪除這個列表嗎?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:800 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 msgid "Delete this post?" msgstr "要刪除這則貼文嗎?" -#: src/components/Post/Embed/index.tsx:190 +#: src/components/Post/Embed/index.tsx:209 msgid "Deleted" msgstr "已刪除" -#: src/components/dms/MessagesListHeader.tsx:107 -#: src/screens/Messages/components/ChatListItem.tsx:132 -#: src/screens/Messages/ConversationSettings/Member.tsx:75 +#: src/components/dms/MessagesListHeader.tsx:103 +#: src/screens/Messages/components/ChatListItem.tsx:134 +#: src/screens/Messages/ConversationSettings/Member.tsx:87 msgid "Deleted Account" msgstr "已刪除的帳號" @@ -3471,12 +3705,12 @@ msgstr "簡介(最多 1000 個字元)" msgid "Descriptive alt text" msgstr "描述性替代文字" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:691 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:701 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:710 msgid "Detach quote" msgstr "分離引用" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:836 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:845 msgid "Detach quote post?" msgstr "要解除引用貼文嗎?" @@ -3507,13 +3741,13 @@ msgstr "對話框:調整哪些人能夠與這則貼文互動" msgid "Dim" msgstr "昏暗" -#: src/screens/Messages/components/InviteLinkDialog.tsx:344 -#: src/screens/Messages/components/InviteLinkDialog.tsx:349 +#: 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:234 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:243 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:231 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:240 msgid "Disable 2FA" msgstr "停用雙重驗證" @@ -3521,7 +3755,7 @@ msgstr "停用雙重驗證" msgid "Disable captions" msgstr "關閉字幕" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:158 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:156 msgid "Disable email 2FA" msgstr "停用電子郵件雙重驗證" @@ -3534,8 +3768,8 @@ msgstr "停用電子郵件雙重驗證" msgid "Disable haptic feedback" msgstr "關閉觸覺回饋" -#: src/screens/Messages/components/InviteLinkDialog.tsx:446 -#: src/screens/Messages/components/InviteLinkDialog.tsx:452 +#: src/screens/Messages/components/InviteLinkDialog.tsx:488 +#: src/screens/Messages/components/InviteLinkDialog.tsx:494 msgid "Disable link" msgstr "停用連結" @@ -3547,7 +3781,7 @@ msgstr "拒絕其他人引用這則貼文" msgid "Disable replies entirely" msgstr "完全關閉回覆" -#: src/screens/Messages/components/InviteLinkDialog.tsx:426 +#: src/screens/Messages/components/InviteLinkDialog.tsx:475 msgid "Disable this invite link?" msgstr "要停用此邀請連結嗎?" @@ -3560,9 +3794,9 @@ msgstr "停用" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:101 #: src/screens/Profile/Header/EditProfileDialog.tsx:79 -#: src/view/com/composer/Composer.tsx:1294 -#: src/view/com/composer/Composer.tsx:1338 -#: src/view/com/composer/Composer.tsx:1548 +#: src/view/com/composer/Composer.tsx:1413 +#: src/view/com/composer/Composer.tsx:1457 +#: src/view/com/composer/Composer.tsx:1663 #: src/view/com/composer/drafts/DraftItem.tsx:242 #: src/view/com/composer/drafts/DraftsButton.tsx:131 msgid "Discard" @@ -3573,19 +3807,19 @@ msgstr "捨棄" msgid "Discard changes?" msgstr "要放棄變更嗎?" -#: src/view/com/composer/Composer.tsx:1292 +#: src/view/com/composer/Composer.tsx:1411 #: 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:1309 -#: src/view/com/composer/Composer.tsx:1540 +#: src/view/com/composer/Composer.tsx:1428 +#: src/view/com/composer/Composer.tsx:1655 msgid "Discard post?" msgstr "要放棄發布嗎?" -#: src/screens/Profile/components/GermButton.tsx:261 -#: src/screens/Profile/components/GermButton.tsx:268 +#: src/screens/Profile/components/GermButton.tsx:262 +#: src/screens/Profile/components/GermButton.tsx:269 msgid "Disconnect Germ DM" msgstr "中斷連結 Germ DM" @@ -3609,15 +3843,16 @@ msgstr "探索新的動態源" msgid "Discover New Feeds" msgstr "探索新的動態源" -#: src/components/Dialog/index.tsx:408 +#: src/components/Dialog/index.tsx:413 +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:83 msgid "Dismiss" msgstr "跳過" -#: src/components/contacts/FindContactsBannerNUX.tsx:77 +#: src/components/contacts/FindContactsBannerNUX.tsx:78 msgid "Dismiss banner" msgstr "關閉提示橫幅" -#: src/view/com/composer/Composer.tsx:2385 +#: src/view/com/composer/Composer.tsx:2501 msgid "Dismiss error" msgstr "跳過錯誤" @@ -3642,6 +3877,10 @@ msgstr "忽略此部分" 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" @@ -3673,7 +3912,7 @@ msgstr "不包含裸露內容。" msgid "Domain verified!" msgstr "成功驗證網域!" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:381 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:385 msgid "Don't have a code or need a new one? <0>Click here." msgstr "沒有收到或需要新的驗證碼?<0>點一下這裡。" @@ -3681,7 +3920,7 @@ msgstr "沒有收到或需要新的驗證碼?<0>點一下這裡。" msgid "Don’t see a code? <0>Click here to resend." msgstr "沒有收到驗證碼?<0>點一下這裡來重新傳送。" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:38 +#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:36 msgid "Don't see an email? <0>Click here to resend." msgstr "沒有看到電子郵件嗎?<0>點一下這裡來重新傳送。" @@ -3700,16 +3939,21 @@ msgstr "不用擔心!您現有的訊息和設定都已儲存,只需驗證您 #: 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:98 #: src/components/dialogs/ServerInput.tsx:237 #: src/components/dialogs/ServerInput.tsx:239 #: src/components/dms/AfterReportConversationDialog.tsx:164 -#: src/components/dms/AfterReportDialog.tsx:140 +#: src/components/dms/AfterReportDialog.tsx:145 #: src/components/forms/DateField/index.tsx:104 #: src/components/forms/DateField/index.tsx:110 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:146 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:152 #: src/lib/media/picker.tsx:37 -#: src/screens/Onboarding/StepProfile/index.tsx:353 -#: src/screens/Onboarding/StepProfile/index.tsx:356 +#: src/screens/Onboarding/StepProfile/index.tsx:354 +#: src/screens/Onboarding/StepProfile/index.tsx:357 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:214 #: src/screens/Settings/components/AddAppPasswordDialog.tsx:221 #: src/view/com/composer/labels/LabelsBtn.tsx:219 @@ -3725,11 +3969,11 @@ msgctxt "action" msgid "Done" msgstr "完成" -#: src/components/dms/MessageItem.tsx:463 +#: src/components/dms/MessageItem.tsx:437 msgid "Double tap or long press the message to add a reaction" msgstr "點兩下或長按訊息以加入反應" -#: src/components/Dialog/index.tsx:409 +#: src/components/Dialog/index.tsx:414 msgid "Double tap to close the dialog" msgstr "點兩下以關閉對話框" @@ -3737,19 +3981,14 @@ msgstr "點兩下以關閉對話框" 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 "下載 Bluesky" -#: src/screens/Settings/components/ExportCarDialog.tsx:118 -msgid "Download CAR file" -msgstr "下載 CAR 檔案" - -#: src/screens/Settings/components/ExportCarDialog.tsx:123 -msgctxt "button" -msgid "Download CAR file" -msgstr "下載 CAR 檔案" - #: src/screens/Settings/components/ExportCarDialog.tsx:149 msgid "Download chat data" msgstr "下載對話資料" @@ -3759,16 +3998,29 @@ msgctxt "button" msgid "Download chat data" msgstr "下載對話資料" -#: src/components/Lightbox/Lightbox.web.tsx:304 -#: src/components/Lightbox/Lightbox.web.tsx:316 +#: 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:119 +#: 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 @@ -3787,6 +4039,10 @@ msgstr "受限於當地法律規定,我們必須先確認您已成年,才能 msgid "Duration:" msgstr "持續時間:" +#: src/features/inviteFriends/components/ThemePicker.tsx:30 +msgid "Dusk" +msgstr "" + #: src/screens/Settings/components/ChangeHandleDialog.tsx:237 msgid "e.g. alice" msgstr "例如:alice" @@ -3823,9 +4079,8 @@ msgstr "例如:不斷發布廣告洗版的帳號。" msgid "Eating disorders" msgstr "飲食失調" -#: src/screens/Messages/components/EditTextButton.tsx:51 +#: src/screens/Messages/components/EditTextButton.tsx:52 #: src/screens/Settings/AccountSettings.tsx:150 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:255 #: src/screens/StarterPack/StarterPackScreen.tsx:604 #: src/screens/StarterPack/Wizard/index.tsx:331 #: src/screens/StarterPack/Wizard/index.tsx:336 @@ -3838,8 +4093,8 @@ msgctxt "action" msgid "Edit" msgstr "編輯" -#: src/view/com/util/UserAvatar.tsx:460 -#: src/view/com/util/UserBanner.tsx:122 +#: src/view/com/util/UserAvatar.tsx:464 +#: src/view/com/util/UserBanner.tsx:125 msgid "Edit avatar" msgstr "編輯大頭貼照" @@ -3847,19 +4102,19 @@ msgstr "編輯大頭貼照" msgid "Edit Feeds" msgstr "編輯動態源" -#: src/screens/Messages/ConversationSettings/prompts.tsx:27 -#: src/screens/Messages/ConversationSettings/prompts.tsx:32 +#: src/screens/Messages/ConversationSettings/prompts.tsx:36 +#: src/screens/Messages/ConversationSettings/prompts.tsx:41 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:216 +#: src/view/com/composer/photos/Gallery.tsx:218 msgid "Edit image" msgstr "編輯圖片" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:768 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:781 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:777 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:790 msgid "Edit interaction settings" msgstr "編輯互動設定" @@ -3868,7 +4123,16 @@ msgstr "編輯互動設定" msgid "Edit interests" msgstr "編輯感興趣的主題" -#: src/screens/Messages/components/InviteLinkDialog.tsx:326 +#: 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 "編輯連結設定" @@ -3886,20 +4150,15 @@ msgstr "編輯直播狀態" msgid "Edit moderation list" msgstr "編輯內容管理列表" -#: src/Navigation.tsx:363 +#: src/Navigation.tsx:361 #: src/view/screens/Feeds.tsx:511 msgid "Edit My Feeds" msgstr "編輯我的動態源" -#: src/screens/Messages/ConversationSettings/index.tsx:475 +#: src/screens/Messages/ConversationSettings/index.tsx:540 msgid "Edit name" msgstr "編輯名稱" -#. placeholder {0}: createSanitizedDisplayName( profile, ) -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:246 -msgid "Edit notifications from {0}" -msgstr "編輯來自 {0} 的動態通知" - #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:114 msgid "Edit People" msgstr "編輯用戶" @@ -3912,12 +4171,12 @@ msgstr "編輯貼文互動設定" #: src/screens/Profile/Header/EditProfileDialog.tsx:265 #: src/screens/Profile/Header/EditProfileDialog.tsx:271 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:296 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:345 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:350 msgid "Edit profile" msgstr "編輯個人檔案" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:347 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:352 msgid "Edit Profile" msgstr "編輯個人檔案" @@ -3925,7 +4184,8 @@ msgstr "編輯個人檔案" msgid "Edit starter pack" msgstr "編輯新手包" -#: src/screens/Messages/ConversationSettings/index.tsx:474 +#: src/screens/Messages/ConversationSettings/index.tsx:486 +#: src/screens/Messages/ConversationSettings/index.tsx:539 msgid "Edit this group chat’s name" msgstr "編輯此群組對話的名稱" @@ -3937,7 +4197,7 @@ msgstr "編輯用戶列表" msgid "Edit who can reply" msgstr "修改哪些人可以回覆" -#: src/Navigation.tsx:624 +#: src/Navigation.tsx:547 msgid "Edit your starter pack" msgstr "編輯您的新手包" @@ -3971,7 +4231,7 @@ msgstr "電子郵件地址" msgid "Email Resent" msgstr "重新傳送電子郵件" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:209 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:218 msgid "Email sent!" msgstr "已傳送電子郵件!" @@ -4006,8 +4266,8 @@ msgstr "將這則貼文嵌入到您的網站。只需複製以下程式碼片段 msgid "Embedded video player" msgstr "嵌入式影片播放器" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:105 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:112 +#: 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 "啟用" @@ -4025,7 +4285,7 @@ msgstr "顯示成人內容" msgid "Enable captions" msgstr "開啟字幕" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:93 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:91 msgid "Enable email 2FA" msgstr "啟用電子郵件雙重驗證" @@ -4038,13 +4298,12 @@ msgstr "啟用外部媒體" msgid "Enable media players for" msgstr "啟用媒體播放器" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:142 #: src/view/screens/Storybook/Admonitions.tsx:76 msgid "Enable notifications for an account by visiting their profile and pressing the <0>bell icon <1/>." msgstr "前往其個人檔案,點一下旁邊的<0>鈴鐺圖示 <1/>,即可接收該帳號的動態通知。" -#: src/screens/Settings/NotificationSettings/index.tsx:103 -#: src/screens/Settings/NotificationSettings/index.tsx:107 +#: src/screens/Settings/NotificationSettings/index.tsx:114 +#: src/screens/Settings/NotificationSettings/index.tsx:118 msgid "Enable push notifications" msgstr "啟用推播通知" @@ -4091,8 +4350,8 @@ msgstr "輸入密碼" msgid "Enter a word or tag" msgstr "輸入字詞或標籤" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:202 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:321 +#: 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 "輸入驗證碼" @@ -4143,12 +4402,12 @@ msgstr "進入全螢幕" msgid "Entertainment" msgstr "娛樂" -#: src/view/com/composer/Composer.tsx:2484 +#: src/view/com/composer/Composer.tsx:2600 #: src/view/com/util/error/ErrorScreen.tsx:40 msgid "Error" msgstr "錯誤" -#: src/screens/Settings/FindContactsSettings.tsx:93 +#: src/screens/Settings/FindContactsSettings.tsx:95 msgid "Error getting the latest data." msgstr "取得最新資料時發生錯誤。" @@ -4185,23 +4444,23 @@ msgstr "所有人都可以回覆" msgid "Everybody can reply to this post." msgstr "所有人都可以回覆這則貼文。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:169 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:179 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:171 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:174 msgid "Everyone" msgstr "所有人" -#: src/screens/Messages/Settings.tsx:75 +#: src/screens/Messages/Settings.tsx:80 msgctxt "allow group chat invites from" msgid "Everyone" msgstr "所有人" -#: src/screens/Messages/Settings.tsx:60 +#: src/screens/Messages/Settings.tsx:65 msgctxt "allow messages from" msgid "Everyone" msgstr "所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:236 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:243 +#: src/screens/Settings/NotificationSettings/index.tsx:341 msgid "Everything else" msgstr "其他內容" @@ -4217,16 +4476,16 @@ msgstr "排除已跟隨的用戶" msgid "Exit fullscreen" msgstr "退出全螢幕" -#: src/components/Lightbox/chrome/Footer.tsx:51 -#: src/components/Lightbox/Lightbox.web.tsx:237 +#: 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:593 +#: src/view/com/notifications/NotificationFeedItem.tsx:606 msgid "Expand list of users" msgstr "展開用戶列表" -#: src/view/com/composer/ComposerReplyTo.tsx:88 +#: src/view/com/composer/ComposerReplyTo.tsx:103 msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊您正在回覆的完整貼文" @@ -4238,7 +4497,7 @@ msgstr "展開貼文文字" msgid "Expands or collapses post text" msgstr "展開或摺疊貼文文字" -#: src/lib/api/index.ts:460 +#: src/lib/api/index.ts:491 msgid "Expected uri to resolve to a record" msgstr "URI 應解析為記錄" @@ -4277,10 +4536,10 @@ msgstr "血腥、露骨或災害等可能會引起不適的媒體內容。" msgid "Explicit sexual images." msgstr "露骨的色情圖片。" -#: src/Navigation.tsx:828 +#: src/Navigation.tsx:751 #: src/screens/Search/Shell.tsx:362 -#: src/view/shell/desktop/LeftNav.tsx:676 -#: src/view/shell/Drawer.tsx:417 +#: src/view/shell/desktop/LeftNav.tsx:677 +#: src/view/shell/Drawer.tsx:473 msgid "Explore" msgstr "探索" @@ -4289,11 +4548,8 @@ msgstr "探索" msgid "Explore the app" msgstr "探索應用程式" -#: src/screens/Messages/Settings.tsx:254 -#: src/screens/Messages/Settings.tsx:264 -msgid "Export chat data" -msgstr "匯出對話資料" - +#: src/screens/Messages/Settings.tsx:267 +#: src/screens/Messages/Settings.tsx:277 #: src/screens/Settings/components/ExportCarDialog.tsx:130 msgid "Export my chat data" msgstr "匯出我的對話資料" @@ -4322,7 +4578,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:382 +#: src/Navigation.tsx:380 #: src/screens/Settings/ExternalMediaPreferences.tsx:35 msgid "External Media Preferences" msgstr "外部媒體選項" @@ -4331,18 +4587,22 @@ msgstr "外部媒體選項" msgid "Extremist content" msgstr "極端主義內容" -#: src/screens/Messages/components/RequestButtons.tsx:243 +#: src/screens/Messages/components/RequestButtons.tsx:244 msgctxt "toast" msgid "Failed to accept chat" msgstr "接受對話邀請時發生問題" -#: src/components/dms/ActionsWrapper.web.tsx:77 -#: src/components/dms/MessageContextMenu.tsx:119 +#: src/screens/Messages/JoinRequests.tsx:190 +msgid "Failed to accept join request" +msgstr "無法接受加入申請" + +#: src/components/dms/ActionsWrapper.web.tsx:90 +#: src/components/dms/MessageContextMenu.tsx:116 msgid "Failed to add emoji reaction" msgstr "加入表情符號反應時發生問題" -#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:42 -#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:60 +#: src/screens/Messages/components/MessagesListGroupInfoPanel.tsx:45 +#: src/screens/Messages/ConversationSettings/AddMembersLink.tsx:63 msgid "Failed to add members" msgstr "加入成員時發生問題" @@ -4354,7 +4614,8 @@ msgstr "新增至新手包時發生問題" msgid "Failed to change handle. Please try again." msgstr "變更帳號代碼時發生問題,請再試一次。" -#: src/components/Lightbox/Lightbox.web.tsx:294 +#: src/components/Lightbox/Lightbox.web.tsx:302 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:129 msgid "Failed to copy link" msgstr "複製連結時發生問題" @@ -4363,11 +4624,11 @@ msgid "Failed to create app password. Please try again." msgstr "建立應用程式專用密碼時發生問題,請再試一次。" #: src/components/dms/MessageProfileButton.tsx:38 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:64 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:66 msgid "Failed to create conversation" msgstr "建立對話時發生問題" -#: src/screens/Messages/components/InviteLinkDialog.tsx:99 +#: src/screens/Messages/components/InviteLinkDialog.tsx:106 msgid "Failed to create invite link" msgstr "建立邀請連結時發生問題" @@ -4376,17 +4637,17 @@ msgstr "建立邀請連結時發生問題" msgid "Failed to create starter pack" msgstr "建立新手包時發生問題" -#: src/screens/Messages/components/RequestButtons.tsx:70 -#: src/screens/Messages/components/RequestButtons.tsx:317 +#: 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/MessageContextMenu.tsx:101 +#: src/components/dms/MessageOverlays.tsx:112 msgid "Failed to delete message" msgstr "刪除訊息時發生問題" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:219 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:220 msgid "Failed to delete post, please try again" msgstr "刪除貼文時發生問題,請再試一次" @@ -4394,24 +4655,24 @@ msgstr "刪除貼文時發生問題,請再試一次" msgid "Failed to delete starter pack" msgstr "刪除新手包時發生問題" -#: src/screens/Messages/components/InviteLinkDialog.tsx:122 +#: src/screens/Messages/components/InviteLinkDialog.tsx:132 msgid "Failed to disable invite link" msgstr "停用邀請連結時發生問題" #. placeholder {0}: error?.message -#: src/screens/Profile/components/GermButton.tsx:195 +#: src/screens/Profile/components/GermButton.tsx:196 msgid "Failed to disconnect Germ DM. Error: {0}" msgstr "中斷連結 Germ DM 時發生問題。錯誤:{0}" -#: src/screens/Messages/ConversationSettings/index.tsx:345 +#: src/screens/Messages/ConversationSettings/index.tsx:374 msgid "Failed to edit group chat name" msgstr "編輯群組對話名稱時發生問題" -#: src/screens/Messages/components/InviteLinkDialog.tsx:112 +#: src/screens/Messages/components/InviteLinkDialog.tsx:119 msgid "Failed to edit invite link" msgstr "編輯邀請連結時發生問題" -#: src/screens/Messages/components/InviteLinkDialog.tsx:132 +#: src/screens/Messages/components/InviteLinkDialog.tsx:142 msgid "Failed to enable invite link" msgstr "啟用邀請連結時發生問題" @@ -4427,19 +4688,27 @@ msgstr "跟隨您的所有朋友時發生問題,請再試一次" msgid "Failed to hide suggestion, please check your internet connection" msgstr "隱藏建議時發生問題,請檢查您的網路連線狀態" +#: src/screens/Messages/JoinRequests.tsx:223 +msgid "Failed to ignore join request" +msgstr "無法忽略加入申請" + +#: src/components/intents/GroupChatJoinDialog.tsx:137 +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:42 -#: src/screens/Messages/components/ChatLocked.tsx:53 -#: src/screens/Messages/ConversationSettings/index.tsx:372 +#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/ConversationSettings/index.tsx:401 msgctxt "toast" msgid "Failed to leave group chat" msgstr "離開群組對話時發生問題" -#: src/screens/Messages/ChatList.tsx:334 -#: src/screens/Messages/Inbox.tsx:211 +#: src/screens/Messages/ChatList.tsx:403 +#: src/screens/Messages/Inbox.tsx:209 msgid "Failed to load conversations" msgstr "載入對話時發生問題" @@ -4456,17 +4725,8 @@ msgstr "載入動態時發生問題" msgid "Failed to load feeds preferences" msgstr "載入動態源偏好設定時發生問題" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:117 -#: src/screens/Settings/NotificationSettings/index.tsx:116 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:53 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:52 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:50 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:53 +#: src/components/dialogs/NotificationSettingsDialog.tsx:77 +#: src/screens/Settings/NotificationSettings/index.tsx:127 msgid "Failed to load notification settings." msgstr "載入通知設定時發生問題。" @@ -4493,16 +4753,15 @@ msgstr "載入建議動態源時發生問題" msgid "Failed to load suggested follows" msgstr "載入建議跟隨帳號時發生問題" -#: src/screens/Messages/ConversationSettings/index.tsx:393 +#: src/screens/Messages/ConversationSettings/index.tsx:426 msgid "Failed to lock group chat" msgstr "鎖定邀請連結時發生問題" #: src/screens/Messages/Inbox.tsx:311 -#: src/screens/Messages/Inbox.tsx:338 msgid "Failed to mark all requests as read" msgstr "將所有邀請標示為已讀時發生問題" -#: src/screens/Messages/ConversationSettings/index.tsx:359 +#: src/screens/Messages/ConversationSettings/index.tsx:390 msgid "Failed to mute group chat" msgstr "靜音群組對話時發生問題" @@ -4511,22 +4770,22 @@ msgid "Failed to pin post" msgstr "釘選貼文時發生問題" #. placeholder {0}: e?.message -#: src/screens/Profile/components/GermButton.tsx:163 +#: src/screens/Profile/components/GermButton.tsx:164 msgid "Failed to reconnect Germ DM. Error: {0}" msgstr "重新連結 Germ DM 時發生問題。錯誤:{0}" -#: src/screens/Settings/FindContactsSettings.tsx:488 +#: 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:494 +#: src/screens/Settings/FindContactsSettings.tsx:515 msgid "Failed to remove data. {0}" msgstr "刪除資料時發生問題。{0}" -#: src/components/dms/ActionsWrapper.web.tsx:73 -#: src/components/dms/MessageContextMenu.tsx:115 -#: src/components/dms/ReactionsDialog.tsx:171 +#: src/components/dms/ActionsWrapper.web.tsx:75 +#: src/components/dms/MessageContextMenu.tsx:101 +#: src/components/dms/ReactionsDialog.tsx:175 msgid "Failed to remove emoji reaction" msgstr "收回表情符號反應時發生問題" @@ -4534,7 +4793,8 @@ msgstr "收回表情符號反應時發生問題" msgid "Failed to remove from starter pack" msgstr "從新手包刪除時發生問題" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:71 +#: src/screens/Messages/ConversationSettings/Member.tsx:56 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:76 msgid "Failed to remove group chat member" msgstr "移除群組對話成員時發生問題" @@ -4542,15 +4802,20 @@ msgstr "移除群組對話成員時發生問題" msgid "Failed to remove verification" msgstr "撤回驗證時發生問題" +#: src/components/intents/GroupChatJoinDialog.tsx:180 +#: 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:584 +#: src/view/com/composer/Composer.tsx:648 msgid "Failed to save draft" msgstr "儲存草稿時發生問題" -#: src/components/Lightbox/Lightbox.web.tsx:311 +#: src/components/Lightbox/Lightbox.web.tsx:319 msgid "Failed to save image" msgstr "儲存圖片時發生問題" @@ -4569,7 +4834,7 @@ msgctxt "toast" msgid "Failed to save your interests." msgstr "儲存感興趣主題時發生問題。" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:123 +#: 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 "傳送郵件時發生問題,請再試一次。" @@ -4580,16 +4845,16 @@ msgstr "提交檢舉時發生問題" #: src/components/moderation/LabelsOnMeDialog.tsx:266 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:77 -#: src/screens/Messages/components/ChatDisabled.tsx:115 +#: src/screens/Messages/components/ChatDisabled.tsx:119 msgid "Failed to submit appeal, please try again." msgstr "提交申訴時發生問題,請再試一次。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:251 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:252 msgid "Failed to toggle thread mute, please try again" msgstr "將討論串設為靜音時發生問題,請再試一次" -#: src/screens/Messages/components/ChatLocked.tsx:42 -#: src/screens/Messages/ConversationSettings/index.tsx:396 +#: src/screens/Messages/components/ChatLocked.tsx:51 +#: src/screens/Messages/ConversationSettings/index.tsx:435 msgid "Failed to unlock group chat" msgstr "解鎖群組對話時發生問題" @@ -4597,12 +4862,12 @@ msgstr "解鎖群組對話時發生問題" msgid "Failed to unpin list" msgstr "取消釘選列表時發生問題" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:150 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:84 +#: 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:196 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:194 msgid "Failed to update email, please try again." msgstr "更新電子信箱時發生問題,請再試一次。" @@ -4614,7 +4879,7 @@ msgstr "更新動態時發生問題" msgid "Failed to update notification declaration" msgstr "更新通知類別時發生問題" -#: src/screens/Messages/Settings.tsx:92 +#: src/screens/Messages/Settings.tsx:97 msgid "Failed to update settings" msgstr "更新設定時發生問題" @@ -4641,7 +4906,7 @@ msgstr "虛假帳號或機器人" msgid "False information about elections" msgstr "散播選舉相關虛假資訊" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:291 msgid "Feed" msgstr "動態源" @@ -4649,7 +4914,7 @@ msgstr "動態源" #. placeholder {0}: sanitizeHandle(feed.creatorHandle, '@') #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') #: src/components/FeedCard.tsx:170 -#: src/state/queries/feed.ts:118 +#: src/state/queries/feed.ts:127 #: src/view/com/feeds/FeedSourceCard.tsx:151 msgid "Feed by {0}" msgstr "來自 {0} 的動態源" @@ -4662,7 +4927,7 @@ msgstr "動態源建立者" msgid "Feed identifier" msgstr "動態源 ID" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:361 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:353 msgid "Feed menu" msgstr "動態源選單" @@ -4676,25 +4941,25 @@ msgstr "動態源目前無法使用" #: src/view/shell/desktop/RightNav.tsx:109 #: src/view/shell/desktop/RightNav.tsx:110 -#: src/view/shell/Drawer.tsx:371 +#: src/view/shell/Drawer.tsx:427 msgid "Feedback" msgstr "意見回饋" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:307 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:330 +#: 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:604 +#: src/Navigation.tsx:527 #: src/screens/SavedFeeds.tsx:112 #: src/screens/SavedFeeds.tsx:303 #: src/screens/Search/SearchResults.tsx:80 #: src/screens/StarterPack/StarterPackScreen.tsx:196 #: src/view/screens/Feeds.tsx:504 #: src/view/screens/Profile.tsx:239 -#: src/view/shell/desktop/LeftNav.tsx:711 -#: src/view/shell/Drawer.tsx:533 +#: src/view/shell/desktop/LeftNav.tsx:712 +#: src/view/shell/Drawer.tsx:589 msgid "Feeds" msgstr "動態源" @@ -4739,7 +5004,7 @@ msgstr "依語言篩選搜尋(目前:{currentLanguageLabel})" 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:166 msgid "Filter who you receive notifications from" msgstr "篩選您想接收的通知來源" @@ -4747,11 +5012,11 @@ msgstr "篩選您想接收的通知來源" msgid "Finalizing" msgstr "正在完成" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:145 +#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:146 msgid "Finally!" msgstr "終於來了!" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:155 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:156 msgid "Finally! Keep track of posts that matter to you. Save them to revisit anytime." msgstr "終於來了!收藏您感興趣的貼文,以便隨時回來查看。" @@ -4768,19 +5033,17 @@ msgstr "財經" msgid "Find accounts to follow" msgstr "去跟隨更多帳號" -#: src/Navigation.tsx:438 -#: src/Navigation.tsx:646 -msgid "Find Contacts" -msgstr "尋找聯絡人" - -#: src/screens/Settings/FindContactsSettings.tsx:79 -msgid "Find Friends" -msgstr "尋找朋友" - +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:49 +#: src/screens/Settings/FindContactsSettings.tsx:81 #: src/screens/Settings/Settings.tsx:216 #: src/screens/Settings/Settings.tsx:219 -msgid "Find friends from contacts" -msgstr "從聯絡人尋找朋友" +msgid "Find and invite friends" +msgstr "" + +#: src/Navigation.tsx:436 +#: src/Navigation.tsx:569 +msgid "Find Contacts" +msgstr "尋找聯絡人" #: src/components/contacts/screens/GetContacts.tsx:273 #: src/components/contacts/screens/GetContacts.tsx:287 @@ -4795,16 +5058,20 @@ msgstr "尋找我的朋友" msgid "Find people to follow" msgstr "尋找一些人來跟隨" +#: src/screens/Settings/FindContactsSettings.tsx:130 +msgid "Find people you know" +msgstr "" + #: src/screens/Search/Shell.tsx:537 msgid "Find posts, users, and feeds on Bluesky" msgstr "在 Bluesky 上尋找貼文、用戶和動態源" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:97 +#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:98 msgid "Find your friends" msgstr "尋找您的朋友" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:46 -#: src/screens/Settings/FindContactsSettings.tsx:126 +#: src/screens/Settings/FindContactsSettings.tsx:133 msgid "Find your friends on Bluesky by verifying your phone number and matching with your contacts. We protect your information and you control what happens next. <0>Learn more" msgstr "驗證您的電話號碼並匹配聯絡人,即可尋找也在使用 Bluesky 的朋友。我們會嚴格保護您的資訊,而您掌控後續操作。<0>瞭解更多" @@ -4847,22 +5114,22 @@ msgstr "聚焦搜尋欄位" #: src/components/ProfileCard.tsx:546 #: src/components/ProfileHoverCard/index.web.tsx:495 #: src/components/ProfileHoverCard/index.web.tsx:506 -#: src/screens/Messages/ConversationSettings/Member.tsx:145 +#: src/screens/Messages/ConversationSettings/Member.tsx:170 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:157 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:402 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:425 #: src/screens/VideoFeed/index.tsx:866 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow" msgstr "跟隨" #. placeholder {0}: profile.handle #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:144 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:390 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 msgid "Follow {0}" msgstr "跟隨 {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:142 +#: src/screens/Messages/ConversationSettings/Member.tsx:167 msgid "Follow {displayName}" msgstr "跟隨 {displayName}" @@ -4892,8 +5159,8 @@ msgstr "跟隨帳號" #: 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:444 -#: src/screens/Settings/FindContactsSettings.tsx:454 +#: 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" @@ -4906,9 +5173,9 @@ msgstr "跟隨所有帳號" #. User is not following this account, click to follow back #: src/components/ProfileCard.tsx:542 #: src/screens/PostThread/components/ThreadItemAnchorFollowButton.tsx:155 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:400 -#: src/view/com/notifications/NotificationFeedItem.tsx:836 -#: src/view/com/notifications/NotificationFeedItem.tsx:843 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:423 +#: src/view/com/notifications/NotificationFeedItem.tsx:868 +#: src/view/com/notifications/NotificationFeedItem.tsx:875 msgid "Follow back" msgstr "回跟" @@ -4916,7 +5183,7 @@ msgstr "回跟" msgid "Followed all accounts!" msgstr "跟隨所有帳號!" -#: src/screens/Settings/FindContactsSettings.tsx:397 +#: src/screens/Settings/FindContactsSettings.tsx:418 msgid "Followed all matches" msgstr "跟隨所有確認的聯絡人" @@ -4944,8 +5211,12 @@ msgstr "被您認識的 <0>{0} 和 <1>{1} 跟隨" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "被您認識的 <0>{0}, <1>{1} 和{2, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" +#: src/components/intents/GroupChatJoinDialog.tsx:339 +msgid "Followers can join" +msgstr "跟隨者可以加入" + #. placeholder {0}: route.params.name -#: src/Navigation.tsx:252 +#: src/Navigation.tsx:245 msgid "Followers of @{0} that you know" msgstr "您認識的這些人也跟隨了 @{0}" @@ -4960,10 +5231,10 @@ msgstr "您也認識的跟隨者" #: 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:398 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:421 #: src/screens/VideoFeed/index.tsx:864 -#: src/view/com/notifications/NotificationFeedItem.tsx:814 -#: src/view/com/notifications/NotificationFeedItem.tsx:831 +#: src/view/com/notifications/NotificationFeedItem.tsx:846 +#: src/view/com/notifications/NotificationFeedItem.tsx:863 msgid "Following" msgstr "跟隨中" @@ -4977,12 +5248,12 @@ msgstr "跟隨中" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:498 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:262 -#: src/view/com/notifications/NotificationFeedItem.tsx:763 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:267 +#: src/view/com/notifications/NotificationFeedItem.tsx:795 msgid "Following {0}" msgstr "成功跟隨 {0}" -#: src/screens/Messages/ConversationSettings/Member.tsx:54 +#: src/screens/Messages/ConversationSettings/Member.tsx:66 msgid "Following {displayName}" msgstr "正在跟隨 {displayName}" @@ -4995,19 +5266,16 @@ msgstr "成功跟隨 {handle}" msgid "Following feed preferences" msgstr "「Following」(跟隨中)動態源選項" -#: src/Navigation.tsx:369 +#: src/Navigation.tsx:367 #: src/screens/Settings/FollowingFeedPreferences.tsx:57 msgid "Following Feed Preferences" msgstr "「Following」(跟隨中)動態源選項" +#: src/components/Pills.tsx:175 #: src/screens/Profile/Header/Handle.tsx:33 msgid "Follows you" msgstr "跟隨您" -#: src/components/Pills.tsx:175 -msgid "Follows You" -msgstr "跟隨您" - #: src/screens/Settings/AppearanceSettings.tsx:128 msgid "Font" msgstr "字型" @@ -5065,11 +5333,16 @@ msgstr "忘記密碼?" msgid "Forgot?" 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:12 msgid "Free your feed" msgstr "還您一個乾淨的河道" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:159 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:162 msgid "From" msgstr "來自" @@ -5086,82 +5359,86 @@ msgstr "來自 <0/>" msgid "Generate a starter pack" msgstr "產生一個新手包" -#: src/screens/Messages/components/InviteLinkDialog.tsx:206 -#: src/screens/Messages/components/InviteLinkDialog.tsx:244 -#: src/screens/Messages/components/InviteLinkDialog.tsx:268 +#: 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:397 +#: src/screens/Messages/components/InviteLinkDialog.tsx:446 msgid "Generate new invite link" msgstr "產生新的邀請連結" -#: src/screens/Messages/components/InviteLinkDialog.tsx:402 +#: 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:224 +#: src/screens/Profile/components/GermButton.tsx:225 msgid "Germ DM" msgstr "Germ DM" -#: src/screens/Profile/components/GermButton.tsx:182 +#: src/screens/Profile/components/GermButton.tsx:183 msgid "Germ DM disconnected" msgstr "已中斷連結 Germ DM" -#: src/screens/Profile/components/GermButton.tsx:233 -#: src/screens/Profile/components/GermButton.tsx:238 +#: src/screens/Profile/components/GermButton.tsx:234 +#: src/screens/Profile/components/GermButton.tsx:239 msgid "Germ DM Link" msgstr "Germ DM 連結" -#: src/screens/Profile/components/GermButton.tsx:159 +#: src/screens/Profile/components/GermButton.tsx:160 msgid "Germ DM reconnected" msgstr "重新連結 Germ DM" -#: src/view/shell/Drawer.tsx:375 +#: src/view/shell/Drawer.tsx:431 msgid "Get help" msgstr "取得幫助" -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:343 +msgid "Get notifications for starter pack joins, verification, and other activity." +msgstr "在授予驗證、有人使用您的新手包加入等活動時時收到通知。" + +#: src/screens/Settings/NotificationSettings/index.tsx:269 msgid "Get notifications when people follow you." msgstr "在有人跟隨您時收到通知。" -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people like posts that you've reposted." -msgstr "在有人對您轉發的貼文表示喜歡時收到通知。" - -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:261 msgid "Get notifications when people like your posts." msgstr "在有人對您的貼文表示喜歡時收到通知。" -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:324 +msgid "Get notifications when people like your reposts." +msgstr "在有人對您轉發的貼文表示喜歡時收到通知。" + +#: src/screens/Settings/NotificationSettings/index.tsx:285 msgid "Get notifications when people mention you." msgstr "在有人提及您時收到通知。" -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:293 msgid "Get notifications when people quote your posts." msgstr "在有人引用您的貼文時收到通知。" -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:277 msgid "Get notifications when people reply to your posts." msgstr "在有人回覆您的貼文時收到通知。" -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:43 -msgid "Get notifications when people repost posts that you've reposted." -msgstr "在有人轉發您轉發的貼文時收到通知。" - -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:43 +#: src/screens/Settings/NotificationSettings/index.tsx:302 msgid "Get notifications when people repost your posts." msgstr "在有人轉發您的貼文時收到通知。" +#: src/screens/Settings/NotificationSettings/index.tsx:333 +msgid "Get notifications when people repost your reposts." +msgstr "在有人轉發了您轉發的貼文時收到通知。" + +#: src/screens/Settings/NotificationSettings/index.tsx:311 +msgid "Get notifications when there's activity on posts you're subscribed to." +msgstr "在您訂閱的貼文有動態更新時收到通知。" + #: src/components/activity-notifications/SubscribeProfileButton.tsx:94 msgid "Get notified about new posts" msgstr "在貼文發布時收到通知" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:107 -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} 發布貼文時收到通知" @@ -5174,27 +5451,27 @@ msgstr "在這個帳號有新的動態時收到通知" msgid "Get notified when {name} posts" msgstr "在 {name} 發布貼文時收到通知" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:138 +#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:139 msgid "Get notified when someone posts" msgstr "在某人發布貼文時收到通知" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:77 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:87 -#: src/screens/Messages/components/InviteLinkDialog.tsx:187 -#: src/screens/Messages/components/InviteLinkDialog.tsx:194 +#: 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:136 +#: src/components/MediaPreview.tsx:182 #: src/components/Post/Embed/VideoEmbed/GifPresentationControls.tsx:69 msgid "GIF" msgstr "GIF" -#: src/view/com/composer/Composer.tsx:2489 +#: src/view/com/composer/Composer.tsx:2605 msgid "GIF uploaded" msgstr "GIF 上傳成功" -#: src/screens/Onboarding/StepProfile/index.tsx:258 +#: src/screens/Onboarding/StepProfile/index.tsx:259 msgid "Give your profile a face" msgstr "為您的個人檔案選擇大頭貼照" @@ -5213,20 +5490,20 @@ msgstr "美化暴力" #: src/screens/VideoFeed/components/Header.tsx:163 #: src/screens/VideoFeed/index.tsx:1168 #: src/screens/VideoFeed/index.tsx:1172 -#: src/view/com/auth/LoggedOut.tsx:89 -#: src/view/com/profile/ProfileFollowers.tsx:178 -#: src/view/com/profile/ProfileFollowers.tsx:179 -#: src/view/screens/NotFound.tsx:46 +#: src/view/com/auth/LoggedOut.tsx:103 +#: src/view/com/profile/ProfileFollowers.tsx:211 +#: src/view/com/profile/ProfileFollowers.tsx:212 +#: 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:77 +#: src/components/Error.tsx:72 #: src/screens/List/ListHiddenScreen.tsx:228 -#: src/screens/Messages/Conversation.tsx:346 #: src/screens/Profile/ErrorState.tsx:63 #: src/screens/Profile/ErrorState.tsx:67 #: src/screens/StarterPack/StarterPackScreen.tsx:807 -#: src/view/screens/NotFound.tsx:45 msgid "Go Back" msgstr "返回" @@ -5237,7 +5514,9 @@ msgid "Go back to previous step" msgstr "返回上一步" #: src/screens/Bookmarks/index.tsx:303 -#: src/view/screens/NotFound.tsx:46 +#: src/view/screens/NotFound.tsx:51 +#: src/view/screens/NotFound.tsx:52 +#: src/view/screens/NotFound.tsx:57 msgid "Go home" msgstr "前往首頁" @@ -5247,10 +5526,6 @@ msgctxt "Button to go back to the home timeline" msgid "Go home" msgstr "前往首頁" -#: src/view/screens/NotFound.tsx:45 -msgid "Go Home" -msgstr "前往首頁" - #: src/view/com/profile/ProfileMenu.tsx:370 #: src/view/com/profile/ProfileMenu.tsx:391 msgid "Go live" @@ -5272,7 +5547,7 @@ msgstr "直播(已停用)" msgid "Go live for" msgstr "直播持續時長" -#: src/view/com/notifications/NotificationFeedItem.tsx:241 +#: src/view/com/notifications/NotificationFeedItem.tsx:250 msgid "Go to {firstAuthorName}'s profile" msgstr "前往 {firstAuthorName} 的個人檔案" @@ -5284,7 +5559,7 @@ msgid "Go to account settings" msgstr "前往帳號設定" #. placeholder {0}: profile.handle -#: src/screens/Messages/components/ChatListItem.tsx:153 +#: src/screens/Messages/components/ChatListItem.tsx:155 msgid "Go to conversation with {0}" msgstr "與 {0} 對話" @@ -5296,35 +5571,42 @@ msgstr "前往動態源" msgid "Go to next" msgstr "前往下一步" -#: src/components/dms/ConvoMenu.tsx:272 -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:93 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:191 -#: src/view/shell/desktop/LeftNav.tsx:335 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: 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 +#: src/screens/Messages/components/ChatListItem.tsx:212 msgid "Go to the group chat named \"{chatName}\"" msgstr "前往名稱為「{chatName}」的群組對話" -#: src/components/dms/ConvoMenu.tsx:268 +#: src/components/dms/ConvoMenu.tsx:258 msgid "Go to user's profile" msgstr "前往用戶的個人檔案" -#: src/screens/Messages/components/MessagesListInfoPanel.tsx:87 +#: src/screens/Messages/components/MessagesListInfoPanel.tsx:92 msgid "Go to user’s profile" -msgstr "" +msgstr "前往用戶的個人檔案" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:105 msgid "Going live is currently disabled for your account" msgstr "您帳號的直播功能已被停用" -#: src/screens/Profile/components/GermButton.tsx:252 -#: src/screens/Profile/components/GermButton.tsx:257 +#: 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 @@ -5340,59 +5622,75 @@ msgstr "露骨暴力內容" msgid "Grooming or predatory behavior" msgstr "引誘拐騙行為" -#: src/screens/Messages/components/InviteLinkDialog.tsx:513 +#: src/components/dms/ChatInvite/Card.tsx:46 +#: src/components/intents/GroupChatJoinDialog.tsx:321 +#: src/screens/Messages/JoinRequest.tsx:129 +msgid "Group chat" +msgstr "群組對話" + +#: src/screens/Messages/components/InviteLinkDialog.tsx:556 msgid "Group chat invite link dialog" msgstr "群組對話邀請連結對話框" -#: src/screens/Messages/ConversationSettings/index.tsx:385 +#: src/screens/Messages/ConversationSettings/index.tsx:417 msgctxt "toast" msgid "Group chat locked" msgstr "群組對話已鎖定" -#: src/screens/Messages/ConversationSettings/index.tsx:352 +#: src/screens/Messages/ConversationSettings/index.tsx:382 msgctxt "toast" msgid "Group chat muted" msgstr "已靜音群組對話" -#: src/screens/Messages/ConversationSettings/index.tsx:340 +#: src/screens/Messages/ConversationSettings/index.tsx:369 msgctxt "toast" msgid "Group chat name updated" msgstr "已更新群組對話名稱" -#: src/Navigation.tsx:578 -#: src/screens/Messages/ConversationSettings/index.tsx:91 +#: src/Navigation.tsx:496 +#: src/screens/Messages/ConversationSettings/index.tsx:113 msgid "Group chat settings" msgstr "群組對話設定" -#: src/screens/Messages/components/ChatLocked.tsx:38 -#: src/screens/Messages/ConversationSettings/index.tsx:387 +#: src/screens/Messages/components/ChatLocked.tsx:41 +#: src/screens/Messages/ConversationSettings/index.tsx:420 msgctxt "toast" msgid "Group chat unlocked" msgstr "群組對話已解除鎖定" -#: src/screens/Messages/ConversationSettings/index.tsx:354 +#: src/screens/Messages/ConversationSettings/index.tsx:385 msgctxt "toast" msgid "Group chat unmuted" msgstr "已取消靜音群組對話" -#: src/screens/Messages/Conversation.tsx:330 -msgid "Group chats are not yet available" -msgstr "群組對話尚無法使用" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:181 +msgid "Group Chats" +msgstr "" -#: src/screens/Messages/Conversation.tsx:328 -msgid "Group chats are now available" -msgstr "群組對話已可以使用" +#: src/screens/Messages/Settings.tsx:199 +msgid "Group chats are only available to users 18 and over." +msgstr "" -#: src/components/dialogs/SearchablePeopleList.tsx:569 +#. 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 "群組對話不得超過 {0, plural, other {# 個成員}}。" + +#: src/components/dialogs/SearchablePeopleList.tsx:565 msgid "Group is locked" msgstr "群組已鎖定" -#: src/components/dms/InitiateChatFlow.tsx:231 -#: src/components/dms/InitiateChatFlow.tsx:551 -#: src/screens/Messages/ConversationSettings/prompts.tsx:33 +#: src/components/dms/InitiateChatFlow.tsx:264 +#: src/components/dms/InitiateChatFlow.tsx:600 +#: src/screens/Messages/ConversationSettings/prompts.tsx:42 msgid "Group name" msgstr "群組名稱" +#: src/components/dms/InitiateChatFlow.tsx:625 +#: src/screens/Messages/ConversationSettings/prompts.tsx:61 +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 "駭客入侵或系統攻擊" @@ -5421,7 +5719,7 @@ msgid "Handle too long. Please try a shorter one." msgstr "帳號代碼太長了,請縮短代碼再試一次。" #: src/components/FeedCard.tsx:156 -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:122 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:123 msgid "Happening now" msgstr "正在進行" @@ -5446,7 +5744,7 @@ msgstr "有害或高風險活動" msgid "Harming or endangering minors" msgstr "傷害或危及未成年人安全" -#: src/Navigation.tsx:562 +#: src/Navigation.tsx:480 msgid "Hashtag" msgstr "標籤" @@ -5458,14 +5756,14 @@ msgstr "標籤 {tag}" msgid "Hate speech" msgstr "仇恨言論" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:199 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:318 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:196 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:325 msgid "Have a code? <0>Click here." msgstr "已經有驗證碼了?<0>點一下這裡。" #: src/screens/Signup/StepInfo/index.tsx:320 msgid "Have we got your location wrong? <0>Tap here to update your location with GPS." -msgstr "" +msgstr "位置資訊判斷錯誤嗎?<0>點一下這裡以使用 GPS 更新您的位置。" #: src/screens/Signup/index.tsx:231 msgid "Having trouble?" @@ -5479,11 +5777,11 @@ msgstr "由 Bluesky 保留 7 天以防止濫用,並在之後刪除" #: src/screens/Settings/Settings.tsx:251 #: src/view/shell/desktop/RightNav.tsx:130 #: src/view/shell/desktop/RightNav.tsx:133 -#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:440 msgid "Help" msgstr "幫助" -#: src/screens/Onboarding/StepProfile/index.tsx:261 +#: src/screens/Onboarding/StepProfile/index.tsx:262 msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "透過上傳圖片或建立大頭貼照,讓大家知道您不是機器人。" @@ -5522,7 +5820,7 @@ msgstr "隱藏列表" #: src/components/moderation/ContentHider.tsx:220 #: src/components/moderation/LabelPreference.tsx:141 #: src/components/moderation/PostHider.tsx:140 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:811 +#: 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 @@ -5531,7 +5829,7 @@ msgstr "隱藏列表" msgid "Hide" msgstr "隱藏" -#: src/view/com/notifications/NotificationFeedItem.tsx:928 +#: src/view/com/notifications/NotificationFeedItem.tsx:960 msgctxt "action" msgid "Hide" msgstr "隱藏" @@ -5553,18 +5851,18 @@ msgstr "隱藏群組對話更新" msgid "Hide lists" msgstr "隱藏列表" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: 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:665 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:675 +#: 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:651 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:654 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:660 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:663 msgid "Hide reply for me" msgstr "為我隱藏回覆" @@ -5577,19 +5875,19 @@ msgstr "隱藏這張卡片" msgid "Hide this event" msgstr "隱藏這則活動" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:817 msgid "Hide this post?" msgstr "要隱藏這則貼文嗎?" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:808 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:843 +#: 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:545 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:547 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:546 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:548 msgid "Hide translation" msgstr "隱藏翻譯" @@ -5606,7 +5904,7 @@ msgstr "要隱藏流行趨勢嗎?" msgid "Hide trending videos?" msgstr "要隱藏熱門影片嗎?" -#: src/view/com/notifications/NotificationFeedItem.tsx:919 +#: src/view/com/notifications/NotificationFeedItem.tsx:951 msgid "Hide user list" msgstr "隱藏用戶列表" @@ -5620,6 +5918,10 @@ msgstr "隱藏驗證標記" msgid "Hides the content" msgstr "隱藏內容" +#: src/features/inviteFriends/components/FollowersPromoBanner.tsx:84 +msgid "Hides the invite friends promo banner" +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:76 msgid "Hmm, it looks like you're signed in with an <0>App Password. To set your birthdate, you'll need to sign in with your main account password, or ask whomever controls this account to do so." msgstr "嗯……您似乎正在使用<0>應用程式專用密碼登入。若需變更出生日期,請改用主密碼登入,或告知此帳號的擁有者自行變更。" @@ -5652,19 +5954,15 @@ msgstr "抱歉,載入這些資料時似乎遇到了一點問題,更多資訊 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我們無法載入該內容管理服務。" -#: src/view/com/composer/state/video.ts:430 +#: src/view/com/composer/state/video.ts:415 msgid "Hold up! We’re gradually giving access to video, and you’re still waiting in line. Check back soon!" msgstr "等一下!我們正在逐步開放上傳影片功能。您還在等候名單中,請稍後再回來看看!" -#: src/screens/Messages/Conversation.tsx:337 -msgid "Hold your horses! This feature isn't available to you yet. Please check back later." -msgstr "歹勢!請再等一下。您目前還無法使用這個功能,請晚點再回來看看。" - -#: src/Navigation.tsx:823 -#: src/Navigation.tsx:844 -#: src/view/shell/bottom-bar/BottomBar.tsx:184 -#: src/view/shell/desktop/LeftNav.tsx:666 -#: src/view/shell/Drawer.tsx:443 +#: src/Navigation.tsx:746 +#: src/Navigation.tsx:767 +#: src/view/shell/bottom-bar/BottomBar.tsx:185 +#: src/view/shell/desktop/LeftNav.tsx:667 +#: src/view/shell/Drawer.tsx:499 msgid "Home" msgstr "首頁" @@ -5721,7 +6019,7 @@ msgstr "我瞭解" msgid "I'm on Bluesky as {0} - come find me! https://bsky.app/download" msgstr "我在 Bluesky 上的帳號是 {0} - 快來加入我的行列吧! https://bsky.app/download" -#: src/components/Lightbox/Lightbox.web.tsx:238 +#: src/components/Lightbox/Lightbox.web.tsx:246 msgid "If alt text is long, toggles alt text expanded state" msgstr "替代文字過長時,切換替代文字的展開狀態" @@ -5757,15 +6055,15 @@ msgstr "一旦您刪除這個列表,以後將無法再恢復。" msgid "If you have your own domain, you can use that as your handle. This lets you self-verify your identity. <0>Learn more here." msgstr "如果您擁有自己的網域,可以將其設定為您的帳號代碼。同時還可以證明自己的身分。<0>在此瞭解詳情。" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:273 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:282 msgid "If you need to update your email, <0>click here." msgstr "如果您需要更新電子信箱,請<0>點一下這裡。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:801 +#: 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:209 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:206 msgid "If you update your email address, email 2FA will be disabled." msgstr "如果您更新了電子郵件地址,電子郵件雙重驗證將會自動停用。" @@ -5773,7 +6071,6 @@ 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:160 #: src/view/screens/Storybook/Admonitions.tsx:90 msgid "If you want to restrict who can receive notifications for your account's activity, you can change this in <0>Settings → Privacy and Security." msgstr "如果您想限制其他人接收您帳號的動態通知,可以前往 <0>設定 → 隱私與安全 變更設定。" @@ -5786,23 +6083,23 @@ msgstr "如果您是開發人員,也可以架設自己的伺服器。" msgid "If you're trying to change your handle or email, do so before you deactivate." msgstr "在停用帳號前,記得確認您是否需要變更帳號代碼或電子信箱。" -#: src/components/images/ImageLayoutGridItem.tsx:76 +#: src/components/images/ImageLayoutGridItem.tsx:96 msgid "Image" msgstr "圖片" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:427 +#: src/components/images/Gallery/index.tsx:459 msgid "Image {0}" msgstr "圖片 {0}" #. placeholder {0}: index + 1 #. placeholder {1}: imgs.length -#: src/components/Lightbox/Lightbox.web.tsx:253 +#: src/components/Lightbox/Lightbox.web.tsx:261 msgid "Image {0} of {1}" msgstr "第 {0} 張圖片(共 {1} 張)" #. placeholder {0}: index + 1 -#: src/components/images/Gallery/index.tsx:418 +#: src/components/images/Gallery/index.tsx:444 msgid "Image {0} of {imageCount}" msgstr "第 {0} 張圖片(共 {imageCount} 張)" @@ -5817,27 +6114,27 @@ msgid "Image cache cleared, freed {0}" msgstr "成功清除圖片快取,釋放了 {0}" #. placeholder {0}: images.length -#: src/components/images/Gallery/index.tsx:256 +#: src/components/images/Gallery/index.tsx:276 msgid "Image gallery, {0} images" msgstr "相簿,{0} 張圖片" #. Image has been moderated and user has the option of showing it temporarily -#: src/features/liveNow/components/LiveStatusDialog.tsx:299 +#: 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:309 +#: src/features/liveNow/components/LiveStatusDialog.tsx:310 msgid "Image is unavailable." msgstr "無法顯示圖片。" -#: src/components/Lightbox/chrome/ImageMenu.tsx:73 -#: src/components/Lightbox/Lightbox.web.tsx:257 +#: 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:308 +#: 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" @@ -5857,23 +6154,27 @@ msgstr "冒充身分" #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:76 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:81 -#: src/screens/Settings/FindContactsSettings.tsx:146 -#: src/screens/Settings/FindContactsSettings.tsx:151 +#: src/screens/Settings/FindContactsSettings.tsx:153 +#: src/screens/Settings/FindContactsSettings.tsx:158 msgid "Import contacts" msgstr "匯入聯絡人" -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:115 -#: src/components/dialogs/nuxs/FindContactsAnnouncement.tsx:126 +#: 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:71 +#: 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:514 +#: src/screens/Settings/FindContactsSettings.tsx:535 msgid "Imported on {0}" msgstr "已於 {0} 匯入" @@ -5881,40 +6182,40 @@ msgstr "已於 {0} 匯入" 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/index.tsx:285 +#: src/screens/Settings/NotificationSettings/index.tsx:387 msgid "In-app" msgstr "應用程式內" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:148 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:151 msgid "In-app notifications" msgstr "應用程式內通知" -#: src/screens/Settings/NotificationSettings/index.tsx:268 -msgid "In-app, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:370 +msgid "In-app, everyone" msgstr "應用程式內、所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:276 -msgid "In-app, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:378 +msgid "In-app, people you follow" msgstr "應用程式內、您跟隨的人" -#: src/screens/Settings/NotificationSettings/index.tsx:283 -msgid "In-app, Push" +#: src/screens/Settings/NotificationSettings/index.tsx:385 +msgid "In-app, push" msgstr "應用程式內、推播" -#: src/screens/Settings/NotificationSettings/index.tsx:266 -msgid "In-app, Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:368 +msgid "In-app, push, everyone" msgstr "應用程式內、推播、所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:274 -msgid "In-app, Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:376 +msgid "In-app, push, people you follow" msgstr "應用程式內、推播、您跟隨的人" -#: src/screens/Messages/ChatList.tsx:351 +#: src/screens/Messages/ChatList.tsx:420 msgid "Inbox empty" msgstr "收件匣為空" #. Title message shown in chat requests inbox when it's empty -#: src/screens/Messages/Inbox.tsx:228 +#: src/screens/Messages/Inbox.tsx:226 msgid "Inbox zero!" msgstr "收件匣清零!" @@ -5954,6 +6255,10 @@ msgstr "為您介紹草稿" 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 "為您介紹貼文收藏(又稱書籤)" @@ -5963,11 +6268,15 @@ msgstr "為您介紹貼文收藏(又稱書籤)" msgid "Invalid 2FA confirmation code." msgstr "無效的雙重驗證碼。" +#: src/components/intents/GroupChatJoinDialog.tsx:147 +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:400 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:401 msgctxt "toast" msgid "Invalid interaction settings." msgstr "無效的互動設定。" @@ -5977,10 +6286,15 @@ msgstr "無效的互動設定。" msgid "Invalid phone number" msgstr "無效的電話號碼" -#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:100 msgid "Invalid report subject" msgstr "無效的檢舉內容" +#: src/components/intents/GroupChatJoinDialog.tsx:187 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:41 +msgid "Invalid rescind request." +msgstr "無效撤銷申請。" + #: src/components/intents/VerifyEmailIntentDialog.tsx:86 msgid "Invalid Verification Code" msgstr "無效的驗證碼" @@ -6001,8 +6315,15 @@ msgstr "邀請碼" msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "邀請碼無效。請檢查是否輸入正確,然後再試一次。" +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:140 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:368 +#: src/view/shell/Drawer.tsx:121 +msgid "Invite friends" +msgstr "" + #: src/components/contacts/components/InviteInfo.tsx:42 #: src/components/contacts/components/InviteInfo.tsx:44 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:155 msgid "Invite Friends" msgstr "邀請朋友" @@ -6010,21 +6331,31 @@ msgstr "邀請朋友" msgid "Invite friends <0/>" msgstr "邀請朋友 <0/>" -#: src/screens/Messages/components/InviteLinkDialog.tsx:167 -#: src/screens/Messages/components/InviteLinkDialog.tsx:290 -#: src/screens/Messages/components/InviteLinkDialog.tsx:296 -#: src/screens/Messages/components/InviteLinkDialog.tsx:471 +#: 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:491 +#: src/screens/Messages/ConversationSettings/index.tsx:556 msgid "Invite link" msgstr "邀請連結" +#. Link that invites someone to follow your profile, distinct from a group chat invite link +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:213 +msgctxt "profile invite" +msgid "Invite link" +msgstr "邀請連結" + +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:126 +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:290 +#: src/screens/Messages/components/InviteLinkDialog.tsx:329 msgid "Invite link disabled" msgstr "已停用邀請連結" @@ -6040,11 +6371,16 @@ msgstr "已啟用邀請連結" 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:152 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:155 msgid "Invited" msgstr "已邀請" @@ -6054,7 +6390,7 @@ msgstr "邀請,但更具個人風格" #: src/ageAssurance/components/NoAccessScreen.tsx:394 msgid "Is your location not accurate? <0>Tap here to update your location with GPS. " -msgstr "" +msgstr "目前的位置資訊不準確嗎?<0>點一下這裡來使用 GPS 更新您的位置。 " #: 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." @@ -6074,7 +6410,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:2404 +#: src/view/com/composer/Composer.tsx:2520 msgid "Job ID: {0}" msgstr "作業 ID:{0}" @@ -6083,6 +6419,11 @@ msgstr "作業 ID:{0}" msgid "Jobs" msgstr "工作" +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:282 +msgid "Join" +msgstr "加入" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:210 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:215 #: src/screens/StarterPack/StarterPackScreen.tsx:478 @@ -6090,6 +6431,16 @@ msgstr "工作" msgid "Join Bluesky" msgstr "加入 Bluesky" +#: src/components/intents/GroupChatJoinDialog.tsx:71 +#: src/components/intents/GroupChatJoinDialog.tsx:448 +msgid "Join group chat" +msgstr "加入群組對話" + +#: src/components/intents/GroupChatJoinDialog.tsx:176 +#: 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" @@ -6099,8 +6450,8 @@ msgstr "加入討論" msgid "Journalism" msgstr "記者" -#: src/view/com/composer/Composer.tsx:1342 -#: src/view/com/composer/Composer.tsx:1352 +#: src/view/com/composer/Composer.tsx:1461 +#: src/view/com/composer/Composer.tsx:1471 #: src/view/com/composer/drafts/DraftsButton.tsx:135 msgid "Keep editing" msgstr "繼續編輯" @@ -6109,6 +6460,11 @@ msgstr "繼續編輯" msgid "Keep me posted" msgstr "有新動態時通知我" +#: src/components/moderation/BlockDialog.tsx:365 +#: src/components/moderation/BlockDialog.tsx:372 +msgid "Kick member" +msgstr "" + #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:200 msgid "KWS website" msgstr "KWS 網站" @@ -6143,7 +6499,7 @@ msgstr "您帳號上的標記" msgid "Labels on your content" msgstr "您內容上的標記" -#: src/Navigation.tsx:225 +#: src/Navigation.tsx:218 msgid "Language Settings" msgstr "語言設定" @@ -6174,7 +6530,7 @@ msgid "Latest" msgstr "最新" #: src/components/verification/VerificationsDialog.tsx:168 -#: src/components/verification/VerifierDialog.tsx:135 +#: 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 @@ -6201,7 +6557,7 @@ msgstr "深入瞭解邀請朋友功能" #: src/components/contacts/screens/PhoneInput.tsx:303 #: src/screens/Onboarding/StepFindContactsIntro/index.tsx:53 -#: src/screens/Settings/FindContactsSettings.tsx:133 +#: src/screens/Settings/FindContactsSettings.tsx:140 msgctxt "english-only-resource" msgid "Learn more about importing contacts" msgstr "深入瞭解匯入聯絡人功能" @@ -6229,7 +6585,7 @@ msgid "Learn more about this warning" msgstr "深入瞭解這個警告" #: src/components/verification/VerificationsDialog.tsx:153 -#: src/components/verification/VerifierDialog.tsx:121 +#: src/components/verification/VerifierDialog.tsx:122 msgctxt "english-only-resource" msgid "Learn more about verification on Bluesky" msgstr "深入瞭解 Bluesky 的驗證機制(英文)" @@ -6239,7 +6595,7 @@ msgstr "深入瞭解 Bluesky 的驗證機制(英文)" msgid "Learn more about what is public on Bluesky." msgstr "深入瞭解在 Bluesky 上公開的內容。" -#: src/screens/Profile/components/GermButton.tsx:211 +#: src/screens/Profile/components/GermButton.tsx:212 msgid "Learn more about your Germ DM link" msgstr "瞭解關於您 Germ DM 的連結" @@ -6252,31 +6608,33 @@ msgstr "在您的<0>帳號設定瞭解詳情。" msgid "Learn more." msgstr "瞭解詳情。" -#: src/components/dms/LeaveConvoPrompt.tsx:49 -#: src/screens/Messages/ConversationSettings/index.tsx:527 +#: src/components/dms/LeaveConvoPrompt.tsx:59 +#: src/screens/Messages/ConversationSettings/index.tsx:590 msgid "Leave" msgstr "離開" #. Leave a conversation (reject a chat invitation) -#: src/screens/Messages/components/ChatStatusInfo.tsx:78 +#: 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:384 +#: src/components/moderation/BlockDialog.tsx:391 #: src/screens/Messages/components/ChatEnded.tsx:67 -#: src/screens/Messages/components/ChatLocked.tsx:100 +#: src/screens/Messages/components/ChatLocked.tsx:113 msgid "Leave chat" msgstr "離開對話" #: src/components/dms/AfterReportConversationDialog.tsx:229 #: src/components/dms/AfterReportConversationDialog.tsx:233 -#: src/components/dms/ConvoMenu.tsx:246 -#: src/components/dms/ConvoMenu.tsx:250 -#: src/components/dms/ConvoMenu.tsx:316 -#: src/components/dms/ConvoMenu.tsx:320 -#: src/components/dms/LeaveConvoPrompt.tsx:43 +#: 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 "離開對話" @@ -6284,13 +6642,14 @@ msgstr "離開對話" #: src/components/dms/AfterReportConversationDialog.tsx:174 msgctxt "button" msgid "Leave conversation" -msgstr "" +msgstr "離開對話" -#: src/screens/Messages/ConversationSettings/prompts.tsx:92 +#: src/screens/Messages/ConversationSettings/prompts.tsx:122 +#: src/screens/Messages/ConversationSettings/prompts.tsx:146 msgid "Leave group chat" msgstr "離開群組對話" -#: src/screens/Messages/ConversationSettings/index.tsx:526 +#: src/screens/Messages/ConversationSettings/index.tsx:589 msgid "Leave this group chat" msgstr "離開此群組對話" @@ -6299,6 +6658,14 @@ msgstr "離開此群組對話" msgid "Leaving Bluesky" msgstr "離開 Bluesky" +#: src/screens/Messages/ConversationSettings/prompts.tsx:145 +msgid "Leaving this chat will lock it permanently and you won’t be able to rejoin." +msgstr "" + +#: src/components/moderation/BlockDialog.tsx:276 +msgid "Left group chat." +msgstr "" + #: src/screens/SignupQueued.tsx:158 msgid "left to go." msgstr "個人在排在您前面。" @@ -6327,13 +6694,13 @@ msgctxt "Name of app icon variant" msgid "Light" msgstr "淺色" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:287 +#: src/components/PostControls/index.tsx:284 msgid "Like ({0, plural, one {# like} other {# likes}})" msgstr "喜歡({0, plural, other {# 個喜歡}})" @@ -6346,11 +6713,7 @@ msgstr "喜歡 10 則貼文" msgid "Like 10 posts to train the Discover feed" msgstr "喜歡 10 則貼文,以訓練「Discover」動態源" -#: src/Navigation.tsx:475 -msgid "Like notifications" -msgstr "喜歡通知" - -#: src/screens/Profile/components/ProfileFeedHeader.tsx:511 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:497 msgid "Like this feed" msgstr "對此動態源表示喜歡" @@ -6358,8 +6721,8 @@ msgstr "對此動態源表示喜歡" msgid "Like this labeler" msgstr "對此標記服務表示喜歡" -#: src/Navigation.tsx:303 -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:296 +#: src/Navigation.tsx:301 msgid "Liked by" msgstr "表示喜歡的用戶" @@ -6377,30 +6740,26 @@ msgid "Liked by {0, plural, one {# user} other {# users}}" msgstr "{0, plural, one {# 個用戶} other {# 個用戶}}表示喜歡" #: src/components/LabelingServiceCard/index.tsx:96 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:499 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:486 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:168 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:182 msgid "Liked by {likeCount, plural, one {# user} other {# users}}" msgstr "{likeCount, plural, one {# 個用戶} other {# 個用戶}}表示喜歡" #: src/lib/hooks/useNotificationHandler.ts:160 -#: src/screens/Settings/NotificationSettings/index.tsx:127 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:138 +#: src/screens/Settings/NotificationSettings/index.tsx:259 #: src/view/screens/Profile.tsx:238 msgid "Likes" msgstr "喜歡" #: src/lib/hooks/useNotificationHandler.ts:202 -#: src/screens/Settings/NotificationSettings/index.tsx:208 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:322 msgid "Likes of your reposts" msgstr "喜歡您轉發的貼文" -#: src/Navigation.tsx:499 -msgid "Likes of your reposts notifications" -msgstr "喜歡您轉發貼文的通知" - -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:486 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:488 msgid "Likes on this post" msgstr "這則貼文的喜歡數" @@ -6409,11 +6768,11 @@ msgstr "這則貼文的喜歡數" msgid "Linear" msgstr "直列模式" -#: src/components/Lightbox/Lightbox.web.tsx:292 +#: src/components/Lightbox/Lightbox.web.tsx:300 msgid "Link copied to clipboard" msgstr "已複製連結至剪貼簿" -#: src/Navigation.tsx:258 +#: src/Navigation.tsx:251 msgid "List" msgstr "列表" @@ -6499,12 +6858,12 @@ msgctxt "toast" msgid "List unmuted" msgstr "成功取消靜音列表" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:172 #: src/view/screens/Lists.tsx:60 #: src/view/screens/Profile.tsx:233 #: src/view/screens/Profile.tsx:241 -#: src/view/shell/desktop/LeftNav.tsx:721 -#: src/view/shell/Drawer.tsx:548 +#: src/view/shell/desktop/LeftNav.tsx:722 +#: src/view/shell/Drawer.tsx:604 msgid "Lists" msgstr "列表" @@ -6545,7 +6904,7 @@ msgstr "已取消隱藏直播活動" msgid "Live events appear occasionally when something exciting is happening. If you'd like, you can hide this particular event, or all events for this placement in your app interface." msgstr "每逢精彩活動開播時,我們會在這裡及時呈現給您。您可以僅隱藏這則或今後所有的直播活動提醒。" -#: src/features/liveNow/components/LiveStatusDialog.tsx:244 +#: src/features/liveNow/components/LiveStatusDialog.tsx:245 msgid "Live feature is in beta" msgstr "直播功能正在測試階段" @@ -6581,7 +6940,7 @@ msgstr "載入更多貼文" #: src/screens/Messages/components/MessageInput.web.tsx:202 msgctxt "placeholder" msgid "Loading chat…" -msgstr "" +msgstr "正在載入對話……" #: src/components/dialogs/PostInteractionSettingsDialog.tsx:575 msgid "Loading lists..." @@ -6595,27 +6954,27 @@ msgstr "正在載入貼文互動設定……" msgid "Loading..." msgstr "載入中……" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Lock" msgstr "鎖定" -#: src/screens/Messages/ConversationSettings/prompts.tsx:69 +#: src/screens/Messages/ConversationSettings/prompts.tsx:99 msgid "Lock group chat" msgstr "鎖定群組對話" -#: src/screens/Messages/ConversationSettings/prompts.tsx:67 +#: src/screens/Messages/ConversationSettings/prompts.tsx:97 msgid "Lock group chat?" msgstr "鎖定群組對話?" -#: src/screens/Messages/ConversationSettings/index.tsx:503 +#: src/screens/Messages/ConversationSettings/index.tsx:568 msgid "Lock this group chat" msgstr "鎖定此群組對話" -#: src/screens/Messages/ConversationSettings/index.tsx:505 +#: src/screens/Messages/ConversationSettings/index.tsx:570 msgid "Locked" msgstr "已鎖定" -#: src/Navigation.tsx:328 +#: src/Navigation.tsx:326 msgid "Log" msgstr "記錄檔" @@ -6632,7 +6991,7 @@ msgid "Logo by @sawaratsuki.bsky.social" msgstr "網站標誌由 @sawaratsuki.bsky.social 繪製" #: src/view/shell/desktop/RightNav.tsx:139 -#: src/view/shell/Drawer.tsx:712 +#: src/view/shell/Drawer.tsx:768 msgid "Logo by <0>@sawaratsuki.bsky.social" msgstr "網站標誌由 <0>@sawaratsuki.bsky.social 繪製" @@ -6662,7 +7021,7 @@ msgstr "看起來您少了一個「Following」動態源,<0>點一下這裡來 msgid "Love GIFs" msgstr "愛情 GIFs" -#: src/components/dialogs/EmailDialog/index.tsx:41 +#: src/components/dialogs/EmailDialog/index.tsx:39 msgid "Make adjustments to email settings for your account" msgstr "調整您帳號綁定的電子信箱設定" @@ -6687,24 +7046,22 @@ msgstr "管理驗證設定" msgid "Manage your muted words and tags" msgstr "管理您靜音的字詞和標籤" -#: src/screens/Messages/Inbox.tsx:323 -#: src/screens/Messages/Inbox.tsx:346 -#: src/screens/Messages/Inbox.tsx:352 +#: src/screens/Messages/Inbox.tsx:319 +#: src/screens/Messages/Inbox.tsx:325 msgid "Mark all as read" msgstr "全部標示為已讀" -#: src/components/dms/ConvoMenu.tsx:258 -#: src/components/dms/ConvoMenu.tsx:262 +#: src/components/dms/ConvoMenu.tsx:248 +#: src/components/dms/ConvoMenu.tsx:252 msgid "Mark as read" msgstr "標示為已讀" #: src/screens/Messages/Inbox.tsx:306 -#: src/screens/Messages/Inbox.tsx:333 msgid "Marked all as read" msgstr "成功全部標示為已讀" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:91 -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:98 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:85 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 msgid "Maybe later" msgstr "之後再說" @@ -6726,26 +7083,26 @@ msgstr "媒體儲存於其他裝置" msgid "Media that may be disturbing or inappropriate for some audiences." msgstr "可能會使部分受眾感到不安或造成不適的媒體內容。" +#: src/components/moderation/BlockDialog.tsx:302 +msgid "Member removed from group chat." +msgstr "" + #. The heading above the list of chat members. -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:29 +#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:34 msgid "Members" msgstr "成員" -#: src/screens/Messages/ConversationSettings/prompts.tsx:68 +#: src/screens/Messages/ConversationSettings/prompts.tsx:98 msgid "Members can still read chat history but can’t send new messages." msgstr "成員仍可以檢視聊天記錄,但無法傳送新的訊息。" -#: src/Navigation.tsx:459 -msgid "Mention notifications" -msgstr "提及通知" - #: src/components/WhoCanReply.tsx:320 msgid "mentioned users" msgstr "被提及的用戶" #: src/lib/hooks/useNotificationHandler.ts:181 -#: src/screens/Settings/NotificationSettings/index.tsx:160 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:171 +#: src/screens/Settings/NotificationSettings/index.tsx:284 #: src/view/screens/Notifications.tsx:99 msgid "Mentions" msgstr "提及" @@ -6761,7 +7118,7 @@ msgstr "訊息" #: src/screens/Messages/components/MessageComposer.tsx:218 #: src/screens/Messages/components/MessageInput.tsx:235 #: src/screens/Messages/components/MessageInput.web.tsx:203 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:203 msgctxt "action" msgid "Message" msgstr "訊息" @@ -6771,26 +7128,26 @@ msgstr "訊息" msgid "Message {0}" msgstr "傳送訊息給 {0}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:195 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:199 msgid "Message {displayName}" msgstr "傳送訊息給 {displayName}" -#: src/screens/Messages/components/ChatListItem.tsx:310 +#: src/screens/Messages/components/ChatListItem.tsx:322 msgid "Message deleted" msgstr "訊息已刪除" -#: src/components/dms/MessageContextMenu.tsx:100 +#: src/components/dms/MessageOverlays.tsx:111 msgctxt "toast" msgid "Message deleted" msgstr "成功刪除訊息" -#: src/components/dms/MessageItem.tsx:553 +#: src/components/dms/MessageItem.tsx:527 msgid "Message failed to send." msgstr "傳送訊息時發生問題。" #. placeholder {0}: sender?.handle ?? 'unknown' #. placeholder {1}: message.text -#: src/components/dms/MessageContextMenu.tsx:146 +#: src/components/dms/MessageContextMenu.tsx:142 msgid "Message from @{0}: {1}" msgstr "來自 @{0} 的訊息:{1}" @@ -6813,21 +7170,21 @@ msgstr "訊息太長了" msgid "Message is too long ({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" msgstr "訊息內容太長了({graphemeCount}/{MAX_DM_GRAPHEME_LENGTH})" -#: src/components/dms/MessageContextMenu.tsx:145 +#: src/components/dms/MessageContextMenu.tsx:141 msgid "Message options" msgstr "訊息選項" -#: src/Navigation.tsx:838 +#: src/Navigation.tsx:761 msgid "Messages" msgstr "訊息" -#: src/components/dms/MessageItem.tsx:652 +#: src/components/dms/MessageItem.tsx:626 msgid "Messages from this person are hidden while they are blocking you." -msgstr "" +msgstr "當對方封鎖您時,其傳送的訊息將被隱藏。" -#: src/components/dms/MessageItem.tsx:647 +#: src/components/dms/MessageItem.tsx:621 msgid "Messages from this person are hidden while you are blocking them." -msgstr "" +msgstr "當您封鎖對方時,其傳送的訊息將被隱藏。" #: src/screens/Settings/AppIconSettings/useAppIconSets.ts:101 msgctxt "Name of app icon variant" @@ -6838,10 +7195,6 @@ msgstr "午夜" msgid "Minor harassment or bullying" msgstr "輕度騷擾或霸凌" -#: src/Navigation.tsx:523 -msgid "Miscellaneous notifications" -msgstr "其他通知" - #: src/components/moderation/ReportDialog/utils/useReportOptions.ts:35 msgid "Misleading" msgstr "不實資訊" @@ -6850,7 +7203,7 @@ msgstr "不實資訊" msgid "Missing media" msgstr "缺失媒體檔案" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:177 #: src/screens/Moderation/index.tsx:100 msgid "Moderation" msgstr "內容管理" @@ -6894,7 +7247,7 @@ msgstr "成功更新內容管理列表" msgid "Moderation lists" msgstr "內容管理列表" -#: src/Navigation.tsx:189 +#: src/Navigation.tsx:182 #: src/view/screens/ModerationModlists.tsx:60 msgid "Moderation Lists" msgstr "內容管理列表" @@ -6903,7 +7256,7 @@ msgstr "內容管理列表" msgid "moderation settings" msgstr "內容管理設定" -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:311 msgid "Moderation states" msgstr "內容管理狀態" @@ -6928,8 +7281,8 @@ msgstr "更多語言……" #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:144 #: src/view/com/composer/drafts/DraftItem.tsx:190 -#: src/view/com/profile/ProfileMenu.tsx:254 -#: src/view/com/profile/ProfileMenu.tsx:261 +#: src/view/com/profile/ProfileMenu.tsx:259 +#: src/view/com/profile/ProfileMenu.tsx:266 msgid "More options" msgstr "更多選項" @@ -6949,7 +7302,7 @@ msgstr "電影" msgid "Music" msgstr "音樂" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: src/screens/Messages/ConversationSettings/index.tsx:532 msgid "Mute" msgstr "靜音" @@ -6965,8 +7318,8 @@ msgstr "靜音" msgid "Mute {0}" msgstr "靜音 {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:730 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:736 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:739 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:745 #: src/view/com/profile/ProfileMenu.tsx:448 #: src/view/com/profile/ProfileMenu.tsx:455 msgid "Mute account" @@ -6977,8 +7330,8 @@ msgstr "靜音帳號" msgid "Mute accounts" msgstr "靜音帳號" -#: src/components/dms/ConvoMenu.tsx:277 -#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:267 +#: src/components/dms/ConvoMenu.tsx:274 msgid "Mute conversation" msgstr "靜音對話" @@ -6994,7 +7347,7 @@ msgstr "靜音列表" msgid "Mute these accounts?" msgstr "要靜音這些帳號嗎?" -#: src/screens/Messages/ConversationSettings/index.tsx:465 +#: src/screens/Messages/ConversationSettings/index.tsx:530 msgid "Mute this group chat" msgstr "靜音此群組對話" @@ -7022,17 +7375,21 @@ msgstr "僅隱藏包含該標籤的貼文" msgid "Mute this word until you unmute it" msgstr "將這個字詞靜音,直到您取消靜音為止" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Mute thread" msgstr "靜音討論串" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:634 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:636 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:643 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:645 msgid "Mute words & tags" msgstr "靜音字詞或標籤" -#: src/screens/Messages/ConversationSettings/index.tsx:467 +#: 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:532 msgid "Muted" msgstr "已靜音" @@ -7040,7 +7397,7 @@ msgstr "已靜音" msgid "Muted accounts" msgstr "已靜音帳號" -#: src/Navigation.tsx:194 +#: src/Navigation.tsx:187 #: src/view/screens/ModerationMutedAccounts.tsx:107 msgid "Muted Accounts" msgstr "已靜音帳號" @@ -7062,6 +7419,10 @@ msgstr "靜音字詞和標籤" 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" @@ -7104,12 +7465,12 @@ msgstr "前往新手包" msgid "Navigates to the next screen" msgstr "前往下一個畫面" -#: src/view/shell/Drawer.tsx:81 +#: src/view/shell/Drawer.tsx:92 msgid "Navigates to your profile" msgstr "前往您的個人檔案" -#: src/components/moderation/ReportDialog/index.tsx:340 -#: src/components/moderation/ReportDialog/index.tsx:356 +#: 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 "需要檢舉侵害著作權、法律要求,或法令遵循相關問題嗎?" @@ -7117,6 +7478,7 @@ msgstr "需要檢舉侵害著作權、法律要求,或法令遵循相關問題 msgid "Nevermind, create a handle for me" msgstr "算了,為我建立一個帳號代碼" +#: src/components/dialogs/nuxs/GroupChatsAnnouncement.tsx:171 #: src/screens/Search/modules/ExploreTrendingTopics.tsx:184 #: src/view/com/profile/ProfileMenu.tsx:403 msgid "New" @@ -7128,21 +7490,21 @@ msgctxt "action" msgid "New" msgstr "新增" -#: src/view/com/notifications/NotificationFeedItem.tsx:554 +#: src/view/com/notifications/NotificationFeedItem.tsx:563 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorLink}" msgstr "來自 {firstAuthorLink} 的新{postsCount, plural, other {貼文}}" -#: src/view/com/notifications/NotificationFeedItem.tsx:537 +#: src/view/com/notifications/NotificationFeedItem.tsx:546 msgid "New {postsCount, plural, one {post} other {posts}} from {firstAuthorName}" msgstr "來自 {firstAuthorName} 的新{postsCount, plural, other {貼文}}" -#: src/components/dms/dialogs/NewChatDialog.tsx:161 -#: src/components/dms/dialogs/NewChatDialog.tsx:171 -#: src/screens/Messages/ChatList.tsx:158 -#: src/screens/Messages/ChatList.tsx:159 -#: src/screens/Messages/ChatList.tsx:366 -#: src/screens/Messages/ChatList.tsx:367 -#: src/screens/Messages/ChatList.tsx:480 +#: src/components/dms/dialogs/NewChatDialog.tsx:169 +#: src/components/dms/dialogs/NewChatDialog.tsx:184 +#: src/screens/Messages/ChatList.tsx:217 +#: src/screens/Messages/ChatList.tsx:218 +#: src/screens/Messages/ChatList.tsx:438 +#: src/screens/Messages/ChatList.tsx:439 +#: src/screens/Messages/ChatList.tsx:578 msgid "New chat" msgstr "新對話" @@ -7163,7 +7525,7 @@ msgstr "{0} 和 {1} 的新對話" msgid "New chat with {0}, {1}, and {memberCount, plural, one {{memberCount} more} other {{memberCount} more}}." msgstr "與 {0}、{1} 及{memberCount, plural, other {其他 {memberCount} 人}}的新對話。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:223 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:219 msgid "New email address" msgstr "新的電子郵件地址" @@ -7171,32 +7533,30 @@ msgstr "新的電子郵件地址" #: 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/Navigation.tsx:491 -msgid "New follower notifications" -msgstr "新跟隨者通知" - #: src/lib/hooks/useNotificationHandler.ts:195 -#: src/screens/Settings/NotificationSettings/index.tsx:138 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:149 +#: src/screens/Settings/NotificationSettings/index.tsx:268 msgid "New followers" msgstr "新跟隨者" -#: src/components/dms/InitiateChatFlow.tsx:230 +#: src/components/dms/InitiateChatFlow.tsx:249 +#: src/components/dms/InitiateChatFlow.tsx:263 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:712 -#: src/components/dms/InitiateChatFlow.tsx:745 +#: src/components/dms/InitiateChatFlow.tsx:800 +#: src/components/dms/InitiateChatFlow.tsx:834 msgctxt "action" msgid "New group chat" -msgstr "" +msgstr "建立群組對話" -#: src/components/dms/InitiateChatFlow.tsx:267 +#: src/components/dms/InitiateChatFlow.tsx:300 msgid "New group chat with:" msgstr "與這些人建立群組對話:" @@ -7227,16 +7587,16 @@ msgid "New post" msgstr "新貼文" #: src/view/com/feeds/FeedPage.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:597 +#: src/view/shell/desktop/LeftNav.tsx:598 msgctxt "action" msgid "New post" msgstr "新貼文" -#: src/view/com/notifications/NotificationFeedItem.tsx:543 +#: src/view/com/notifications/NotificationFeedItem.tsx:552 msgid "New posts from {firstAuthorLink} and <0>{additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}} " msgstr "來自 {firstAuthorLink} 和<0>{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}的新貼文 " -#: src/view/com/notifications/NotificationFeedItem.tsx:528 +#: src/view/com/notifications/NotificationFeedItem.tsx:537 msgid "New posts from {firstAuthorName} and {additionalAuthorsCount, plural, one {{formattedAuthorsCount} other} other {{formattedAuthorsCount} others}}" msgstr "來自 {firstAuthorName} 和{additionalAuthorsCount, plural, other {其他 {formattedAuthorsCount} 人}}的新貼文" @@ -7262,8 +7622,8 @@ msgstr "新聞" #: src/components/contacts/screens/ViewMatches.tsx:395 #: src/components/contacts/screens/ViewMatches.tsx:410 -#: src/components/dms/AddMembersFlow.tsx:308 -#: src/components/dms/InitiateChatFlow.tsx:444 +#: src/components/dms/AddMembersFlow.tsx:325 +#: src/components/dms/InitiateChatFlow.tsx:494 #: src/screens/Login/ForgotPasswordForm.tsx:149 #: src/screens/Login/ForgotPasswordForm.tsx:156 #: src/screens/Login/SetNewPasswordForm.tsx:186 @@ -7284,6 +7644,10 @@ msgstr "下一步" msgid "Next image" msgstr "下一張圖片" +#: src/features/inviteFriends/components/ThemePicker.tsx:31 +msgid "Night" +msgstr "" + #: src/screens/Onboarding/StepFinished/ValuePropositionPager.shared.tsx:32 msgid "No ads, no invasive tracking, no engagement traps. Bluesky respects your time and attention." msgstr "無廣告、無侵入式追蹤,更沒有成癮性設計。Bluesky 尊重您寶貴的時間與注意力。" @@ -7321,7 +7685,7 @@ msgstr "沒有設定過期時間" msgid "No feeds found. Try searching for something else." msgstr "找不到任何動態源。試試以其他關鍵字搜尋。" -#: src/view/com/profile/ProfileFollowers.tsx:169 +#: src/view/com/profile/ProfileFollowers.tsx:202 msgid "No followers yet" msgstr "目前還沒有跟隨者" @@ -7335,7 +7699,7 @@ msgstr "找不到符合「{query}」的 GIFs。" msgid "No GIFs to show right now. Try again in a moment." msgstr "目前沒有可以顯示的 GIFs。請稍後再試。" -#: src/features/liveNow/components/LinkPreview.tsx:63 +#: src/features/liveNow/components/LinkPreview.tsx:64 msgid "No image" msgstr "沒有圖片" @@ -7353,8 +7717,8 @@ msgstr "沒有列表" #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, ) #. placeholder {0}: sanitizeDisplayName( profile.displayName || profile.handle, moderation.ui('displayName'), ) #: src/components/ProfileCard.tsx:521 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:288 -#: src/view/com/notifications/NotificationFeedItem.tsx:785 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:293 +#: src/view/com/notifications/NotificationFeedItem.tsx:817 msgid "No longer following {0}" msgstr "成功取消跟隨 {0}" @@ -7362,7 +7726,7 @@ msgstr "成功取消跟隨 {0}" msgid "No media yet" msgstr "目前還沒有任何媒體內容" -#: src/screens/Messages/components/ChatListItem.tsx:296 +#: src/screens/Messages/components/ChatListItem.tsx:310 msgid "No messages yet" msgstr "目前還沒有訊息" @@ -7378,12 +7742,12 @@ msgstr "沒有名稱" msgid "No notifications yet!" msgstr "目前還沒有通知!" -#: src/screens/Messages/Settings.tsx:86 +#: src/screens/Messages/Settings.tsx:91 msgctxt "allow group chat invites from" msgid "No one" msgstr "沒有人" -#: src/screens/Messages/Settings.tsx:68 +#: src/screens/Messages/Settings.tsx:73 msgctxt "allow messages from" msgid "No one" msgstr "沒有人" @@ -7399,7 +7763,7 @@ msgstr "沒有人" msgid "No one but the author can quote this post." msgstr "僅限發布者可以引用這則貼文。" -#: src/screens/Messages/components/ChatLocked.tsx:62 +#: src/screens/Messages/components/ChatLocked.tsx:74 msgid "No one can send messages" msgstr "沒有人可以傳送訊息" @@ -7435,8 +7799,8 @@ msgid "No result" msgstr "沒有結果" #: src/components/dialogs/SearchablePeopleList.tsx:250 -#: src/components/dms/AddMembersFlow.tsx:240 -#: src/components/dms/InitiateChatFlow.tsx:340 +#: src/components/dms/AddMembersFlow.tsx:257 +#: src/components/dms/InitiateChatFlow.tsx:376 #: src/components/ProgressGuide/FollowDialog.tsx:221 msgid "No results" msgstr "沒有結果" @@ -7446,8 +7810,8 @@ msgstr "沒有結果" msgid "No results for \"{0}\"." msgstr "找不到符合「{0}」的結果。" -#: src/components/Lists.tsx:204 -#: src/components/Lists.tsx:219 +#: src/components/Lists.tsx:203 +#: src/components/Lists.tsx:218 msgid "No results found" msgstr "找不到結果" @@ -7509,12 +7873,12 @@ msgstr "非自願的親密影像 (NCII)" msgid "Non-sexual Nudity" msgstr "非色情裸露" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:223 -msgid "None" -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:104 +#: src/screens/Settings/FindContactsSettings.tsx:106 msgid "Not available on this platform." msgstr "此功能無法在這個平台上使用。" @@ -7522,16 +7886,16 @@ msgstr "此功能無法在這個平台上使用。" msgid "Not followed by anyone you’re following" msgstr "沒有被任何您認識的人跟隨" -#: src/Navigation.tsx:174 +#: src/Navigation.tsx:167 #: src/view/screens/Profile.tsx:132 msgid "Not Found" msgstr "找不到" -#: src/components/dialogs/nuxs/DraftsAnnouncement.tsx:130 +#: 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:570 +#: src/view/com/profile/ProfileMenu.tsx:545 msgid "Note about sharing" msgstr "關於分享的注意事項" @@ -7548,44 +7912,31 @@ msgstr "註:這則貼文僅限已登入用戶可以檢視。" msgid "Nothing saved yet" msgstr "還沒有收藏任何內容" -#: src/Navigation.tsx:445 -#: src/Navigation.tsx:599 +#: src/components/dialogs/NotificationSettingsDialog.tsx:64 +#: src/Navigation.tsx:443 +#: src/Navigation.tsx:522 #: src/view/screens/Notifications.tsx:134 msgid "Notification settings" msgstr "通知設定" -#: src/screens/Messages/Settings.tsx:231 #: src/screens/Messages/Settings.tsx:244 +#: src/screens/Messages/Settings.tsx:257 msgid "Notification sounds" msgstr "通知音效" -#: src/Navigation.tsx:594 -#: src/Navigation.tsx:833 +#: src/Navigation.tsx:517 +#: src/Navigation.tsx:756 #: src/screens/Notifications/ActivityList.tsx:31 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:93 -#: src/screens/Settings/NotificationSettings/index.tsx:93 -#: src/screens/Settings/NotificationSettings/LikeNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/LikesOnRepostsNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MentionNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/NewFollowerNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:30 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:30 +#: src/screens/Settings/NotificationSettings/index.tsx:104 #: src/screens/Settings/Settings.tsx:197 #: src/screens/Settings/Settings.tsx:200 #: src/view/screens/Notifications.tsx:128 -#: src/view/shell/bottom-bar/BottomBar.tsx:260 -#: src/view/shell/desktop/LeftNav.tsx:686 -#: src/view/shell/Drawer.tsx:496 +#: src/view/shell/bottom-bar/BottomBar.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:687 +#: src/view/shell/Drawer.tsx:552 msgid "Notifications" msgstr "通知" -#: src/screens/Settings/NotificationSettings/MiscellaneousNotificationSettings.tsx:43 -msgid "Notifications for everything else, such as when someone joins via one of your starter packs." -msgstr "所有其他的通知,例如有人使用了您的新手包註冊帳號。" - #: src/lib/hooks/useTimeAgo.ts:135 msgid "now" msgstr "剛剛" @@ -7601,7 +7952,7 @@ msgstr "必須使用手機號碼" #: src/lib/moderation/useLabelBehaviorDescription.ts:14 #: src/screens/Settings/AccountSettings.tsx:164 -#: src/screens/Settings/NotificationSettings/index.tsx:292 +#: src/screens/Settings/NotificationSettings/index.tsx:394 msgid "Off" msgstr "顯示" @@ -7623,9 +7974,10 @@ msgstr "好的" #: src/components/BotAccountAlert.tsx:52 #: src/components/BotAccountAlert.tsx:57 -#: src/components/dms/MessageItem.tsx:659 +#: src/components/dms/InitiateChatFlow.tsx:733 +#: src/components/dms/MessageItem.tsx:633 #: src/screens/Login/PasswordUpdatedForm.tsx:37 -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:661 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:663 msgid "Okay" msgstr "了解" @@ -7648,35 +8000,35 @@ msgstr "在<0><1/><2><3/>" msgid "Onboarding reset" msgstr "重新開始入門引導" -#: src/components/dms/dialogs/NewChatDialog.tsx:110 +#: src/components/dms/dialogs/NewChatDialog.tsx:117 msgid "One of the selected recipients does not allow group chats." -msgstr "" +msgstr "選擇的部分對象選擇不接受群組聊天。" -#: src/components/dms/dialogs/NewChatDialog.tsx:93 +#: src/components/dms/dialogs/NewChatDialog.tsx:100 msgid "One of the selected recipients has blocked you and cannot be messaged." -msgstr "" +msgstr "選擇的部分對象已封鎖您,無法傳送訊息。" -#: src/view/com/composer/Composer.tsx:793 +#: src/view/com/composer/Composer.tsx:864 msgid "One or more GIFs is missing alt text." msgstr "至少有一張 GIF 缺少了替代文字。" -#: src/view/com/composer/Composer.tsx:790 +#: src/view/com/composer/Composer.tsx:861 msgid "One or more images is missing alt text." msgstr "至少有一張圖片缺少了替代文字。" -#: src/view/com/composer/SelectMediaButton.tsx:411 +#: src/view/com/composer/SelectMediaButton.tsx:417 msgid "One or more of your selected files are not supported." msgstr "至少有一個選擇的檔案為不支援的格式。" -#: src/view/com/composer/SelectMediaButton.tsx:434 -msgid "One or more of your selected files are too large. Maximum size is 100 MB." -msgstr "至少有一個選擇的檔案太大了。最大檔案尺寸為 100 MB。" +#: src/view/com/composer/SelectMediaButton.tsx:440 +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:595 +#: src/view/com/composer/Composer.tsx:659 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:800 +#: src/view/com/composer/Composer.tsx:871 msgid "One or more videos is missing alt text." msgstr "至少有一段影片缺少了替代文字。" @@ -7685,6 +8037,26 @@ msgstr "至少有一段影片缺少了替代文字。" msgid "Only {0} can reply." msgstr "只有{0}可以回覆。" +#. 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:234 +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} 張圖片" + +#: src/screens/Messages/JoinRequests.tsx:200 +msgid "Only admins can accept join requests." +msgstr "只有管理員可以接受加入申請。" + +#: src/screens/Messages/JoinRequests.tsx:233 +msgid "Only admins can ignore join requests." +msgstr "只有管理員可以忽略加入申請。" + +#: src/components/intents/GroupChatJoinDialog.tsx:145 +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 @@ -7695,6 +8067,16 @@ msgstr "僅限我回跟的跟隨者" msgid "Only image files are supported" msgstr "僅支援圖片檔案" +#. placeholder {0}: createSanitizedDisplayName( joinLinkPreview.owner, true, moderateProfile(joinLinkPreview.owner, moderationOpts).ui( 'displayName', ), ) +#: src/screens/Messages/JoinRequest.tsx:222 +msgid "Only people {0} follows can join." +msgstr "只有 {0} 跟隨的人可以加入。" + +#: src/components/dms/ChatInvite/Root.tsx:127 +#: src/components/intents/GroupChatJoinDialog.tsx:292 +msgid "Only people the chat owner follows can join" +msgstr "只有群組擁有者跟隨的人可以加入" + #: src/view/com/composer/videos/SubtitleFilePicker.tsx:41 msgid "Only WebVTT (.vtt) files are supported" msgstr "僅支援 WebVTT (.vtt) 檔案" @@ -7703,6 +8085,10 @@ msgstr "僅支援 WebVTT (.vtt) 檔案" 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:363 #: src/components/StarterPack/ProfileStarterPacks.tsx:372 @@ -7712,7 +8098,7 @@ msgstr "糟糕,發生錯誤!" msgid "Oops!" msgstr "糟糕!" -#: src/screens/Onboarding/StepProfile/index.tsx:310 +#: src/screens/Onboarding/StepProfile/index.tsx:311 msgid "Open avatar creator" msgstr "開啟大頭貼照建立工具" @@ -7720,12 +8106,17 @@ msgstr "開啟大頭貼照建立工具" msgid "Open camera" msgstr "開啟相機" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:139 +#: src/components/dms/ChatInvite/Root.tsx:104 +#: src/components/intents/GroupChatJoinDialog.tsx:437 +msgid "Open chat" +msgstr "開啟對話" + +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:142 msgid "Open chat member options for {displayName}" msgstr "開啟 {displayName} 的對話成員選項列表" -#: src/screens/Messages/components/ChatListItem.tsx:471 -#: src/screens/Messages/components/ChatListItem.tsx:475 +#: src/screens/Messages/components/ChatListItem.tsx:487 +#: src/screens/Messages/components/ChatListItem.tsx:491 msgid "Open conversation options" msgstr "開啟對話選項" @@ -7739,16 +8130,16 @@ msgstr "開啟側邊選單" #: src/screens/Messages/components/MessageComposer.tsx:176 #: src/screens/Messages/components/MessageInput.web.tsx:148 -#: src/view/com/composer/Composer.tsx:2044 +#: src/view/com/composer/Composer.tsx:2160 msgid "Open emoji picker" msgstr "開啟表情符號選擇器" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:197 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:192 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:303 msgid "Open feed options menu" msgstr "開啟動態選項選單" @@ -7760,13 +8151,22 @@ msgstr "開啟完整表情符號列表" msgid "Open Germ DM" msgstr "開啟 Germ DM" -#: src/components/dms/MessagesListHeader.tsx:169 -#: src/components/dms/MessagesListHeader.tsx:208 +#: src/components/intents/GroupChatJoinDialog.tsx:430 +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/Post/Embed/ExternalEmbed/index.tsx:86 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:143 +#: 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:141 msgid "Open link to {niceUrl}" msgstr "開啟至 {niceUrl} 的連結" @@ -7790,11 +8190,15 @@ msgstr "開啟新手包" msgid "Open post options menu" msgstr "開啟貼文選項選單" -#: src/features/liveNow/components/LiveStatusDialog.tsx:218 -#: src/features/liveNow/components/LiveStatusDialog.tsx:228 +#: 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" @@ -7817,6 +8221,10 @@ msgstr "開啟故事書頁面" msgid "Open system log" msgstr "開啟系統記錄" +#: src/components/intents/GroupChatJoinDialog.tsx:431 +msgid "Open this group chat" +msgstr "開啟此群組對話" + #. placeholder {0}: feedInfo.displayName #: src/view/shell/desktop/Feeds.tsx:185 msgid "Opens {0} feed" @@ -7830,6 +8238,10 @@ msgstr "開啟對話框來向您的貼文加入內容警告" msgid "Opens a dialog to choose who can interact with this post" msgstr "開啟對話框來選擇哪些人可以與這則貼文互動" +#: src/features/inviteFriends/components/ThemePicker.tsx:38 +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 "開啟偵錯項目的額外詳細資訊" @@ -7838,7 +8250,7 @@ msgstr "開啟偵錯項目的額外詳細資訊" msgid "Opens alt text dialog" msgstr "開啟替代文字對話框" -#: src/view/com/composer/photos/OpenCameraBtn.tsx:71 +#: src/view/com/composer/photos/OpenCameraBtn.tsx:70 msgid "Opens camera on device" msgstr "開啟裝置相機" @@ -7858,22 +8270,24 @@ msgstr "開啟編輯器" msgid "Opens device camera" msgstr "開啟裝置相機" -#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. Maximum number of images that can be selected is currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:505 -msgid "Opens device gallery to select up to {MAX_IMAGES, plural, other {# images}}, or a single video or GIF." -msgstr "開啟裝置相簿以選擇最多 {MAX_IMAGES, plural, other {# 張圖片}}、1 段影片或 1 張 GIF。" +#. Accessibility hint for button in composer to add images, a video, or a GIF to a post. +#: src/view/com/composer/SelectMediaButton.tsx:511 +msgid "Opens device gallery to select up to {MAX_GALLERY_IMAGES, plural, other {# images}}, or a single video or GIF." +msgstr "開啟裝置相簿以選擇最多 {MAX_GALLERY_IMAGES, plural, other {# 張圖片}}、一段影片或一張 GIF。" +#: src/screens/Messages/JoinRequest.tsx:309 #: src/view/com/auth/SplashScreen.tsx:102 #: src/view/com/auth/SplashScreen.web.tsx:110 msgid "Opens flow to create a new Bluesky account" msgstr "開啟建立新的 Bluesky 帳號的流程" +#: src/screens/Messages/JoinRequest.tsx:295 #: src/view/com/auth/SplashScreen.tsx:120 #: src/view/com/auth/SplashScreen.web.tsx:124 msgid "Opens flow to sign in to your existing Bluesky account" msgstr "開啟登入現有 Bluesky 帳號的流程" -#: src/components/images/Gallery/index.tsx:428 +#: src/components/images/Gallery/index.tsx:460 msgid "Opens full image" msgstr "開啟完整圖片" @@ -7890,7 +8304,7 @@ msgstr "開啟圖片選擇器" msgid "Opens link {0}" msgstr "開啟連結 {0}" -#: src/view/com/util/UserAvatar.tsx:599 +#: src/view/com/util/UserAvatar.tsx:603 msgid "Opens live status dialog" msgstr "開啟直播狀態對話框" @@ -7902,15 +8316,23 @@ msgstr "開啟密碼重設表單" msgid "Opens post language settings" msgstr "開啟貼文語言設定" -#: src/components/dms/SystemMessageItem.tsx:60 +#: 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 "開啟 GIF 選擇對話框" +#: 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 "開啟貼文編輯器" @@ -7919,9 +8341,8 @@ msgstr "開啟貼文編輯器" msgid "Opens this draft in the composer" msgstr "在編輯器開啟這份草稿" -#: src/components/dms/MessageItem.tsx:229 -#: src/view/com/notifications/NotificationFeedItem.tsx:1019 -#: src/view/com/util/UserAvatar.tsx:617 +#: src/view/com/notifications/NotificationFeedItem.tsx:1131 +#: src/view/com/util/UserAvatar.tsx:621 msgid "Opens this profile" msgstr "開啟這個個人檔案" @@ -7997,12 +8418,12 @@ msgstr "我們的部落格文章" #: src/components/dms/AfterReportConversationDialog.tsx:86 #: src/components/dms/AfterReportConversationDialog.tsx:213 -#: src/components/dms/AfterReportDialog.tsx:84 -#: src/components/dms/AfterReportDialog.tsx:176 +#: 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:50 +#: src/screens/Messages/components/ChatDisabled.tsx:54 msgid "Our moderators have reviewed reports and decided to disable your access to chats on Bluesky." msgstr "我們的內容審查人員在審閱相關檢舉後,決定停用您在 Bluesky 上的對話功能。" @@ -8010,14 +8431,15 @@ msgstr "我們的內容審查人員在審閱相關檢舉後,決定停用您在 msgid "Owner" msgstr "擁有者" -#: src/components/Lists.tsx:205 -#: src/components/Lists.tsx:220 -#: src/view/screens/NotFound.tsx:36 -msgid "Page not found" -msgstr "頁面不存在" +#: src/components/dms/LeaveConvoPrompt.tsx:44 +msgid "Owner must lock the group before leaving." +msgstr "擁有者必須在離開前鎖定群組。" -#: src/view/screens/NotFound.tsx:33 -msgid "Page Not Found" +#: 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. @@ -8068,34 +8490,34 @@ msgstr "暫停影片" msgid "People" msgstr "用戶" -#: src/screens/Messages/components/InviteLinkDialog.tsx:154 +#: src/screens/Messages/components/InviteLinkDialog.tsx:164 msgid "People {ownerName} follows can join instantly" msgstr "被 {ownerName} 跟隨的人可以直接加入" -#: src/screens/Messages/components/InviteLinkDialog.tsx:159 +#: src/screens/Messages/components/InviteLinkDialog.tsx:169 msgid "People {ownerName} follows can request to join" msgstr "被 {ownerName} 跟隨的人可以申請加入" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:245 +#: src/Navigation.tsx:238 msgid "People followed by @{0}" msgstr "被 @{0} 跟隨的人" #. placeholder {0}: route.params.name -#: src/Navigation.tsx:238 +#: src/Navigation.tsx:231 msgid "People following @{0}" msgstr "跟隨 @{0} 的人" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:183 -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:193 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:194 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:198 msgid "People I follow" msgstr "我跟隨的人" -#: src/screens/Messages/components/InviteLinkDialog.tsx:153 +#: src/screens/Messages/components/InviteLinkDialog.tsx:163 msgid "People I follow can join instantly" msgstr "我跟隨的人可以直接加入" -#: src/screens/Messages/components/InviteLinkDialog.tsx:158 +#: src/screens/Messages/components/InviteLinkDialog.tsx:168 msgid "People I follow can request to join" msgstr "我跟隨的人可以申請加入" @@ -8136,13 +8558,17 @@ msgstr "已驗證電話號碼" msgid "Photography" msgstr "攝影" +#: src/features/inviteFriends/components/ThemePicker.tsx:37 +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:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:559 msgid "Pin feed" msgstr "釘選動態源" @@ -8152,12 +8578,12 @@ msgstr "釘選動態源" msgid "Pin to home" msgstr "釘選到首頁" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:344 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:337 msgid "Pin to Home" msgstr "釘選到首頁" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Pin to your profile" msgstr "釘選到您的個人檔案" @@ -8166,8 +8592,8 @@ msgid "Pinned" msgstr "已釘選" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:164 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:178 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:159 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:173 msgid "Pinned {0} to Home" msgstr "成功釘選 {0} 到首頁" @@ -8236,7 +8662,7 @@ msgstr "請選擇您的帳號代碼。" msgid "Please choose your password." msgstr "請設定您的密碼。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:291 +#: 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 "請檢視我們剛剛傳送的郵件,並打開其中包含的連結來驗證您的新電子郵件地址。您需要先完成此步驟才能繼續使用 Bluesky 的所有功能。" @@ -8244,7 +8670,7 @@ msgstr "請檢視我們剛剛傳送的郵件,並打開其中包含的連結來 msgid "Please complete the verification captcha." msgstr "請完成人機驗證 (Captcha)。" -#: src/view/com/composer/state/video.ts:454 +#: src/view/com/composer/state/video.ts:439 msgid "Please confirm your email address to upload videos." msgstr "請先驗證您的電子郵件地址以上傳影片。" @@ -8265,14 +8691,14 @@ msgstr "請輸入密碼,必須至少包含 8 個字元。" 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:132 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:136 +#: 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:149 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:147 msgid "Please enter a valid email address." msgstr "請輸入有效的電子郵件地址。" @@ -8285,7 +8711,7 @@ msgid "Please enter a valid, non-temporary email address. You may need to access msgstr "請輸入有效、非臨時的電子郵件地址。您日後可能會需要存取這個電子信箱。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:260 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:269 msgid "Please enter the code we sent to <0>{0} below." msgstr "請輸入我們傳送至 <0>{0} 的驗證碼。" @@ -8293,7 +8719,7 @@ msgstr "請輸入我們傳送至 <0>{0} 的驗證碼。" msgid "Please enter the code you received and the new password you would like to use." msgstr "請輸入收到的驗證碼以及想要使用的新密碼。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:248 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:244 msgid "Please enter the security code we sent to your previous email address." msgstr "請輸入我們先前傳送到您電子郵件地址的驗證碼。" @@ -8306,7 +8732,7 @@ msgstr "請輸入您的電子郵件地址。" msgid "Please enter your invite code." msgstr "請輸入您的邀請碼。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:218 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:214 msgid "Please enter your new email address." msgstr "請輸入您的新電子郵件地址。" @@ -8323,7 +8749,7 @@ msgstr "請輸入您的用戶名稱" msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "請說明您為什麼覺得「{0}」不應該新增這個標記" -#: src/screens/Messages/components/ChatDisabled.tsx:139 +#: src/screens/Messages/components/ChatDisabled.tsx:143 msgid "Please explain why you think your chats were incorrectly disabled" msgstr "請解釋為什麼您覺得我們不該停用您的對話功能" @@ -8358,7 +8784,11 @@ msgstr "請選擇您要檢舉的違規項目" msgid "Please sign in as @{0}" msgstr "請以 @{0} 的身分登入" -#: src/screens/Settings/FindContactsSettings.tsx:105 +#: 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 "請使用應用程式來匯入您的聯絡人。" @@ -8366,7 +8796,7 @@ msgstr "請使用應用程式來匯入您的聯絡人。" msgid "Please use the native app to sync your contacts." msgstr "請使用應用程式來同步您的聯絡人。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:63 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:59 msgid "Please verify your email" msgstr "請驗證您的電子信箱" @@ -8383,7 +8813,7 @@ msgstr "政治" msgid "Porn" msgstr "色情" -#: src/view/com/composer/Composer.tsx:1693 +#: src/view/com/composer/Composer.tsx:1808 msgctxt "action" msgid "Post" msgstr "發布" @@ -8403,12 +8833,12 @@ msgstr "發布一張照片" msgid "Post a video" msgstr "發布一段影片" -#: src/view/com/composer/Composer.tsx:1691 +#: src/view/com/composer/Composer.tsx:1806 msgctxt "action" msgid "Post All" msgstr "全部發布" -#: src/view/com/composer/Composer.tsx:1351 +#: src/view/com/composer/Composer.tsx:1470 msgid "Post anyway" msgstr "仍然發布" @@ -8417,19 +8847,19 @@ msgid "Post blocked" msgstr "貼文已被封鎖" #. placeholder {0}: route.params.name +#: src/Navigation.tsx:264 #: src/Navigation.tsx:271 #: src/Navigation.tsx:278 #: src/Navigation.tsx:285 -#: src/Navigation.tsx:292 msgid "Post by @{0}" msgstr "@{0} 的貼文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:199 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:200 msgctxt "toast" msgid "Post deleted" msgstr "成功刪除貼文" -#: src/lib/api/index.ts:193 +#: src/lib/api/index.ts:190 msgid "Post failed to upload. Please check your Internet connection and try again." msgstr "貼文發布失敗。請檢查您的網路連線狀態後再試一次。" @@ -8454,18 +8884,22 @@ msgstr "這則貼文被您隱藏" msgid "Post interaction settings" msgstr "貼文互動設定" -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:198 #: 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:354 -#: src/screens/Messages/components/InviteLinkDialog.tsx:366 +#: src/screens/Messages/components/InviteLinkDialog.tsx:395 +#: src/screens/Messages/components/InviteLinkDialog.tsx:411 msgid "Post link" msgstr "貼文連結" @@ -8491,7 +8925,6 @@ 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:219 #: src/screens/StarterPack/StarterPackScreen.tsx:197 #: src/view/screens/Profile.tsx:234 msgid "Posts" @@ -8505,10 +8938,6 @@ msgstr "可以根據文字、標籤或結合兩者來靜音貼文。我們建議 msgid "Posts hidden" msgstr "已隱藏貼文" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:217 -msgid "Posts, Replies" -msgstr "貼文、回覆" - #: src/components/dialogs/LinkWarning.tsx:89 msgid "Potentially misleading link" msgstr "潛在誤導性連結" @@ -8525,9 +8954,10 @@ msgstr "偏好語言" msgid "Press to attempt reconnection" msgstr "點此以重新連線" -#: src/components/Error.tsx:61 +#: 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 "點此再試一次" @@ -8536,7 +8966,7 @@ msgstr "點此再試一次" msgid "Press to view followers of this account that you also follow" msgstr "點此以檢視哪些您認識的人也跟隨了此帳號" -#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:120 +#: src/features/liveEvents/components/LiveEventFeedCardWide.tsx:121 msgid "Preview" msgstr "預覽" @@ -8559,26 +8989,25 @@ msgstr "隱私" msgid "Privacy and security" msgstr "隱私與安全" -#: src/Navigation.tsx:422 -#: src/Navigation.tsx:430 +#: src/Navigation.tsx:420 +#: src/Navigation.tsx:428 #: src/screens/Settings/ActivityPrivacySettings.tsx:41 #: src/screens/Settings/PrivacyAndSecuritySettings.tsx:45 msgid "Privacy and Security" msgstr "隱私與安全" -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:164 #: 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/Navigation.tsx:336 #: src/screens/Settings/AboutSettings.tsx:95 #: src/screens/Settings/AboutSettings.tsx:98 #: src/view/screens/PrivacyPolicy.tsx:25 -#: src/view/shell/Drawer.tsx:707 -#: src/view/shell/Drawer.tsx:708 +#: src/view/shell/Drawer.tsx:763 +#: src/view/shell/Drawer.tsx:764 msgid "Privacy Policy" msgstr "隱私權政策" @@ -8586,15 +9015,15 @@ msgstr "隱私權政策" msgid "Privacy violation of a minor" msgstr "侵犯未成年者隱私" -#: src/view/com/composer/Composer.tsx:2478 +#: src/view/com/composer/Composer.tsx:2594 msgid "Processing GIF..." msgstr "正在處理 GIF……" -#: src/view/com/composer/Composer.tsx:2480 +#: src/view/com/composer/Composer.tsx:2596 msgid "Processing video..." msgstr "正在處理影片……" -#: src/lib/api/index.ts:66 +#: src/lib/api/index.ts:63 msgid "Processing..." msgstr "處理中……" @@ -8602,10 +9031,10 @@ msgstr "處理中……" msgid "profile" msgstr "個人檔案" -#: src/view/shell/bottom-bar/BottomBar.tsx:303 -#: src/view/shell/desktop/LeftNav.tsx:744 -#: src/view/shell/Drawer.tsx:80 -#: src/view/shell/Drawer.tsx:599 +#: src/view/shell/bottom-bar/BottomBar.tsx:304 +#: src/view/shell/desktop/LeftNav.tsx:745 +#: src/view/shell/Drawer.tsx:91 +#: src/view/shell/Drawer.tsx:655 msgid "Profile" msgstr "個人檔案" @@ -8613,6 +9042,7 @@ msgstr "個人檔案" msgid "Profile banner placeholder" msgstr "個人檔案橫幅佔位標記" +#: src/features/inviteFriends/InviteScannerScreen.tsx:210 #: src/lib/strings/errors.ts:40 msgid "Profile not found" msgstr "找不到個人檔案" @@ -8635,57 +9065,54 @@ 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:1677 +#: src/view/com/composer/Composer.tsx:1792 msgid "Publish post" msgstr "發布貼文" #. Accessibility label for button to publish multiple posts in a thread -#: src/view/com/composer/Composer.tsx:1672 +#: src/view/com/composer/Composer.tsx:1787 msgid "Publish posts" msgstr "發布貼文" #. Accessibility label for button to publish multiple replies in a thread -#: src/view/com/composer/Composer.tsx:1661 +#: src/view/com/composer/Composer.tsx:1776 msgid "Publish replies" msgstr "發布回覆" #. Accessibility label for button to publish a single reply -#: src/view/com/composer/Composer.tsx:1666 +#: src/view/com/composer/Composer.tsx:1781 msgid "Publish reply" msgstr "發布回覆" -#: src/screens/Settings/NotificationSettings/index.tsx:287 +#: src/screens/Settings/NotificationSettings/index.tsx:389 msgid "Push" msgstr "推播" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:131 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:134 msgid "Push notifications" msgstr "推播通知" -#: src/screens/Settings/NotificationSettings/index.tsx:270 -msgid "Push, Everyone" +#: src/screens/Settings/NotificationSettings/index.tsx:372 +msgid "Push, everyone" msgstr "推播、所有人" -#: src/screens/Settings/NotificationSettings/index.tsx:278 -msgid "Push, People you follow" +#: src/screens/Settings/NotificationSettings/index.tsx:380 +msgid "Push, people you follow" msgstr "推播、您跟隨的人" -#: src/components/StarterPack/QrCodeDialog.tsx:140 +#: src/components/StarterPack/QrCodeDialog.tsx:143 msgid "QR code copied to your clipboard!" msgstr "QR Code 已複製到您的剪貼簿!" -#: src/components/StarterPack/QrCodeDialog.tsx:118 +#: src/components/StarterPack/QrCodeDialog.tsx:121 msgid "QR code has been downloaded!" msgstr "成功下載 QR Code!" -#: src/components/StarterPack/QrCodeDialog.tsx:119 +#: src/components/StarterPack/QrCodeDialog.tsx:122 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:100 msgid "QR code saved to your camera roll!" msgstr "QR Code 已儲存至您的裝置相簿!" -#: src/Navigation.tsx:467 -msgid "Quote notifications" -msgstr "引用通知" - #: src/components/PostControls/RepostButton.tsx:176 #: src/components/PostControls/RepostButton.tsx:199 #: src/components/PostControls/RepostButton.web.tsx:84 @@ -8694,11 +9121,11 @@ msgstr "引用通知" msgid "Quote post" msgstr "引用貼文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:351 msgid "Quote post was re-attached" msgstr "引用已重新連結" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:349 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:350 msgid "Quote post was successfully detached" msgstr "成功分離貼文引用" @@ -8711,12 +9138,12 @@ msgstr "已拒絕引用貼文" #: src/lib/hooks/useNotificationHandler.ts:188 #: src/screens/Post/PostQuotes.tsx:31 -#: src/screens/Settings/NotificationSettings/index.tsx:171 -#: src/screens/Settings/NotificationSettings/QuoteNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:182 +#: src/screens/Settings/NotificationSettings/index.tsx:291 msgid "Quotes" msgstr "引用" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:467 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:469 msgid "Quotes of this post" msgstr "引用這則貼文" @@ -8728,16 +9155,16 @@ msgstr "超過速率限制 —— 您在短時間內嘗試變更帳號代碼的 msgid "Rate limit exceeded. Please try again later." msgstr "暫時達到速率限制,請稍後再試。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:690 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:700 +#: 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:384 +#: src/screens/Messages/components/InviteLinkDialog.tsx:433 msgid "Re-enable invite link" msgstr "重新啟用邀請連結" -#: src/screens/Messages/components/InviteLinkDialog.tsx:391 +#: src/screens/Messages/components/InviteLinkDialog.tsx:440 msgid "Re-enable link" msgstr "重新啟用連結" @@ -8745,8 +9172,8 @@ msgstr "重新啟用連結" msgid "React with {emoji}" msgstr "使用 {emoji} 做出反應" -#: src/components/dms/ReactionsDialog.tsx:65 -#: src/components/dms/ReactionsDialog.tsx:90 +#: src/components/dms/ReactionsDialog.tsx:66 +#: src/components/dms/ReactionsDialog.tsx:94 msgid "Reactions" msgstr "反應" @@ -8764,8 +9191,8 @@ msgctxt "english-only-resource" msgid "read about how to use search filters" msgstr "閱讀如何使用搜尋篩選器" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:160 -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:171 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:162 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:173 msgid "Read blog post" msgstr "閱讀部落格文章" @@ -8812,11 +9239,11 @@ msgstr "真實的用戶。" msgid "Reason for appeal" msgstr "申訴理由" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:137 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:140 msgid "Receive in-app notifications" msgstr "接收應用程式內通知" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:120 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:123 msgid "Receive push notifications" msgstr "接收推播通知" @@ -8841,17 +9268,31 @@ msgstr "推薦" msgid "Reconnect" msgstr "重新連線" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:80 +msgid "Refresh the page to see it." +msgstr "重新整理以顯示該內容。" + #. Reject a chat request, this opens a menu with options -#: src/screens/Messages/components/RequestButtons.tsx:131 +#: src/screens/Messages/components/RequestButtons.tsx:136 msgid "Reject" msgstr "拒絕" -#: src/screens/Messages/components/RequestButtons.tsx:120 +#. 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/ChatList.tsx:338 -#: src/screens/Messages/Inbox.tsx:215 +#: src/screens/Messages/JoinRequests.tsx:483 +msgid "Reject join request" +msgstr "" + +#: src/screens/Messages/ChatList.tsx:407 +#: src/screens/Messages/Inbox.tsx:213 msgid "Reload conversations" msgstr "重新載入對話" @@ -8863,6 +9304,8 @@ msgstr "重新載入對話" #: src/components/StarterPack/Wizard/WizardListCard.tsx:106 #: src/components/StarterPack/Wizard/WizardListCard.tsx:113 #: src/screens/Bookmarks/index.tsx:265 +#: src/screens/Messages/ConversationSettings/Member.tsx:162 +#: src/screens/Messages/ConversationSettings/prompts.tsx:170 #: src/screens/Moderation/index.tsx:477 #: src/screens/Settings/Settings.tsx:673 #: src/view/com/modals/UserAddRemoveLists.tsx:236 @@ -8878,10 +9321,15 @@ msgstr "把 {displayName} 從群組移除" msgid "Remove {displayName} from starter pack" msgstr "從您的新手包刪除 {displayName}" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:229 +#: src/screens/Messages/ConversationSettings/Member.tsx:157 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:234 msgid "Remove {displayName} from this group chat" msgstr "把 {displayName} 從此群組移除" +#: src/screens/Messages/ConversationSettings/prompts.tsx:168 +msgid "Remove {displayName}?" +msgstr "" + #: src/screens/Search/components/SearchHistory.tsx:105 msgid "Remove {historyItem}" msgstr "刪除 {historyItem}" @@ -8891,22 +9339,22 @@ msgstr "刪除 {historyItem}" msgid "Remove account" msgstr "移除帳號" -#: src/screens/Settings/FindContactsSettings.tsx:555 -#: src/screens/Settings/FindContactsSettings.tsx:563 +#: src/screens/Settings/FindContactsSettings.tsx:576 +#: src/screens/Settings/FindContactsSettings.tsx:584 msgid "Remove all contacts" msgstr "刪除所有聯絡人" -#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:19 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:18 msgid "Remove attachment" msgstr "復原貼文分離" -#: src/view/com/util/UserAvatar.tsx:519 -#: src/view/com/util/UserAvatar.tsx:522 +#: src/view/com/util/UserAvatar.tsx:523 +#: src/view/com/util/UserAvatar.tsx:526 msgid "Remove Avatar" msgstr "刪除大頭貼照" -#: src/view/com/util/UserBanner.tsx:189 -#: src/view/com/util/UserBanner.tsx:192 +#: src/view/com/util/UserBanner.tsx:193 +#: src/view/com/util/UserBanner.tsx:196 msgid "Remove Banner" msgstr "刪除橫幅" @@ -8914,8 +9362,9 @@ msgstr "刪除橫幅" msgid "Remove caption file" msgstr "刪除字幕檔案" -#: src/screens/Messages/components/MessageInputEmbed.tsx:192 -#: src/screens/Messages/components/MessageInputEmbed.tsx:248 +#: 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 "刪除嵌入" @@ -8929,12 +9378,12 @@ msgstr "刪除動態源" msgid "Remove feed?" msgstr "要刪除動態源嗎?" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:233 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:238 msgid "Remove from chat" msgstr "從對話中移除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:332 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:325 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:176 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:179 #: src/screens/SavedFeeds.tsx:549 @@ -8959,7 +9408,7 @@ msgstr "從貼文收藏中刪除" msgid "Remove from your feeds?" msgstr "要從您的動態源中刪除嗎?" -#: src/view/com/composer/photos/Gallery.tsx:225 +#: src/view/com/composer/photos/Gallery.tsx:227 msgid "Remove image" msgstr "刪除圖片" @@ -8982,7 +9431,7 @@ msgid "Remove repost" msgstr "刪除轉發" #: src/components/contacts/screens/ViewMatches.tsx:500 -#: src/screens/Settings/FindContactsSettings.tsx:328 +#: src/screens/Settings/FindContactsSettings.tsx:349 msgid "Remove suggestion" msgstr "刪除建議" @@ -9009,11 +9458,11 @@ msgstr "撤回驗證" msgid "Remove your verification for this account?" msgstr "要撤回您對這個帳號的驗證嗎?" -#: src/components/Post/Embed/index.tsx:225 +#: src/components/Post/Embed/index.tsx:244 msgid "Removed by author" msgstr "已被發布者刪除" -#: src/components/Post/Embed/index.tsx:223 +#: src/components/Post/Embed/index.tsx:242 msgid "Removed by you" msgstr "由您刪除" @@ -9035,7 +9484,7 @@ msgstr "成功從貼文收藏中刪除" msgid "Removed from starter pack" msgstr "成功從新手包刪除" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:124 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:121 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:77 #: src/view/com/posts/FeedShutdownMsg.tsx:45 msgid "Removed from your feeds" @@ -9089,9 +9538,8 @@ msgstr "對您回覆" #: src/components/activity-notifications/SubscribeProfileDialog.tsx:274 #: src/components/activity-notifications/SubscribeProfileDialog.tsx:286 #: src/lib/hooks/useNotificationHandler.ts:174 -#: src/screens/Settings/NotificationSettings/ActivityNotificationSettings.tsx:221 -#: src/screens/Settings/NotificationSettings/index.tsx:149 -#: src/screens/Settings/NotificationSettings/ReplyNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:160 +#: src/screens/Settings/NotificationSettings/index.tsx:275 #: src/view/screens/Profile.tsx:235 msgid "Replies" msgstr "回覆" @@ -9104,14 +9552,14 @@ msgstr "已關閉回覆" msgid "Replies to this post are disabled." msgstr "這則貼文的回覆已關閉。" -#: src/view/com/composer/Composer.tsx:1689 +#: src/view/com/composer/Composer.tsx:1804 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:243 +#: src/components/PostControls/index.tsx:240 msgid "Reply ({0, plural, one {# reply} other {# replies}})" msgstr "回覆({0, plural, other {# 則回覆}})" @@ -9125,10 +9573,6 @@ msgstr "這則回覆被討論串的發布者隱藏" msgid "Reply Hidden by You" msgstr "這則回覆被您隱藏" -#: src/Navigation.tsx:451 -msgid "Reply notifications" -msgstr "回覆通知" - #: src/components/dialogs/PostInteractionSettingsDialog.tsx:418 msgid "Reply settings are chosen by the author of the thread" msgstr "由此討論串的發布者選擇的回覆設定" @@ -9137,18 +9581,18 @@ msgstr "由此討論串的發布者選擇的回覆設定" msgid "Reply sorting" msgstr "回覆排序" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:389 msgctxt "toast" msgid "Reply visibility updated" msgstr "成功更新回覆可見度" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:387 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:388 msgid "Reply was successfully hidden" msgstr "成功隱藏回覆" -#: src/components/dms/MessageContextMenu.tsx:193 -#: src/features/liveNow/components/LiveStatusDialog.tsx:266 -#: src/screens/Messages/ConversationSettings/index.tsx:518 +#: src/components/dms/MessageContextMenu.tsx:189 +#: src/features/liveNow/components/LiveStatusDialog.tsx:267 +#: src/screens/Messages/ConversationSettings/index.tsx:582 msgid "Report" msgstr "檢舉" @@ -9157,20 +9601,20 @@ msgstr "檢舉" msgid "Report account" msgstr "檢舉帳號" -#: src/components/dms/ConvoMenu.tsx:304 -#: src/components/dms/ConvoMenu.tsx:308 -#: src/screens/Messages/components/RequestButtons.tsx:160 -#: src/screens/Messages/components/RequestButtons.tsx:163 +#: 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:96 -#: src/components/moderation/ReportDialog/index.tsx:261 +#: src/components/moderation/ReportDialog/index.tsx:98 +#: src/components/moderation/ReportDialog/index.tsx:263 msgid "Report dialog" msgstr "檢舉對話框" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:550 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:556 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:536 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:542 msgid "Report feed" msgstr "檢舉動態源" @@ -9179,12 +9623,12 @@ msgstr "檢舉動態源" msgid "Report list" msgstr "檢舉列表" -#: src/components/dms/MessageContextMenu.tsx:190 +#: src/components/dms/MessageContextMenu.tsx:186 msgid "Report message" msgstr "檢舉訊息" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:756 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:758 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:765 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:767 msgid "Report post" msgstr "檢舉貼文" @@ -9199,8 +9643,8 @@ msgstr "檢舉新手包" #: src/components/dms/AfterReportConversationDialog.tsx:83 #: src/components/dms/AfterReportConversationDialog.tsx:210 -#: src/components/dms/AfterReportDialog.tsx:81 -#: src/components/dms/AfterReportDialog.tsx:173 +#: src/components/dms/AfterReportDialog.tsx:86 +#: src/components/dms/AfterReportDialog.tsx:178 msgid "Report submitted" msgstr "已提交檢舉" @@ -9213,7 +9657,7 @@ msgstr "檢舉此對話" msgid "Report this feed" msgstr "檢舉這個動態源" -#: src/screens/Messages/ConversationSettings/index.tsx:517 +#: src/screens/Messages/ConversationSettings/index.tsx:581 msgid "Report this group chat" msgstr "檢舉此群組對話" @@ -9222,7 +9666,7 @@ msgid "Report this list" msgstr "檢舉這個列表" #: src/components/moderation/ReportDialog/copy.ts:19 -#: src/features/liveNow/components/LiveStatusDialog.tsx:249 +#: src/features/liveNow/components/LiveStatusDialog.tsx:250 msgid "Report this livestream" msgstr "檢舉這場直播" @@ -9256,10 +9700,6 @@ msgstr "轉發" msgid "Repost ({0, plural, one {# repost} other {# reposts}})" msgstr "轉發({0, plural, other {# 則轉發}})" -#: src/Navigation.tsx:483 -msgid "Repost notifications" -msgstr "轉發通知" - #: src/components/PostControls/RepostButton.tsx:146 #: src/components/PostControls/RepostButton.web.tsx:43 #: src/components/PostControls/RepostButton.web.tsx:103 @@ -9282,41 +9722,64 @@ msgid "Reposted by you" msgstr "由您轉發" #: src/lib/hooks/useNotificationHandler.ts:167 -#: src/screens/Settings/NotificationSettings/index.tsx:182 -#: src/screens/Settings/NotificationSettings/RepostNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:193 +#: src/screens/Settings/NotificationSettings/index.tsx:300 msgid "Reposts" msgstr "轉發" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:446 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:448 msgid "Reposts of this post" msgstr "轉發這則貼文" #: src/lib/hooks/useNotificationHandler.ts:209 -#: src/screens/Settings/NotificationSettings/index.tsx:223 -#: src/screens/Settings/NotificationSettings/RepostsOnRepostsNotificationSettings.tsx:41 +#: src/screens/Settings/NotificationSettings/index.tsx:230 +#: src/screens/Settings/NotificationSettings/index.tsx:331 msgid "Reposts of your reposts" msgstr "轉發您轉發的貼文" -#: src/Navigation.tsx:507 -msgid "Reposts of your reposts notifications" -msgstr "轉發您轉發貼文的通知" +#: src/components/intents/GroupChatJoinDialog.tsx:447 +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 ignored." +msgstr "已忽略申請。" + +#: src/components/dms/ChatInvite/Root.tsx:117 +#: src/components/intents/GroupChatJoinDialog.tsx:281 +msgid "Request to join" +msgstr "申請加入" + +#: src/components/dms/ChatInvite/Root.tsx:131 +msgid "Requested" +msgstr "已送出申請" + #. Incoming message requests -#: src/screens/Messages/components/InboxRequests.tsx:24 +#: src/screens/Messages/components/InboxRequests.tsx:26 msgid "Requests" msgstr "邀請" +#: src/Navigation.tsx:501 +#: 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:97 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Enable.tsx:95 msgid "Require an email code to sign in to your account." msgstr "登入時要求電子郵件驗證碼。" @@ -9328,7 +9791,17 @@ msgstr "此服務提供者要求必填" msgid "Required in your region" msgstr "您所在的區域要求必填" -#: src/components/dialogs/EmailDialog/components/ResendEmailText.tsx:41 +#: src/components/intents/GroupChatJoinDialog.tsx:296 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:119 +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:121 +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 "重新傳送" @@ -9373,8 +9846,8 @@ msgstr "重設入門引導進度" msgid "Reset password" msgstr "重設密碼" -#: src/screens/Settings/FindContactsSettings.tsx:523 -#: src/screens/Settings/FindContactsSettings.tsx:539 +#: src/screens/Settings/FindContactsSettings.tsx:544 +#: src/screens/Settings/FindContactsSettings.tsx:560 msgid "Resync contacts" msgstr "重新同步聯絡人" @@ -9391,17 +9864,18 @@ msgstr "重新執行上一個出現錯誤的動作" #: src/components/ageAssurance/AgeAssuranceErrors.tsx:31 #: src/components/contacts/screens/VerifyNumber.tsx:350 #: src/components/contacts/screens/VerifyNumber.tsx:355 -#: src/components/Error.tsx:65 +#: src/components/Error.tsx:60 #: src/components/Lists.tsx:115 -#: src/components/moderation/ReportDialog/index.tsx:295 +#: 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/screens/Login/LoginForm.tsx:329 #: src/screens/Login/LoginForm.tsx:335 -#: src/screens/Messages/ChatList.tsx:343 +#: src/screens/Messages/ChatList.tsx:412 #: src/screens/Messages/components/MessageListError.tsx:24 -#: src/screens/Messages/Inbox.tsx:220 +#: src/screens/Messages/Inbox.tsx:218 +#: 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 @@ -9415,25 +9889,25 @@ msgstr "重新執行上一個出現錯誤的動作" msgid "Retry" msgstr "重試" -#: src/components/moderation/ReportDialog/index.tsx:292 +#: src/components/moderation/ReportDialog/index.tsx:294 #: src/view/screens/Storybook/Admonitions.tsx:61 msgid "Retry loading report options" msgstr "重新載入檢舉選項" -#: src/components/Error.tsx:73 +#: 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:50 +#: 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:1169 -#: src/view/screens/NotFound.tsx:49 +#: src/view/screens/NotFound.tsx:54 msgid "Returns to previous page" msgstr "返回上一頁" @@ -9451,10 +9925,10 @@ msgstr "傷心 GIFs" #: src/components/dialogs/lists/CreateOrEditListDialog.tsx:324 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:668 #: src/components/dialogs/PostInteractionSettingsDialog.tsx:673 -#: src/components/StarterPack/QrCodeDialog.tsx:207 +#: src/components/StarterPack/QrCodeDialog.tsx:210 #: src/features/liveNow/components/EditLiveDialog.tsx:204 #: src/features/liveNow/components/EditLiveDialog.tsx:211 -#: src/screens/Messages/ConversationSettings/prompts.tsx:47 +#: src/screens/Messages/ConversationSettings/prompts.tsx:74 #: src/screens/Profile/Header/EditProfileDialog.tsx:233 #: src/screens/Profile/Header/EditProfileDialog.tsx:247 #: src/screens/SavedFeeds.tsx:124 @@ -9479,27 +9953,29 @@ msgstr "儲存出生日期" #: src/screens/SavedFeeds.tsx:124 #: src/screens/SavedFeeds.tsx:311 #: src/screens/SavedFeeds.tsx:315 -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save changes" msgstr "儲存變更" -#: src/view/com/composer/Composer.tsx:1304 +#: src/view/com/composer/Composer.tsx:1423 #: src/view/com/composer/drafts/DraftsButton.tsx:93 msgid "Save changes?" msgstr "儲存變更?" -#: src/view/com/composer/Composer.tsx:1332 +#: src/view/com/composer/Composer.tsx:1451 #: src/view/com/composer/drafts/DraftsButton.tsx:125 msgid "Save draft" msgstr "儲存草稿" -#: src/view/com/composer/Composer.tsx:1306 +#: src/view/com/composer/Composer.tsx:1425 #: src/view/com/composer/drafts/DraftsButton.tsx:95 msgid "Save draft?" msgstr "儲存草稿?" -#: src/components/Lightbox/chrome/ImageMenu.tsx:99 +#: src/components/Lightbox/chrome/ImageMenu.tsx:98 +#: 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" @@ -9509,7 +9985,7 @@ msgstr "儲存圖片" msgid "Save new handle" msgstr "儲存新的帳號代碼" -#: src/components/StarterPack/QrCodeDialog.tsx:199 +#: src/components/StarterPack/QrCodeDialog.tsx:202 msgid "Save QR code" msgstr "儲存 QR Code" @@ -9518,13 +9994,13 @@ msgstr "儲存 QR Code" msgid "Save these options for next time" msgstr "儲存這些選項以供下次使用" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:327 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:333 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:320 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:326 msgid "Save to my feeds" msgstr "儲存到我的動態源" -#: src/view/shell/desktop/LeftNav.tsx:731 -#: src/view/shell/Drawer.tsx:574 +#: src/view/shell/desktop/LeftNav.tsx:732 +#: src/view/shell/Drawer.tsx:630 msgctxt "link to bookmarks screen" msgid "Saved" msgstr "收藏" @@ -9534,25 +10010,25 @@ msgstr "收藏" msgid "Saved Feeds" msgstr "已儲存的動態源" -#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:144 -#: src/Navigation.tsx:638 +#: src/components/dialogs/nuxs/BookmarksAnnouncement.tsx:145 +#: src/Navigation.tsx:561 #: src/screens/Bookmarks/index.tsx:59 msgid "Saved Posts" msgstr "貼文收藏" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:134 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:131 #: src/screens/ProfileList/components/Header.tsx:88 msgid "Saved to your feeds" msgstr "成功儲存到您的動態源" #: src/components/NewskieDialog.tsx:141 -#: src/view/com/notifications/NotificationFeedItem.tsx:867 -#: src/view/com/notifications/NotificationFeedItem.tsx:892 +#: src/view/com/notifications/NotificationFeedItem.tsx:899 +#: src/view/com/notifications/NotificationFeedItem.tsx:924 msgid "Say hello!" msgstr "說句「你好!👋」" -#: src/screens/Messages/ChatList.tsx:152 -#: src/screens/Messages/ChatList.tsx:360 +#: src/screens/Messages/ChatList.tsx:208 +#: src/screens/Messages/ChatList.tsx:429 msgid "Say hi to someone" msgstr "試著跟某人打個招呼吧" @@ -9560,6 +10036,16 @@ msgstr "試著跟某人打個招呼吧" 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:316 +msgid "Scan QR code" +msgstr "" + #: src/lib/interests.ts:71 msgid "Science" msgstr "科學" @@ -9576,18 +10062,18 @@ msgstr "向右捲動" msgid "Scroll to top" msgstr "捲動到頂部" -#: src/components/dialogs/SearchablePeopleList.tsx:672 +#: src/components/dialogs/SearchablePeopleList.tsx:667 #: src/components/forms/SearchInput.tsx:51 #: src/components/forms/SearchInput.tsx:53 #: src/screens/Search/Shell.tsx:362 #: src/screens/Search/Shell.tsx:525 -#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/bottom-bar/BottomBar.tsx:205 msgid "Search" msgstr "搜尋" #. placeholder {0}: profile.handle #. placeholder {0}: route.params.name -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:257 #: src/screens/Profile/ProfileSearch.tsx:37 msgid "Search @{0}'s posts" msgstr "搜尋 @{0} 的貼文" @@ -9662,12 +10148,12 @@ msgstr "搜尋語言" msgid "Search my posts" msgstr "搜尋我的貼文" -#: src/view/com/profile/ProfileMenu.tsx:304 -#: src/view/com/profile/ProfileMenu.tsx:307 +#: src/view/com/profile/ProfileMenu.tsx:306 +#: src/view/com/profile/ProfileMenu.tsx:309 msgid "Search posts" msgstr "搜尋貼文" -#: src/components/dialogs/SearchablePeopleList.tsx:692 +#: src/components/dialogs/SearchablePeopleList.tsx:687 #: src/components/dms/components/UserSearchInput.tsx:63 #: src/components/ProgressGuide/FollowDialog.tsx:727 msgid "Search profiles" @@ -9677,13 +10163,13 @@ msgstr "搜尋用戶" msgid "Search..." msgstr "搜尋……" -#: src/components/dialogs/SearchablePeopleList.tsx:693 +#: 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:244 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:240 msgid "Security step required" msgstr "所需的安全步驟" @@ -9759,7 +10245,7 @@ msgstr "選擇 {langName}" msgid "Select a color" msgstr "選擇一個顏色" -#: src/components/moderation/ReportDialog/index.tsx:378 +#: src/components/moderation/ReportDialog/index.tsx:380 msgid "Select a reason" msgstr "選擇一個理由" @@ -9828,7 +10314,7 @@ msgstr "選擇 GIF" msgid "Select GIF \"{0}\"" msgstr "選擇 GIF「{0}」" -#: src/components/dms/InitiateChatFlow.tsx:651 +#: src/components/dms/InitiateChatFlow.tsx:725 msgid "Select group chat members" msgstr "選擇群組對話成員" @@ -9850,7 +10336,7 @@ msgstr "選擇語言……" msgid "Select languages" msgstr "選擇語言" -#: src/components/moderation/ReportDialog/index.tsx:428 +#: src/components/moderation/ReportDialog/index.tsx:430 msgid "Select moderation service" msgstr "選擇內容管理服務" @@ -9904,11 +10390,11 @@ msgstr "從下面選擇您感興趣的選項" msgid "Select your preferred language for translations in your feed." msgstr "選擇您在動態中翻譯的偏好目標語言。" -#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:115 +#: src/screens/Settings/NotificationSettings/components/PreferenceControls.tsx:118 msgid "Select your preferred notification channels" msgstr "選擇您偏好的通知類型" -#: src/view/com/composer/SelectMediaButton.tsx:414 +#: src/view/com/composer/SelectMediaButton.tsx:420 msgid "Selecting multiple media types is not supported." msgstr "不支援選擇多種媒體類型。" @@ -9921,9 +10407,9 @@ msgstr "自殘或其他危險行為" msgid "Send code" msgstr "傳送驗證碼" -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:175 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:182 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:303 +#: 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 "傳送電子郵件" @@ -9935,11 +10421,11 @@ msgstr "傳送電子郵件" msgid "Send error report" msgstr "提交錯誤報告" -#: src/view/shell/Drawer.tsx:364 +#: src/view/shell/Drawer.tsx:420 msgid "Send feedback" msgstr "提交意見" -#: src/screens/Messages/components/MessageComposer.tsx:284 +#: src/screens/Messages/components/MessageComposer.tsx:288 #: src/screens/Messages/components/MessageInput.web.tsx:225 msgid "Send message" msgstr "重送訊息" @@ -9952,7 +10438,7 @@ msgstr "傳送貼文給 {name}" msgid "Send post to..." msgstr "傳送貼文給……" -#: src/components/moderation/ReportDialog/index.tsx:816 +#: src/components/moderation/ReportDialog/index.tsx:818 msgid "Send report to {title}" msgstr "將檢舉提交至 {title}" @@ -9960,7 +10446,7 @@ msgstr "將檢舉提交至 {title}" msgid "Send the message from your phone" msgstr "從您的手機傳送這則訊息" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:296 +#: 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" @@ -9974,7 +10460,7 @@ msgid "Send via direct message" msgstr "透過私人訊息傳送" #. placeholder {0}: i18n.date(new Date(message.sentAt), { timeStyle: 'short', }) -#: src/components/dms/MessageContextMenu.tsx:154 +#: src/components/dms/MessageContextMenu.tsx:150 msgid "Sent at {0}" msgstr "傳送於 {0}" @@ -10015,14 +10501,14 @@ msgstr "請在下方設定您的出生日期,我們很快就會讓您繼續四 msgid "Sets email for password reset" msgstr "設定用於重設密碼的電子郵件" -#: src/Navigation.tsx:220 +#: src/Navigation.tsx:213 #: src/screens/Settings/Settings.tsx:98 -#: src/view/shell/desktop/LeftNav.tsx:754 -#: src/view/shell/Drawer.tsx:612 +#: src/view/shell/desktop/LeftNav.tsx:755 +#: src/view/shell/Drawer.tsx:668 msgid "Settings" msgstr "設定" -#: src/screens/Settings/NotificationSettings/index.tsx:188 +#: src/screens/Settings/NotificationSettings/index.tsx:199 msgid "Settings for activity from others" msgstr "來自其他人的動態通知設定" @@ -10030,39 +10516,39 @@ msgstr "來自其他人的動態通知設定" msgid "Settings for allowing others to be notified of your posts" msgstr "允許其他人接收您的貼文發布通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:122 +#: src/screens/Settings/NotificationSettings/index.tsx:133 msgid "Settings for like notifications" msgstr "喜歡通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:155 +#: src/screens/Settings/NotificationSettings/index.tsx:166 msgid "Settings for mention notifications" msgstr "提及通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:133 +#: src/screens/Settings/NotificationSettings/index.tsx:144 msgid "Settings for new follower notifications" msgstr "新跟隨者通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:231 +#: src/screens/Settings/NotificationSettings/index.tsx:238 msgid "Settings for notifications for everything else" msgstr "其他通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:202 +#: src/screens/Settings/NotificationSettings/index.tsx:212 msgid "Settings for notifications for likes of your reposts" msgstr "轉發的喜歡通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:217 +#: src/screens/Settings/NotificationSettings/index.tsx:225 msgid "Settings for notifications for reposts of your reposts" msgstr "轉發的轉發通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:166 +#: src/screens/Settings/NotificationSettings/index.tsx:177 msgid "Settings for quote notifications" msgstr "引用通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:144 +#: src/screens/Settings/NotificationSettings/index.tsx:155 msgid "Settings for reply notifications" msgstr "回覆通知設定" -#: src/screens/Settings/NotificationSettings/index.tsx:177 +#: src/screens/Settings/NotificationSettings/index.tsx:188 msgid "Settings for repost notifications" msgstr "轉發通知設定" @@ -10079,16 +10565,19 @@ msgstr "明確的性行為或色情裸體。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/components/StarterPack/QrCodeDialog.tsx:195 +#: src/components/Link.tsx:433 +#: 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:370 -#: src/screens/Messages/components/InviteLinkDialog.tsx:377 +#: src/screens/Messages/components/InviteLinkDialog.tsx:415 +#: src/screens/Messages/components/InviteLinkDialog.tsx:426 #: src/screens/StarterPack/StarterPackScreen.tsx:447 #: src/screens/Topic.tsx:90 msgid "Share" msgstr "分享" -#: src/view/com/profile/ProfileMenu.tsx:575 +#: src/view/com/profile/ProfileMenu.tsx:548 msgid "Share anyway" msgstr "仍然分享" @@ -10097,16 +10586,21 @@ msgstr "仍然分享" msgid "Share author DID" msgstr "分享作者 DID" -#: src/components/Lightbox/chrome/ImageMenu.tsx:94 -#: src/components/Lightbox/Lightbox.web.tsx:273 -#: src/components/Lightbox/Lightbox.web.tsx:299 +#: src/components/Lightbox/chrome/ImageMenu.tsx:93 +#: 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 "分享連結" @@ -10114,6 +10608,11 @@ msgstr "分享連結" 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:167 #: src/components/PostControls/ShareMenu/ShareMenuItems.tsx:170 msgid "Share post at:// URI" @@ -10124,7 +10623,7 @@ msgstr "分享貼文 at:// 連結" msgid "Share QR code" msgstr "分享 QR Code" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:480 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:469 msgid "Share this feed" msgstr "分享這個動態源" @@ -10142,8 +10641,8 @@ msgstr "分享這個新手包,以協助他人融入您在 Bluesky 上的社群 #: 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:282 -#: src/view/com/profile/ProfileMenu.tsx:295 +#: src/view/com/profile/ProfileMenu.tsx:285 +#: src/view/com/profile/ProfileMenu.tsx:297 msgid "Share via..." msgstr "分享到……" @@ -10151,7 +10650,7 @@ msgstr "分享到……" msgid "Share your contacts to find friends" msgstr "分享您的聯絡人來尋找朋友" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:321 msgid "Shared Preferences Tester" msgstr "共用偏好測試器" @@ -10167,16 +10666,16 @@ msgstr "顯示替代文字" #: src/components/moderation/ScreenHider.tsx:179 #: src/components/moderation/ScreenHider.tsx:182 -#: src/features/liveNow/components/LiveStatusDialog.tsx:317 -#: src/features/liveNow/components/LiveStatusDialog.tsx:321 +#: 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:646 #: src/screens/VideoFeed/index.tsx:652 msgid "Show anyway" msgstr "仍然顯示" -#: src/screens/Settings/AutomationLabelSettings.tsx:181 -#: src/screens/Settings/AutomationLabelSettings.tsx:194 +#: src/screens/Settings/AutomationLabelSettings.tsx:185 +#: src/screens/Settings/AutomationLabelSettings.tsx:198 msgid "Show automation label" msgstr "顯示自動化標記" @@ -10197,8 +10696,8 @@ msgstr "顯示自訂選項" msgid "Show group chat updates" msgstr "顯示群組對話更新" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:593 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:595 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:602 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:604 msgid "Show less like this" msgstr "減少顯示類似內容" @@ -10219,8 +10718,8 @@ msgstr "在您的「Discover」動態源顯示直播活動" msgid "Show More" msgstr "顯示更多" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:585 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:587 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:594 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:596 msgid "Show more like this" msgstr "顯示更多類似內容" @@ -10246,8 +10745,8 @@ msgstr "顯示回覆" msgid "Show replies as" msgstr "顯示回覆為" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:664 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:674 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:673 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:683 msgid "Show reply for everyone" msgstr "為所有人顯示回覆" @@ -10270,11 +10769,11 @@ msgid "Show warning and filter from feeds" msgstr "顯示警告,並從動態中排除內容" #: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:60 -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:170 +#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:171 msgid "Show when you’re live" msgstr "顯示直播狀態" -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:602 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:604 msgid "Shows information about when this post was created" msgstr "顯示有關此貼文建立時間的資訊" @@ -10297,15 +10796,17 @@ msgstr "顯示內容" #: src/screens/Login/LoginForm.tsx:179 #: src/screens/Login/LoginForm.tsx:350 #: src/screens/Login/LoginForm.tsx:356 +#: src/screens/Messages/JoinRequest.tsx:294 +#: src/screens/Messages/JoinRequest.tsx:300 #: src/screens/Search/SearchResults.tsx:316 #: src/view/com/auth/SplashScreen.tsx:118 #: src/view/com/auth/SplashScreen.tsx:124 #: src/view/com/auth/SplashScreen.web.tsx:122 #: src/view/com/auth/SplashScreen.web.tsx:130 -#: src/view/shell/bottom-bar/BottomBar.tsx:342 -#: src/view/shell/bottom-bar/BottomBar.tsx:347 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:245 +#: src/view/shell/bottom-bar/BottomBar.tsx:343 +#: src/view/shell/bottom-bar/BottomBar.tsx:348 #: 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" @@ -10329,6 +10830,10 @@ msgstr "登入或建立帳號" msgid "Sign in or create your account to join the conversation!" msgstr "登入或建立您的帳號即可加入對話!" +#: src/screens/Messages/JoinRequest.tsx:220 +msgid "Sign in to accept invite." +msgstr "登入以接受邀請。" + #: src/components/AccountList.tsx:70 msgid "Sign in to account that is not listed" msgstr "登入未列出的帳號" @@ -10337,8 +10842,12 @@ msgstr "登入未列出的帳號" msgid "Sign in to Bluesky or create a new account" msgstr "登入 Bluesky 或建立新的帳號" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:571 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:573 +#: src/screens/Messages/JoinRequest.tsx:219 +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 "登入以檢視貼文" @@ -10348,9 +10857,9 @@ msgstr "登入以檢視貼文" #: src/screens/SignupQueued.tsx:94 #: src/screens/SignupQueued.tsx:97 #: src/screens/Takendown.tsx:88 -#: src/view/shell/desktop/LeftNav.tsx:226 -#: src/view/shell/desktop/LeftNav.tsx:281 -#: src/view/shell/desktop/LeftNav.tsx:284 +#: 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 "登出" @@ -10359,7 +10868,7 @@ msgid "Sign Out" msgstr "登出" #: src/screens/Settings/Settings.tsx:296 -#: src/view/shell/desktop/LeftNav.tsx:223 +#: src/view/shell/desktop/LeftNav.tsx:224 msgid "Sign out?" msgstr "確定要登出嗎?" @@ -10391,7 +10900,7 @@ msgstr "跳過" msgid "Skip contact sharing and continue to the app" msgstr "略過分享聯絡人並繼續使用應用程式" -#: src/view/com/composer/Composer.tsx:1349 +#: src/view/com/composer/Composer.tsx:1468 msgid "Skip empty posts?" msgstr "跳過空白貼文?" @@ -10405,7 +10914,7 @@ msgstr "跳過介紹並開始使用您的帳號" msgid "Skip to next step" msgstr "略過此步驟" -#: src/components/images/Gallery/index.tsx:417 +#: src/components/images/Gallery/index.tsx:443 msgid "slide" msgstr "幻燈片" @@ -10413,7 +10922,7 @@ msgstr "幻燈片" msgid "Smaller" msgstr "更小" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:92 +#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:86 msgid "Snoozes the reminder" msgstr "暫停提醒" @@ -10447,7 +10956,7 @@ msgstr "僅部分人可以回覆" #: src/components/dms/getSystemMessageInfo.ts:86 msgid "Someone joined" -msgstr "" +msgstr "某人加入了" #: src/components/dms/getSystemMessageInfo.ts:87 msgid "Someone joined the group" @@ -10455,14 +10964,14 @@ msgstr "某人加入了群組" #: src/components/dms/getSystemMessageInfo.ts:99 msgid "Someone left" -msgstr "" +msgstr "某人離開了" #: src/components/dms/getSystemMessageInfo.ts:100 msgid "Someone left the group" msgstr "某人離開了群組" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:294 +#: src/components/dms/MessageItem.tsx:266 msgid "Someone reacted {0}" msgstr "有人做出了 {0} 反應" @@ -10473,7 +10982,7 @@ msgstr "有人對 {target} 做出了 {0} 反應" #: src/components/dms/getSystemMessageInfo.ts:60 msgid "Someone was added" -msgstr "" +msgstr "某人已受邀加入" #: src/components/dms/getSystemMessageInfo.ts:61 msgid "Someone was added to the group" @@ -10481,23 +10990,28 @@ msgstr "某人已受邀加入群組" #: src/components/dms/getSystemMessageInfo.ts:73 msgid "Someone was removed" -msgstr "" +msgstr "某人被移出了" #: src/components/dms/getSystemMessageInfo.ts:74 msgid "Someone was removed from the group" msgstr "某人已被移出群組" -#: src/components/moderation/ReportDialog/index.tsx:101 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:48 +msgid "Something new is here" +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:135 -#: src/screens/Messages/ConversationSettings/index.tsx:112 +#: 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:287 +#: 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 @@ -10517,11 +11031,11 @@ msgstr "發生錯誤!" msgid "Something went wrong. Please try again in a moment." msgstr "發生錯誤,請稍待片刻後再試一次。" -#: src/components/moderation/ReportDialog/index.tsx:245 +#: src/components/moderation/ReportDialog/index.tsx:247 msgid "Something went wrong. Please try again." msgstr "發生錯誤,請再試一次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:546 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:532 msgid "Something wrong? Let us know." msgstr "看起來不太對勁?讓我們知道。" @@ -10564,11 +11078,16 @@ msgstr "垃圾內容或其他虛假互動行為" msgid "Sports" msgstr "運動" -#: src/components/PostControls/ShareMenu/RecentChats.tsx:238 +#: src/components/PostControls/ShareMenu/RecentChats.tsx:234 msgid "Start a conversation, and it will appear here." msgstr "當您與其他人開始聊天後,對話就會出現在這裡。" -#: src/components/dms/dialogs/NewChatDialog.tsx:177 +#: 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:191 msgid "Start a new chat" msgstr "開始新對話" @@ -10582,17 +11101,17 @@ msgstr "開始新增用戶" msgid "Start adding people!" msgstr "開始新增用戶!" -#: src/components/dms/InitiateChatFlow.tsx:652 +#: src/components/dms/InitiateChatFlow.tsx:726 msgid "Start chat" msgstr "開始對話" #: src/components/dialogs/SearchablePeopleList.tsx:428 -#: src/components/dms/InitiateChatFlow.tsx:785 +#: src/components/dms/InitiateChatFlow.tsx:874 msgid "Start chat with {displayName}" msgstr "與 {displayName} 開始對話" -#: src/Navigation.tsx:609 -#: src/Navigation.tsx:614 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:537 #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Starter Pack" msgstr "新手包" @@ -10654,12 +11173,12 @@ msgstr "已清除儲存資料,請立即重新啟動應用程式。" msgid "Stored as part of a secure code for matching with others" msgstr "儲存為安全代碼的一部分,以匹配其他人" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:306 #: src/screens/Settings/Settings.tsx:456 msgid "Storybook" msgstr "故事書" -#: src/components/dialogs/nuxs/LiveNowBetaDialog.tsx:181 +#: 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 "正在 Twitch 上開台嗎?在 Bluesky 設定直播狀態,您的大頭貼上就會顯示直播徽章。點擊徽章即可直接前往您的直播頁面。" @@ -10671,8 +11190,8 @@ msgstr "正在 Twitch 上開台嗎?在 Bluesky 設定直播狀態,您的大 #: 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:171 -#: src/screens/Messages/components/ChatDisabled.tsx:173 +#: src/screens/Messages/components/ChatDisabled.tsx:175 +#: src/screens/Messages/components/ChatDisabled.tsx:177 msgid "Submit" msgstr "提交" @@ -10684,9 +11203,9 @@ msgstr "提交申訴" msgid "Submit Appeal" msgstr "提交申訴" -#: src/components/moderation/ReportDialog/index.tsx:506 -#: src/components/moderation/ReportDialog/index.tsx:567 -#: src/components/moderation/ReportDialog/index.tsx:574 +#: 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 "提交檢舉" @@ -10695,15 +11214,15 @@ msgid "Subscribe" msgstr "套用" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:420 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:429 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:425 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:454 msgid "Subscribe on {0}" -msgstr "" +msgstr "訂閱 {0}" #. placeholder {0}: highlightedPublisher.name -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:428 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:453 msgid "Subscribe to {publicationTitle} on {0}" -msgstr "" +msgstr "訂閱 {0} 的 {publicationTitle}" #. placeholder {0}: labelerInfo.creator.handle #: src/screens/Profile/Sections/Labels.tsx:231 @@ -10732,16 +11251,20 @@ msgid "Success" msgstr "完成" #: src/components/ageAssurance/AgeAssuranceInitDialog.tsx:183 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:287 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:282 msgid "Success!" msgstr "完成!" +#: src/components/intents/GroupChatJoinDialog.tsx:121 +msgid "Successfully joined the group chat!" +msgstr "成功加入群組對話!" + #: src/components/verification/VerificationCreatePrompt.tsx:37 msgid "Successfully verified" msgstr "成功驗證" -#: src/components/dms/AddMembersFlow.tsx:226 -#: src/components/dms/InitiateChatFlow.tsx:319 +#: src/components/dms/AddMembersFlow.tsx:243 +#: src/components/dms/InitiateChatFlow.tsx:350 msgid "Suggested" msgstr "建議" @@ -10770,7 +11293,7 @@ msgctxt "Name of app icon variant" msgid "Sunset" msgstr "日落" -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:331 #: src/view/screens/Support.tsx:25 #: src/view/screens/Support.tsx:28 msgid "Support" @@ -10780,20 +11303,20 @@ msgstr "支援" msgid "Support for this feature in your country has not been enabled yet! Please check back later." msgstr "您所在的國家尚未支援這個功能!請晚點再回來看看。" -#: src/components/dms/dialogs/NewChatDialog.tsx:91 +#: src/components/dms/dialogs/NewChatDialog.tsx:98 msgid "Suspended accounts cannot participate in a group chat." -msgstr "" +msgstr "已停權的帳號無法參與群組對話。" -#: src/components/dms/dialogs/NewChatDialog.tsx:53 +#: src/components/dms/dialogs/NewChatDialog.tsx:60 msgid "Suspended accounts cannot participate in chat." -msgstr "" +msgstr "已停權的帳號無法參與對話。" #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 #: src/screens/Settings/Settings.tsx:122 #: src/screens/Settings/Settings.tsx:134 #: src/screens/Settings/Settings.tsx:615 -#: src/view/shell/desktop/LeftNav.tsx:261 +#: src/view/shell/desktop/LeftNav.tsx:262 msgid "Switch account" msgstr "切換帳號" @@ -10802,7 +11325,7 @@ msgid "Switch accounts" msgstr "切換帳號" #. placeholder {0}: sanitizeHandle( profile?.handle ?? account.handle, '@', ) -#: src/view/shell/desktop/LeftNav.tsx:363 +#: src/view/shell/desktop/LeftNav.tsx:364 msgid "Switch to {0}" msgstr "切換到 {0}" @@ -10824,13 +11347,17 @@ msgstr "系統記錄" 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 "輕觸下方的「允許」按鈕來讓 Bluesky 存取您的所在位置。我們會利用該資訊來更精確地判斷您所在區域可用的內容和功能。" -#: src/components/dms/MessageItem.tsx:598 +#: src/components/dms/MessageItem.tsx:572 msgid "Tap for details" -msgstr "" +msgstr "輕觸以瞭解詳細資訊" #: src/view/com/feeds/MissingFeed.tsx:90 msgid "Tap for information" @@ -10842,7 +11369,7 @@ msgstr "輕觸以瞭解更多資訊" #: src/screens/Signup/StepInfo/index.tsx:323 msgid "Tap here to update your location with GPS." -msgstr "" +msgstr "點一下這裡以使用 GPS 確認您的位置。" #: src/components/PolicyUpdateOverlay/updates/202508/index.tsx:165 msgid "Tap to acknowledge that you understand and agree to these updates and continue using Bluesky" @@ -10854,33 +11381,51 @@ msgstr "點此以表示您瞭解且同意這些更新,並繼續使用 Bluesky" 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:163 msgid "Tap to dismiss" msgstr "輕觸以跳過" -#: src/components/dms/ReactionsDialog.tsx:192 +#: src/components/dms/ChatInvite/Root.tsx:140 +#: src/components/intents/GroupChatJoinDialog.tsx:453 +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:196 msgid "Tap to remove" msgstr "輕觸以收回" #. placeholder {0}: reaction.value -#: src/components/dms/ReactionsDialog.tsx:208 +#: src/components/dms/ReactionsDialog.tsx:212 msgid "Tap to remove your {0} reaction" msgstr "輕觸以收回您的 {0} 反應" -#: src/components/dms/MessageItem.tsx:563 +#: src/components/dms/ChatInvite/Root.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:452 +msgid "Tap to request access to join this group chat" +msgstr "輕觸以申請加入此群組對話" + +#: src/components/dms/MessageItem.tsx:537 msgid "Tap to retry" msgstr "輕觸以重試" #. placeholder {0}: tab.value -#: src/components/dms/ReactionsDialog.tsx:354 +#: src/components/dms/ReactionsDialog.tsx:358 msgid "Tap to show {0} reactions" msgstr "輕觸以顯示 {0} 反應" -#: src/components/dms/ReactionsDialog.tsx:353 +#: src/components/dms/ReactionsDialog.tsx:357 msgid "Tap to show all reactions" msgstr "輕觸以顯示所有反應" -#: src/components/dms/MessageItem.tsx:317 +#: src/components/dms/MessageItem.tsx:289 msgid "Tap to view reactions" msgstr "輕觸以顯示反應" @@ -10924,12 +11469,12 @@ 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/Navigation.tsx:341 #: src/screens/Settings/AboutSettings.tsx:87 #: src/screens/Settings/AboutSettings.tsx:90 #: src/view/screens/TermsOfService.tsx:25 -#: src/view/shell/Drawer.tsx:700 -#: src/view/shell/Drawer.tsx:702 +#: src/view/shell/Drawer.tsx:756 +#: src/view/shell/Drawer.tsx:758 msgid "Terms of Service" msgstr "服務條款" @@ -10939,7 +11484,7 @@ msgstr "文字和標籤" #: src/components/moderation/LabelsOnMeDialog.tsx:307 #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:122 -#: src/screens/Messages/components/ChatDisabled.tsx:138 +#: src/screens/Messages/components/ChatDisabled.tsx:142 msgid "Text input field" msgstr "文字輸入框" @@ -10981,9 +11526,9 @@ msgstr "就這些,報告完畢!" msgid "That's everything!" msgstr "就這些了!" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:201 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:415 -#: src/view/com/profile/ProfileMenu.tsx:551 +#: src/components/moderation/BlockDialog.tsx:153 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:204 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:438 msgid "The account will be able to interact with you after unblocking." msgstr "解除封鎖後,該帳號將能夠重新與您進行互動。" @@ -11049,6 +11594,11 @@ msgstr "以下設定將自動套用到新的貼文。您也可以針對個別貼 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:155 +#: src/screens/Messages/JoinRequests.tsx:205 +msgid "The member limit has been reached." +msgstr "已達到群組成員上限。" + #: src/view/com/composer/select-language/SuggestedLanguage.tsx:400 msgid "The post you’re replying to was marked as being written in {suggestedLanguageName} by its author. Would you like to reply in <0>{suggestedLanguageName}?" msgstr "您正在回覆的貼文已被發佈者標示為使用 {suggestedLanguageName} 撰寫。要把回覆語言標示為 <0>{suggestedLanguageName} 嗎?" @@ -11057,10 +11607,10 @@ msgstr "您正在回覆的貼文已被發佈者標示為使用 {suggestedLanguag msgid "The Privacy Policy has been moved to <0/>" msgstr "隱私權政策已移動到 <0/>" -#: src/view/com/composer/state/video.ts:407 -#: src/view/com/composer/state/video.ts:451 -msgid "The selected video is larger than {videoSize} MB. Please try again with a smaller file." -msgstr "" +#: src/view/com/composer/state/video.ts:397 +#: src/view/com/composer/state/video.ts:436 +msgid "The selected video is larger than {VIDEO_MAX_SIZE_MB} MB. Please try again with a smaller file." +msgstr "您選擇的影片檔案大小大於 {VIDEO_MAX_SIZE_MB} MB。請使用較小的檔案再試一次。" #: src/lib/hooks/useCleanError.ts:41 #: src/lib/strings/errors.ts:19 @@ -11101,7 +11651,7 @@ msgstr "主題" 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:476 +#: src/screens/Messages/components/InviteLinkDialog.tsx:519 msgid "There is no invite link for this group chat." msgstr "這個群組對話沒有任何邀請連結。" @@ -11115,10 +11665,13 @@ msgid "There was a problem loading GIFs. Check your connection and try again." msgstr "載入 GIFs 時發生問題。請檢查您的網路連線狀態後再試一次。" #: src/components/contacts/screens/GetContacts.tsx:147 +#: src/components/intents/GroupChatJoinDialog.tsx:139 +#: src/components/intents/GroupChatJoinDialog.tsx:182 +#: 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:182 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:177 #: src/screens/ProfileList/components/Header.tsx:91 #: src/screens/ProfileList/components/MoreOptionsMenu.tsx:79 #: src/screens/SavedFeeds.tsx:99 @@ -11126,7 +11679,7 @@ msgstr "您的網路連線發生了一些問題,請再試一次" msgid "There was an issue contacting the server" msgstr "連線伺服器時發生問題" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:426 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:416 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:100 msgid "There was an issue contacting the server, please check your internet connection and try again." msgstr "連線至伺服器時發生問題,請檢查您的網路連線狀態後再試一次。" @@ -11136,7 +11689,7 @@ 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:773 +#: src/view/com/posts/PostFeed.tsx:777 msgid "There was an issue fetching posts. Tap here to try again." msgstr "取得貼文時發生問題,按這裡重試。" @@ -11161,31 +11714,31 @@ msgstr "取得您的服務資訊時發生問題" msgid "There was an issue removing this feed. Please check your internet connection and try again." msgstr "刪除動態源時發生問題,請檢查您的網路連線狀態後再試一次。" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:140 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:136 #: 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:431 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:454 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:474 -#: src/screens/Messages/ConversationSettings/Member.tsx:59 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:109 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:122 +#: 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:93 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:272 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:299 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:315 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:96 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:277 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:304 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:320 #: src/view/com/profile/ProfileMenu.tsx:152 -#: src/view/com/profile/ProfileMenu.tsx:164 -#: src/view/com/profile/ProfileMenu.tsx:180 -#: src/view/com/profile/ProfileMenu.tsx:192 -#: src/view/com/profile/ProfileMenu.tsx:207 -#: src/view/com/profile/ProfileMenu.tsx:221 +#: src/view/com/profile/ProfileMenu.tsx:165 +#: src/view/com/profile/ProfileMenu.tsx:182 +#: src/view/com/profile/ProfileMenu.tsx:195 +#: src/view/com/profile/ProfileMenu.tsx:211 +#: src/view/com/profile/ProfileMenu.tsx:226 msgid "There was an issue! {0}" msgstr "發生問題!{0}" @@ -11221,6 +11774,14 @@ msgstr "這些是您的預設設定" msgid "These settings only apply to the Following feed." msgstr "這些設定只會影響「Following」(跟隨中)動態源。" +#: src/components/moderation/BlockDialog.tsx:356 +msgid "They own this chat" +msgstr "" + +#: src/screens/Messages/ConversationSettings/prompts.tsx:169 +msgid "They won’t be able to rejoin unless you invite them again." +msgstr "" + #: src/components/moderation/ScreenHider.tsx:118 msgid "This {screenDescription} has been flagged:" msgstr "{screenDescription} 已被標記:" @@ -11254,7 +11815,7 @@ msgid "This appeal will be sent to <0>{sourceName}." msgstr "這份申訴將被提交至 <0>{sourceName}。" #: src/features/liveNow/components/GoLiveDisabledDialog.tsx:114 -#: src/screens/Messages/components/ChatDisabled.tsx:134 +#: src/screens/Messages/components/ChatDisabled.tsx:138 msgid "This appeal will be sent to Bluesky's moderation service." msgstr "這份申訴將被提交至 Bluesky 的內容管理服務。" @@ -11263,7 +11824,7 @@ msgstr "這份申訴將被提交至 Bluesky 的內容管理服務。" msgid "This author has chosen to make their posts visible only to people who are signed in." msgstr "該作者已限制僅限已登入用戶可以檢視其貼文。" -#: src/screens/Profile/components/GermButton.tsx:243 +#: 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 "這個按鈕可讓其他人開啟 Germ DM 應用程式傳送訊息給您。您可以透過 Germ DM 應用程式管理此按鈕的顯示狀態,或者點選下方按鈕以解除您的 Bluesky 帳號與 Germ DM 之間的連結。" @@ -11271,11 +11832,21 @@ msgstr "這個按鈕可讓其他人開啟 Germ DM 應用程式傳送訊息給您 msgid "This chat has ended" msgstr "此對話已結束" -#: src/screens/Messages/components/ChatListItem.tsx:360 -#: src/screens/Messages/components/ChatLocked.tsx:61 +#: src/components/dms/ChatInvite/Root.tsx:122 +#: src/components/intents/GroupChatJoinDialog.tsx:287 +msgid "This chat is full" +msgstr "此對話已滿員" + +#: src/screens/Messages/components/ChatListItem.tsx:373 +#: src/screens/Messages/components/ChatLocked.tsx:70 msgid "This chat is locked" msgstr "此對話已鎖定" +#: src/screens/Messages/components/ChatLocked.tsx:45 +#: src/screens/Messages/ConversationSettings/index.tsx:430 +msgid "This chat is locked by a moderation action" +msgstr "" + #: src/screens/Messages/components/MessageListError.tsx:17 msgid "This chat was disconnected" msgstr "對話已中斷連線" @@ -11310,7 +11881,11 @@ msgstr "由於他們之中有一人封鎖了對方,導致無法檢視這項內 msgid "This content is not viewable without a Bluesky account." msgstr "這項內容需要登入 Bluesky 帳號才能檢視。" -#: src/screens/Messages/components/ChatListItem.tsx:154 +#: src/components/intents/GroupChatJoinDialog.tsx:141 +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 "此對話的參與者已停用或刪除帳號。點此以檢視選項" @@ -11318,7 +11893,7 @@ msgstr "此對話的參與者已停用或刪除帳號。點此以檢視選項" msgid "This draft will be permanently deleted." msgstr "這份草稿將被永久刪除。" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:157 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:155 msgid "This email is already associated with your account." msgstr "這個電子信箱已經綁定於您的帳號。" @@ -11356,11 +11931,15 @@ msgstr "這個動態源空空如也。" msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "這個動態源已經不再提供服務。我們將改為顯示「<0>Discover」動態源。" +#: src/screens/Messages/components/ChatLocked.tsx:73 +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:141 +#: src/screens/Onboarding/StepProfile/index.tsx:142 msgid "This image could not be used. Try a different format like .jpg or .png." msgstr "無法使用這張圖片。請改用其他格式的檔案,例如 .jpg 或 .png。" @@ -11368,6 +11947,14 @@ msgstr "無法使用這張圖片。請改用其他格式的檔案,例如 .jpg msgid "This information is private and not shared with other users." msgstr "這項資訊將不會分享給其他用戶。" +#: src/components/intents/GroupChatJoinDialog.tsx:151 +msgid "This invite link has been disabled." +msgstr "此邀請連結已停用。" + +#: src/components/intents/GroupChatJoinDialog.tsx:223 +msgid "This invite link is invalid" +msgstr "此邀請連結無效" + #: src/view/screens/Debug.tsx:327 msgid "This is an empty state" msgstr "這個狀態為空" @@ -11377,7 +11964,7 @@ msgstr "這個狀態為空" msgid "This is not a valid link" msgstr "這不是有效的連結" -#: src/screens/Settings/AutomationLabelSettings.tsx:169 +#: 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 "這個標記可以協助大眾瞭解這是自動化管理的帳號。在開啟後,此標記會顯示在個人檔案和貼文的帳號名稱旁邊。您可以隨時選擇加上或移除這個標記。" @@ -11410,15 +11997,19 @@ msgstr "此列表由您建立,其名稱或說明中包含可能違反 Bluesky msgid "This list is empty." msgstr "這個列表是空的。" -#: src/components/dms/MessageItem.tsx:596 -#: src/components/dms/MessageItem.tsx:625 -msgid "This message is hidden because this user is blocking you." +#: src/screens/Messages/components/ChatListItem.tsx:334 +msgid "This message is hidden" msgstr "" +#: src/components/dms/MessageItem.tsx:570 +#: src/components/dms/MessageItem.tsx:599 +msgid "This message is hidden because this user is blocking you." +msgstr "此訊息已隱藏,因為此用戶封鎖了您。" + +#: src/components/dms/MessageItem.tsx:569 #: src/components/dms/MessageItem.tsx:595 -#: src/components/dms/MessageItem.tsx:621 msgid "This message is hidden because you are blocking this user." -msgstr "" +msgstr "此訊息已隱藏,因為您封鎖了此用戶。" #: src/screens/Profile/ErrorState.tsx:41 msgid "This moderation service is unavailable. See below for more details. If this issue persists, contact us." @@ -11430,11 +12021,11 @@ msgstr "此內容管理規則已套用於整個用戶帳號,並會顯示在所 #: src/components/dms/MessagesListBlockedFooter.tsx:84 msgid "This person is blocking you" -msgstr "" +msgstr "這個用戶封鎖了您" #. placeholder {0}: niceDate(i18n, createdAt) #. placeholder {1}: niceDate(i18n, indexedAt) -#: src/screens/PostThread/components/ThreadItemAnchor.tsx:642 +#: src/screens/PostThread/components/ThreadItemAnchor.tsx:644 msgid "This post claims to have been created on <0>{0}, but was first seen by Bluesky on <1>{1}." msgstr "這則貼文宣告的發布時間為 <0>{0},但首次出現在 Bluesky 的時間是 <1>{1}。" @@ -11450,23 +12041,24 @@ msgstr "這則貼文僅限已登入用戶可以檢視。" msgid "This post was deleted by its author" msgstr "這則貼文已被發布者刪除" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:809 +#: 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:963 +#: src/view/com/composer/Composer.tsx:1043 msgid "This post's author has disabled quote posts." msgstr "這則貼文的發布者拒絕引用貼文。" -#: src/view/com/profile/ProfileMenu.tsx:572 +#: src/view/com/profile/ProfileMenu.tsx:546 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:844 +#: 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:132 +#: src/screens/Messages/ConversationSettings/index.tsx:156 +#: src/screens/Messages/JoinRequests.tsx:111 msgid "This screen is only available for group conversations." msgstr "這個畫面僅適用於群組對話。" @@ -11490,22 +12082,22 @@ msgstr "這應該只需要幾分鐘。" msgid "This user does not have a display name, and therefore cannot be verified." msgstr "這個用戶尚未設定名稱,因此無法授予驗證。" -#: src/view/com/profile/ProfileFollowers.tsx:170 +#: src/view/com/profile/ProfileFollowers.tsx:203 msgid "This user doesn't have any followers." msgstr "這個用戶沒有任何跟隨者。" -#: src/components/dms/dialogs/NewChatDialog.tsx:57 +#: src/components/dms/dialogs/NewChatDialog.tsx:64 msgid "This user has blocked you and cannot be messaged." -msgstr "" +msgstr "這個用戶已封鎖您,無法傳送訊息。" #: src/components/moderation/ModerationDetailsDialog.tsx:83 #: src/lib/moderation/useModerationCauseDescription.ts:76 msgid "This user has blocked you. You cannot view their content." msgstr "這個用戶已封鎖您,因此您無法檢視他們的內容。" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:68 msgid "This user has disabled chat and cannot be messaged." -msgstr "" +msgstr "這個用戶已選擇不允許接收訊息。" #: src/lib/moderation/useGlobalLabelStrings.ts:30 msgid "This user has requested that their content only be shown to signed-in users." @@ -11531,7 +12123,7 @@ msgstr "這個用戶尚未跟隨任何人。" #: src/components/Post/Embed/VideoEmbed/index.web.tsx:236 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 "" +msgstr "這部影片無法在您的裝置上播放。您的瀏覽器或系統可能不支援必要的視訊解碼器(H.264/AAC)。" #: 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." @@ -11551,7 +12143,7 @@ msgstr "這會永久刪除您的 Bluesky 帳號 <0>{currentHandle} 和所有 msgid "This will remove @{0} from the quick access list." msgstr "這將從快速存取列表中移除 @{0}。" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:837 +#: 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 "您的貼文將從這則引用貼文中刪除,並取代為一個佔位標記。" @@ -11574,7 +12166,7 @@ msgstr "討論串選項" msgid "Threaded" msgstr "樹狀模式" -#: src/Navigation.tsx:376 +#: src/Navigation.tsx:374 msgid "Threads Preferences" msgstr "討論串選項" @@ -11600,8 +12192,8 @@ msgid "To disable the email 2FA method, please verify your access to the email a msgstr "若要停用電子郵件雙重驗證,請先驗證您的電子郵件地址。" #. placeholder {0}: currentAccount?.email -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:165 -#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:216 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:162 +#: src/components/dialogs/EmailDialog/screens/Manage2FA/Disable.tsx:213 msgid "To disable your email 2FA method, please verify your access to <0>{0}" msgstr "若要停用電子郵件雙重驗證,請先驗證您的電子郵件地址 <0>{0}" @@ -11646,16 +12238,16 @@ msgstr "熱門" msgid "Top replies first" msgstr "熱門回覆優先" -#: src/Navigation.tsx:567 +#: src/Navigation.tsx:485 msgid "Topic" msgstr "話題" -#: src/components/dms/MessageContextMenu.tsx:162 -#: src/components/dms/MessageContextMenu.tsx:165 +#: src/components/dms/MessageContextMenu.tsx:158 +#: src/components/dms/MessageContextMenu.tsx:161 #: src/components/Post/Translated/index.tsx:150 #: src/components/Post/Translated/index.tsx:157 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:553 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:555 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:557 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:563 msgid "Translate" msgstr "翻譯" @@ -11667,8 +12259,8 @@ msgstr "已翻譯" msgid "Translating" msgstr "正在翻譯" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:537 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:539 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:538 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:540 msgid "Translating…" msgstr "正在翻譯……" @@ -11702,7 +12294,7 @@ msgstr "熱門影片" msgid "Trolling" msgstr "引戰" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:140 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:142 msgid "Trust emerges from relationships, communities, and shared context, so we’re also enabling <0>trusted verifiers: organizations that can directly issue verification." msgstr "信任源自於人際關係、社群及共享環境,因此我們也引入了<0>可靠的驗證者:可以直接為其他帳號授予驗證的組織。" @@ -11711,16 +12303,30 @@ msgctxt "english-only-resource" msgid "Try a different search term, or <0>read about how to use search filters." msgstr "試試以不同的關鍵字搜尋,或<0>閱讀如何使用搜尋篩選器。" +#: 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:170 +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 "改用 Google 翻譯" +#: 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 "電視節目" @@ -11763,13 +12369,17 @@ msgstr "無法連線到服務,請檢查您的網路連線狀態。" msgid "Unable to delete" msgstr "無法刪除" -#: src/components/dms/dialogs/NewChatDialog.tsx:106 -msgid "Unable to find a selected recipient." -msgstr "" +#: src/screens/Messages/JoinRequests.tsx:351 +msgid "Unable to fetch join requests." +msgstr "無法取得加入申請。" -#: src/components/dms/dialogs/NewChatDialog.tsx:70 +#: src/components/dms/dialogs/NewChatDialog.tsx:113 +msgid "Unable to find a selected recipient." +msgstr "找不到已選擇的接收者。" + +#: src/components/dms/dialogs/NewChatDialog.tsx:77 msgid "Unable to find the selected recipient." -msgstr "" +msgstr "找不到已選擇的接收者。" #: src/lib/strings/errors.ts:43 msgid "Unable to resolve handle" @@ -11791,38 +12401,43 @@ msgstr "目前無法使用" msgid "Unavailable feed information" msgstr "無法取得動態源資訊" -#: src/components/dms/MessageItem.tsx:663 +#: src/components/dms/MessageItem.tsx:637 #: src/components/dms/MessagesListBlockedFooter.tsx:97 #: src/components/dms/MessagesListBlockedFooter.tsx:104 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:222 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:207 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:358 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:420 +#: src/components/moderation/BlockDialog.tsx:186 +#: src/components/moderation/BlockDialog.tsx:190 +#: src/components/moderation/BlockDialog.tsx:211 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:210 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:381 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:443 #: src/screens/ProfileList/components/Header.tsx:166 #: src/screens/ProfileList/components/Header.tsx:173 -#: src/view/com/profile/ProfileMenu.tsx:563 msgid "Unblock" msgstr "解除封鎖" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:362 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:385 msgctxt "action" msgid "Unblock" msgstr "解除封鎖" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:210 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:215 msgid "Unblock {displayName}" msgstr "解除封鎖 {displayName}" -#: src/components/dms/ConvoMenu.tsx:294 -#: src/components/dms/ConvoMenu.tsx:298 +#: src/components/dms/ConvoMenu.tsx:284 +#: src/components/dms/ConvoMenu.tsx:288 #: src/view/com/profile/ProfileMenu.tsx:468 #: src/view/com/profile/ProfileMenu.tsx:474 msgid "Unblock account" msgstr "解除封鎖帳號" -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:199 -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:413 -#: src/view/com/profile/ProfileMenu.tsx:545 +#: src/components/moderation/BlockDialog.tsx:146 +msgid "Unblock account?" +msgstr "" + +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:202 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:436 msgid "Unblock Account?" msgstr "要解除封鎖嗎?" @@ -11837,8 +12452,8 @@ msgstr "解除封鎖列表" #: src/features/liveEvents/components/LiveEventFeedOptionsMenu.tsx:79 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:40 #: src/features/liveEvents/components/SidebarLiveEventFeedsBanner.tsx:46 -#: src/screens/Profile/components/GermButton.tsx:185 #: src/screens/Profile/components/GermButton.tsx:186 +#: src/screens/Profile/components/GermButton.tsx:187 msgid "Undo" msgstr "取消" @@ -11859,11 +12474,11 @@ msgid "Undo repost ({0, plural, one {# repost} other {# reposts}})" msgstr "取消轉發({0, plural, other {# 則轉發}})" #. placeholder {0}: profile.handle -#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:389 +#: src/screens/Profile/Header/ProfileHeaderStandard.tsx:412 msgid "Unfollow {0}" msgstr "取消跟隨 {0}" -#: src/view/com/profile/ProfileMenu.tsx:324 +#: src/view/com/profile/ProfileMenu.tsx:325 #: src/view/com/profile/ProfileMenu.tsx:334 msgid "Unfollow account" msgstr "取消跟隨帳號" @@ -11872,7 +12487,7 @@ msgstr "取消跟隨帳號" msgid "Unfollows the user" msgstr "取消跟隨用戶" -#: src/components/moderation/ReportDialog/index.tsx:490 +#: src/components/moderation/ReportDialog/index.tsx:492 msgid "Unfortunately, none of your subscribed labelers supports this report type." msgstr "抱歉,您訂閱的內容管理服務皆不支援此檢舉類型。" @@ -11884,14 +12499,6 @@ msgstr "很遺憾,您個人資料中儲存的出生日期顯示您的年齡太 msgid "Unfortunately, your declared age indicates that you are not old enough to access Bluesky in your region." msgstr "抱歉,您設定的年齡無法於您的所在地區使用 Bluesky。" -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:245 -msgid "Uninvite" -msgstr "撤回邀請" - -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:240 -msgid "Uninvite {displayName} from this group chat" -msgstr "撤回給 {displayName} 的群組對話邀請" - #: src/components/verification/VerificationsDialog.tsx:209 msgid "Unknown verifier" msgstr "未知的驗證者" @@ -11904,21 +12511,21 @@ msgstr "未標記的成人內容" msgid "Unlabeled, abusive, or non-consensual adult content" msgstr "未標記、具騷擾性,或非自願的成人內容" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:523 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:509 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:279 +#: src/components/PostControls/index.tsx:276 msgid "Unlike ({0, plural, one {# like} other {# likes}})" msgstr "取消喜歡({0, plural, other {# 個喜歡}})" -#: src/screens/Messages/components/ChatLocked.tsx:79 +#: src/screens/Messages/components/ChatLocked.tsx:92 msgid "Unlock chat" msgstr "解除鎖定對話" -#: src/screens/Messages/ConversationSettings/index.tsx:502 +#: src/screens/Messages/ConversationSettings/index.tsx:567 msgid "Unlock this group chat" msgstr "解除鎖定此群組對話" @@ -11939,14 +12546,14 @@ msgstr "取消靜音" msgid "Unmute {0}" msgstr "取消靜音 {0}" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:729 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:735 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:738 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:744 #: src/view/com/profile/ProfileMenu.tsx:447 #: src/view/com/profile/ProfileMenu.tsx:453 msgid "Unmute account" msgstr "取消靜音帳號" -#: src/components/dms/ConvoMenu.tsx:282 +#: src/components/dms/ConvoMenu.tsx:272 msgid "Unmute conversation" msgstr "取消靜音對話" @@ -11955,12 +12562,12 @@ msgstr "取消靜音對話" msgid "Unmute list" msgstr "取消靜音列表" -#: src/screens/Messages/ConversationSettings/index.tsx:464 +#: src/screens/Messages/ConversationSettings/index.tsx:529 msgid "Unmute this group chat" msgstr "取消靜音此群組對話" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:621 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:624 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:630 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:633 msgid "Unmute thread" msgstr "取消靜音討論串" @@ -11974,19 +12581,19 @@ msgid "Unpin" msgstr "取消釘選" #: src/components/FeedCard.tsx:355 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:528 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:534 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:514 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:520 #: src/screens/SavedFeeds.tsx:467 msgid "Unpin feed" msgstr "取消釘選動態源" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:317 -#: src/screens/Profile/components/ProfileFeedHeader.tsx:319 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:312 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:314 msgid "Unpin from home" msgstr "從首頁取消釘選" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:514 -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:519 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:515 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:520 msgid "Unpin from profile" msgstr "從您的個人檔案中取消釘選" @@ -11996,7 +12603,7 @@ msgid "Unpin moderation list" msgstr "取消釘選內容管理列表" #. placeholder {0}: info.displayName -#: src/screens/Profile/components/ProfileFeedHeader.tsx:167 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:162 msgid "Unpinned {0} from Home" msgstr "成功從首頁取消釘選 {0}" @@ -12030,14 +12637,18 @@ msgstr "取消訂閱這個標記服務" msgid "Unsubscribed from list" msgstr "成功取消套用列表" -#: src/view/com/composer/text-input/TextInput.tsx:131 +#: src/view/com/composer/text-input/TextInput.tsx:128 msgid "Unsupported clipboard content" msgstr "不支援的剪貼簿內容" -#: src/view/com/composer/Composer.tsx:1442 +#: src/view/com/composer/Composer.tsx:1557 msgid "Unsupported video type: {mimeType}" msgstr "不支援的影片類型:{mimeType}" +#: 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" @@ -12047,16 +12658,20 @@ msgstr "更新" msgid "Update <0>{displayName} in Lists" msgstr "要把 <0> {displayName} 加入或移出哪些列表?" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:301 -#: src/components/dialogs/EmailDialog/screens/Update.tsx:313 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:93 +msgid "Update app" +msgstr "更新應用程式" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:296 +#: src/components/dialogs/EmailDialog/screens/Update.tsx:308 #: src/screens/Settings/AccountSettings.tsx:112 #: src/screens/Settings/AccountSettings.tsx:120 msgid "Update email" msgstr "更新電子信箱" -#: src/screens/Messages/components/InviteLinkDialog.tsx:205 -#: src/screens/Messages/components/InviteLinkDialog.tsx:243 -#: src/screens/Messages/components/InviteLinkDialog.tsx:267 +#: 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 "更新邀請連結" @@ -12065,11 +12680,15 @@ msgstr "更新邀請連結" msgid "Update to {domain}" msgstr "變更至 {domain}" -#: src/screens/Messages/Conversation.tsx:335 -msgid "Update your app to the latest version to join in!" -msgstr "更新應用程式至最新版本即可加入!" +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:85 +msgid "Update your app" +msgstr "更新您的應用程式" -#: src/components/dialogs/EmailDialog/screens/Update.tsx:204 +#: src/components/Post/Embed/GalleryFallbackEmbed.tsx:76 +msgid "Update your app to see it." +msgstr "更新應用程式以顯示該內容。" + +#: src/components/dialogs/EmailDialog/screens/Update.tsx:202 msgid "Update your email" msgstr "更新您的電子信箱" @@ -12078,19 +12697,19 @@ msgstr "更新您的電子信箱" #: src/components/dialogs/DeviceLocationRequestDialog.tsx:41 #: src/components/dialogs/DeviceLocationRequestDialog.tsx:106 msgid "Update your location" -msgstr "" +msgstr "更新您的位置" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:355 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:356 msgctxt "toast" msgid "Updating quote attachment failed" msgstr "更新引用分離狀態時發生問題" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:404 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:405 msgctxt "toast" msgid "Updating reply visibility failed" msgstr "更新回覆可見度時發生問題" -#: src/screens/Onboarding/StepProfile/index.tsx:314 +#: src/screens/Onboarding/StepProfile/index.tsx:315 msgid "Upload a photo instead" msgstr "或是上傳圖片" @@ -12098,39 +12717,40 @@ msgstr "或是上傳圖片" msgid "Upload a text file to:" msgstr "上傳文字檔案至:" -#: src/view/com/util/UserAvatar.tsx:490 -#: src/view/com/util/UserAvatar.tsx:493 -#: src/view/com/util/UserBanner.tsx:160 -#: src/view/com/util/UserBanner.tsx:163 +#: 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:507 -#: src/view/com/util/UserBanner.tsx:177 +#: 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:501 #: src/view/com/util/UserAvatar.tsx:505 -#: src/view/com/util/UserBanner.tsx:171 +#: 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:2471 +#: src/view/com/composer/Composer.tsx:2587 msgid "Uploading GIF..." msgstr "正在上傳 GIF……" -#: src/lib/api/index.ts:338 +#: src/lib/api/index.ts:328 +#: src/lib/api/index.ts:355 msgid "Uploading images..." msgstr "正在上傳圖片……" -#: src/lib/api/index.ts:409 -#: src/lib/api/index.ts:433 +#: src/lib/api/index.ts:427 +#: src/lib/api/index.ts:451 msgid "Uploading link thumbnail..." msgstr "正在上傳連結縮圖……" -#: src/view/com/composer/Composer.tsx:2473 +#: src/view/com/composer/Composer.tsx:2589 msgid "Uploading video..." msgstr "正在上傳影片……" @@ -12174,7 +12794,7 @@ msgid "user" msgstr "用戶" #: src/components/dms/AfterReportConversationDialog.tsx:187 -#: src/components/dms/AfterReportDialog.tsx:150 +#: src/components/dms/AfterReportDialog.tsx:155 msgctxt "toast" msgid "User blocked" msgstr "成功封鎖用戶" @@ -12211,7 +12831,7 @@ msgid "User list by {0}" msgstr "來自 {0} 的用戶列表" #. placeholder {0}: sanitizeHandle(view.creator.handle, '@') -#: src/state/queries/feed.ts:159 +#: src/state/queries/feed.ts:171 msgid "User List by {0}" msgstr "來自 {0} 的用戶列表" @@ -12255,12 +12875,12 @@ msgstr "被 <0>@{0} 跟隨的用戶" msgid "users following <0>@{0}" msgstr "正在跟隨 <0>@{0} 的用戶" -#: src/screens/Messages/Settings.tsx:79 +#: src/screens/Messages/Settings.tsx:84 msgctxt "allow group chat invites from" msgid "Users I follow" msgstr "我跟隨的用戶" -#: src/screens/Messages/Settings.tsx:64 +#: src/screens/Messages/Settings.tsx:69 msgctxt "allow messages from" msgid "Users I follow" msgstr "我跟隨的用戶" @@ -12277,7 +12897,7 @@ msgstr "無法授予驗證,請再試一次。" msgid "Verification settings" msgstr "驗證設定" -#: src/Navigation.tsx:213 +#: src/Navigation.tsx:206 #: src/screens/Moderation/VerificationSettings.tsx:34 msgid "Verification Settings" msgstr "驗證設定" @@ -12304,8 +12924,8 @@ 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:352 -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:368 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:357 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:372 msgctxt "action" msgid "Verify code" msgstr "驗證代碼" @@ -12316,7 +12936,7 @@ msgid "Verify DNS Record" msgstr "驗證 DNS 紀錄" #. Dialog title when a user is verifying their email address by entering a code they have been sent -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:215 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:224 msgid "Verify email code" msgstr "驗證信箱代碼" @@ -12349,7 +12969,7 @@ msgstr "要對這個帳號授予驗證嗎?" msgid "Verify your age" msgstr "驗證您的年齡" -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:212 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:221 #: src/screens/Settings/AccountSettings.tsx:86 #: src/screens/Settings/AccountSettings.tsx:106 msgid "Verify your email" @@ -12380,11 +13000,11 @@ msgstr "版本 {0}" msgid "Video" msgstr "影片" -#: src/view/com/composer/state/video.ts:364 +#: src/view/com/composer/state/video.ts:359 msgid "Video failed to process" msgstr "影片處理失敗" -#: src/Navigation.tsx:630 +#: src/Navigation.tsx:553 msgid "Video Feed" msgstr "影片動態源" @@ -12419,7 +13039,7 @@ msgstr "找不到影片。" msgid "Video settings" msgstr "影片設定" -#: src/view/com/composer/Composer.tsx:2491 +#: src/view/com/composer/Composer.tsx:2607 msgid "Video uploaded" msgstr "影片上傳成功" @@ -12432,20 +13052,20 @@ msgstr "影片:{0}" msgid "Videos" msgstr "影片" -#: src/view/com/composer/SelectMediaButton.tsx:428 +#: src/view/com/composer/SelectMediaButton.tsx:434 msgid "Videos must be less than 3 minutes long." msgstr "影片長度不得超過 3 分鐘。" -#: src/view/com/composer/Composer.tsx:1055 +#: src/view/com/composer/Composer.tsx:1150 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:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View {0}" -msgstr "" +msgstr "檢視 {0}" #. placeholder {0}: profile.handle #: src/screens/Profile/Header/Shell.tsx:257 @@ -12455,10 +13075,10 @@ 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:465 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:454 #: src/screens/Search/components/SearchProfileCard.tsx:36 #: src/screens/VideoFeed/index.tsx:809 -#: src/view/com/notifications/NotificationFeedItem.tsx:600 +#: src/view/com/notifications/NotificationFeedItem.tsx:613 msgid "View {0}'s profile" msgstr "檢視 {0} 的個人檔案" @@ -12467,19 +13087,14 @@ msgstr "檢視 {0} 的個人檔案" msgid "View {0}’s profile" msgstr "檢視 {0} 的個人檔案" -#: src/components/dms/MessagesListHeader.tsx:120 -#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:185 +#: src/components/dms/MessagesListHeader.tsx:111 +#: src/screens/Messages/ConversationSettings/MemberMenu.tsx:188 msgid "View {displayName}’s profile" msgstr "檢視 {displayName} 的個人檔案" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:431 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:456 msgid "View {publicationTitle}" -msgstr "" - -#. placeholder {0}: authorProfile.handle -#: src/components/Post/Embed/StandardSiteEmbed/StandardSiteMetaRow.tsx:82 -msgid "View @{0}'s profile" -msgstr "" +msgstr "檢視 {publicationTitle}" #: src/components/ProfileHoverCard/index.web.tsx:479 msgid "View blocked user's profile" @@ -12503,10 +13118,18 @@ msgstr "檢視詳細資訊" msgid "View full thread" msgstr "檢視完整討論串" -#: src/screens/Messages/ConversationSettings/MembersAndRequests.tsx:43 +#: 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:56 msgid "View information about these labels" msgstr "檢視有關這些標記的詳細資訊" @@ -12522,7 +13145,7 @@ msgstr "檢視更多" msgid "View more trending videos" msgstr "檢視更多熱門影片" -#: src/view/com/composer/Composer.tsx:1050 +#: src/view/com/composer/Composer.tsx:1145 msgid "View post" msgstr "檢視貼文" @@ -12539,18 +13162,18 @@ msgstr "檢視個人檔案" msgid "View profile banner" msgstr "檢視個人檔案橫幅" -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:319 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:421 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:432 -#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:583 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:318 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:426 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:457 +#: src/components/Post/Embed/StandardSiteEmbed/index.tsx:640 msgid "View publication" -msgstr "" +msgstr "檢視發布資訊" #: src/view/com/profile/ProfileSubpageHeader.tsx:108 msgid "View the avatar" msgstr "檢視大頭貼照" -#: src/screens/Messages/ConversationSettings/index.tsx:489 +#: src/screens/Messages/ConversationSettings/index.tsx:554 msgid "View the invite link for this group chat" msgstr "檢視此群組對話的邀請連結" @@ -12563,7 +13186,7 @@ msgstr "檢視由 @{0} 提供的標記服務" msgid "View this user's verifications" msgstr "檢視此用戶的驗證" -#: src/screens/Profile/components/ProfileFeedHeader.tsx:495 +#: src/screens/Profile/components/ProfileFeedHeader.tsx:482 msgid "View users who like this feed" msgstr "檢視喜歡這個動態源的用戶" @@ -12596,8 +13219,8 @@ msgstr "檢視您靜音的帳號" msgid "View your verifications" msgstr "檢視您的驗證" -#: src/components/images/AutoSizedImage.tsx:207 -#: src/components/images/AutoSizedImage.tsx:239 +#: src/components/images/AutoSizedImage.tsx:221 +#: src/components/images/AutoSizedImage.tsx:253 msgid "Views full image" msgstr "檢視完整圖片" @@ -12640,8 +13263,8 @@ msgstr "警告內容" msgid "Warn content and filter from feeds" msgstr "警告內容,並從動態中排除內容" -#: src/features/liveNow/components/LiveStatusDialog.tsx:189 -#: src/features/liveNow/components/LiveStatusDialog.tsx:198 +#: src/features/liveNow/components/LiveStatusDialog.tsx:190 +#: src/features/liveNow/components/LiveStatusDialog.tsx:199 msgid "Watch now" msgstr "現在觀看" @@ -12665,11 +13288,15 @@ msgstr "我們找不到任何與該標籤相關的結果。" msgid "We couldn't find any results for that topic." msgstr "我們找不到任何與該話題相關的結果。" -#: src/screens/Messages/Conversation.tsx:136 +#: src/screens/Messages/Conversation.tsx:134 msgid "We couldn't load this conversation" msgstr "我們無法載入這個對話" -#: src/screens/Messages/ConversationSettings/index.tsx:113 +#: 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 "無法載入這個對話的設定" @@ -12715,11 +13342,11 @@ msgid "We recommend selecting at least two interests." msgstr "我們建議至少選擇兩個感興趣的主題。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:241 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 msgid "We sent an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我們已向 <0>{0} 傳送了一封包含連結的郵件。請打開郵件中的連結以完成電子信箱的驗證程序。" -#: src/view/com/composer/state/video.ts:434 +#: src/view/com/composer/state/video.ts:419 msgid "We were unable to determine if you are allowed to upload videos. Please try again." msgstr "我們無法確定您是否有上傳影片的權限。請稍後再試。" @@ -12744,12 +13371,12 @@ msgstr "我們因連線問題無法接收驗證狀態,可能會需要一段時 msgid "We will let you know when your account is ready." msgstr "我們會在您的帳號準備好時通知您。" -#: src/screens/Settings/FindContactsSettings.tsx:510 +#: src/screens/Settings/FindContactsSettings.tsx:531 msgid "We will notify you when we find your friends." msgstr "我們會在找到您的朋友時傳送通知。" #. placeholder {0}: currentAccount!.email -#: src/components/dialogs/EmailDialog/screens/Verify.tsx:250 +#: src/components/dialogs/EmailDialog/screens/Verify.tsx:259 msgid "We'll send an email to <0>{0} containing a link. Please click on it to complete the email verification process." msgstr "我們將向 <0>{0} 傳送一封含有連結的郵件。請查看郵件並前往其中的連結以完成電子信箱的驗證程序。" @@ -12779,12 +13406,12 @@ msgstr "我們在為您的帳號初始化年齡驗證程序時遇到了問題。 msgid "We're having network issues, try again" msgstr "我們遇到了網路問題,請再試一次" -#: src/components/dms/AddMembersFlow.tsx:175 -#: src/components/dms/InitiateChatFlow.tsx:256 +#: src/components/dms/AddMembersFlow.tsx:197 +#: src/components/dms/InitiateChatFlow.tsx:289 msgid "We’re having network issues, try again" msgstr "我們遇到了網路問題,請再試一次" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:96 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:97 msgid "We’re introducing a new layer of verification on Bluesky — an easy-to-see checkmark." msgstr "為您介紹 Bluesky 的全新驗證機制 —— 驗證標記。" @@ -12814,12 +13441,12 @@ msgstr "很抱歉,無法完成您的搜尋要求。請稍後幾分鐘再試一 msgid "We're sorry, you cannot access this screen at this time." msgstr "很抱歉,您目前無權存取這個頁面。" -#: src/view/com/composer/Composer.tsx:961 +#: src/view/com/composer/Composer.tsx:1041 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!您要回覆的貼文已被刪除。" -#: src/components/Lists.tsx:224 -#: src/view/screens/NotFound.tsx:39 +#: 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 "很抱歉!我們找不到您正在尋找的頁面。" @@ -12865,12 +13492,12 @@ msgid "What do you want to call your starter pack?" msgstr "您想怎麼命名這個新手包?" #: src/view/com/auth/SplashScreen.web.tsx:98 -#: src/view/com/composer/Composer.tsx:1402 +#: src/view/com/composer/Composer.tsx:1521 #: src/view/com/feeds/ComposerPrompt.tsx:193 msgid "What's up?" msgstr "發生了什麼新鮮事?" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:148 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:150 msgid "When you tap on a check, you’ll see which organizations have granted verification." msgstr "在按下驗證標記後,您會看到哪些組織已為其授予驗證。" @@ -12878,7 +13505,7 @@ msgstr "在按下驗證標記後,您會看到哪些組織已為其授予驗證 msgid "Who can interact with this post?" msgstr "哪些人可以參與這則貼文的互動?" -#: src/screens/Messages/components/InviteLinkDialog.tsx:216 +#: src/screens/Messages/components/InviteLinkDialog.tsx:247 msgid "Who can join this group chat and how" msgstr "誰可以加入此群組及邀請規則" @@ -12887,13 +13514,13 @@ msgstr "誰可以加入此群組及邀請規則" msgid "Who can reply" msgstr "哪些人可以回覆" -#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:129 +#: src/components/dialogs/nuxs/InitialVerificationAnnouncement.tsx:131 msgid "Who can verify?" msgstr "哪些人可以授予驗證?" #: src/screens/Home/NoFeedsPinned.tsx:80 -#: src/screens/Messages/ChatList.tsx:323 -#: src/screens/Messages/Inbox.tsx:200 +#: src/screens/Messages/ChatList.tsx:392 +#: src/screens/Messages/Inbox.tsx:198 msgid "Whoops!" msgstr "咦?" @@ -12939,19 +13566,19 @@ msgstr "請問此新手包有什麼問題嗎?" msgid "Why should this user be reviewed?" msgstr "請問此用戶有什麼問題嗎?" -#: src/components/dms/AfterReportDialog.tsx:46 +#: 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 "" +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:1320 +#: src/view/com/composer/Composer.tsx:1439 msgid "Would you like to save this as a draft to edit later?" msgstr "需要把現有內容儲存為草稿,以供日後編輯嗎?" @@ -12960,12 +13587,12 @@ msgstr "需要把現有內容儲存為草稿,以供日後編輯嗎?" msgid "Write a post" msgstr "撰寫一篇貼文" -#: src/view/com/composer/Composer.tsx:1502 +#: src/view/com/composer/Composer.tsx:1617 msgid "Write post" msgstr "撰寫貼文" #: src/screens/PostThread/components/ThreadComposePrompt.tsx:91 -#: src/view/com/composer/Composer.tsx:1400 +#: src/view/com/composer/Composer.tsx:1519 msgid "Write your reply" msgstr "撰寫您的回覆" @@ -12978,7 +13605,8 @@ msgstr "作家" msgid "Wrong DID returned from server. Received: {0}" msgstr "伺服器返回了錯誤的 DID。接收到的 DID: {0}" -#: src/screens/Messages/ConversationSettings/index.tsx:131 +#: src/screens/Messages/ConversationSettings/index.tsx:155 +#: src/screens/Messages/JoinRequests.tsx:110 msgid "Wrong kind of conversation" msgstr "對話類型錯誤" @@ -13005,11 +13633,11 @@ msgstr "是,刪除我的帳號" msgid "Yes, delete this starter pack" msgstr "是,刪除這個新手包" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:839 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:848 msgid "Yes, detach" msgstr "是,分離貼文" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:846 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:855 msgid "Yes, hide" msgstr "是,隱藏回覆" @@ -13030,17 +13658,17 @@ 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:636 +#: src/components/dms/MessageItem.tsx:610 msgid "You are blocking {0}" -msgstr "" +msgstr "您封鎖了 {0}" #: src/components/dms/MessagesListBlockedFooter.tsx:81 msgid "You are blocking the chat owner" -msgstr "" +msgstr "您封鎖了對話擁有者" #: src/components/dms/MessagesListBlockedFooter.tsx:83 msgid "You are blocking this person" -msgstr "" +msgstr "您封鎖了這個用戶" #: src/components/forms/HostingProvider.tsx:46 msgid "You are creating an account on" @@ -13068,7 +13696,7 @@ msgstr "您已開始直播" msgid "You are no longer live" msgstr "您已停止直播" -#: src/view/com/composer/state/video.ts:427 +#: src/view/com/composer/state/video.ts:412 msgid "You are not allowed to upload videos." msgstr "您沒有上傳影片的權限。" @@ -13117,21 +13745,30 @@ msgstr "您可以隨時選擇退出並刪除資料" msgid "You can choose whether chat notifications have sound in the chat settings within the app" msgstr "您可以在應用程式內選擇通知是否需要播放提示聲" -#: src/screens/Messages/Settings.tsx:147 -#: src/screens/Messages/Settings.tsx:193 +#: src/screens/Messages/Settings.tsx:152 +#: src/screens/Messages/Settings.tsx:203 msgid "You can continue ongoing conversations regardless of which setting you choose." msgstr "無論選擇哪種設定,都不會影響已發起的對話。" -#: src/components/dialogs/nuxs/ActivitySubscriptions.tsx:149 +#: 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:203 #: src/screens/Login/PasswordUpdatedForm.tsx:27 msgid "You can now sign in with your new password." msgstr "您可以使用新密碼登入了。" -#: src/view/com/composer/Composer.tsx:1325 +#. 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 +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:1444 msgid "You can only save drafts up to 1000 characters." msgstr "您只能儲存最多 1000 個字元的草稿。" @@ -13139,11 +13776,11 @@ msgstr "您只能儲存最多 1000 個字元的草稿。" msgid "You can only save drafts up to 1000 characters. Would you like to discard this post before viewing your drafts?" msgstr "您只能儲存最多 1000 個字元的草稿。請問您要在檢視其他草稿之前放棄這則貼文內容嗎?" -#: src/view/com/composer/SelectMediaButton.tsx:431 +#: src/view/com/composer/SelectMediaButton.tsx:437 msgid "You can only select one GIF at a time." msgstr "您一次只能選擇一個 GIF。" -#: src/view/com/composer/SelectMediaButton.tsx:425 +#: src/view/com/composer/SelectMediaButton.tsx:431 msgid "You can only select one video at a time." msgstr "您一次只能選擇一段影片。" @@ -13153,12 +13790,12 @@ msgstr "您可以登入以重新啟用帳號。其他用戶將可以重新看到 #: src/components/dms/MessagesListBlockedFooter.tsx:93 msgid "You can read chat history but can’t send new messages." -msgstr "" +msgstr "您仍可以檢視聊天記錄,但無法傳送新的訊息。" -#. Error message for maximum number of images that can be selected to add to a post, currently 4 but may change. -#: src/view/com/composer/SelectMediaButton.tsx:417 -msgid "You can select up to {MAX_IMAGES, plural, other {# images}} in total." -msgstr "您最多只能選擇 {MAX_IMAGES, plural, other {# 張圖片}}。" +#. Error message for maximum number of images that can be selected to add to a post. +#: src/view/com/composer/SelectMediaButton.tsx:423 +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 @@ -13166,10 +13803,15 @@ msgstr "您最多只能選擇 {MAX_IMAGES, plural, other {# 張圖片}}。" msgid "You can update this later from your settings." msgstr "您可以稍後在設定中變更。" -#: src/components/dms/dialogs/NewChatDialog.tsx:98 -msgid "You cannot create a group chat yet." +#: src/components/dms/ActionsWrapper.web.tsx:79 +#: src/components/dms/MessageContextMenu.tsx:105 +msgid "You cannot add more than {EMOJI_REACTION_LIMIT, plural, one {# emoji reaction} other {# emoji reactions}}" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:105 +msgid "You cannot create a group chat yet." +msgstr "您還無法建立群組對話。" + #: src/lib/hooks/useCleanError.ts:54 #: src/lib/strings/errors.ts:28 msgid "You cannot update your birthdate while using an app password. Please sign in with your main password to update your birthdate." @@ -13197,6 +13839,10 @@ msgstr "您目前還沒有任何已儲存的動態源。" msgid "You got here first" msgstr "您是第一個抵達這裡的人" +#: src/components/intents/GroupChatJoinDialog.tsx:166 +msgid "You have been previously removed from this group and can’t join it using this link." +msgstr "您已被移出此群組,無法使用該邀請連結再次加入。" + #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:58 #: src/lib/moderation/useModerationCauseDescription.ts:66 @@ -13266,7 +13912,7 @@ msgstr "您已成功驗證電子郵件地址。現在您可以關閉此對話框 msgid "You have temporarily reached the limit for video uploads. Please try again later." msgstr "您已暫時達到影片上傳的限制。請稍後再試。" -#: src/view/com/composer/Composer.tsx:1315 +#: src/view/com/composer/Composer.tsx:1434 msgid "You have unsaved changes to this draft, would you like to save them?" msgstr "您的草稿還有尚未儲存的變更,需要儲存嗎?" @@ -13324,6 +13970,10 @@ 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:320 +msgid "You must be a chat owner to remove a member." +msgstr "" + #: src/components/dialogs/BirthDateSettings.tsx:177 msgid "You must be at least 13 years old to use Bluesky. Read our <0>Terms of Service for more information." msgstr "您必須年滿 13 歲才能使用 Bluesky。請閱讀我們的<0>服務條款以瞭解更多資訊。" @@ -13332,11 +13982,12 @@ msgstr "您必須年滿 13 歲才能使用 Bluesky。請閱讀我們的<0>服務 msgid "You must be following at least seven other people to generate a starter pack." msgstr "您必須跟隨至少 7 個人才能產生新手包。" -#: src/components/StarterPack/QrCodeDialog.tsx:68 +#: src/components/StarterPack/QrCodeDialog.tsx:69 +#: src/features/inviteFriends/InviteFriendsDialogInner.tsx:88 msgid "You must grant access to your photo library to save a QR code" msgstr "您必須授予相簿權限才能儲存 QR Code" -#: src/view/com/composer/SelectMediaButton.tsx:460 +#: src/view/com/composer/SelectMediaButton.tsx:466 msgid "You need to allow access to your media library." msgstr "您必須授予權限以存取媒體內容。" @@ -13344,6 +13995,10 @@ msgstr "您必須授予權限以存取媒體內容。" msgid "You need to verify your email address before you can enable email 2FA." msgstr "您需要先驗證您的電子郵件地址,才能啟用電子郵件雙重驗證。" +#: src/components/moderation/BlockDialog.tsx:352 +msgid "You own this chat" +msgstr "" + #. placeholder {0}: currentAccount?.handle #: src/screens/Deactivated.tsx:120 msgid "You previously deactivated @{0}." @@ -13354,7 +14009,7 @@ msgid "You probably want to restart the app now." msgstr "您或許需要重新啟動應用程式。" #. placeholder {0}: reaction.value -#: src/components/dms/MessageItem.tsx:287 +#: src/components/dms/MessageItem.tsx:259 msgid "You reacted {0}" msgstr "您做出了 {0} 反應" @@ -13368,8 +14023,13 @@ msgstr "您對 {target} 做出了 {0} 反應" msgid "You recently changed your birthdate" msgstr "您最近變更了出生日期" +#. Displayed when the user has requested to join a group chat. +#: src/screens/Messages/components/OutgoingRequestListItem.tsx:109 +msgid "You requested to join" +msgstr "" + #: src/screens/Settings/Settings.tsx:297 -#: src/view/shell/desktop/LeftNav.tsx:224 +#: src/view/shell/desktop/LeftNav.tsx:225 msgid "You will be signed out of all your accounts." msgstr "您即將登出所有帳號。" @@ -13378,11 +14038,11 @@ msgstr "您即將登出所有帳號。" msgid "You will no longer receive notifications for {0}" msgstr "您將不會再收到 {0} 的動態通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:245 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:246 msgid "You will no longer receive notifications for this thread" msgstr "您將不會再收到這條討論串的通知" -#: src/components/PostControls/PostMenu/PostMenuItems.tsx:236 +#: src/components/PostControls/PostMenu/PostMenuItems.tsx:237 msgid "You will now receive notifications for this thread" msgstr "您將繼續收到這條討論串的通知" @@ -13390,12 +14050,12 @@ msgstr "您將繼續收到這條討論串的通知" 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:91 +#: src/screens/Messages/ConversationSettings/prompts.tsx:121 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:43 +#: src/components/dms/getMessageInfo.ts:50 msgid "You: {message}" msgstr "您:{message}" @@ -13429,6 +14089,10 @@ msgstr "您將開始收到 {0} 的動態通知!" msgid "You'll stay updated with these feeds" 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 "輪到您了" @@ -13463,7 +14127,7 @@ msgstr "您已到達內容的尾端。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "您已經瀏覽完所有的貼文了!不妨試著再跟隨一些帳號吧。" -#: src/view/com/composer/Composer.tsx:582 +#: src/view/com/composer/Composer.tsx:646 msgid "You've reached the maximum number of drafts" msgstr "您已達到草稿數量上限" @@ -13475,11 +14139,11 @@ msgstr "您已達到請求數上限,請稍後再試。" msgid "You've reached the start of the active content." msgstr "您已到達內容的開頭。" -#: src/view/com/composer/state/video.ts:438 +#: src/view/com/composer/state/video.ts:423 msgid "You've reached your daily limit for video uploads (too many bytes)" msgstr "您已達到每日影片上傳限制(位元組過多)" -#: src/view/com/composer/state/video.ts:442 +#: src/view/com/composer/state/video.ts:427 msgid "You've reached your daily limit for video uploads (too many videos)" msgstr "您已達到每日影片上傳限制(影片數過多)" @@ -13499,10 +14163,18 @@ msgstr "您的帳號已被刪除,有緣再見!✌️" msgid "Your account has been suspended" msgstr "您的帳號已被停權" -#: src/view/com/composer/state/video.ts:446 +#: src/view/com/composer/state/video.ts:431 msgid "Your account is not yet old enough to upload videos. Please try again later." msgstr "您的帳號註冊時間太短,暫時無法上傳影片。請稍後再試。" +#: src/components/dms/InitiateChatFlow.tsx:731 +msgid "Your account is too new" +msgstr "您的帳號建立時間太短了" + +#: src/components/dms/InitiateChatFlow.tsx:732 +msgid "Your account must be at least 7 days old to create a new group chat." +msgstr "要建立新的群組對話,您的帳號必須建立至少 7 天以上。" + #: 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 "您可以把帳號的所有公開資料匯出成一個「CAR」檔案,但其中不包括圖片等嵌入媒體,亦不包含私人資料;上述資料需要另外擷取。" @@ -13519,7 +14191,7 @@ msgstr "已提交您的申訴。如果申訴成功,我們會透過電子郵件 msgid "Your birth date" msgstr "您的出生日期" -#: src/screens/Messages/components/ChatDisabled.tsx:41 +#: src/screens/Messages/components/ChatDisabled.tsx:45 msgid "Your chats have been disabled" msgstr "您的對話功能已被停用" @@ -13527,11 +14199,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:365 +#: src/view/com/notifications/NotificationFeedItem.tsx:374 msgid "Your contact {firstAuthorLink} is on Bluesky" msgstr "您的聯絡人 {firstAuthorLink} 已加入 Bluesky" -#: src/view/com/notifications/NotificationFeedItem.tsx:363 +#: src/view/com/notifications/NotificationFeedItem.tsx:372 msgid "Your contact {firstAuthorName} is on Bluesky" msgstr "您的聯絡人 {firstAuthorName} 已加入 Bluesky" @@ -13561,7 +14233,7 @@ msgstr "您的電子信箱" msgid "Your email appears to be invalid." msgstr "您的電子郵件地址似乎無效。" -#: src/components/dialogs/EmailDialog/screens/VerificationReminder.tsx:66 +#: 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 "您的電子信箱尚未驗證。請驗證您的電子信箱以便享有使用所有 Bluesky 功能的權益。" @@ -13582,7 +14254,7 @@ msgstr "您的「Following」動態源看起來空蕩蕩的。快去跟隨更多 msgid "Your full handle will be <0>@{0}" msgstr "您的完整帳號代碼將修改為 <0>@{0}" -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:457 #: src/screens/Search/modules/ExploreInterestsCard.tsx:68 #: src/screens/Settings/ContentAndMediaSettings.tsx:94 #: src/screens/Settings/ContentAndMediaSettings.tsx:97 @@ -13611,9 +14283,9 @@ msgstr "已更新您的位置資訊。" msgid "Your muted words" msgstr "您的靜音字詞" -#: src/screens/Messages/components/InviteLinkDialog.tsx:179 -msgid "Your name, avatar, and the name of the group chat will be visible to everyone." -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." @@ -13623,11 +14295,11 @@ msgstr "已成功變更您的密碼!往後請使用您的新密碼登入 Blues msgid "Your password must be at least 8 characters long." msgstr "您輸入的密碼必須至少包含 8 個字元。" -#: src/view/com/composer/Composer.tsx:1046 +#: src/view/com/composer/Composer.tsx:1141 msgid "Your post was sent" msgstr "已發布您的貼文" -#: src/view/com/composer/Composer.tsx:1043 +#: src/view/com/composer/Composer.tsx:1138 msgid "Your posts were sent" msgstr "已發布您的貼文" @@ -13635,7 +14307,7 @@ msgstr "已發布您的貼文" msgid "Your preferred language" msgstr "您的偏好語言" -#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:100 +#: src/screens/Onboarding/StepFinished/ValuePropositionPager.tsx:102 #: src/screens/Onboarding/StepFinished/ValuePropositionPager.web.tsx:53 msgid "Your profile picture" msgstr "您的大頭貼照" @@ -13648,12 +14320,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 "其他 Bluesky 用戶將無法再看到您的個人檔案、貼文、動態源和列表。您隨時都可以登入以重新啟用您的帳號。" -#: src/view/com/composer/Composer.tsx:1045 +#: src/view/com/composer/Composer.tsx:1140 msgid "Your reply was sent" msgstr "已發布您的回覆" #. placeholder {0}: state.selectedLabeler?.creator.displayName -#: src/components/moderation/ReportDialog/index.tsx:517 +#: src/components/moderation/ReportDialog/index.tsx:519 msgid "Your report will be sent to <0>{0}." msgstr "您的檢舉將提交至 <0>{0}。" @@ -13661,7 +14333,7 @@ msgstr "您的檢舉將提交至 <0>{0}。" msgid "Your selected interests help us serve you content you care about." msgstr "您選擇的興趣主題可以協助我們提供更多您想看到的內容。" -#: src/view/com/composer/Composer.tsx:1350 +#: src/view/com/composer/Composer.tsx:1469 msgid "Your thread has empty posts that will be skipped. The remaining posts will be published as a thread." msgstr "您的討論串中包含空白貼文,繼續發布將跳過這些內容。其餘貼文會重新整理成完整的討論串發布。" diff --git a/src/routes.ts b/src/routes.ts index f7e73ff2c2..87b58e0d07 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -40,6 +40,8 @@ export const router = new Router({ Debug: '/sys/debug', DebugMod: '/sys/debug-mod', Log: '/sys/log', + // invite friends + InviteScanner: '/invite/scan', // settings LanguageSettings: '/settings/language', AppPasswords: '/settings/app-passwords', diff --git a/src/screens/Messages/ChatList.tsx b/src/screens/Messages/ChatList.tsx index 83c4b0c004..1a5aa6c7b2 100644 --- a/src/screens/Messages/ChatList.tsx +++ b/src/screens/Messages/ChatList.tsx @@ -1,13 +1,14 @@ import {useCallback, useEffect, useMemo, useRef, useState} from 'react' import {View} from 'react-native' import {useAnimatedRef} from 'react-native-reanimated' -import {type ChatBskyActorGetStatus, type ChatBskyConvoDefs} from '@atproto/api' +import {type ChatBskyActorGetStatus, ChatBskyConvoDefs} from '@atproto/api' import {Trans, useLingui} from '@lingui/react/macro' import {useFocusEffect, useIsFocused} from '@react-navigation/native' import {type NativeStackScreenProps} from '@react-navigation/native-stack' import {useAppState} from '#/lib/appState' import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' +import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {useRequireEmailVerification} from '#/lib/hooks/useRequireEmailVerification' import {type MessagesTabNavigatorParams} from '#/lib/routes/types' import {cleanError} from '#/lib/strings/errors' @@ -16,7 +17,6 @@ import {listenSoftReset} from '#/state/events' import {MESSAGE_SCREEN_POLL_INTERVAL} from '#/state/messages/convo/const' import {useMessagesEventBus} from '#/state/messages/events' import {useChatActorStatusQuery} from '#/state/queries/messages/get-status' -import {useLeftConvos} from '#/state/queries/messages/leave-conversation' import {useListConvosQuery} from '#/state/queries/messages/list-conversations' import {EmptyState} from '#/view/com/util/EmptyState' import {List, type ListRef} from '#/view/com/util/List' @@ -42,7 +42,7 @@ import {Link} from '#/components/Link' import {ListFooter} from '#/components/Lists' import {Text} from '#/components/Typography' import {useAgeAssurance} from '#/ageAssurance' -import {IS_NATIVE} from '#/env' +import {IS_NATIVE, IS_WEB} from '#/env' import {ChatDisabled} from './components/ChatDisabled' import {ChatListItem} from './components/ChatListItem' import {InboxRequests} from './components/InboxRequests' @@ -101,6 +101,12 @@ export function MessagesScreenInner({navigation, route}: Props) { const newChatControl = useDialogControl() const {data: chatStatus} = useChatActorStatusQuery() const pushToConversation = route.params?.pushToConversation + const pushToNewGroupChat = route.params?.pushToNewGroupChat + // Tracks whether the next new-chat dialog open should start directly on the + // group-chat creation step. Set when deep-linked via `pushToNewGroupChat`, + // and reset to `false` whenever the dialog is opened through the normal FAB/ + // button path so it never gets stuck in group mode. + const [startNewChatInGroupChat, setStartNewChatInGroupChat] = useState(false) // Whenever we have `pushToConversation` set, it means we pressed a notification for a chat without being on // this tab. We should immediately push to the conversation after pressing the notification. @@ -138,6 +144,7 @@ export function MessagesScreenInner({navigation, route}: Props) { ) const openChatControl = useCallback(() => { + setStartNewChatInGroupChat(false) newChatControl.open() }, [newChatControl]) @@ -150,6 +157,50 @@ export function MessagesScreenInner({navigation, route}: Props) { ], }) + // Deep link into the group-chat creation step of the new-chat dialog. Mirrors + // the `pushToConversation` pattern: open the dialog (respecting the same + // email-verification gating as the normal new-chat button) starting directly + // in group mode, then clear the param so it can fire again later. + const openGroupChatControl = useCallback(() => { + setStartNewChatInGroupChat(true) + newChatControl.open() + }, [newChatControl]) + const wrappedOpenGroupChatControl = requireEmailVerification( + openGroupChatControl, + { + instructions: [ + + Before you can message another user, you must first verify your email. + , + ], + }, + ) + // Stable reference to the (otherwise per-render) opener so the effect below + // doesn't list it as a dependency - if it did, clearing the param would + // re-run the effect and its cleanup would cancel the pending open. + const openGroupChat = useNonReactiveCallback(wrappedOpenGroupChatControl) + // Deep link into the group-chat creation step of the new-chat dialog. The + // dialog control isn't attached synchronously when navigating onto this + // screen, so defer the open by a tick. We clear the param *after* opening + // (inside the timeout) so clearing doesn't cancel the pending open. + useEffect(() => { + if (!pushToNewGroupChat) return + const timeout = setTimeout(() => { + openGroupChat() + if (IS_WEB) { + // `navigation.setParams({pushToNewGroupChat: undefined})` serializes the + // literal string "undefined" into the query on web (see router build()), + // so strip the param with the history API instead. + const url = new URL(window.location.href) + url.searchParams.delete('pushToNewGroupChat') + history.replaceState(null, '', url.pathname + url.search + url.hash) + } else { + navigation.setParams({pushToNewGroupChat: undefined}) + } + }, 100) + return () => clearTimeout(timeout) + }, [navigation, pushToNewGroupChat, openGroupChat]) + if (isWithinSplitView) { return ( <> @@ -173,7 +224,12 @@ export function MessagesScreenInner({navigation, route}: Props) { } style={[a.h_full, a.justify_center, a.pb_5xl]} /> - + setStartNewChatInGroupChat(false)} + /> ) } @@ -182,7 +238,12 @@ export function MessagesScreenInner({navigation, route}: Props) {
- + setStartNewChatInGroupChat(false)} + /> ) } @@ -198,6 +259,7 @@ export function ChatList({ }) { const t = useTheme() const {t: l} = useLingui() + const aa = useAgeAssurance() const scrollElRef: ListRef = useAnimatedRef() const {isWithinSplitView} = useIsWithinSplitView() @@ -230,19 +292,15 @@ export function ChatList({ const {refetch: refetchInbox} = useListConvosQuery({ status: 'request', + kind: aa.flags.groupChatDisabled ? 'direct' : 'all', }) useRefreshOnFocus(refetch) useRefreshOnFocus(refetchInbox) - const leftConvos = useLeftConvos() - const conversations = useMemo(() => { if (data?.pages) { - const conversations = data.pages - .flatMap(page => page.convos) - // filter out convos that are actively being left - .filter(convo => !leftConvos.includes(convo.id)) + const conversations = data.pages.flatMap(page => page.convos) return conversations.map( convo => @@ -254,7 +312,7 @@ export function ChatList({ ) satisfies ListItem[] } return [] - }, [data, leftConvos, selectedChat]) + }, [data, selectedChat]) const onRefresh = useCallback(async () => { setIsPTRing(true) @@ -449,13 +507,20 @@ export function Header({ }) { const {t: l} = useLingui() const {gtMobile} = useBreakpoints() + const aa = useAgeAssurance() const requireEmailVerification = useRequireEmailVerification() - const leftConvos = useLeftConvos() + const {isWithinSplitView} = useIsWithinSplitView() + + // In split view, the left column (and this header) stays mounted while the + // right column shows the selected route. Pushing would stack duplicate routes + // on repeated clicks, so navigate instead to dedupe by route + params. + const action = isWithinSplitView ? 'navigate' : 'push' const {data: unreadInboxData, hasNextPage: hasMoreRequests} = useListConvosQuery({ status: 'request', readState: 'unread', + kind: aa.flags.groupChatDisabled ? 'direct' : 'all', }) const inboxAllConvos = @@ -463,9 +528,11 @@ export function Header({ .flatMap(page => page.convos) .filter( convo => - !leftConvos.includes(convo.id) && !convo.muted && - convo.members.every(member => member.handle !== 'missing.invalid'), + convo.members.every(member => member.handle !== 'missing.invalid') && + (ChatBskyConvoDefs.isGroupConvo(convo.kind) + ? !aa.flags.groupChatDisabled + : true), ) ?? [] const openChatControl = useCallback(() => { @@ -494,9 +561,11 @@ export function Header({ count={inboxAllConvos.length} more={hasMoreRequests} variant="solid" + action={action} /> convoState.error.retry()} - sideBorders={false} /> ) @@ -180,6 +177,12 @@ function InnerReady({ const {needsEmailVerification} = useEmail() const emailDialogControl = useEmailDialogControl() + const unreadRequestCount = + convo?.kind === 'group' && ChatBskyConvoDefs.isGroupConvo(convo.view.kind) + ? (convo.view.kind.unreadJoinRequestCount ?? 0) + : 0 + const {mutate: markJoinRequestsRead} = useMarkJoinRequestsRead(convo?.view.id) + /** * Must be non-reactive, otherwise the update to open the global dialog will * cause a re-render loop. @@ -259,13 +262,31 @@ function InnerReady({ {IS_LIQUID_GLASS ? ( {header} ) : ( - header + {header} )} + + {isActive && convo?.kind === 'group' && unreadRequestCount > 0 ? ( + { + markJoinRequestsRead() + }} + onPress={() => { + markJoinRequestsRead() + navigation.navigate('MessagesJoinRequests', { + conversation: convo.view.id, + }) + }} + /> + ) : null} + {isActive && ( )} - - {!IS_INTERNAL && convo?.kind === 'group' && } ) } - -function GroupChatGate() { - const {t: l} = useLingui() - const ax = useAnalytics() - const navigation = useNavigation() - - const groupChatGateDialogControl = Dialog.useDialogControl() - - const isGatedGroupChat = !ax.features.enabled(ax.features.GroupChatsEnable) - - useEffect(() => { - if (isGatedGroupChat) { - setTimeout(() => groupChatGateDialogControl.open()) - } - }, [isGatedGroupChat, groupChatGateDialogControl]) - - const hasBeenReleased = ax.features.enabled( - ax.features.GroupChatsHasBeenReleased, - ) - - const isAlreadyGoingBackRef = useRef(false) - const onGoBack = () => { - if (isAlreadyGoingBackRef.current) return - isAlreadyGoingBackRef.current = true - if (navigation.canGoBack()) { - navigation.goBack() - } else { - navigation.replace('Messages', {animation: 'pop'}) - } - } - - return ( - - - - - 🐴 - - - - {hasBeenReleased ? ( - Group chats are now available - ) : ( - Group chats are not yet available - )} - - - {hasBeenReleased ? ( - Update your app to the latest version to join in! - ) : ( - - Hold your horses! This feature isn't available to you yet. Please - check back later. - - )} - - - - - - - ) -} diff --git a/src/screens/Messages/ConversationSettings/AddMembersLink.tsx b/src/screens/Messages/ConversationSettings/AddMembersLink.tsx index c52751fb06..940d5c6bba 100644 --- a/src/screens/Messages/ConversationSettings/AddMembersLink.tsx +++ b/src/screens/Messages/ConversationSettings/AddMembersLink.tsx @@ -15,6 +15,7 @@ import {PlusLarge_Stroke2_Corner0_Rounded as PlusIcon} from '#/components/icons/ import {Loader} from '#/components/Loader' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' export function AddMembersLink({ convo, @@ -25,6 +26,7 @@ export function AddMembersLink({ }) { const t = useTheme() const {t: l} = useLingui() + const ax = useAnalytics() const addMembersControl = Dialog.useDialogControl() @@ -33,6 +35,7 @@ export function AddMembersLink({ convoId, { onSuccess: data => { + ax.metric('groupchat:owner:inviteMember', {convoId}) addMembersControl.close(() => { const members = data.addedMembers ?? [] diff --git a/src/screens/Messages/ConversationSettings/Member.tsx b/src/screens/Messages/ConversationSettings/Member.tsx index 9786e69f55..20cc0fee52 100644 --- a/src/screens/Messages/ConversationSettings/Member.tsx +++ b/src/screens/Messages/ConversationSettings/Member.tsx @@ -7,18 +7,22 @@ import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-disp import {logger} from '#/logger' import {useProfileShadow} from '#/state/cache/profile-shadow' import {useModerationOpts} from '#/state/preferences/moderation-opts' +import {useRemoveFromGroupChat} from '#/state/queries/messages/remove-from-group' import {useProfileFollowMutationQueue} from '#/state/queries/profile' import {useRequireAuth, useSession} from '#/state/session' import {atoms as a, native, useTheme, web} from '#/alf' +import {Button, ButtonText} from '#/components/Button' import { type ConvoWithDetails, type GroupConvoMember, } from '#/components/dms/util' import {createStaticClick, SimpleInlineLinkText} from '#/components/Link' import * as ProfileCard from '#/components/ProfileCard' +import * as Prompt from '#/components/Prompt' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' import {MemberMenu} from './MemberMenu' +import {RemoveMemberPrompt} from './prompts' import {StatusBadge} from './StatusBadge' import {SubtleHoverWrapper} from './SubtleHoverWrapper' @@ -45,6 +49,14 @@ export function Member({ const [queueFollow] = useProfileFollowMutationQueue(profile, 'GroupChat') const requireAuth = useRequireAuth() + const removeMemberPrompt = Prompt.usePromptControl() + const {mutate: removeMembers} = useRemoveFromGroupChat(convo.view.id, { + onError: e => { + logger.error('Failed to remove group chat member', {message: e}) + Toast.show(l`Failed to remove group chat member`, {type: 'error'}) + }, + }) + const isFollowing = !!profile.viewer?.following const handleFollow = () => { @@ -101,6 +113,9 @@ export function Member({ )}` : l`Added by invite link` + // Surface a prominent remove button to the owner for blocked members. + const showRemoveButton = isOwner && !isSelf && !!isBlockedOrBlocking(profile) + return ( @@ -137,7 +152,17 @@ export function Member({ - {isSelf || isFollowing || isBlockedOrBlocking(profile) ? null : ( + {showRemoveButton ? ( + + ) : isSelf || isFollowing || isBlockedOrBlocking(profile) ? null : ( + {/* Mounted outside the showRemoveButton conditional: confirming the + prompt optimistically drops this row, so gating the prompt on the + button would unmount it mid-close and race the dismiss animation. */} + removeMembers({members: [profile.did]})} + /> ) } diff --git a/src/screens/Messages/ConversationSettings/MemberMenu.tsx b/src/screens/Messages/ConversationSettings/MemberMenu.tsx index c13835a85a..f128951f8f 100644 --- a/src/screens/Messages/ConversationSettings/MemberMenu.tsx +++ b/src/screens/Messages/ConversationSettings/MemberMenu.tsx @@ -12,7 +12,7 @@ import {useGetConvoForMembers} from '#/state/queries/messages/get-convo-for-memb import {useRemoveFromGroupChat} from '#/state/queries/messages/remove-from-group' import {useProfileBlockMutationQueue} from '#/state/queries/profile' import {atoms as a, useTheme} from '#/alf' -import {type ConvoWithDetails} from '#/components/dms/util' +import {canBeMessaged, type ConvoWithDetails} from '#/components/dms/util' import {ArrowBoxLeft_Stroke2_Corner0_Rounded as ArrowBoxLeftIcon} from '#/components/icons/ArrowBoxLeft' import {DotGrid3x1_Stroke2_Corner0_Rounded as EllipsisIcon} from '#/components/icons/DotGrid' import {Message_Stroke2_Corner0_Rounded as MessageIcon} from '#/components/icons/Message' @@ -22,11 +22,12 @@ import { PersonX_Stroke2_Corner0_Rounded as PersonXIcon, } from '#/components/icons/Person' import * as Menu from '#/components/Menu' +import {BlockDialog} from '#/components/moderation/BlockDialog' import * as Prompt from '#/components/Prompt' import * as Toast from '#/components/Toast' import {useAnalytics} from '#/analytics' import type * as bsky from '#/types/bsky' -import {BlockMemberPrompt} from './prompts' +import {RemoveMemberPrompt} from './prompts' import {StatusBadge} from './StatusBadge' export function MemberMenu({ @@ -38,7 +39,7 @@ export function MemberMenu({ }: { convo: ConvoWithDetails profile: Shadow - type: 'owner' | 'standard' | 'invited' + type: 'owner' | 'standard' displayName: string isOwner: boolean }) { @@ -50,6 +51,7 @@ export function MemberMenu({ const requireEmailVerification = useRequireEmailVerification() const blockMemberPrompt = Prompt.usePromptControl() + const removeMemberPrompt = Prompt.usePromptControl() const [menuDidOpen, setMenuDidOpen] = useState(false) const {data: convoAvailability} = useGetConvoAvailabilityQuery(profile.did, { @@ -66,6 +68,9 @@ export function MemberMenu({ }) const convoId = convo.view.id const {mutate: removeMembers} = useRemoveFromGroupChat(convoId, { + onSuccess: () => { + ax.metric('groupchat:owner:kickMember', {convoId}) + }, onError: e => { logger.error('Failed to remove group chat member', {message: e}) Toast.show(l`Failed to remove group chat member`, {type: 'error'}) @@ -127,11 +132,9 @@ export function MemberMenu({ } } + const canMessageMember = canBeMessaged(profile) const canBlockMember = type === 'owner' || type === 'standard' - const canRemoveMember = isOwner && type !== 'invited' - // TODO Need to integrate this. -dsb - const canUninviteMember = false - // const canUninviteMember = isOwner && type === 'invited' + const canRemoveMember = isOwner return ( <> @@ -147,7 +150,7 @@ export function MemberMenu({ props.onPress() }, } - return type === 'owner' || type === 'invited' ? ( + return type === 'owner' ? ( Go to profile - - - - Message - - + {canMessageMember ? ( + + + + Message + + + ) : null} @@ -227,31 +232,26 @@ export function MemberMenu({ removeMembers({members: [profile.did]})}> + onPress={removeMemberPrompt.open}> Remove from chat ) : null} - {canUninviteMember ? ( - {}}> - - - Uninvite - - - ) : null} - void handleBlockMember()} + profile={profile} + onBlock={handleBlockMember} + currentConvoId={convoId} + /> + removeMembers({members: [profile.did]})} /> ) diff --git a/src/screens/Messages/ConversationSettings/index.tsx b/src/screens/Messages/ConversationSettings/index.tsx index 5e4ad91424..5576f28674 100644 --- a/src/screens/Messages/ConversationSettings/index.tsx +++ b/src/screens/Messages/ConversationSettings/index.tsx @@ -1,24 +1,27 @@ -import {useState} from 'react' -import {View} from 'react-native' +import {useEffect, useState} from 'react' +import {Pressable, View} from 'react-native' import { ChatBskyActorDefs, ChatBskyConvoDefs, + ChatBskyConvoUnlockConvo, type ModerationOpts, } from '@atproto/api' import {Trans, useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' +import {HITSLOP_10} from '#/lib/constants' import {useBottomBarOffset} from '#/lib/hooks/useBottomBarOffset' import {useInitialNumToRender} from '#/lib/hooks/useInitialNumToRender' +import {isBlockedOrBlocking} from '#/lib/moderation/blocked-and-muted' +import {useCallOnce} from '#/lib/once' import { type CommonNavigatorParams, type NativeStackScreenProps, type NavigationProp, } from '#/lib/routes/types' import {logger} from '#/logger' -import {ConvoProvider, isConvoActive, useConvo} from '#/state/messages/convo' -import {ConvoStatus} from '#/state/messages/convo/types' import {useModerationOpts} from '#/state/preferences/moderation-opts' +import {useConvoQuery} from '#/state/queries/messages/conversation' import {useEditGroupChatName} from '#/state/queries/messages/edit-group-chat-name' import {useLeaveConvo} from '#/state/queries/messages/leave-conversation' import {useListConvoMembersQuery} from '#/state/queries/messages/list-convo-members' @@ -36,6 +39,7 @@ import {ReportConversationDialog} from '#/components/dms/ReportConversationDialo import { type ConvoWithDetails, type GroupConvoMember, + parseConvoView, } from '#/components/dms/util' import {Error} from '#/components/Error' import {ArrowBoxLeft_Stroke2_Corner0_Rounded as ArrowBoxLeftIcon} from '#/components/icons/ArrowBoxLeft' @@ -53,12 +57,19 @@ import {Loader} from '#/components/Loader' import * as Prompt from '#/components/Prompt' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' +import {IS_WEB} from '#/env' import * as bsky from '#/types/bsky' import {InviteLinkDialog} from '../components/InviteLinkDialog' import {AddMembersLink} from './AddMembersLink' import {Member, MemberPlaceholder} from './Member' import {MembersAndRequests} from './MembersAndRequests' -import {EditNamePrompt, LeaveChatPrompt, LockChatPrompt} from './prompts' +import { + EditNamePrompt, + LeaveAndLockChatPrompt, + LeaveChatPrompt, + LockChatPrompt, +} from './prompts' type Item = | {type: 'MEMBERS_AND_REQUESTS'; key: string} @@ -80,12 +91,23 @@ type Props = NativeStackScreenProps< > export function MessagesConversationSettingsScreen({route}: Props) { + const navigation = useNavigation() + const convoId = route.params.conversation return ( - + { + if (IS_WEB && !navigation.canGoBack()) { + evt.preventDefault() + navigation.navigate('MessagesConversation', { + conversation: convoId, + }) + } + }} + /> Group chat settings @@ -93,31 +115,33 @@ export function MessagesConversationSettingsScreen({route}: Props) { - - - + ) } -function SettingsInner() { +function SettingsInner({convoId}: {convoId: string}) { const {t: l} = useLingui() - const convoState = useConvo() const navigation = useNavigation() const moderationOpts = useModerationOpts() + const {currentAccount} = useSession() + const {data: convoData, error, refetch} = useConvoQuery({convoId}) - if (convoState.status === ConvoStatus.Error) { + const convo = convoData + ? parseConvoView(convoData, currentAccount?.did) + : null + + if (error) { return ( convoState.error.retry()} - sideBorders={false} + onRetry={() => refetch()} /> ) } - if (!convoState.convo || !moderationOpts) { + if (!convo || !moderationOpts) { return ( @@ -125,7 +149,7 @@ function SettingsInner() { ) } - if (convoState.convo.kind !== 'group') { + if (convo.kind !== 'group') { return ( - ) + return } function keyExtractor(item: Item) { @@ -170,11 +188,9 @@ function isGroupMember( function GroupSettings({ convo, moderationOpts, - isReady, }: { convo: Extract moderationOpts: ModerationOpts - isReady: boolean }) { const [isPTRing, setIsPTRing] = useState(false) @@ -209,6 +225,12 @@ function GroupSettings({ const bIsSelf = b.did === currentAccount?.did if (aIsOwner !== bIsOwner) return aIsOwner ? -1 : 1 if (aIsSelf !== bIsSelf) return aIsSelf ? -1 : 1 + // Surface blocked members to the owner so they can be removed. + if (isOwner) { + const aBlocked = !!isBlockedOrBlocking(a) + const bBlocked = !!isBlockedOrBlocking(b) + if (aBlocked !== bBlocked) return aBlocked ? -1 : 1 + } return 0 }) @@ -254,7 +276,7 @@ function GroupSettings({ /> ) case 'ADD_MEMBERS_LINK': - return + return case 'CHAT_MEMBER': return ( } renderItem={renderItem} @@ -311,20 +332,28 @@ function SettingsHeader({ convo, isOwner, moderationOpts, - isReady, }: { convo: Extract isOwner: boolean moderationOpts: ModerationOpts - isReady: boolean }) { const t = useTheme() const {i18n, t: l} = useLingui() + const ax = useAnalytics() const navigation = useNavigation() + const convoId = convo.view.id + const groupName = convo.details.name const [newGroupName, setNewGroupName] = useState(groupName) + const [editNameInputKey, setEditNameInputKey] = useState(0) + + const openEditNamePrompt = () => { + setNewGroupName(groupName) + setEditNameInputKey(k => k + 1) + editNamePrompt.open() + } const lockStatus = convo.details.lockStatus @@ -333,9 +362,17 @@ function SettingsHeader({ const reportSubjectDid = convo.primaryMember?.did + const logViewOnce = useCallOnce() + useEffect(() => { + logViewOnce(() => { + ax.metric('groupchat:settings:view', {convoId, isOwner}) + }) + }, [ax, convoId, isOwner, logViewOnce]) + const {mutate: editGroupName, isPending: isEditingName} = - useEditGroupChatName(convo.view.id, { + useEditGroupChatName(convoId, { onSuccess: () => { + ax.metric('groupchat:owner:editName', {convoId}) Toast.show(l({message: 'Group chat name updated', context: 'toast'})) }, onError: e => { @@ -345,11 +382,13 @@ function SettingsHeader({ }, }) - const {mutate: muteConvo, isPending: isMuting} = useMuteConvo(convo.view.id, { + const {mutate: muteConvo, isPending: isMuting} = useMuteConvo(convoId, { onSuccess: data => { if (data.convo.muted) { + ax.metric('groupchat:mute', {convoId}) Toast.show(l({message: 'Group chat muted', context: 'toast'})) } else { + ax.metric('groupchat:unmute', {convoId}) Toast.show(l({message: 'Group chat unmuted', context: 'toast'})) } }, @@ -359,76 +398,106 @@ function SettingsHeader({ }, }) - const {mutate: leaveConvo, isPending: isLeaving} = useLeaveConvo( - convo.view.id, - { - onSuccess: () => { - navigation.replace('Messages', {animation: 'pop'}) - }, - onError: e => { - logger.error('Failed to leave group chat', {message: e}) - Toast.show( - l({message: 'Failed to leave group chat', context: 'toast'}), - {type: 'error'}, - ) - }, + const {mutate: leaveConvo, isPending: isLeaving} = useLeaveConvo(convoId, { + onSuccess: () => { + ax.metric('groupchat:leave', {convoId, isOwner}) + navigation.replace('Messages', {animation: 'pop'}) }, - ) + onError: e => { + logger.error('Failed to leave group chat', {message: e}) + Toast.show(l({message: 'Failed to leave group chat', context: 'toast'}), { + type: 'error', + }) + }, + }) - const {mutate: lockConvo, isPending: isLocking} = useLockConvo( - convo.view.id, - { - onSuccess: data => { - if (!ChatBskyConvoDefs.isGroupConvo(data.convo.kind)) return - if (data.convo.kind.lockStatus === 'locked') { - Toast.show(l({message: 'Group chat locked', context: 'toast'})) - } else { - Toast.show(l({message: 'Group chat unlocked', context: 'toast'})) - } - }, - onError: (e, {lock}) => { - if (lock) { - logger.error('Failed to lock group chat', {message: e}) - Toast.show(l`Failed to lock group chat`, {type: 'error'}) - } else { - logger.error('Failed to unlock group chat', {message: e}) - Toast.show(l`Failed to unlock group chat`, {type: 'error'}) - } - }, + const { + mutate: lockConvo, + mutateAsync: lockConvoAsync, + isPending: isLocking, + } = useLockConvo(convoId, { + onSuccess: (data, {silent}) => { + if (!ChatBskyConvoDefs.isGroupConvo(data.convo.kind)) return + if (silent) return + if (data.convo.kind.lockStatus === 'locked') { + ax.metric('groupchat:owner:lock', {convoId}) + Toast.show(l({message: 'Group chat locked', context: 'toast'})) + } else { + ax.metric('groupchat:owner:unlock', {convoId}) + Toast.show(l({message: 'Group chat unlocked', context: 'toast'})) + } }, - ) + onError: (e, {lock}) => { + if (lock) { + logger.error('Failed to lock group chat', {message: e}) + Toast.show(l`Failed to lock group chat`, {type: 'error'}) + } else if ( + e instanceof ChatBskyConvoUnlockConvo.ConvoLockedByModerationError + ) { + Toast.show(l`This chat is locked by a moderation action`, { + type: 'error', + }) + } else { + logger.error('Failed to unlock group chat', {message: e}) + Toast.show(l`Failed to unlock group chat`, {type: 'error'}) + } + }, + }) + + const leaveAndLockConvo = async () => { + try { + if (lockStatus === 'unlocked') { + await lockConvoAsync({lock: true, silent: true}) + } + } catch { + // Handled by onError in useLockConvo + return + } + // Owners can only leave a locked chat + leaveConvo() + } const inviteLinkDialog = Dialog.useDialogControl() const editNamePrompt = Prompt.usePromptControl() const lockChatPrompt = Prompt.usePromptControl() const leaveChatPrompt = Prompt.usePromptControl() + const leaveAndLockChatPrompt = Prompt.usePromptControl() const reportControl = Prompt.usePromptControl() const deleteControl = Prompt.usePromptControl() const createdAt = new Date(convo.details.createdAt) - const canLockGroupChat = isOwner && lockStatus !== 'locked-permanently' + // A lock forced by a moderation action cannot be undone by the owner. + const canLockGroupChat = + isOwner && + lockStatus !== 'locked-permanently' && + !convo.details.lockStatusModerationOverride + + const groupNameComponent = ( + + {groupName} + + ) return ( <> - + - - {groupName} - + {isOwner ? ( + + {groupNameComponent} + + ) : ( + groupNameComponent + )} {isOwner ? ( { - setNewGroupName(groupName) - editNamePrompt.open() - }} + onPress={openEditNamePrompt} /> ) : null} {isJoinLinkEnabled ? ( ) : null} - {!isOwner ? ( - - ) : null} + editGroupName({name: newGroupName})} /> @@ -553,6 +620,13 @@ function SettingsHeader({ groupName={groupName} onConfirm={leaveConvo} /> + { + void leaveAndLockConvo() + }} + /> {reportSubjectDid ? ( <> void onConfirm: () => void }) { + const t = useTheme() const {t: l} = useLingui() + const nameTooLong = isOverMaxGraphemeCount({ + text: value, + maxCount: MAX_GROUP_NAME_GRAPHEME_LENGTH, + }) + return ( <> @@ -27,24 +43,46 @@ export function EditNamePrompt({ Edit group name - + + {nameTooLong ? ( + + + Group name is too long.{' '} + + + + ) : null} - + @@ -97,11 +135,13 @@ export function LeaveChatPrompt({ ) } -export function BlockMemberPrompt({ +export function LeaveAndLockChatPrompt({ control, + groupName, onConfirm, }: { control: Dialog.DialogOuterProps['control'] + groupName: string onConfirm: () => void }) { const {t: l} = useLingui() @@ -109,11 +149,36 @@ export function BlockMemberPrompt({ return ( + ) +} + +export function RemoveMemberPrompt({ + control, + displayName, + onConfirm, +}: { + control: Dialog.DialogOuterProps['control'] + displayName: string + onConfirm: () => void +}) { + const {t: l} = useLingui() + + return ( + ) } diff --git a/src/screens/Messages/Inbox.tsx b/src/screens/Messages/Inbox.tsx index 55d3b0f4d7..2fb58253a5 100644 --- a/src/screens/Messages/Inbox.tsx +++ b/src/screens/Messages/Inbox.tsx @@ -1,8 +1,9 @@ import {useCallback, useMemo, useState} from 'react' import {View} from 'react-native' import { - type ChatBskyConvoDefs, - type ChatBskyConvoListConvos, + ChatBskyConvoDefs, + type ChatBskyConvoListConvoRequests, + ChatBskyGroupDefs, } from '@atproto/api' import {Trans, useLingui} from '@lingui/react/macro' import {useFocusEffect, useNavigation} from '@react-navigation/native' @@ -22,14 +23,12 @@ import {cleanError} from '#/lib/strings/errors' import {logger} from '#/logger' import {MESSAGE_SCREEN_POLL_INTERVAL} from '#/state/messages/convo/const' import {useMessagesEventBus} from '#/state/messages/events' -import {useLeftConvos} from '#/state/queries/messages/leave-conversation' -import {useListConvosQuery} from '#/state/queries/messages/list-conversations' +import {useListConvoRequests} from '#/state/queries/messages/list-conversation-requests' import {useUpdateAllRead} from '#/state/queries/messages/update-all-read' import {EmptyState} from '#/view/com/util/EmptyState' -import {FAB} from '#/view/com/util/fab/FAB' import {List} from '#/view/com/util/List' import {ChatListLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' -import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' +import {atoms as a, useTheme, web} from '#/alf' import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen' import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' import {Button, ButtonIcon, ButtonText} from '#/components/Button' @@ -44,11 +43,16 @@ import {ListFooter} from '#/components/Lists' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' import {IS_NATIVE} from '#/env' -import {RequestListItem} from './components/RequestListItem' +import {IncomingRequestListItem} from './components/IncomingRequestListItem' +import {OutgoingRequestListItem} from './components/OutgoingRequestListItem' import {useIsWithinSplitView} from './components/splitView/context' type Props = NativeStackScreenProps +type RequestItem = + | {type: 'incoming'; view: ChatBskyConvoDefs.ConvoView} + | {type: 'outgoing'; view: ChatBskyGroupDefs.JoinRequestConvoView} + export function MessagesInboxScreen(props: Props) { const {t: l} = useLingui() const aaCopy = useAgeAssuranceCopy() @@ -62,31 +66,32 @@ export function MessagesInboxScreen(props: Props) { } export function MessagesInboxScreenInner({}: Props) { - const {gtTablet} = useBreakpoints() - - const listConvosQuery = useListConvosQuery({status: 'request'}) + const listConvosQuery = useListConvoRequests() const {data} = listConvosQuery - const leftConvos = useLeftConvos() - - const conversations = useMemo(() => { - if (data?.pages) { - const convos = data.pages - .flatMap(page => page.convos) - // filter out convos that are actively being left - .filter(convo => !leftConvos.includes(convo.id)) - - return convos + const conversations = useMemo(() => { + if (!data?.pages) return [] + const items: RequestItem[] = [] + for (const page of data.pages) { + for (const item of page.requests) { + if (ChatBskyConvoDefs.isConvoView(item)) { + items.push({type: 'incoming', view: item}) + } else if (ChatBskyGroupDefs.isJoinRequestConvoView(item)) { + items.push({type: 'outgoing', view: item}) + } + } } - return [] - }, [data, leftConvos]) + return items + }, [data]) const hasUnreadConvos = useMemo(() => { return conversations.some( - conversation => - conversation.members.every( + item => + item.type === 'incoming' && + item.view.members.every( member => member.handle !== 'missing.invalid', - ) && conversation.unreadCount > 0, + ) && + item.view.unreadCount > 0, ) }, [conversations]) @@ -94,21 +99,16 @@ export function MessagesInboxScreenInner({}: Props) { - + Chat requests - {hasUnreadConvos && gtTablet ? ( - - ) : ( - - )} + {hasUnreadConvos ? : } ) @@ -117,14 +117,12 @@ export function MessagesInboxScreenInner({}: Props) { function RequestList({ listConvosQuery, conversations, - hasUnreadConvos, }: { listConvosQuery: UseInfiniteQueryResult< - InfiniteData, + InfiniteData, Error > - conversations: ChatBskyConvoDefs.ConvoView[] - hasUnreadConvos: boolean + conversations: RequestItem[] }) { const {t: l} = useLingui() const t = useTheme() @@ -284,46 +282,21 @@ function RequestList({ windowSize={11} desktopFixedHeight sideBorders={false} + contentContainerStyle={[web(a.py_sm)]} /> - {hasUnreadConvos && } ) } -function keyExtractor(item: ChatBskyConvoDefs.ConvoView) { - return item.id +function keyExtractor(item: RequestItem) { + return item.type === 'incoming' ? item.view.id : item.view.convoId } -function renderItem({item}: {item: ChatBskyConvoDefs.ConvoView}) { - return -} - -function MarkAllReadFAB() { - const {t: l} = useLingui() - const t = useTheme() - const {mutate: markAllRead} = useUpdateAllRead('request', { - onMutate: () => { - Toast.show(l`Marked all as read`, { - type: 'success', - }) - }, - onError: () => { - Toast.show(l`Failed to mark all requests as read`, { - type: 'error', - }) - }, - }) - - return ( - markAllRead()} - icon={} - accessibilityRole="button" - accessibilityLabel={l`Mark all as read`} - accessibilityHint="" - /> - ) +function renderItem({item}: {item: RequestItem}) { + if (item.type === 'incoming') { + return + } + return } function MarkAsReadHeaderButton() { diff --git a/src/screens/Messages/JoinRequest.tsx b/src/screens/Messages/JoinRequest.tsx index c6da1f91ec..6ce57a151b 100644 --- a/src/screens/Messages/JoinRequest.tsx +++ b/src/screens/Messages/JoinRequest.tsx @@ -1,6 +1,8 @@ +import {useEffect} from 'react' import {View} from 'react-native' import {ImageBackground} from 'expo-image' -import {moderateProfile} from '@atproto/api' +import {ChatBskyGroupDefs, moderateProfile} from '@atproto/api' +import {type ThemeName} from '@bsky.app/alf' import {Trans, useLingui} from '@lingui/react/macro' import {createSanitizedDisplayName} from '#/lib/moderation/create-sanitized-display-name' @@ -17,12 +19,26 @@ import {ChainLinkBroken_Stroke2_Corner0_Rounded as ChainLinkBrokenIcon} from '#/ import {PersonGroup_Stroke2_Corner2_Rounded as PersonGroupIcon} from '#/components/icons/Person' import {ProfileBadges} from '#/components/ProfileBadges' import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' const desktopDarkBg = require('../../../assets/images/chat-desktop-bg-dark.webp') +const desktopDimBg = require('../../../assets/images/chat-desktop-bg-dim.webp') const desktopLightBg = require('../../../assets/images/chat-desktop-bg-light.webp') const mobileDarkBg = require('../../../assets/images/chat-mobile-bg-dark.webp') +const mobileDimBg = require('../../../assets/images/chat-mobile-bg-dim.webp') const mobileLightBg = require('../../../assets/images/chat-mobile-bg-light.webp') +function getBackgroundImage(themeName: ThemeName, gtMobile: boolean) { + switch (themeName) { + case 'dark': + return gtMobile ? desktopDarkBg : mobileDarkBg + case 'dim': + return gtMobile ? desktopDimBg : mobileDimBg + default: + return gtMobile ? desktopLightBg : mobileLightBg + } +} + type Props = { setScreenState: (state: LoggedOutScreenState) => void } @@ -30,10 +46,15 @@ type Props = { export function JoinRequest({setScreenState}: Props) { const t = useTheme() const {t: l} = useLingui() + const ax = useAnalytics() const {gtMobile, gtTablet} = useBreakpoints() const moderationOpts = useModerationOpts() + useEffect(() => { + ax.metric('groupchat:landingPage:view', {hasSession: false}) + }, [ax]) + // Get code from context (logged-out only) const contextJoinRequest = useActiveGroupChatJoinRequest() const code = contextJoinRequest?.code @@ -43,18 +64,9 @@ export function JoinRequest({setScreenState}: Props) { hasSession: false, }) - const isDarkMode = t.name !== 'light' - const background = gtMobile - ? isDarkMode - ? desktopDarkBg - : desktopLightBg - : isDarkMode - ? mobileDarkBg - : mobileLightBg + const background = getBackgroundImage(t.name, gtMobile) - const requiresApproval = data?.joinLinkPreviews[0]?.requireApproval - const requiresFollow = - data?.joinLinkPreviews[0]?.joinRule === 'followedByOwner' + const joinLinkPreview = data?.joinLinkPreviews[0] return ( @@ -69,7 +81,9 @@ export function JoinRequest({setScreenState}: Props) { a.justify_center, a.align_center, ]}> - {error ? ( + {error || + (data && + !ChatBskyGroupDefs.isJoinLinkPreviewView(joinLinkPreview)) ? ( - {l`This invite link has expired`} + Chat invite link no longer available - ) : data && moderationOpts ? ( + ) : data && + moderationOpts && + ChatBskyGroupDefs.isJoinLinkPreviewView(joinLinkPreview) ? ( @@ -127,9 +136,11 @@ export function JoinRequest({setScreenState}: Props) { a.leading_snug, t.atoms.text_contrast_medium, ]}> - - {data.joinLinkPreviews[0].memberCount}/ - {data.joinLinkPreviews[0].memberLimit} + + {joinLinkPreview.memberCount}/ + {joinLinkPreview.memberLimit} @@ -142,7 +153,7 @@ export function JoinRequest({setScreenState}: Props) { a.font_bold, t.atoms.text, ]}> - {data.joinLinkPreviews[0].name} + {joinLinkPreview.name} @@ -166,17 +177,17 @@ export function JoinRequest({setScreenState}: Props) { By{' '} {createSanitizedDisplayName( - data.joinLinkPreviews[0].owner, + joinLinkPreview.owner, true, moderateProfile( - data.joinLinkPreviews[0].owner, + joinLinkPreview.owner, moderationOpts, ).ui('displayName'), )} @@ -190,7 +201,7 @@ export function JoinRequest({setScreenState}: Props) { t.atoms.text_contrast_medium, a.max_w_full, ]}> - {sanitizeHandle(data.joinLinkPreviews[0].owner.handle, '@')} + {sanitizeHandle(joinLinkPreview.owner.handle, '@')} - {requiresApproval + {joinLinkPreview.requireApproval ? l`Sign in to request access to this group chat.` : l`Sign in to accept invite.`}{' '} - {requiresFollow && + {joinLinkPreview.joinRule === 'followedByOwner' && l`Only people ${createSanitizedDisplayName( - data.joinLinkPreviews[0].owner, + joinLinkPreview.owner, true, - moderateProfile( - data.joinLinkPreviews[0].owner, - moderationOpts, - ).ui('displayName'), + moderateProfile(joinLinkPreview.owner, moderationOpts).ui( + 'displayName', + ), )} follows can join.`} diff --git a/src/screens/Messages/JoinRequests.tsx b/src/screens/Messages/JoinRequests.tsx index 98952aee34..ecb40ef9c3 100644 --- a/src/screens/Messages/JoinRequests.tsx +++ b/src/screens/Messages/JoinRequests.tsx @@ -42,6 +42,7 @@ import {Loader} from '#/components/Loader' import * as ProfileCard from '#/components/ProfileCard' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' import type * as bsky from '#/types/bsky' import {InviteLinkDialog} from './components/InviteLinkDialog' @@ -87,7 +88,6 @@ function JoinRequestsInner() { title={l`Something went wrong`} message={l`We couldn’t load this conversation’s join requests`} onRetry={() => convoState.error.retry()} - sideBorders={false} /> ) @@ -130,6 +130,7 @@ function JoinRequestsList({ }) { const t = useTheme() const {t: l} = useLingui() + const ax = useAnalytics() const moderationOpts = useModerationOpts() const bottomBarOffset = useBottomBarOffset() const {currentAccount} = useSession() @@ -137,10 +138,12 @@ function JoinRequestsList({ const queryClient = useQueryClient() const inviteLinkControl = Dialog.useDialogControl() + const convoId = convo.view.id + const getRemainingRequestCount = () => { const data = queryClient.getQueryData< InfiniteData - >(createListJoinRequestsQueryKey({convoId: convo.view.id})) + >(createListJoinRequestsQueryKey({convoId})) return data?.pages.reduce((sum, page) => sum + page.requests.length, 0) ?? 0 } @@ -173,12 +176,13 @@ function JoinRequestsList({ ) ?? 0 const {mutate: approveJoinRequest, isPending: isApprovePending} = - useJoinRequestMutation('approve', convo.view.id, { + useJoinRequestMutation('approve', convoId, { onSuccess: () => { + ax.metric('groupchat:owner:joinRequest:accept', {convoId}) Toast.show(l`Request approved.`) if (getRemainingRequestCount() < 1) { navigation.replace('MessagesConversationSettings', { - conversation: convo.view.id, + conversation: convoId, }) } }, @@ -205,12 +209,13 @@ function JoinRequestsList({ }) const {mutate: rejectJoinRequest, isPending: isRejectPending} = - useJoinRequestMutation('reject', convo.view.id, { + useJoinRequestMutation('reject', convoId, { onSuccess: () => { + ax.metric('groupchat:owner:joinRequest:reject', {convoId}) Toast.show(l`Request ignored.`) if (getRemainingRequestCount() < 1) { navigation.replace('MessagesConversationSettings', { - conversation: convo.view.id, + conversation: convoId, }) } }, @@ -475,14 +480,14 @@ function RejectButton({ return ( diff --git a/src/screens/Messages/Settings.tsx b/src/screens/Messages/Settings.tsx index f49311b0da..6c407a8301 100644 --- a/src/screens/Messages/Settings.tsx +++ b/src/screens/Messages/Settings.tsx @@ -13,6 +13,7 @@ import {AgeRestrictedScreen} from '#/components/ageAssurance/AgeRestrictedScreen import {useAgeAssuranceCopy} from '#/components/ageAssurance/useAgeAssuranceCopy' import * as Dialog from '#/components/Dialog' import {Divider} from '#/components/Divider' +import {resolveAllowGroupInvites} from '#/components/dms/util' import * as Toggle from '#/components/forms/Toggle' import {Bell_Stroke2_Corner0_Rounded as BellIcon} from '#/components/icons/Bell' import {Car_Stroke2_Corner2_Rounded as CarIcon} from '#/components/icons/Car' @@ -20,6 +21,7 @@ import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRightIcon} from '#/compon import * as Layout from '#/components/Layout' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' +import {useAgeAssurance} from '#/ageAssurance' import {useAnalytics} from '#/analytics' import {IS_NATIVE} from '#/env' import {useBackgroundNotificationPreferences} from '../../../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' @@ -45,6 +47,7 @@ export function MessagesSettingsScreenInner({}: Props) { const t = useTheme() const {t: l} = useLingui() const ax = useAnalytics() + const aa = useAgeAssurance() const {currentAccount} = useSession() const {data: profile} = useProfileQuery({ did: currentAccount!.did, @@ -53,7 +56,8 @@ export function MessagesSettingsScreenInner({}: Props) { const exportCarControl = Dialog.useDialogControl() - const isGroupChatEnabled = ax.features.enabled(ax.features.GroupChatsEnable) + const isGroupChatEnabled = !ax.features.enabled(ax.features.GroupChatsDisable) + const groupInvitesLocked = aa.flags.groupChatDisabled const allowMessagesFromOptions: {name: AllowIncoming; label: string}[] = [ { @@ -62,7 +66,7 @@ export function MessagesSettingsScreenInner({}: Props) { }, { name: 'following', - label: l({context: 'allow messages from', message: `Users I follow`}), + label: l({context: 'allow messages from', message: `People I follow`}), }, { name: 'none', @@ -79,7 +83,7 @@ export function MessagesSettingsScreenInner({}: Props) { name: 'following', label: l({ context: 'allow group chat invites from', - message: `Users I follow`, + message: `People I follow`, }), }, { @@ -191,17 +195,25 @@ export function MessagesSettingsScreenInner({}: Props) { a.leading_snug, t.atoms.text_contrast_high, ]}> - - You can continue ongoing conversations regardless of which - setting you choose. - + {groupInvitesLocked ? ( + + Group chats are only available to users 18 and over. + + ) : ( + + You can continue ongoing conversations regardless of which + setting you choose. + + )} diff --git a/src/screens/Messages/components/ChatEnded.tsx b/src/screens/Messages/components/ChatEnded.tsx index 1ee13b68d3..ccc08f1d93 100644 --- a/src/screens/Messages/components/ChatEnded.tsx +++ b/src/screens/Messages/components/ChatEnded.tsx @@ -1,6 +1,6 @@ import {Pressable} from 'react-native' import {Trans, useLingui} from '@lingui/react/macro' -import {StackActions, useNavigation} from '@react-navigation/native' +import {useNavigation} from '@react-navigation/native' import {HITSLOP_10} from '#/lib/constants' import {type NavigationProp} from '#/lib/routes/types' @@ -34,8 +34,7 @@ export function ChatEnded({ const {mutate: leaveConvo} = useLeaveConvo(convo.view.id, { onSuccess: () => { - // Settings > Chat > Chat list - navigation.dispatch(StackActions.pop(2)) + navigation.replace('Messages', {animation: 'pop'}) }, onError: e => { logger.error('Failed to leave group chat', {message: e}) diff --git a/src/screens/Messages/components/ChatFooter.tsx b/src/screens/Messages/components/ChatFooter.tsx index 97c5e53310..024ccb027b 100644 --- a/src/screens/Messages/components/ChatFooter.tsx +++ b/src/screens/Messages/components/ChatFooter.tsx @@ -31,6 +31,7 @@ export function ChatFooter({ style={[ a.flex_row, a.align_center, + a.flex_1, { minHeight: 32, }, @@ -40,7 +41,7 @@ export function ChatFooter({ fill={t.atoms.text_contrast_medium.color} style={[a.mr_sm]} /> - + {subheading ? ( moderateProfile(profile, moderationOpts), @@ -139,7 +140,7 @@ function DirectChatItem({ avatar={ } @@ -160,7 +161,7 @@ function DirectChatItem({ isBlockedAccount={moderation.blocked} showProfileBadges postAlerts={ - isWithinSplitView ? null : ( + isWithinLeftPanel ? null : ( @@ -204,8 +205,7 @@ function GroupChatItem({ avatar={ } title={chatName} @@ -214,15 +214,15 @@ function GroupChatItem({ primaryProfileModeration={moderation} isBlockedAccount={false} isDeletedAccount={false} - subtitle={ - convo.details.joinRequestCount - ? convo.details.joinRequestCount > 20 + requestInfo={ + convo.details.unreadJoinRequestCount + ? convo.details.unreadJoinRequestCount > JOIN_REQUESTS_THRESHOLD ? l({ - message: '20+ new join requests', + message: `${JOIN_REQUESTS_THRESHOLD}+ new join requests`, context: 'Displayed when there are more than 20 requests to join a group chat', }) - : plural(convo.details.joinRequestCount, { + : plural(convo.details.unreadJoinRequestCount, { one: '# new join request', other: '# new join requests', }) @@ -241,6 +241,7 @@ function BaseChatItem({ avatar, title, subtitle, + requestInfo, accessibilityHint, isDeletedAccount, isBlockedAccount, @@ -256,6 +257,7 @@ function BaseChatItem({ avatar: React.ReactNode title: string subtitle?: string + requestInfo?: string accessibilityHint: string isDeletedAccount: boolean isBlockedAccount: boolean @@ -275,13 +277,16 @@ function BaseChatItem({ const leaveConvoControl = useDialogControl() const {mutate: markAsRead} = useMarkAsReadMutation() const {gtMobile} = useBreakpoints() - const {isWithinSplitView} = useIsWithinSplitView() + const {isWithinLeftPanel} = useIsWithinSplitView() const playHaptic = useHaptics() const queryClient = useQueryClient() const hasUnread = - convo.view.unreadCount > 0 && + !selected && !isDeletedAccount && + (convo.view.unreadCount > 0 || + (convo.kind === 'group' && + (convo.details.unreadJoinRequestCount ?? 0) > 0)) && (convo.kind !== 'group' || convo.details.lockStatus === 'unlocked') const blockInfo = useMemo(() => { @@ -302,20 +307,13 @@ function BaseChatItem({ isDeletedAccount || (convo.kind === 'group' && convo.details.lockStatus !== 'unlocked') - const { - lastMessage, - LastMessageIcon, - lastMessageSentAt, - latestReportableMessage, - } = useMemo(() => { + const {lastMessage, LastMessageIcon, lastMessageSentAt} = useMemo(() => { let lastMessage = l`No messages yet` let LastMessageIcon: React.ComponentType | null = null let lastMessageSentAt: string | null = null - let latestReportableMessage: ChatBskyConvoDefs.MessageView | undefined - // Deleted message if (ChatBskyConvoDefs.isDeletedMessageView(convo.view.lastMessage)) { lastMessageSentAt = convo.view.lastMessage.sentAt @@ -330,12 +328,14 @@ function BaseChatItem({ const info = getMessageInfo({ convo: convo.view, currentAccountDid: currentAccount?.did, + primaryProfile, i18n, }) if (info) { - lastMessage = info.message ?? lastMessage + lastMessage = info.isBlockedMessage + ? l`This message is hidden` + : (info.message ?? lastMessage) lastMessageSentAt = info.sentAt - latestReportableMessage = info.reportableMessage } } @@ -344,10 +344,12 @@ function BaseChatItem({ const info = getReactionInfo({ convo: convo.view, currentAccountDid: currentAccount?.did, + primaryProfile, i18n, }) if ( info && + !info.isBlocked && (!lastMessageSentAt || new Date(lastMessageSentAt) < new Date(info.createdAt)) ) { @@ -380,9 +382,8 @@ function BaseChatItem({ lastMessage, LastMessageIcon, lastMessageSentAt, - latestReportableMessage, } - }, [l, convo, currentAccount?.did, isDeletedAccount, i18n]) + }, [l, convo, currentAccount?.did, isDeletedAccount, primaryProfile, i18n]) const [showActions, setShowActions] = useState(false) @@ -425,7 +426,7 @@ function BaseChatItem({ const markReadAction = { threshold: 120, color: t.palette.primary_500, - icon: EnvelopeOpen, + icon: EnvelopeOpenIcon, action: () => { markAsRead({ convoId: convo.view.id, @@ -436,7 +437,7 @@ function BaseChatItem({ const deleteAction = { threshold: 225, color: t.palette.negative_500, - icon: Trash_Stroke2_Corner0_Rounded, + icon: TrashIcon, action: () => { leaveConvoControl.open() }, @@ -453,7 +454,7 @@ function BaseChatItem({ leftFirst: deleteAction, } - const avatarSize = isWithinSplitView ? 48 : 52 + const avatarSize = isWithinLeftPanel ? 48 : 52 return ( @@ -464,18 +465,22 @@ function BaseChatItem({ // @ts-expect-error web only onFocus={onFocus} onBlur={onMouseLeave} - style={[a.relative, t.atoms.bg, isWithinSplitView && a.mx_sm]}> + style={[a.relative, t.atoms.bg, isWithinLeftPanel && a.mx_sm]}> {avatar} {' '} - @@ -607,6 +612,19 @@ function BaseChatItem({ {postAlerts} + {requestInfo && ( + + {requestInfo} + + )} + {LastMessageIcon && ( @@ -643,7 +659,7 @@ function BaseChatItem({ {/* TODO: Allow showing menu for groups where the owner has left! */} {showMenu && primaryProfile && ( )} diff --git a/src/screens/Messages/components/ChatLocked.tsx b/src/screens/Messages/components/ChatLocked.tsx index 5402b6376d..8718667e9c 100644 --- a/src/screens/Messages/components/ChatLocked.tsx +++ b/src/screens/Messages/components/ChatLocked.tsx @@ -1,6 +1,7 @@ import {Pressable} from 'react-native' +import {ChatBskyConvoUnlockConvo} from '@atproto/api' import {Trans, useLingui} from '@lingui/react/macro' -import {StackActions, useNavigation} from '@react-navigation/native' +import {useNavigation} from '@react-navigation/native' import {HITSLOP_10} from '#/lib/constants' import {type NavigationProp} from '#/lib/routes/types' @@ -32,12 +33,20 @@ export function ChatLocked({ const primaryMember = convo?.primaryMember const isOwner = !!primaryMember && primaryMember.did === currentAccount?.did + // The lock is forced by a moderation action, so the owner cannot undo it. + const isModerationLock = convo.details.lockStatusModerationOverride const {mutate: lockConvo} = useLockConvo(convo.view.id, { onSuccess: () => { Toast.show(l({message: 'Group chat unlocked', context: 'toast'})) }, onError: e => { + if (e instanceof ChatBskyConvoUnlockConvo.ConvoLockedByModerationError) { + Toast.show(l`This chat is locked by a moderation action`, { + type: 'error', + }) + return + } logger.error('Failed to unlock group chat', {message: e}) Toast.show(l`Failed to unlock group chat`, {type: 'error'}) }, @@ -45,8 +54,7 @@ export function ChatLocked({ const {mutate: leaveConvo} = useLeaveConvo(convo.view.id, { onSuccess: () => { - // Settings > Chat > Chat list - navigation.dispatch(StackActions.pop(2)) + navigation.replace('Messages', {animation: 'pop'}) }, onError: e => { logger.error('Failed to leave group chat', {message: e}) @@ -59,10 +67,14 @@ export function ChatLocked({ return ( {isOwner ? ( - <> + isModerationLock ? null : ( Unlock chat - + ) ) : ( <> {otherUser && ( diff --git a/src/screens/Messages/components/RequestListItem.tsx b/src/screens/Messages/components/IncomingRequestListItem.tsx similarity index 95% rename from src/screens/Messages/components/RequestListItem.tsx rename to src/screens/Messages/components/IncomingRequestListItem.tsx index 79eab480ae..aa4618188a 100644 --- a/src/screens/Messages/components/RequestListItem.tsx +++ b/src/screens/Messages/components/IncomingRequestListItem.tsx @@ -11,7 +11,7 @@ import {Text} from '#/components/Typography' import {ChatListItem, ChatListItemPortal} from './ChatListItem' import {AcceptChatButton, DeleteChatButton, RejectMenu} from './RequestButtons' -export function RequestListItem({ +export function IncomingRequestListItem({ convo: convoView, }: { convo: ChatBskyConvoDefs.ConvoView @@ -34,7 +34,7 @@ export function RequestListItem({ return ( - {convo.primaryMember && ( + {convo.kind === 'direct' && convo.primaryMember && ( ) : null} { + ax.metric('groupchat:owner:inviteLink:create', {convoId}) setStep(Step.MANAGE) }, onError: () => { @@ -103,7 +110,7 @@ export function InviteLinkDialog({ }, ) const {mutate: editJoinLink, isPending: isEditing} = useEditJoinLink( - convo.view.id, + convoId, { onSuccess: () => { setStep(Step.MANAGE) @@ -116,8 +123,11 @@ export function InviteLinkDialog({ }, ) const {mutate: disableJoinLink, isPending: isDisabling} = useDisableJoinLink( - convo.view.id, + convoId, { + onSuccess: () => { + ax.metric('groupchat:owner:inviteLink:disable', {convoId}) + }, onError: () => { Toast.show(l`Failed to disable invite link`, { type: 'error', @@ -126,7 +136,7 @@ export function InviteLinkDialog({ }, ) const {mutate: enableJoinLink, isPending: isEnabling} = useEnableJoinLink( - convo.view.id, + convoId, { onError: () => { Toast.show(l`Failed to enable invite link`, { @@ -162,8 +172,24 @@ export function InviteLinkDialog({ let content: React.ReactNode = null let header: string | null = null + let image: React.ReactNode = null switch (step) { case Step.INFO: { + image = ( + + ) header = l`Invite link` content = ( <> @@ -178,11 +204,7 @@ export function InviteLinkDialog({ Group chats can only have a maximum of{' '} - {plural(convo.details.memberLimit, { - one: '# person', - other: '# people', - })} - . + . @@ -217,11 +239,9 @@ export function InviteLinkDialog({ header = linkEnabled ? l`Update invite link` : l`Generate invite link` content = ( <> - - - Choose who can join this group chat and how. - - + + Choose who can join this group chat and how. + - + + value={joinLinkURI} + onPress={() => { + ax.metric('groupchat:inviteLink:shareButton:press', { + convoId, + method: 'copy', + }) + }}> {linkEnabled ? ( - - {isOwner ? ( + isOwner ? ( + setStep(Step.GENERATE)}> - - {ownerValue} - + {ownerValue} - ) : ( - {memberValue} - )} - + + ) : ( + {memberValue} + ) ) : null} {linkEnabled ? ( @@ -373,6 +397,10 @@ export function InviteLinkDialog({ color="primary_subtle" style={[a.flex_1, a.rounded_full]} onPress={() => { + ax.metric('groupchat:inviteLink:shareButton:press', { + convoId, + method: 'post', + }) control.close(() => { openComposer({ text: joinLinkURI, @@ -389,6 +417,10 @@ export function InviteLinkDialog({ color="primary_subtle" style={[a.flex_1, a.rounded_full]} onPress={() => { + ax.metric('groupchat:inviteLink:shareButton:press', { + convoId, + method: 'native', + }) void shareUrl(joinLinkURI) }}> Share @@ -508,19 +540,22 @@ export function InviteLinkDialog({ onClose={() => { setStep(defaultStep) setWhoCanJoin(defaultWhoCanJoin) - }}> + }} + nativeOptions={{preventExpansion: true}}> + {image} {header} } label={l`Group chat invite link dialog`} - style={web({maxWidth: 400})}> + style={web({maxWidth: 400})} + contentContainerStyle={web(a.pt_0)}> {content} diff --git a/src/screens/Messages/components/MessageComposer.tsx b/src/screens/Messages/components/MessageComposer.tsx index 0aa132e232..83bab02be3 100644 --- a/src/screens/Messages/components/MessageComposer.tsx +++ b/src/screens/Messages/components/MessageComposer.tsx @@ -20,7 +20,7 @@ import {countGraphemes} from 'unicode-segmenter/grapheme' import {HITSLOP_10, MAX_DM_GRAPHEME_LENGTH} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' -import {isBskyPostUrl} from '#/lib/strings/url-helpers' +import {isBskyChatInviteUrl, isBskyPostUrl} from '#/lib/strings/url-helpers' import {useEmail} from '#/state/email-verification' import { useMessageDraft, @@ -233,7 +233,11 @@ export function MessageComposer({ }} onChange={handleChange} onFacetCommitted={facet => { - if (facet.type === 'url' && isBskyPostUrl(facet.value)) { + if ( + facet.type === 'url' && + (isBskyPostUrl(facet.value) || + isBskyChatInviteUrl(facet.value)) + ) { setEmbed(facet.value) } }} @@ -322,7 +326,7 @@ export function ComposerContainer({children}: {children: React.ReactNode}) { if (IS_LIQUID_GLASS) { return ( - + {children} diff --git a/src/screens/Messages/components/MessageInputEmbed.tsx b/src/screens/Messages/components/MessageInputEmbed.tsx index 5bc2f38a05..4b69e1f67d 100644 --- a/src/screens/Messages/components/MessageInputEmbed.tsx +++ b/src/screens/Messages/components/MessageInputEmbed.tsx @@ -18,6 +18,8 @@ import { } from '#/lib/routes/types' import { convertBskyAppUrlIfNeeded, + getChatInviteCodeFromUrl, + isBskyChatInviteUrl, isBskyPostUrl, makeRecordUri, } from '#/lib/strings/url-helpers' @@ -26,6 +28,7 @@ import {usePostQuery} from '#/state/queries/post' import {PostMeta} from '#/view/com/util/PostMeta' import {atoms as a, useTheme} from '#/alf' import {Button} from '#/components/Button' +import * as ChatInvite from '#/components/dms/ChatInvite' import {TimesLarge_Stroke2_Corner0_Rounded as XIcon} from '#/components/icons/Times' import {Loader} from '#/components/Loader' import * as MediaPreview from '#/components/MediaPreview' @@ -35,35 +38,56 @@ import {RichText} from '#/components/RichText' import {Text} from '#/components/Typography' import * as bsky from '#/types/bsky' +/** + * The embed staged in the message composer. A message can carry at most one + * embed: either a quoted post or a group chat invite link. + */ +export type MessageEmbedState = + | {type: 'post'; uri: string} + | {type: 'invite'; code: string} + export function useMessageEmbed() { const route = useRoute>() const navigation = useNavigation() const embedFromParams = route.params.embed - const [embedUri, setEmbedUri] = useState(embedFromParams) + const [embed, setEmbed] = useState( + embedFromParams ? {type: 'post', uri: embedFromParams} : undefined, + ) - if (embedFromParams && embedUri !== embedFromParams) { - setEmbedUri(embedFromParams) + if (embedFromParams && embed?.type !== 'post') { + setEmbed({type: 'post', uri: embedFromParams}) } return { - embedUri, + embed, setEmbed: useCallback( (embedUrl: string | undefined) => { if (!embedUrl) { + // Only the post embed is reflected in the route param (used by the + // share-to-DM intent flow); invites are local-only. navigation.setParams({embed: ''}) - setEmbedUri(undefined) + setEmbed(undefined) return } if (embedFromParams) return - const url = convertBskyAppUrlIfNeeded(embedUrl) - const [_0, user, _1, rkey] = url.split('/').filter(Boolean) - const uri = makeRecordUri(user, 'app.bsky.feed.post', rkey) + if (isBskyChatInviteUrl(embedUrl)) { + const code = getChatInviteCodeFromUrl(embedUrl) + if (code) { + setEmbed({type: 'invite', code}) + } + return + } - setEmbedUri(uri) + if (isBskyPostUrl(embedUrl)) { + const url = convertBskyAppUrlIfNeeded(embedUrl) + const [_0, user, _1, rkey] = url.split('/').filter(Boolean) + const uri = makeRecordUri(user, 'app.bsky.feed.post', rkey) + setEmbed({type: 'post', uri}) + } }, [embedFromParams, navigation], ), @@ -81,7 +105,10 @@ export function useExtractEmbedFromFacets( for (const facet of rt.facets ?? []) { for (const feature of facet.features) { - if (AppBskyRichtextFacet.isLink(feature) && isBskyPostUrl(feature.uri)) { + if ( + AppBskyRichtextFacet.isLink(feature) && + (isBskyPostUrl(feature.uri) || isBskyChatInviteUrl(feature.uri)) + ) { uriFromFacet = feature.uri break } @@ -96,16 +123,40 @@ export function useExtractEmbedFromFacets( } export function MessageInputEmbed({ - embedUri, + embed, setEmbed, }: { - embedUri: string | undefined + embed: MessageEmbedState | undefined setEmbed: (embedUrl: string | undefined) => void +}) { + const onRemove = useCallback(() => { + LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) + setEmbed(undefined) + }, [setEmbed]) + + if (!embed) { + return null + } + + switch (embed.type) { + case 'post': + return + case 'invite': + return + } +} + +function MessageInputPostEmbed({ + uri, + onRemove, +}: { + uri: string + onRemove: () => void }) { const t = useTheme() const {t: l} = useLingui() - const {data: post, status} = usePostQuery(embedUri) + const {data: post, status} = usePostQuery(uri) const moderationOpts = useModerationOpts() const moderation = useMemo( @@ -134,15 +185,6 @@ export function MessageInputEmbed({ return {rt: undefined, record: undefined} }, [post]) - if (!embedUri) { - return null - } - - const onRemove = () => { - LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) - setEmbed(undefined) - } - switch (status) { case 'pending': { return ( @@ -220,6 +262,60 @@ export function MessageInputEmbed({ } } +function MessageInputInviteEmbed({ + code, + onRemove, +}: { + code: string + onRemove: () => void +}) { + const t = useTheme() + const {t: l} = useLingui() + + return ( + + + + + + + ) +} + +function MessageInputInviteEmbedBody() { + const {status} = ChatInvite.useChatInvite() + + if (status === 'loading') { + return + } + + if (status !== 'available') { + return + } + + return +} + function SimpleContainer({ children, onRemove, diff --git a/src/screens/Messages/components/MessagesList.tsx b/src/screens/Messages/components/MessagesList.tsx index fbebdc0745..f0b1389b86 100644 --- a/src/screens/Messages/components/MessagesList.tsx +++ b/src/screens/Messages/components/MessagesList.tsx @@ -13,6 +13,7 @@ import { KeyboardGestureArea, } from 'react-native-keyboard-controller' import Animated, { + FadeIn, runOnJS, type ScrollEvent, type SharedValue, @@ -28,6 +29,8 @@ import { type AppBskyEmbedRecord, AppBskyRichtextFacet, ChatBskyConvoDefs, + type ChatBskyEmbedJoinLink, + ChatBskyGroupDefs, RichText, } from '@atproto/api' import {useScrollEdgeEffectRef} from '@bsky.app/expo-scroll-edge-effect' @@ -37,6 +40,7 @@ import {ScrollProvider} from '#/lib/ScrollContext' import {shortenLinks, stripInvalidMentions} from '#/lib/strings/rich-text-manip' import { convertBskyAppUrlIfNeeded, + getChatInviteCodeFromUrl, isBskyPostUrl, } from '#/lib/strings/url-helpers' import {logger} from '#/logger' @@ -46,9 +50,10 @@ import { useConvoActive, } from '#/state/messages/convo' import {type ConvoState, ConvoStatus} from '#/state/messages/convo/types' +import {useGetJoinLinkPreview} from '#/state/queries/join-links' import {useGetPost} from '#/state/queries/post' import {createEmbedViewRecordFromPost} from '#/state/queries/postgate/util' -import {useAgent} from '#/state/session' +import {useAgent, useSession} from '#/state/session' import {List, type ListMethods} from '#/view/com/util/List' import {MessageComposer} from '#/screens/Messages/components/MessageComposer' import {MessageInput} from '#/screens/Messages/components/MessageInput' @@ -131,8 +136,10 @@ export function MessagesList({ const ax = useAnalytics() const convoState = useConvoActive() const agent = useAgent() + const {hasSession, currentAccount} = useSession() const getPost = useGetPost() - const {embedUri, setEmbed} = useMessageEmbed() + const getJoinLinkPreview = useGetJoinLinkPreview() + const {embed: messageEmbed, setEmbed} = useMessageEmbed() const t = useTheme() const textInputId = 'chat-input-' + useId() @@ -198,15 +205,39 @@ export function MessagesList({ // Tracks whether the initial scroll-to-bottom has been triggered. Separated from isAtBottom so that contentInset // (which causes an early onScroll with negative offset) can't prevent the first scroll. // Reset when hasScrolled goes back to false (e.g. convo re-initialization after backgrounding). + // `didInitialScroll` is the reactive mirror of the ref so the reveal effect below can depend on it; the ref + // itself stays as the synchronous re-entry guard inside onContentSizeChange. const hasInitiallyScrolled = useRef(false) + const [didInitialScroll, setDidInitialScroll] = useState(false) const prevHasScrolled = useRef(hasScrolled) useLayoutEffect(() => { if (prevHasScrolled.current && !hasScrolled) { hasInitiallyScrolled.current = false + setDidInitialScroll(false) } prevHasScrolled.current = hasScrolled }, [hasScrolled]) + // Reveal the list once history has finished loading. We can't reveal earlier because the list isn't inverted - + // we must scroll to the bottom (newest message) before fading in, or the user sees a flash of top-anchored content. + // This is purely state-driven so it doesn't depend on a layout callback firing: a firehose-delivered message can + // dedupe against the fetched history and produce no content-size change, in which case nothing would otherwise + // reveal the list and it would stay hidden forever (APP-2238). Either the initial scroll has run, or there's + // nothing to scroll (empty convo) - both are safe to reveal once !isFetchingHistory. + useEffect(() => { + if (hasScrolled || convoState.isFetchingHistory) return + if (didInitialScroll || renderItems.length === 0) { + const raf = requestAnimationFrame(() => setHasScrolled(true)) + return () => cancelAnimationFrame(raf) + } + }, [ + convoState.isFetchingHistory, + hasScrolled, + didInitialScroll, + renderItems.length, + setHasScrolled, + ]) + // -- Keep track of background state and positioning for new pill const layoutHeight = useSharedValue(0) const didBackground = useRef(false) @@ -241,20 +272,15 @@ export function MessagesList({ // Initial scroll to bottom — unconditional, not gated on isAtBottom. This is separated because contentInset // can cause an early onScroll with a negative offset that sets isAtBottom to false before we get here. - // Empty convos take this path too (once history is done) so hasScrolled gets set without an animated scroll. + // Empty convos take this path too (once history is done). Revealing the list is handled by the effect above, + // which fires once history finishes - we just record that the scroll has happened. if ( !hasInitiallyScrolled.current && (renderItems.length > 0 || !convoState.isFetchingHistory) ) { hasInitiallyScrolled.current = true + setDidInitialScroll(true) flatListRef.current?.scrollToOffset({offset: height, animated: false}) - // If history is already done loading, mark ready after a frame for the scroll to settle. - // Otherwise, the footer sentinel's onLayout will handle it when history finishes. - if (!convoState.isFetchingHistory) { - requestAnimationFrame(() => { - setHasScrolled(true) - }) - } prevContentHeight.current = height prevItemCount.current = renderItems.length return @@ -283,7 +309,13 @@ export function MessagesList({ } else { flatListRef.current?.scrollToOffset({ offset: height, - animated: hasScrolled && height > prevContentHeight.current, + // only animate when new items were appended - pure layout growth + // (e.g. the composer spacer getting its height on web) should + // snap instantly rather than visibly scrolling + animated: + hasScrolled && + height > prevContentHeight.current && + renderItems.length > prevItemCount.current, }) } } @@ -294,7 +326,6 @@ export function MessagesList({ }, [ hasScrolled, - setHasScrolled, convoState.isFetchingHistory, renderItems.length, // these are stable @@ -348,12 +379,38 @@ export function MessagesList({ // we want to remove the post link from the text, re-trim, then detect facets rt.detectFacetsWithoutResolution() - let embed: $Typed | undefined - let embedView: $Typed | undefined + let embed: + | $Typed + | $Typed + | undefined + let embedView: + | $Typed + | $Typed + | undefined - if (embedUri) { + // Find the embedded link facet and, if it's at the start or end of the + // message, remove it from the text (the embed card replaces it). + const stripLinkFacet = (predicate: (uri: string) => boolean) => { + const linkFacet = rt.facets?.find(facet => + facet.features.find( + feature => + AppBskyRichtextFacet.isLink(feature) && predicate(feature.uri), + ), + ) + if (linkFacet) { + const isAtStart = linkFacet.index.byteStart === 0 + const isAtEnd = + linkFacet.index.byteEnd === rt.unicodeText.graphemeLength + if (isAtStart || isAtEnd) { + rt.delete(linkFacet.index.byteStart, linkFacet.index.byteEnd) + } + rt = new RichText({text: rt.text.trim()}, {cleanNewlines: true}) + } + } + + if (messageEmbed?.type === 'post') { try { - const post = await getPost({uri: embedUri}) + const post = await getPost({uri: messageEmbed.uri}) if (post) { embed = { $type: 'app.bsky.embed.record', @@ -368,42 +425,34 @@ export function MessagesList({ record: createEmbedViewRecordFromPost(post), } - // look for the embed uri in the facets, so we can remove it from the text - const postLinkFacet = rt.facets?.find(facet => { - return facet.features.find(feature => { - if (AppBskyRichtextFacet.isLink(feature)) { - if (isBskyPostUrl(feature.uri)) { - const url = convertBskyAppUrlIfNeeded(feature.uri) - const [_0, _1, _2, rkey] = url.split('/').filter(Boolean) - - // this might have a handle instead of a DID - // so just compare the rkey - not particularly dangerous - return post.uri.endsWith(rkey) - } - } - return false - }) + stripLinkFacet(uri => { + if (!isBskyPostUrl(uri)) return false + const url = convertBskyAppUrlIfNeeded(uri) + const [_0, _1, _2, rkey] = url.split('/').filter(Boolean) + // this might have a handle instead of a DID + // so just compare the rkey - not particularly dangerous + return post.uri.endsWith(rkey) }) - - if (postLinkFacet) { - const isAtStart = postLinkFacet.index.byteStart === 0 - const isAtEnd = - postLinkFacet.index.byteEnd === rt.unicodeText.graphemeLength - - // remove the post link from the text - if (isAtStart || isAtEnd) { - rt.delete( - postLinkFacet.index.byteStart, - postLinkFacet.index.byteEnd, - ) - } - - rt = new RichText({text: rt.text.trim()}, {cleanNewlines: true}) - } } } catch (error) { logger.error('Failed to get post as quote for DM', {error}) } + } else if (messageEmbed?.type === 'invite') { + const code = messageEmbed.code + embed = { + $type: 'chat.bsky.embed.joinLink', + code, + } + + const joinLinkPreview = await getJoinLinkPreview({code, hasSession}) + if (joinLinkPreview) { + embedView = { + $type: 'chat.bsky.embed.joinLink#view', + joinLinkPreview, + } + } + + stripLinkFacet(uri => getChatInviteCodeFromUrl(uri) === code) } await rt.detectFacets(agent) @@ -423,8 +472,35 @@ export function MessagesList({ }, embedView, ) + + if (convoState.convo.kind === 'group') { + ax.metric('groupchat:message:send', { + convoId: convoState.convo.view.id, + isOwner: convoState.convo.primaryMember?.did === currentAccount?.did, + }) + } + if ( + embedView?.$type === 'chat.bsky.embed.joinLink#view' && + ChatBskyGroupDefs.isJoinLinkPreviewView(embedView.joinLinkPreview) + ) { + ax.metric('groupchat:inviteLink:shared', { + convoId: embedView.joinLinkPreview.convoId, + method: 'dm', + }) + } }, - [agent, convoState, embedUri, getPost, hasScrolled, setHasScrolled], + [ + agent, + convoState, + messageEmbed, + getPost, + getJoinLinkPreview, + hasSession, + hasScrolled, + setHasScrolled, + ax, + currentAccount?.did, + ], ) const scrollToEndOnPress = useCallback(() => { @@ -472,20 +548,6 @@ export function MessagesList({ return null } - // Footer sentinel: when history is still loading during the initial scroll, the footer's onLayout fires each time - // new items are prepended (shifting its position). Once history finishes, this triggers setHasScrolled. - const onFooterLayout = useCallback(() => { - if ( - hasInitiallyScrolled.current && - !hasScrolled && - !convoState.isFetchingHistory - ) { - requestAnimationFrame(() => { - setHasScrolled(true) - }) - } - }, [hasScrolled, setHasScrolled, convoState.isFetchingHistory]) - const renderScrollComponent = useCallback( (props: ScrollViewProps) => ( @@ -555,7 +617,6 @@ export function MessagesList({ ListFooterComponent={ } style={[ @@ -583,41 +644,43 @@ export function MessagesList({ opened: 0, }}> {footer ?? ( - - {({loading}) => - ax.features.enabled( - ax.features.DmsNewMessageComposerEnable, - ) ? ( - - void onSendMessage(message) - } - hasEmbed={!!embedUri} - setEmbed={setEmbed} - loading={loading}> - + + {({loading}) => + ax.features.enabled( + ax.features.DmsNewMessageComposerEnable, + ) ? ( + + void onSendMessage(message) + } + hasEmbed={!!messageEmbed} setEmbed={setEmbed} - /> - - ) : ( - - + + + ) : ( + - - ) - } - + loading={loading}> + + + ) + } + + )} @@ -677,6 +740,16 @@ function getFooterState( convoState: ActiveConvoStates, hasAcceptOverride?: boolean, ): FooterState { + const isRequest = + convoState.convo.view.status === 'request' && !hasAcceptOverride + + // For group chats, the request footer is driven purely off status: the owner + // is always 'accepted' so never sees it, while members the owner added are + // 'request' until they accept. This holds even before any messages load. + if (convoState.convo.kind === 'group' && isRequest) { + return 'request' + } + if (convoState.items.length === 0) { if (convoState.isFetchingHistory) { return 'loading' @@ -685,7 +758,12 @@ function getFooterState( } } - if (convoState.convo.view.status === 'request' && !hasAcceptOverride) { + // For direct chats, only show the request footer once there's a message. The + // viewer's status stays 'request' until they send their first message, so an + // empty direct request is one the viewer started themselves (show the + // composer), whereas any message present must be an incoming one from the + // other user (show the accept/reject footer). + if (isRequest) { return 'request' } diff --git a/src/screens/Messages/components/MessagesListGroupInfoPanel.tsx b/src/screens/Messages/components/MessagesListGroupInfoPanel.tsx index 72d92a24ea..80b94a92d8 100644 --- a/src/screens/Messages/components/MessagesListGroupInfoPanel.tsx +++ b/src/screens/Messages/components/MessagesListGroupInfoPanel.tsx @@ -16,6 +16,7 @@ import {ChainLink_Stroke2_Corner0_Rounded as ChainLinkIcon} from '#/components/i import {PersonPlus_Stroke2_Corner0_Rounded as PersonPlusIcon} from '#/components/icons/Person' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' +import {useAnalytics} from '#/analytics' import {InviteLinkDialog} from './InviteLinkDialog' export function MessagesListGroupInfoPanel({ @@ -25,6 +26,7 @@ export function MessagesListGroupInfoPanel({ }) { const t = useTheme() const {t: l} = useLingui() + const ax = useAnalytics() const moderationOpts = useModerationOpts() const convoId = convo.view.id @@ -35,6 +37,7 @@ export function MessagesListGroupInfoPanel({ const {mutate: addGroupMembers} = useAddGroupMembers(convoId, { onSuccess: () => { + ax.metric('groupchat:owner:inviteMember', {convoId}) addMembersControl.close() }, onError: e => { @@ -87,14 +90,11 @@ export function MessagesListGroupInfoPanel({ return ( <> - + {convo.details.name ? ( + style={[a.text_2xl, a.font_bold, a.mt_lg, a.px_xl, a.text_center]} + emoji> {convo.details.name} ) : null} @@ -107,7 +107,8 @@ export function MessagesListGroupInfoPanel({ a.text_sm, t.atoms.text_contrast_high, showButtons ? null : a.mb_4xl, - ]}> + ]} + emoji> {names} ) : null} diff --git a/src/screens/Messages/components/MessagesListInfoPanel.tsx b/src/screens/Messages/components/MessagesListInfoPanel.tsx index 695fc74d37..e1e620adee 100644 --- a/src/screens/Messages/components/MessagesListInfoPanel.tsx +++ b/src/screens/Messages/components/MessagesListInfoPanel.tsx @@ -55,8 +55,13 @@ export function MessagesListInfoPanel({ a.justify_center, a.gap_xs, a.mt_lg, + a.px_xl, + a.max_w_full, ]}> - + {displayName} diff --git a/src/screens/Messages/components/OutgoingRequestListItem.tsx b/src/screens/Messages/components/OutgoingRequestListItem.tsx new file mode 100644 index 0000000000..b5dcdf08df --- /dev/null +++ b/src/screens/Messages/components/OutgoingRequestListItem.tsx @@ -0,0 +1,127 @@ +import {View} from 'react-native' +import { + type ChatBskyGroupDefs, + ChatBskyGroupWithdrawJoinRequest, +} from '@atproto/api' +import {Trans, useLingui} from '@lingui/react/macro' + +import {isNetworkError} from '#/lib/strings/errors' +import {useWithdrawJoinGroupChatRequest} from '#/state/queries/messages/withdraw-join-group-chat' +import {TimeElapsed} from '#/view/com/util/TimeElapsed' +import {atoms as a, useTheme, web} from '#/alf' +import {AvatarBubbles} from '#/components/AvatarBubbles' +import {createStaticClick, Link} from '#/components/Link' +import * as Prompt from '#/components/Prompt' +import * as Toast from '#/components/Toast' +import {Text} from '#/components/Typography' + +export function OutgoingRequestListItem({ + convo: convoView, +}: { + convo: ChatBskyGroupDefs.JoinRequestConvoView +}) { + const t = useTheme() + const {t: l} = useLingui() + + const prompt = Prompt.usePromptControl() + + const {mutate: withdrawRequest, isPending: isWithdrawPending} = + useWithdrawJoinGroupChatRequest({ + onSuccess: () => { + Toast.show(l`Join request rescinded.`) + }, + onError: error => { + let errorMessage = l`Failed to rescind your request. Please try again.` + if (isNetworkError(error)) { + errorMessage = l`There was a problem with your internet connection, please try again` + } else if ( + error instanceof + ChatBskyGroupWithdrawJoinRequest.InvalidJoinRequestError + ) { + errorMessage = l`Invalid rescind request.` + } + Toast.show(errorMessage) + }, + }) + + return ( + <> + { + prompt.open() + })}> + {({hovered, pressed, focused}) => ( + + + + + + + {convoView.name} + + + {convoView.viewer?.requestedAt ? ( + + {({timeElapsed}) => ( + + {timeElapsed} + + )} + + ) : null} + + + + You requested to join + + + + + )} + + { + prompt.close(() => { + if (isWithdrawPending) return + withdrawRequest({convoId: convoView.convoId}) + }) + }} + /> + + ) +} diff --git a/src/screens/Messages/components/RequestButtons.tsx b/src/screens/Messages/components/RequestButtons.tsx index 08aa4a466d..c5e0e82ece 100644 --- a/src/screens/Messages/components/RequestButtons.tsx +++ b/src/screens/Messages/components/RequestButtons.tsx @@ -1,5 +1,5 @@ import {useCallback} from 'react' -import {type ChatBskyActorDefs, ChatBskyConvoDefs} from '@atproto/api' +import {type ChatBskyActorDefs, type ChatBskyConvoDefs} from '@atproto/api' import {Trans, useLingui} from '@lingui/react/macro' import {StackActions, useNavigation} from '@react-navigation/native' import {useQueryClient} from '@tanstack/react-query' @@ -14,6 +14,7 @@ import { unstableCacheProfileView, useProfileBlockMutationQueue, } from '#/state/queries/profile' +import {useSession} from '#/state/session' import { Button, ButtonIcon, @@ -25,7 +26,12 @@ import { EmailDialogScreenID, useEmailDialogControl, } from '#/components/dialogs/EmailDialog' +import {AfterReportConversationDialog} from '#/components/dms/AfterReportConversationDialog' import {AfterReportDialog} from '#/components/dms/AfterReportDialog' +import { + type ConvoWithDetails, + getConvoReportSubject, +} from '#/components/dms/util' import {ArrowBoxLeft_Stroke2_Corner0_Rounded as LeaveIcon} from '#/components/icons/ArrowBoxLeft' import {Check_Stroke2_Corner0_Rounded as CheckIcon} from '#/components/icons/Check' import {CircleX_Stroke2_Corner0_Rounded} from '#/components/icons/CircleX' @@ -49,17 +55,18 @@ export function RejectMenu({ }: Omit & { label?: string icon?: boolean - convo: ChatBskyConvoDefs.ConvoView + convo: ConvoWithDetails profile: ChatBskyActorDefs.ProfileViewBasic showDeleteConvo?: boolean currentScreen: 'list' | 'conversation' }) { const {t: l} = useLingui() + const {currentAccount} = useSession() const shadowedProfile = useProfileShadow(profile) const navigation = useNavigation() const queryClient = useQueryClient() - const {mutate: leaveConvo} = useLeaveConvo(convo.id, { + const {mutate: leaveConvo} = useLeaveConvo(convo.view.id, { onMutate: () => { if (currentScreen === 'conversation') { navigation.dispatch(StackActions.pop()) @@ -110,9 +117,7 @@ export function RejectMenu({ const reportControl = useDialogControl() const blockOrDeleteControl = useDialogControl() - const lastMessage = ChatBskyConvoDefs.isMessageView(convo.lastMessage) - ? convo.lastMessage - : null + const reportSubject = getConvoReportSubject(convo, currentAccount?.did) return ( <> @@ -152,50 +157,46 @@ export function RejectMenu({ - {/* note: last message will almost certainly be defined, since you can't - delete messages for other people and it's impossible for a convo on this - screen to have a message sent by you */} - {lastMessage && ( - - - Report conversation - - - - )} + + + Report conversation + + + - {lastMessage && ( - <> - { - const sender = convo.members.find( - member => member.did === lastMessage.sender.did, - ) - if (sender) { - unstableCacheProfileView(queryClient, sender) - } - blockOrDeleteControl.open() - }} - /> - - + + {reportSubject && ( + { + unstableCacheProfileView(queryClient, profile) + blockOrDeleteControl.open() + }} + /> + )} + {convo.kind === 'group' ? ( + + ) : ( + )} ) diff --git a/src/screens/Messages/components/RequestStatus.tsx b/src/screens/Messages/components/RequestStatus.tsx new file mode 100644 index 0000000000..9b35b69445 --- /dev/null +++ b/src/screens/Messages/components/RequestStatus.tsx @@ -0,0 +1,92 @@ +import {Pressable} from 'react-native' +import Animated, {FadeIn, FadeOut} from 'react-native-reanimated' +import {plural} from '@lingui/core/macro' +import {useLingui} from '@lingui/react/macro' + +import {HITSLOP_10} from '#/lib/constants' +import {JOIN_REQUESTS_THRESHOLD} from '#/state/queries/messages/list-join-requests' +import {atoms as a, tokens, useTheme} from '#/alf' +import {GlassView} from '#/components/GlassView' +import {Envelope_Stroke2_Corner2_Rounded as EnvelopeIcon} from '#/components/icons/Envelope' +import {TimesLarge_Stroke2_Corner0_Rounded as CloseIcon} from '#/components/icons/Times' +import {Text} from '#/components/Typography' +import {IS_LIQUID_GLASS} from '#/env' + +export function RequestStatus({ + top, + count, + onDismiss, + onPress, +}: { + top: number + count: number + onDismiss: () => void + onPress: () => void +}) { + const t = useTheme() + const {t: l} = useLingui() + + return ( + + + + + + {count > JOIN_REQUESTS_THRESHOLD + ? l({ + message: `${JOIN_REQUESTS_THRESHOLD}+ new join requests`, + comment: + 'Displayed when the number of requests is greater than 20', + }) + : plural(count, { + one: '# new join request', + other: '# new join requests', + })} + + + + + + + + ) +} diff --git a/src/screens/Onboarding/StepProfile/index.tsx b/src/screens/Onboarding/StepProfile/index.tsx index 6c84ec4c86..85ae4acc68 100644 --- a/src/screens/Onboarding/StepProfile/index.tsx +++ b/src/screens/Onboarding/StepProfile/index.tsx @@ -19,6 +19,7 @@ import {msg} from '@lingui/core/macro' import {useLingui} from '@lingui/react' import {Trans} from '@lingui/react/macro' +import {IMAGE_SIZE_CONFIG_2K_1MB} from '#/lib/constants' import {usePhotoLibraryPermission} from '#/lib/hooks/usePermissions' import {compressIfNeeded} from '#/lib/media/manip' import {openCropper} from '#/lib/media/picker' @@ -212,7 +213,7 @@ export function StepProfile() { } } } - image = await compressIfNeeded(image, 1000000) + image = await compressIfNeeded(image, IMAGE_SIZE_CONFIG_2K_1MB) // If we are on mobile, prefetching the image will load the image into memory before we try and display it, // stopping any brief flickers. diff --git a/src/screens/Onboarding/util.ts b/src/screens/Onboarding/util.ts index acb96ee914..f4ecde3c5d 100644 --- a/src/screens/Onboarding/util.ts +++ b/src/screens/Onboarding/util.ts @@ -2,7 +2,7 @@ import { type $Typed, type AppBskyGraphFollow, type AppBskyGraphGetFollows, - type BskyAgent, + type AtpAgent, type ComAtprotoRepoApplyWrites, type ComAtprotoRepoStrongRef, } from '@atproto/api' @@ -12,7 +12,7 @@ import chunk from 'lodash.chunk' import {until} from '#/lib/async/until' export async function bulkWriteFollows( - agent: BskyAgent, + agent: AtpAgent, dids: string[], via?: ComAtprotoRepoStrongRef.Main, ) { @@ -59,7 +59,7 @@ export async function bulkWriteFollows( } async function whenFollowsIndexed( - agent: BskyAgent, + agent: AtpAgent, actor: string, fn: (res: AppBskyGraphGetFollows.Response) => boolean, ) { diff --git a/src/screens/PostThread/components/ThreadItemAnchor.tsx b/src/screens/PostThread/components/ThreadItemAnchor.tsx index 17c8e54be8..dc3c55f125 100644 --- a/src/screens/PostThread/components/ThreadItemAnchor.tsx +++ b/src/screens/PostThread/components/ThreadItemAnchor.tsx @@ -414,6 +414,8 @@ const ThreadItemAnchorInner = memo(function ThreadItemAnchorInner({ moderation={moderation} viewContext={PostEmbedViewContext.ThreadHighlighted} onOpen={onOpenEmbed} + post={post} + feedDescriptor={feedFeedback.feedDescriptor} /> )} diff --git a/src/screens/PostThread/components/ThreadItemPost.tsx b/src/screens/PostThread/components/ThreadItemPost.tsx index 841c2af745..c1e27222ff 100644 --- a/src/screens/PostThread/components/ThreadItemPost.tsx +++ b/src/screens/PostThread/components/ThreadItemPost.tsx @@ -349,6 +349,7 @@ const ThreadItemPostInner = memo(function ThreadItemPostInner({ embed={post.embed} moderation={moderation} viewContext={PostEmbedViewContext.Feed} + post={post} /> )} diff --git a/src/screens/PostThread/components/ThreadItemTreePost.tsx b/src/screens/PostThread/components/ThreadItemTreePost.tsx index 6ee116d166..9868786648 100644 --- a/src/screens/PostThread/components/ThreadItemTreePost.tsx +++ b/src/screens/PostThread/components/ThreadItemTreePost.tsx @@ -371,6 +371,7 @@ const ThreadItemTreePostInner = memo(function ThreadItemTreePostInner({ embed={post.embed} moderation={moderation} viewContext={PostEmbedViewContext.Feed} + post={post} /> )} diff --git a/src/screens/Profile/Header/ProfileHeaderStandard.tsx b/src/screens/Profile/Header/ProfileHeaderStandard.tsx index 8e0055cc8c..72f98d799d 100644 --- a/src/screens/Profile/Header/ProfileHeaderStandard.tsx +++ b/src/screens/Profile/Header/ProfileHeaderStandard.tsx @@ -28,6 +28,7 @@ import {Button, ButtonIcon, ButtonText} from '#/components/Button' import {DebugFieldDisplay} from '#/components/DebugFieldDisplay' import {useDialogControl} from '#/components/Dialog' import {MessageProfileButton} from '#/components/dms/MessageProfileButton' +import {ArrowShareRight_Stroke2_Corner2_Rounded as ArrowShareRight} from '#/components/icons/ArrowShareRight' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' import { KnownFollowers, @@ -38,7 +39,9 @@ import * as Prompt from '#/components/Prompt' import {RichText} from '#/components/RichText' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' -import {IS_IOS} from '#/env' +import {useAnalytics} from '#/analytics' +import {IS_IOS, IS_NATIVE} from '#/env' +import {InviteFriendsDialog} from '#/features/inviteFriends' import {useActorStatus} from '#/features/liveNow' import {GermButton} from '../components/GermButton' import {EditProfileDialog} from './EditProfileDialog' @@ -238,6 +241,7 @@ export function HeaderStandardButtons({ minimal?: boolean }) { const {_} = useLingui() + const ax = useAnalytics() const {hasSession, currentAccount} = useSession() const playHaptic = useHaptics() const requireAuth = useRequireAuth() @@ -247,6 +251,7 @@ export function HeaderStandardButtons({ ) const [, queueUnblock] = useProfileBlockMutationQueue(profile) const editProfileControl = useDialogControl() + const inviteFriendsControl = useDialogControl() const unblockPromptControl = Prompt.usePromptControl() const isMe = currentAccount?.did === profile.did @@ -347,7 +352,29 @@ export function HeaderStandardButtons({ Edit Profile + {/* Invite friends is a native-only share sheet (the dialog is a + no-op on web), so gate the entry point to avoid a dead button. */} + {IS_NATIVE && ( + + )} + {IS_NATIVE && } ) : profile.viewer?.blocking ? ( profile.viewer?.blockingByList ? null : ( diff --git a/src/screens/Profile/components/ProfileFeedHeader.tsx b/src/screens/Profile/components/ProfileFeedHeader.tsx index 6966fa6fe2..c640c84f33 100644 --- a/src/screens/Profile/components/ProfileFeedHeader.tsx +++ b/src/screens/Profile/components/ProfileFeedHeader.tsx @@ -1,9 +1,7 @@ import {useCallback, useMemo, useState} from 'react' import {View} from 'react-native' import {AtUri} from '@atproto/api' -import {msg} from '@lingui/core/macro' -import {useLingui} from '@lingui/react' -import {Plural, Trans} from '@lingui/react/macro' +import {Plural, Trans, useLingui} from '@lingui/react/macro' import {useHaptics} from '#/lib/haptics' import {makeCustomFeedLink, makeProfileLink} from '#/lib/routes/links' @@ -26,7 +24,6 @@ import {atoms as a, useBreakpoints, useTheme, web} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' import {Divider} from '#/components/Divider' -import {useRichText} from '#/components/hooks/useRichText' import {ArrowOutOfBoxModified_Stroke2_Corner2_Rounded as Share} from '#/components/icons/ArrowOutOfBox' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' import {DotGrid3x1_Stroke2_Corner0_Rounded as Ellipsis} from '#/components/icons/DotGrid' @@ -86,7 +83,7 @@ export function ProfileFeedHeaderSkeleton() { export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) { const t = useTheme() - const {_, i18n} = useLingui() + const {t: l, i18n} = useLingui() const ax = useAnalytics() const {hasSession} = useSession() const {gtMobile} = useBreakpoints() @@ -121,7 +118,7 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) { if (savedFeedConfig) { await removeFeed(savedFeedConfig) - Toast.show(_(msg`Removed from your feeds`)) + Toast.show(l`Removed from your feeds`) ax.metric('feed:unsave', {feedUrl: info.uri}) } else { await addSavedFeeds([ @@ -131,14 +128,12 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) { pinned: false, }, ]) - Toast.show(_(msg`Saved to your feeds`)) + Toast.show(l`Saved to your feeds`) ax.metric('feed:save', {feedUrl: info.uri}) } } catch (err) { Toast.show( - _( - msg`There was an issue updating your feeds, please check your internet connection and try again.`, - ), + l`There was an issue updating your feeds, please check your internet connection and try again.`, { type: 'error', }, @@ -161,10 +156,10 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) { ]) if (pinned) { - Toast.show(_(msg`Pinned ${info.displayName} to Home`)) + Toast.show(l`Pinned ${info.displayName} to Home`) ax.metric('feed:pin', {feedUrl: info.uri}) } else { - Toast.show(_(msg`Unpinned ${info.displayName} from Home`)) + Toast.show(l`Unpinned ${info.displayName} from Home`) ax.metric('feed:unpin', {feedUrl: info.uri}) } } else { @@ -175,11 +170,11 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) { pinned: true, }, ]) - Toast.show(_(msg`Pinned ${info.displayName} to Home`)) + Toast.show(l`Pinned ${info.displayName} to Home`) ax.metric('feed:pin', {feedUrl: info.uri}) } } catch (e) { - Toast.show(_(msg`There was an issue contacting the server`), { + Toast.show(l`There was an issue contacting the server`, { type: 'error', }) logger.error('Failed to toggle pinned feed', {message: e}) @@ -194,7 +189,7 @@ export function ProfileFeedHeader({info}: {info: FeedSourceFeedInfo}) { - - - + {typeof likeCount === 'number' && ( control.close()}> @@ -502,13 +489,12 @@ function DialogInner({ )} - {hasSession && ( <> + ) } diff --git a/src/screens/Settings/Settings.tsx b/src/screens/Settings/Settings.tsx index 2e0138c5e2..5fd53cde39 100644 --- a/src/screens/Settings/Settings.tsx +++ b/src/screens/Settings/Settings.tsx @@ -213,10 +213,10 @@ export function SettingsScreen({}: Props) { !ax.features.enabled(ax.features.ImportContactsSettingsDisable) && ( + label={l`Find and invite friends`}> - Find friends from contacts + Find and invite friends )} diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index 65b2791c29..5d1ecae014 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -24,9 +24,9 @@ import {createStaticClick, SimpleInlineLinkText} from '#/components/Link' import {Loader} from '#/components/Loader' import {usePreemptivelyCompleteActivePolicyUpdate} from '#/components/PolicyUpdateOverlay/usePreemptivelyCompleteActivePolicyUpdate' import * as Toast from '#/components/Toast' +import {MIN_ACCESS_AGE} from '#/ageAssurance/const' import { isUnderAge, - MIN_ACCESS_AGE, useAgeAssuranceRegionConfigWithFallback, } from '#/ageAssurance/util' import {useAnalytics} from '#/analytics' diff --git a/src/state/birthdate.ts b/src/state/birthdate.ts index 71ca871df3..183e51aa45 100644 --- a/src/state/birthdate.ts +++ b/src/state/birthdate.ts @@ -1,10 +1,11 @@ import {useMemo} from 'react' import {useMutation, useQueryClient} from '@tanstack/react-query' +import {restrictChatSettings} from '#/state/queries/messages/restrictChatSettings' import {preferencesQueryKey} from '#/state/queries/preferences' import {useAgent, useSession} from '#/state/session' import {usePatchAgeAssuranceOtherRequiredData} from '#/ageAssurance' -import {isUnderAge, maybeRestrictChatSettings} from '#/ageAssurance/util' +import {isUnderAge} from '#/ageAssurance/util' import {IS_DEV} from '#/env' import {account} from '#/storage' @@ -66,7 +67,11 @@ export function useBirthdateMutation() { }) if (isUnderAge(birthDate.toISOString(), 18)) { - maybeRestrictChatSettings({agent}) + await restrictChatSettings({ + agent, + restrictIncoming: true, + restrictGroupInvites: true, + }) } /** diff --git a/src/state/cache/profile-shadow.ts b/src/state/cache/profile-shadow.ts index 8b61b4416e..015452749a 100644 --- a/src/state/cache/profile-shadow.ts +++ b/src/state/cache/profile-shadow.ts @@ -11,6 +11,7 @@ import {findAllProfilesInQueryData as findAllProfilesInContactMatchesQueryData} import {findAllProfilesInQueryData as findAllProfilesInKnownFollowersQueryData} from '#/state/queries/known-followers' import {findAllProfilesInQueryData as findAllProfilesInListMembersQueryData} from '#/state/queries/list-members' import {findAllProfilesInQueryData as findAllProfilesInGetConvoQueryData} from '#/state/queries/messages/conversation' +import {findAllProfilesInQueryData as findAllProfilesInListConvoRequestsQueryData} from '#/state/queries/messages/list-conversation-requests' import {findAllProfilesInQueryData as findAllProfilesInListConvosQueryData} from '#/state/queries/messages/list-conversations' import {findAllProfilesInQueryData as findAllProfilesInMessagesQueryData} from '#/state/queries/messages/list-convo-members' import {findAllProfilesInQueryData as findAllProfilesInMyBlockedAccountsQueryData} from '#/state/queries/my-blocked-accounts' @@ -52,6 +53,21 @@ const shadows: WeakMap< > = new WeakMap() const emitter = new EventEmitter() +type ShadowUpdateEventPayload = {did: string; shadow: Partial} + +/** + * Subscribe to all profile shadow updates, regardless of did. Useful for + * non-React consumers like the Convo agent. Returns an unlisten function. + */ +export function listenProfileShadowUpdate( + listener: (payload: ShadowUpdateEventPayload) => void, +): () => void { + emitter.addListener('shadow-update', listener) + return () => { + emitter.removeListener('shadow-update', listener) + } +} + export function useProfileShadow< TProfileView extends bsky.profile.AnyProfileView, >(profile: TProfileView): Shadow { @@ -205,10 +221,47 @@ export function updateProfileShadow( } batchedUpdates(() => { emitter.emit(did, value) + emitter.emit('shadow-update', { + did, + shadow: value, + } satisfies ShadowUpdateEventPayload) }) } -function mergeShadow( +/** + * Returns true if merging `shadow` into `profile` would change nothing, i.e. + * `mergeShadow` would be a no-op. Object-valued fields are compared by + * reference, so this can return false negatives - callers may do redundant + * merges, but never skip a real change. + */ +export function isProfileShadowApplied< + TProfileView extends bsky.profile.AnyProfileView, +>(profile: TProfileView, shadow: Partial): boolean { + if ('followingUri' in shadow) { + if (profile.viewer?.following !== shadow.followingUri) return false + } + if ('muted' in shadow) { + if (profile.viewer?.muted !== shadow.muted) return false + } + if ('blockingUri' in shadow) { + if (profile.viewer?.blocking !== shadow.blockingUri) return false + } + if ('activitySubscription' in shadow) { + if (profile.viewer?.activitySubscription !== shadow.activitySubscription) { + return false + } + } + if ('verification' in shadow) { + if (profile.verification !== shadow.verification) return false + } + if ('status' in shadow) { + const current = 'status' in profile ? profile.status : undefined + if (current !== shadow.status) return false + } + return true +} + +export function mergeShadow( profile: TProfileView, shadow: Partial, ): Shadow { @@ -259,6 +312,7 @@ function* findProfilesInCache( yield* findAllProfilesInSuggestedFollowsQueryData(queryClient, did) yield* findAllProfilesInActorSearchQueryData(queryClient, did) yield* findAllProfilesInListConvosQueryData(queryClient, did) + yield* findAllProfilesInListConvoRequestsQueryData(queryClient, did) yield* findAllProfilesInFeedsQueryData(queryClient, did) yield* findAllProfilesInPostThreadV2QueryData(queryClient, did) yield* findAllProfilesInKnownFollowersQueryData(queryClient, did) diff --git a/src/state/gallery.ts b/src/state/gallery.ts index e1c1541bc3..e6c5b50d36 100644 --- a/src/state/gallery.ts +++ b/src/state/gallery.ts @@ -201,12 +201,17 @@ export function resetImageManipulation( return img } -export async function compressImage(img: ComposerImage): Promise { +export async function compressImage( + img: ComposerImage, + {maxDimension, maxSize}: {maxDimension: number; maxSize: number}, +): Promise { const source = img.transformed || img.source let attempts = 0 - let maxDimension = 4000 - let maxBytes = 2000000 + // Seeded from `maxDimension` but shrunk per attempt below, so keep the + // passed-in value pristine. + let currentDimension = maxDimension + const maxBytes = maxSize let minQualityPercentage = 0 let maxQualityPercentage = 101 // exclusive @@ -215,7 +220,11 @@ export async function compressImage(img: ComposerImage): Promise { while (maxQualityPercentage - minQualityPercentage > 1) { if (attempts >= 4) break - const [w, h] = containImageRes(source.width, source.height, maxDimension) + const [w, h] = containImageRes( + source.width, + source.height, + currentDimension, + ) const qualityPercentage = Math.round( (maxQualityPercentage + minQualityPercentage) / 2, ) @@ -230,8 +239,9 @@ export async function compressImage(img: ComposerImage): Promise { minQualityPercentage = 0 maxQualityPercentage = 101 attempts++ - // 4000px → 3200px → 2560px → 2048px → ~1638px - maxDimension = Math.floor(maxDimension * 0.8) + // max.width → 0.8× → 0.64× → 0.512× → ~0.41× + // e.g. 4000px → 3200px → 2560px → 2048px → ~1638px + currentDimension = Math.floor(currentDimension * 0.8) continue } diff --git a/src/state/messages/convo/agent.ts b/src/state/messages/convo/agent.ts index 08b609f71a..3603026d78 100644 --- a/src/state/messages/convo/agent.ts +++ b/src/state/messages/convo/agent.ts @@ -6,6 +6,7 @@ import { ChatBskyConvoDefs, type ChatBskyConvoGetLog, type ChatBskyConvoSendMessage, + type ChatBskyEmbedJoinLink, type ChatBskyGroupDefs, } from '@atproto/api' import {XRPCError} from '@atproto/api' @@ -19,6 +20,12 @@ import { isNetworkError, } from '#/lib/strings/errors' import {Logger} from '#/logger' +import { + isProfileShadowApplied, + listenProfileShadowUpdate, + mergeShadow, + type ProfileShadow, +} from '#/state/cache/profile-shadow' import { ACTIVE_POLL_INTERVAL, BACKGROUND_POLL_INTERVAL, @@ -109,12 +116,23 @@ export class Convo { { id: string message: ChatBskyConvoSendMessage.InputSchema['message'] - optimisticEmbedView?: $Typed + optimisticEmbedView?: + | $Typed + | $Typed } > = new Map() private deletedMessages: Set = new Set() private relatedProfiles: Map = new Map() + /** + * Accumulated profile shadow state, keyed by did. The profiles this agent + * holds come from direct service fetches, so they are invisible to the + * shadow cache's react-query scan. We keep our own overlay and re-apply it + * whenever server data overwrites `relatedProfiles` or `convo.members`, + * otherwise refreshes would revert optimistic state (e.g. a block) until + * the server catches up. + */ + private profileShadows: Map> = new Map() private isProcessingPendingMessages = false @@ -165,16 +183,29 @@ export class Convo { private subscribers: (() => void)[] = [] subscribe(subscriber: () => void) { - if (this.subscribers.length === 0) this.init() + if (this.subscribers.length === 0) { + this.cleanupProfileShadowListener = listenProfileShadowUpdate( + ({did, shadow}) => { + this.mergeProfileShadow(did, shadow) + }, + ) + this.init() + } this.subscribers.push(subscriber) return () => { this.subscribers = this.subscribers.filter(s => s !== subscriber) - if (this.subscribers.length === 0) this.suspend() + if (this.subscribers.length === 0) { + this.cleanupProfileShadowListener?.() + this.cleanupProfileShadowListener = undefined + this.suspend() + } } } + private cleanupProfileShadowListener: (() => void) | undefined + getSnapshot(): ConvoState { if (!this.snapshot) this.snapshot = this.generateSnapshot() // logger.debug('snapshotted', {}) @@ -206,22 +237,40 @@ export class Convo { removeReaction: undefined, } + /* + * Captured as a local so the `if (convo)` narrowing below survives the + * `this.getItems()` call - TS discards narrowing on mutable `this` members + * after a method call, but not on a const. + */ + const convo = this.convo + + /* + * A lifecycle event (e.g. `Background` or `Suspend`) can move us into an + * active status before `setup()` has resolved and populated `convo`. The + * active states declare `convo` as non-optional, so we can't build one + * without it - fall back to reporting `Initializing` until the convo lands. + * This keeps the snapshot's type and runtime in agreement, so consumers can + * trust that an active status always has a `convo`. + */ + const stillInitializing = (): ConvoState => ({ + status: ConvoStatus.Initializing, + items: [], + convo, + error: undefined, + ...shared, + ...emptyMethods, + }) + switch (this.status) { case ConvoStatus.Initializing: { - return { - status: ConvoStatus.Initializing, - items: [], - convo: this.convo, - error: undefined, - ...shared, - ...emptyMethods, - } + return stillInitializing() } case ConvoStatus.Disabled: { + if (!convo) return stillInitializing() return { - status: this.status, + status: ConvoStatus.Disabled, items: this.getItems(), - convo: this.convo!, + convo, relatedProfiles: this.relatedProfiles, error: undefined, ...shared, @@ -229,10 +278,11 @@ export class Convo { } } case ConvoStatus.Suspended: { + if (!convo) return stillInitializing() return { - status: this.status, + status: ConvoStatus.Suspended, items: this.getItems(), - convo: this.convo!, + convo, relatedProfiles: this.relatedProfiles, error: undefined, ...shared, @@ -240,10 +290,11 @@ export class Convo { } } case ConvoStatus.Backgrounded: { + if (!convo) return stillInitializing() return { - status: this.status, + status: ConvoStatus.Backgrounded, items: this.getItems(), - convo: this.convo!, + convo, relatedProfiles: this.relatedProfiles, error: undefined, ...shared, @@ -251,10 +302,11 @@ export class Convo { } } case ConvoStatus.Ready: { + if (!convo) return stillInitializing() return { - status: this.status, + status: ConvoStatus.Ready, items: this.getItems(), - convo: this.convo!, + convo, relatedProfiles: this.relatedProfiles, error: undefined, ...shared, @@ -493,6 +545,9 @@ export class Convo { this.pendingMessages = new Map() this.deletedMessages = new Set() this.relatedProfiles = new Map() + // Shadow updates fired while suspended are missed, so the overlay may be + // stale - drop it and trust the from-scratch refetch. + this.profileShadows = new Map() this.pendingMessageFailure = null this.fetchMessageHistoryError = undefined @@ -524,6 +579,7 @@ export class Convo { this.relatedProfiles.set(member.did, member) } } + this.applyProfileShadows() } private updateConvo(convo: Partial) { @@ -534,6 +590,7 @@ export class Convo { for (const member of this.convo.members) { this.relatedProfiles.set(member.did, member) } + this.applyProfileShadows() } } @@ -704,6 +761,7 @@ export class Convo { this.relatedProfiles.set(member.did, member) } } while (cursor) + this.applyProfileShadows() } private fetchMessageHistoryError: {retry: () => void} | undefined @@ -750,6 +808,7 @@ export class Convo { for (const profile of relatedProfiles) { this.relatedProfiles.set(profile.did, profile) } + this.applyProfileShadows() } /* @@ -872,23 +931,34 @@ export class Convo { for (const profile of ev.relatedProfiles) { this.relatedProfiles.set(profile.did, profile) } + this.applyProfileShadows() } if ( ChatBskyConvoDefs.isLogCreateMessage(ev) && ChatBskyConvoDefs.isMessageView(ev.message) ) { - /** - * If this message is already in new messages, it was added by our - * sending logic, and is based on client-ordering. When we receive - * the "committed" event from the log, we should replace this - * reference and re-insert in order to respect the order we received - * from the log. + /* + * If this message is already in past messages, the initial + * history fetch raced this log event and already returned it. + * Update in place rather than inserting a duplicate into new + * messages. */ - if (this.newMessages.has(ev.message.id)) { - this.newMessages.delete(ev.message.id) + if (this.pastMessages.has(ev.message.id)) { + this.pastMessages.set(ev.message.id, ev.message) + } else { + /** + * If this message is already in new messages, it was added by our + * sending logic, and is based on client-ordering. When we receive + * the "committed" event from the log, we should replace this + * reference and re-insert in order to respect the order we received + * from the log. + */ + if (this.newMessages.has(ev.message.id)) { + this.newMessages.delete(ev.message.id) + } + this.newMessages.set(ev.message.id, ev.message) } - this.newMessages.set(ev.message.id, ev.message) needsCommit = true } else if ( ChatBskyConvoDefs.isLogDeleteMessage(ev) && @@ -925,7 +995,12 @@ export class Convo { } else { const systemView = toSystemMessageView(ev) if (systemView) { - this.newMessages.set(systemView.id, systemView) + // same as above: avoid duplicating if history fetch won the race + if (this.pastMessages.has(systemView.id)) { + this.pastMessages.set(systemView.id, systemView) + } else { + this.newMessages.set(systemView.id, systemView) + } needsCommit = true } } @@ -942,7 +1017,9 @@ export class Convo { sendMessage( message: ChatBskyConvoSendMessage.InputSchema['message'], - optimisticEmbedView?: $Typed, + optimisticEmbedView?: + | $Typed + | $Typed, ) { // Ignore empty messages for now since they have no other purpose atm if (!message.text.trim() && !message.embed) return @@ -1031,7 +1108,10 @@ export class Convo { this.commit() } - updateLockStatus(lockStatus: ChatBskyConvoDefs.ConvoLockStatus) { + updateLockStatus( + lockStatus: ChatBskyConvoDefs.ConvoLockStatus, + lockStatusModerationOverride: boolean, + ) { if (this.convo?.kind !== 'group') { throw new Error('updateLockStatus can only be called on group convo') } @@ -1040,6 +1120,7 @@ export class Convo { kind: { ...this.convo.details, lockStatus, + lockStatusModerationOverride, }, }) @@ -1480,4 +1561,86 @@ export class Convo { throw error } } + + mergeProfileShadow(did: string, shadow: Partial) { + // Accumulate even if the did isn't held yet - the profile may arrive + // later via message history or the member list, and must get the shadow. + this.profileShadows.set(did, { + ...this.profileShadows.get(did), + ...shadow, + }) + if (this.applyProfileShadow(did, shadow)) { + this.commit() + } + } + + /** + * Re-applies all accumulated shadows. Must be called after any server data + * lands in `relatedProfiles` or `this.convo`, since raw server profiles + * would otherwise clobber optimistic state. + */ + private applyProfileShadows() { + for (const [did, shadow] of this.profileShadows) { + this.applyProfileShadow(did, shadow) + } + } + + private applyProfileShadow( + did: string, + shadow: Partial, + ): boolean { + let changed = false + + const related = this.relatedProfiles.get(did) + if (related && !isProfileShadowApplied(related, shadow)) { + this.relatedProfiles.set(did, mergeShadow(related, shadow)) + changed = true + } + + if (this.convo) { + const next = applyShadowToConvo(this.convo, did, shadow) + if (next) { + this.convo = next + changed = true + } + } + + return changed + } +} + +/** + * Returns a new convo with the shadow merged into the matching member (and + * `primaryMember`, if it's the same profile), or null if nothing changed. + */ +function applyShadowToConvo( + convo: ConvoWithDetails, + did: string, + shadow: Partial, +): ConvoWithDetails | null { + const i = convo.members.findIndex(m => m.did === did) + if (i === -1) return null + if (isProfileShadowApplied(convo.members[i], shadow)) return null + + // The branches are identical, but narrowing the union is what lets the + // member arrays keep their per-kind types. + if (convo.kind === 'group') { + const members = convo.members.slice() + members[i] = mergeShadow(members[i], shadow) + return { + ...convo, + members, + primaryMember: + convo.primaryMember?.did === did ? members[i] : convo.primaryMember, + } + } else { + const members = convo.members.slice() + members[i] = mergeShadow(members[i], shadow) + return { + ...convo, + members, + primaryMember: + convo.primaryMember.did === did ? members[i] : convo.primaryMember, + } + } } diff --git a/src/state/messages/convo/index.tsx b/src/state/messages/convo/index.tsx index 14a297e6b9..a78ea1a038 100644 --- a/src/state/messages/convo/index.tsx +++ b/src/state/messages/convo/index.tsx @@ -151,8 +151,15 @@ export function ConvoProvider({ if (data.kind.joinLink !== convo.convo.details.joinLink) { convo.updateJoinLink(data.kind.joinLink) } - if (data.kind.lockStatus !== convo.convo.details.lockStatus) { - convo.updateLockStatus(data.kind.lockStatus) + if ( + data.kind.lockStatus !== convo.convo.details.lockStatus || + data.kind.lockStatusModerationOverride !== + convo.convo.details.lockStatusModerationOverride + ) { + convo.updateLockStatus( + data.kind.lockStatus, + data.kind.lockStatusModerationOverride, + ) } } if ( diff --git a/src/state/messages/convo/types.ts b/src/state/messages/convo/types.ts index 51d111356a..c83fbfb813 100644 --- a/src/state/messages/convo/types.ts +++ b/src/state/messages/convo/types.ts @@ -1,10 +1,11 @@ import { type $Typed, type AppBskyEmbedRecord, - type BskyAgent, + type AtpAgent, type ChatBskyActorDefs, type ChatBskyConvoDefs, type ChatBskyConvoSendMessage, + type ChatBskyEmbedJoinLink, } from '@atproto/api' import {type MessagesEventBus} from '#/state/messages/events/agent' @@ -12,7 +13,7 @@ import {type ConvoWithDetails} from '#/components/dms/util' export type ConvoParams = { convoId: string - agent: BskyAgent + agent: AtpAgent events: MessagesEventBus placeholderData?: { convo: ChatBskyConvoDefs.ConvoView @@ -108,7 +109,10 @@ export type ConvoItem = type DeleteMessage = (messageId: string) => Promise type SendMessage = ( message: ChatBskyConvoSendMessage.InputSchema['message'], - optimisticEmbedView: $Typed | undefined, + optimisticEmbedView: + | $Typed + | $Typed + | undefined, ) => void type FetchMessageHistory = () => Promise type MarkConvoAccepted = () => void diff --git a/src/state/messages/events/agent.ts b/src/state/messages/events/agent.ts index ce9518212b..7794204447 100644 --- a/src/state/messages/events/agent.ts +++ b/src/state/messages/events/agent.ts @@ -1,4 +1,4 @@ -import {type BskyAgent, type ChatBskyConvoGetLog} from '@atproto/api' +import {type AtpAgent, type ChatBskyConvoGetLog} from '@atproto/api' import {EventEmitter} from 'eventemitter3' import {nanoid} from 'nanoid/non-secure' @@ -27,7 +27,7 @@ const logger = Logger.create(Logger.Context.DMsAgent) export class MessagesEventBus { private id: string - private agent: BskyAgent + private agent: AtpAgent private emitter = new EventEmitter<{event: [MessagesEventBusEvent]}>() private status: MessagesEventBusStatus = MessagesEventBusStatus.Initializing @@ -211,17 +211,9 @@ export class MessagesEventBus { } case MessagesEventBusStatus.Error: { switch (action.event) { - case MessagesEventBusDispatchEvent.UpdatePoll: { - // basically reset - this.status = MessagesEventBusStatus.Initializing - this.latestRev = undefined - this.init() - break - } + case MessagesEventBusDispatchEvent.UpdatePoll: case MessagesEventBusDispatchEvent.Resume: { - this.status = MessagesEventBusStatus.Ready - this.resetPoll() - this.emitter.emit('event', {type: 'connect'}) + this.recoverFromError() break } } @@ -238,6 +230,31 @@ export class MessagesEventBus { }) } + private recoverFromError() { + logger.debug(`recoverFromError`, {hasRev: !!this.latestRev}) + + if (this.latestRev === undefined) { + /* + * init() never succeeded, so we have no cursor to resume from. Re-run + * init() to seed latestRev. Its success path dispatches Ready, which from + * Initializing transitions us to Ready + resetPoll + emit connect. + */ + this.status = MessagesEventBusStatus.Initializing + this.init() + } else { + /* + * A poll failed mid-session but we still have a valid cursor. Resume + * polling from it directly. We must NOT route through init() here: its + * seeding logic takes the max of the existing rev and the server's + * current cursor, which would skip any events that arrived while we were + * offline. + */ + this.status = MessagesEventBusStatus.Ready + this.resetPoll() + this.emitter.emit('event', {type: 'connect'}) + } + } + private async init() { logger.debug(`init`, {}) @@ -337,6 +354,9 @@ export class MessagesEventBus { // }, // ) + let needsEmit = false + let batch: ChatBskyConvoGetLog.OutputSchema['logs'] = [] + try { const response = await networkRetry(2, () => { return this.agent.chat.bsky.convo.getLog( @@ -351,9 +371,6 @@ export class MessagesEventBus { const {logs: events} = response.data - let needsEmit = false - let batch: ChatBskyConvoGetLog.OutputSchema['logs'] = [] - for (const ev of events) { /* * If there's a rev, we should handle it. If there's not a rev, we don't @@ -373,10 +390,6 @@ export class MessagesEventBus { } } } - - if (needsEmit) { - this.emitter.emit('event', {type: 'logs', logs: batch}) - } } catch (e: any) { if (!isNetworkError(e) && !isErrorMaybeAppPasswordPermissions(e)) { logger.error(`poll events failed`, { @@ -397,5 +410,22 @@ export class MessagesEventBus { } finally { this.isPolling = false } + + /* + * Emit outside the try/catch above so a throwing subscriber is not + * misreported as a poll failure (which would show a network-error banner + * and drop the batch, since the revs have already been consumed). poll() + * runs from setInterval, so we must not let the exception escape - log it + * and move on without dispatching Error. + */ + if (needsEmit) { + try { + this.emitter.emit('event', {type: 'logs', logs: batch}) + } catch (e) { + logger.error(`subscriber error handling chat events`, { + safeMessage: e instanceof Error ? e.message : String(e), + }) + } + } } } diff --git a/src/state/messages/events/types.ts b/src/state/messages/events/types.ts index 038684319a..67d6bdd452 100644 --- a/src/state/messages/events/types.ts +++ b/src/state/messages/events/types.ts @@ -1,7 +1,7 @@ -import {type BskyAgent, type ChatBskyConvoGetLog} from '@atproto/api' +import {type AtpAgent, type ChatBskyConvoGetLog} from '@atproto/api' export type MessagesEventBusParams = { - agent: BskyAgent + agent: AtpAgent } export enum MessagesEventBusStatus { diff --git a/src/state/preferences/moderation-opts.tsx b/src/state/preferences/moderation-opts.tsx index b8592d77e0..119c9008db 100644 --- a/src/state/preferences/moderation-opts.tsx +++ b/src/state/preferences/moderation-opts.tsx @@ -2,7 +2,7 @@ import {createContext, useContext, useMemo} from 'react' import {AtpAgent, type ModerationOpts} from '@atproto/api' import {useHiddenPosts, useLabelDefinitions} from '#/state/preferences' -import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/moderation' +import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/const' import {useSession} from '#/state/session' import {usePreferencesQuery} from '../queries/preferences' diff --git a/src/state/queries/feed.ts b/src/state/queries/feed.ts index 4dbd8d4047..b8a2a9f39f 100644 --- a/src/state/queries/feed.ts +++ b/src/state/queries/feed.ts @@ -101,6 +101,15 @@ export function hydrateFeedGenerator( const href = `/profile/${urip.hostname}/${collection}/${urip.rkey}` const route = router.matchPath(href) + const description = new RichText({ + text: view.description || '', + facets: (view.descriptionFacets || [])?.slice(), + }) + + if (!view.descriptionFacets) { + description.detectFacetsWithoutResolution() + } + return { type: 'feed', view, @@ -116,10 +125,7 @@ export function hydrateFeedGenerator( displayName: view.displayName ? sanitizeDisplayName(view.displayName) : t`Feed by ${sanitizeHandle(view.creator.handle, '@')}`, - description: new RichText({ - text: view.description || '', - facets: (view.descriptionFacets || [])?.slice(), - }), + description, creatorDid: view.creator.did, creatorHandle: view.creator.handle, likeCount: view.likeCount, @@ -136,6 +142,15 @@ export function hydrateList(view: AppBskyGraphDefs.ListView): FeedSourceInfo { const href = `/profile/${urip.hostname}/${collection}/${urip.rkey}` const route = router.matchPath(href) + const description = new RichText({ + text: view.description || '', + facets: (view.descriptionFacets || [])?.slice(), + }) + + if (!view.descriptionFacets) { + description.detectFacetsWithoutResolution() + } + return { type: 'list', view, @@ -148,10 +163,7 @@ export function hydrateList(view: AppBskyGraphDefs.ListView): FeedSourceInfo { }, cid: view.cid, avatar: view.avatar, - description: new RichText({ - text: view.description || '', - facets: (view.descriptionFacets || [])?.slice(), - }), + description, creatorDid: view.creator.did, creatorHandle: view.creator.handle, displayName: view.name diff --git a/src/state/queries/join-links.ts b/src/state/queries/join-links.ts index 6aa10331ef..ca1db05558 100644 --- a/src/state/queries/join-links.ts +++ b/src/state/queries/join-links.ts @@ -1,12 +1,48 @@ -import {AtpAgent} from '@atproto/api' -import {useQuery, useQueryClient} from '@tanstack/react-query' +import {useCallback} from 'react' +import { + type $Typed, + AtpAgent, + ChatBskyGroupDefs, + type ChatBskyGroupGetJoinLinkPreviews, +} from '@atproto/api' +import {type QueryClient, useQuery, useQueryClient} from '@tanstack/react-query' import {CHAT_SERVICE, DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' import {STALE} from '#/state/queries/index' -import {createQueryKey} from '#/state/queries/util' +import {createQueryKey, type StructuredQueryKey} from '#/state/queries/util' import {useAgent} from '#/state/session' +/** + * The three preview shapes we currently support. Excludes the `{$type: string}` + * open-union fallback for unrecognized future variants - use + * `ChatInvitePreview` for that. + */ +export type KnownChatInvitePreview = + | $Typed + | $Typed + | $Typed + +/** + * The full open-union shape, including the `{$type: string}` fallback for + * future variants. + */ +export type ChatInvitePreview = KnownChatInvitePreview | {$type: string} + +/** + * Narrows a preview to one of the three known variants, filtering out the + * `{$type: string}` open-union fallback for unrecognized future shapes. + */ +export function isKnownJoinLinkPreview( + preview: unknown, +): preview is KnownChatInvitePreview { + return ( + ChatBskyGroupDefs.isJoinLinkPreviewView(preview) || + ChatBskyGroupDefs.isDisabledJoinLinkPreviewView(preview) || + ChatBskyGroupDefs.isInvalidJoinLinkPreviewView(preview) + ) +} + const joinLinkPreviewQueryKeyRoot = 'join-link-preview' export const createJoinLinkPreviewQueryKey = (args: { @@ -17,12 +53,140 @@ export const createJoinLinkPreviewQueryKey = (args: { persistedVersion: 1, }) -export function useJoinLinkPreviewsQuery({ +/** + * Invalidate any join link preview queries whose `codes` include the given + * code. Use this when a link's state changes (e.g. it's disabled) so cached + * previews refetch and reflect the new state. + */ +export function invalidateJoinLinkPreviewsForCode( + queryClient: QueryClient, + code: string, +) { + return queryClient.invalidateQueries({ + predicate: query => { + const [root, args] = query.queryKey as Partial< + StructuredQueryKey<{codes?: string[]}> + > + return ( + root === joinLinkPreviewQueryKeyRoot && + Array.isArray(args?.codes) && + args.codes.includes(code) + ) + }, + }) +} + +/** + * Optimistically set whether the viewer has requested to join the link with the + * given code, across any cached join link preview queries. Used right after a + * successful join request (requested = true) or withdrawal (requested = false) + * so the UI ("Requested" vs "Request to join") updates immediately, without + * waiting on a server refetch that can lag behind the write. + */ +export function setJoinLinkPreviewRequestedForCode( + queryClient: QueryClient, + code: string, + requested: boolean, +) { + queryClient.setQueriesData( + { + predicate: query => { + const [root, args] = query.queryKey as Partial< + StructuredQueryKey<{codes?: string[]}> + > + return ( + root === joinLinkPreviewQueryKeyRoot && + Array.isArray(args?.codes) && + args.codes.includes(code) + ) + }, + }, + old => { + if (!old) return old + return { + ...old, + joinLinkPreviews: old.joinLinkPreviews.map(preview => { + if ( + ChatBskyGroupDefs.isJoinLinkPreviewView(preview) && + preview.code === code + ) { + return { + ...preview, + viewer: { + ...preview.viewer, + requestedAt: requested ? new Date().toISOString() : undefined, + }, + } + } + return preview + }), + } + }, + ) +} + +/** + * Invalidate any join link preview queries that resolved to the given convo. + * The code isn't always known to the viewer (e.g. when they're a regular + * member), so we match on the convoId carried by the resolved preview instead. + * Use this when the viewer's membership changes (e.g. they leave or are removed) + * so cached previews refetch and reflect their new viewer state. + */ +export function invalidateJoinLinkPreviewsForConvo( + queryClient: QueryClient, + convoId: string, +) { + return queryClient.invalidateQueries({ + predicate: query => { + const [root] = query.queryKey + if (root !== joinLinkPreviewQueryKeyRoot) return false + const data = query.state.data as + | ChatBskyGroupGetJoinLinkPreviews.OutputSchema + | undefined + return ( + data?.joinLinkPreviews.some( + preview => + ChatBskyGroupDefs.isJoinLinkPreviewView(preview) && + preview.convoId === convoId, + ) ?? false + ) + }, + }) +} + +async function fetchJoinLinkPreviews({ + agent, codes, hasSession, +}: { + agent: AtpAgent + codes: string[] + hasSession: boolean +}) { + const previewAgent = new AtpAgent({service: CHAT_SERVICE}) + const res = hasSession + ? await agent.chat.bsky.group.getJoinLinkPreviews( + {codes}, + {headers: DM_SERVICE_HEADERS}, + ) + : await previewAgent.chat.bsky.group.getJoinLinkPreviews({codes}) + return res.data +} + +export function useJoinLinkPreviewsQuery({ + codes, + hasSession, + staleTime = STALE.MINUTES.ONE, + initialData, }: { codes?: string[] hasSession: boolean + staleTime?: number + /** + * Seed the query with an already-known preview (e.g. a DM message embed + * already carries the resolved view), avoiding a duplicate fetch. + */ + initialData?: ChatBskyGroupGetJoinLinkPreviews.OutputSchema }) { const agent = useAgent() @@ -31,21 +195,15 @@ export function useJoinLinkPreviewsQuery({ queryFn: async () => { if (!codes) throw new Error('No invite code') try { - const previewAgent = new AtpAgent({service: CHAT_SERVICE}) - const res = hasSession - ? await agent.chat.bsky.group.getJoinLinkPreviews( - {codes}, - {headers: DM_SERVICE_HEADERS}, - ) - : await previewAgent.chat.bsky.group.getJoinLinkPreviews({codes}) - return res.data + return await fetchJoinLinkPreviews({agent, codes, hasSession}) } catch (error) { logger.error('Failed to fetch join link preview', {safeMessage: error}) throw error } }, enabled: codes != null && codes.length > 0, - staleTime: STALE.SECONDS.FIFTEEN, + staleTime, + initialData, }) } @@ -56,17 +214,43 @@ export function usePrefetchJoinLinkPreviews() { return ({codes, hasSession}: {codes: string[]; hasSession: boolean}) => { return queryClient.prefetchQuery({ queryKey: createJoinLinkPreviewQueryKey({codes, hasSession}), - queryFn: async () => { - const previewAgent = new AtpAgent({service: CHAT_SERVICE}) - const res = hasSession - ? await agent.chat.bsky.group.getJoinLinkPreviews( - {codes}, - {headers: DM_SERVICE_HEADERS}, - ) - : await previewAgent.chat.bsky.group.getJoinLinkPreviews({codes}) - return res.data - }, + queryFn: () => fetchJoinLinkPreviews({agent, codes, hasSession}), staleTime: STALE.SECONDS.FIFTEEN, }) } } + +/** + * Imperatively fetch (or read from cache) a single join link preview by code. + * Used when sending a DM invite embed so we can build an optimistic view. + * Returns undefined if the preview can't be resolved. + */ +export function useGetJoinLinkPreview() { + const agent = useAgent() + const queryClient = useQueryClient() + + return useCallback( + async ({ + code, + hasSession, + }: { + code: string + hasSession: boolean + }): Promise => { + try { + const data = await queryClient.fetchQuery({ + queryKey: createJoinLinkPreviewQueryKey({codes: [code], hasSession}), + queryFn: () => + fetchJoinLinkPreviews({agent, codes: [code], hasSession}), + staleTime: STALE.SECONDS.FIFTEEN, + }) + const found = data.joinLinkPreviews[0] + return isKnownJoinLinkPreview(found) ? found : undefined + } catch (error) { + logger.error('Failed to fetch join link preview', {safeMessage: error}) + return undefined + } + }, + [agent, queryClient], + ) +} diff --git a/src/state/queries/list-members.ts b/src/state/queries/list-members.ts index 152c7a5be8..c43c7bb983 100644 --- a/src/state/queries/list-members.ts +++ b/src/state/queries/list-members.ts @@ -2,7 +2,7 @@ import { type AppBskyActorDefs, type AppBskyGraphDefs, type AppBskyGraphGetList, - type BskyAgent, + type AtpAgent, } from '@atproto/api' import { type InfiniteData, @@ -60,7 +60,7 @@ export function useAllListMembersQuery(uri?: string) { }) } -export async function getAllListMembers(agent: BskyAgent, uri: string) { +export async function getAllListMembers(agent: AtpAgent, uri: string) { let hasMore = true let cursor: string | undefined const listItems: AppBskyGraphDefs.ListItemView[] = [] diff --git a/src/state/queries/list.ts b/src/state/queries/list.ts index 462cc4919a..b5deb087c3 100644 --- a/src/state/queries/list.ts +++ b/src/state/queries/list.ts @@ -3,8 +3,8 @@ import { type AppBskyGraphDefs, type AppBskyGraphGetList, type AppBskyGraphList, + type AtpAgent, AtUri, - type BskyAgent, type ComAtprotoRepoApplyWrites, type Facet, type Un$Typed, @@ -305,7 +305,7 @@ export function useListBlockMutation() { } async function whenAppViewReady( - agent: BskyAgent, + agent: AtpAgent, uri: string, fn: (res: AppBskyGraphGetList.Response) => boolean, ) { diff --git a/src/state/queries/messages/accept-conversation.ts b/src/state/queries/messages/accept-conversation.ts index 0c06055b55..668c7decc3 100644 --- a/src/state/queries/messages/accept-conversation.ts +++ b/src/state/queries/messages/accept-conversation.ts @@ -1,6 +1,6 @@ import { type ChatBskyConvoAcceptConvo, - type ChatBskyConvoListConvos, + type ChatBskyConvoDefs, } from '@atproto/api' import {useMutation, useQueryClient} from '@tanstack/react-query' @@ -8,7 +8,16 @@ import {DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' import {useAgent} from '#/state/session' import { - RQKEY as CONVO_LIST_KEY, + type ConvoRequestListQueryData, + optimisticDelete as optimisticDeleteRequest, + RQKEY_ROOT as REQUESTS_RQKEY_ROOT, +} from './list-conversation-requests' +import { + type ConvoListQueryData, + convoListQueryPredicate, + getConvoFromQueryData, + optimisticDelete, + RQKEY_PARTIAL as CONVO_LIST_PARTIAL_KEY, RQKEY_ROOT as CONVO_LIST_ROOT_KEY, } from './list-conversations' @@ -37,101 +46,79 @@ export function useAcceptConversation( return data }, onMutate: () => { - let prevAcceptedPages: ChatBskyConvoListConvos.OutputSchema[] = [] - let prevInboxPages: ChatBskyConvoListConvos.OutputSchema[] = [] - let convoBeingAccepted: - | ChatBskyConvoListConvos.OutputSchema['convos'][number] - | undefined - queryClient.setQueryData( - CONVO_LIST_KEY('request'), - (old?: { - pageParams: Array - pages: Array - }) => { - if (!old) return old - prevInboxPages = old.pages - return { - ...old, - pages: old.pages.map(page => { - const found = page.convos.find(convo => convo.id === convoId) - if (found) { - convoBeingAccepted = found - return { - ...page, - convos: page.convos.filter(convo => convo.id !== convoId), - } - } - return page - }), - } - }, + // snapshot every convo-list cache up front so onError can restore them + // all by their exact keys + const prevConvoListQueries = + queryClient.getQueriesData({ + queryKey: [CONVO_LIST_ROOT_KEY], + }) + let convoBeingAccepted: ChatBskyConvoDefs.ConvoView | null = null + for (const [_key, data] of queryClient.getQueriesData( + {queryKey: CONVO_LIST_PARTIAL_KEY('request')}, + )) { + if (!data) continue + convoBeingAccepted = getConvoFromQueryData(convoId, data) + if (convoBeingAccepted) break + } + queryClient.setQueriesData( + {queryKey: CONVO_LIST_PARTIAL_KEY('request')}, + (old?: ConvoListQueryData) => optimisticDelete(convoId, old), ) - queryClient.setQueryData( - CONVO_LIST_KEY('accepted'), - (old?: { - pageParams: Array - pages: Array - }) => { - if (!old) return old - prevAcceptedPages = old.pages - if (convoBeingAccepted) { + if (convoBeingAccepted) { + const acceptedConvo: ChatBskyConvoDefs.ConvoView = { + ...convoBeingAccepted, + status: 'accepted', + } + queryClient.setQueriesData( + { + queryKey: CONVO_LIST_PARTIAL_KEY('accepted'), + predicate: convoListQueryPredicate(acceptedConvo), + }, + (old?: ConvoListQueryData) => { + if (!old) return old return { ...old, - pages: [ - { - ...old.pages[0], - convos: [ - { - ...convoBeingAccepted, - status: 'accepted', - }, - ...old.pages[0].convos, - ], - }, - ...old.pages.slice(1), - ], + pages: old.pages.map((page, i) => { + const convos = page.convos.filter(c => c.id !== convoId) + if (i === 0) { + return {...page, convos: [acceptedConvo, ...convos]} + } + return {...page, convos} + }), } - } else { - return old - } - }, + }, + ) + } + const prevRequestsQueries = + queryClient.getQueriesData({ + queryKey: [REQUESTS_RQKEY_ROOT], + }) + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => optimisticDeleteRequest(convoId, old), ) onMutate?.() - return {prevAcceptedPages, prevInboxPages} + return {prevConvoListQueries, prevRequestsQueries} }, onSuccess: data => { - queryClient.invalidateQueries({queryKey: [CONVO_LIST_KEY]}) + void queryClient.invalidateQueries({queryKey: [CONVO_LIST_ROOT_KEY]}) + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) onSuccess?.(data) }, onError: (error, _, context) => { logger.error(error) - queryClient.setQueryData( - CONVO_LIST_KEY('accepted'), - (old?: { - pageParams: Array - pages: Array - }) => { - if (!old) return old - return { - ...old, - pages: context?.prevAcceptedPages || old.pages, - } - }, - ) - queryClient.setQueryData( - CONVO_LIST_KEY('request'), - (old?: { - pageParams: Array - pages: Array - }) => { - if (!old) return old - return { - ...old, - pages: context?.prevInboxPages || old.pages, - } - }, - ) - queryClient.invalidateQueries({queryKey: [CONVO_LIST_ROOT_KEY]}) + if (context?.prevConvoListQueries) { + for (const [queryKey, prevData] of context.prevConvoListQueries) { + queryClient.setQueryData(queryKey, prevData) + } + } + if (context?.prevRequestsQueries) { + for (const [queryKey, prevData] of context.prevRequestsQueries) { + queryClient.setQueryData(queryKey, prevData) + } + } + void queryClient.invalidateQueries({queryKey: [CONVO_LIST_ROOT_KEY]}) + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) onError?.(error) }, }) diff --git a/src/state/queries/messages/actor-declaration.ts b/src/state/queries/messages/actor-declaration.ts index 53b493ab6a..f6cd2d51d5 100644 --- a/src/state/queries/messages/actor-declaration.ts +++ b/src/state/queries/messages/actor-declaration.ts @@ -7,6 +7,7 @@ import {useMutation, useQueryClient} from '@tanstack/react-query' import {logger} from '#/logger' import {useAgent, useSession} from '#/state/session' +import {resolveAllowGroupInvites} from '#/components/dms/util' import {RQKEY as PROFILE_RKEY} from '../profile' export function useUpdateActorDeclaration({ @@ -34,8 +35,12 @@ export function useUpdateActorDeclaration({ update.allowIncoming ?? current?.associated?.chat?.allowIncoming ?? 'following' - const allowGroupInvites = - update.allowGroupInvites ?? current?.associated?.chat?.allowGroupInvites + const allowGroupInvites = resolveAllowGroupInvites({ + allowIncoming, + allowGroupInvites: + update.allowGroupInvites ?? + current?.associated?.chat?.allowGroupInvites, + }) const result = await agent.com.atproto.repo.putRecord({ repo: currentAccount.did, collection: 'chat.bsky.actor.declaration', @@ -43,7 +48,7 @@ export function useUpdateActorDeclaration({ record: { $type: 'chat.bsky.actor.declaration', allowIncoming, - ...(allowGroupInvites && {allowGroupInvites}), + allowGroupInvites, }, }) return result @@ -54,14 +59,26 @@ export function useUpdateActorDeclaration({ PROFILE_RKEY(currentAccount?.did), (old?: AppBskyActorDefs.ProfileViewDetailed) => { if (!old) return old + const allowIncoming = + update.allowIncoming ?? + old.associated?.chat?.allowIncoming ?? + 'following' + // resolve the same concrete value the server will receive, so + // optimistic cache and persisted record stay aligned + const allowGroupInvites = resolveAllowGroupInvites({ + allowIncoming, + allowGroupInvites: + update.allowGroupInvites ?? + old.associated?.chat?.allowGroupInvites, + }) return { ...old, associated: { ...old.associated, chat: { - allowIncoming: 'following', ...old.associated?.chat, - ...update, + allowIncoming, + allowGroupInvites, }, }, } satisfies AppBskyActorDefs.ProfileViewDetailed diff --git a/src/state/queries/messages/disable-join-link.ts b/src/state/queries/messages/disable-join-link.ts index 522b5939eb..c143feb6cc 100644 --- a/src/state/queries/messages/disable-join-link.ts +++ b/src/state/queries/messages/disable-join-link.ts @@ -6,6 +6,7 @@ import {useMutation, useQueryClient} from '@tanstack/react-query' import {DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' +import {invalidateJoinLinkPreviewsForCode} from '#/state/queries/join-links' import {useAgent} from '#/state/session' import { rollbackConvoOptimistic, @@ -59,6 +60,7 @@ export function useDisableJoinLink( } }) } + void invalidateJoinLinkPreviewsForCode(queryClient, data.joinLink.code) onSuccess?.(data) }, onError: (e, _variables, context) => { diff --git a/src/state/queries/messages/enable-join-link.ts b/src/state/queries/messages/enable-join-link.ts index a2ba505f1d..4febc85441 100644 --- a/src/state/queries/messages/enable-join-link.ts +++ b/src/state/queries/messages/enable-join-link.ts @@ -3,6 +3,7 @@ import {useMutation, useQueryClient} from '@tanstack/react-query' import {DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' +import {invalidateJoinLinkPreviewsForCode} from '#/state/queries/join-links' import {useAgent} from '#/state/session' import { rollbackConvoOptimistic, @@ -56,6 +57,7 @@ export function useEnableJoinLink( } }) } + void invalidateJoinLinkPreviewsForCode(queryClient, data.joinLink.code) onSuccess?.(data) }, onError: (e, _variables, context) => { diff --git a/src/state/queries/messages/get-status.ts b/src/state/queries/messages/get-status.ts index 2bfb12550a..89625dca24 100644 --- a/src/state/queries/messages/get-status.ts +++ b/src/state/queries/messages/get-status.ts @@ -12,6 +12,8 @@ export function useChatActorStatusQuery() { const agent = useAgent() return useQuery({ + gcTime: STALE.INFINITY, + staleTime: STALE.SECONDS.FIFTEEN, queryKey: chatActorStatusQueryKey(), queryFn: async () => { const {data} = await agent.chat.bsky.actor.getStatus( @@ -21,7 +23,5 @@ export function useChatActorStatusQuery() { return data }, - staleTime: STALE.INFINITY, - gcTime: STALE.INFINITY, }) } diff --git a/src/state/queries/messages/join-requests.ts b/src/state/queries/messages/join-requests.ts index a3eda671e8..179dfafaaf 100644 --- a/src/state/queries/messages/join-requests.ts +++ b/src/state/queries/messages/join-requests.ts @@ -39,14 +39,16 @@ export function useJoinRequestMutation( return useMutation({ mutationFn: async ({member}: {member: string}) => { if (!convoId) throw new Error('No convoId provided') - const endpoint = + const {data} = action === 'approve' - ? agent.chat.bsky.group.approveJoinRequest - : agent.chat.bsky.group.rejectJoinRequest - const {data} = await endpoint( - {convoId, member}, - {headers: DM_SERVICE_HEADERS, encoding: 'application/json'}, - ) + ? await agent.chat.bsky.group.approveJoinRequest( + {convoId, member}, + {headers: DM_SERVICE_HEADERS, encoding: 'application/json'}, + ) + : await agent.chat.bsky.group.rejectJoinRequest( + {convoId, member}, + {headers: DM_SERVICE_HEADERS, encoding: 'application/json'}, + ) return data as JoinRequestOutput }, onMutate: ({member}) => { diff --git a/src/state/queries/messages/leave-conversation.ts b/src/state/queries/messages/leave-conversation.ts index 620ce7ee2c..51b51bde80 100644 --- a/src/state/queries/messages/leave-conversation.ts +++ b/src/state/queries/messages/leave-conversation.ts @@ -1,17 +1,18 @@ -import {useMemo} from 'react' import { type ChatBskyConvoLeaveConvo, type ChatBskyConvoListConvos, } from '@atproto/api' -import { - useMutation, - useMutationState, - useQueryClient, -} from '@tanstack/react-query' +import {useMutation, useQueryClient} from '@tanstack/react-query' import {DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' +import {invalidateJoinLinkPreviewsForConvo} from '#/state/queries/join-links' import {useAgent} from '#/state/session' +import { + type ConvoRequestListQueryData, + optimisticDelete as optimisticDeleteRequest, + RQKEY_ROOT as REQUESTS_RQKEY_ROOT, +} from './list-conversation-requests' import {RQKEY_ROOT as CONVO_LIST_KEY} from './list-conversations' const RQKEY_ROOT = 'leave-convo' @@ -19,6 +20,11 @@ export function RQKEY(convoId: string | undefined) { return [RQKEY_ROOT, convoId] } +type ConvoListQueryData = { + pageParams: Array + pages: Array +} + export function useLeaveConvo( convoId: string | undefined, { @@ -47,70 +53,57 @@ export function useLeaveConvo( return data }, onMutate: () => { - let prevPages: ChatBskyConvoListConvos.OutputSchema[] = [] - queryClient.setQueryData( - [CONVO_LIST_KEY], - (old?: { - pageParams: Array - pages: Array - }) => { + const prevConvoListQueries = + queryClient.getQueriesData({ + queryKey: [CONVO_LIST_KEY], + }) + queryClient.setQueriesData( + {queryKey: [CONVO_LIST_KEY]}, + old => { if (!old) return old - prevPages = old.pages return { ...old, - pages: old.pages.map(page => { - return { - ...page, - convos: page.convos.filter(convo => convo.id !== convoId), - } - }), + pages: old.pages.map(page => ({ + ...page, + convos: page.convos.filter(convo => convo.id !== convoId), + })), } }, ) + const prevRequestsQueries = + queryClient.getQueriesData({ + queryKey: [REQUESTS_RQKEY_ROOT], + }) + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => (convoId ? optimisticDeleteRequest(convoId, old) : old), + ) onMutate?.() - return {prevPages} + return {prevConvoListQueries, prevRequestsQueries} }, onSuccess: data => { void queryClient.invalidateQueries({queryKey: [CONVO_LIST_KEY]}) + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) + if (convoId) { + void invalidateJoinLinkPreviewsForConvo(queryClient, convoId) + } onSuccess?.(data) }, onError: (error, _, context) => { logger.error(error) - queryClient.setQueryData( - [CONVO_LIST_KEY], - (old?: { - pageParams: Array - pages: Array - }) => { - if (!old) return old - return { - ...old, - pages: context?.prevPages || old.pages, - } - }, - ) + if (context?.prevConvoListQueries) { + for (const [queryKey, prevData] of context.prevConvoListQueries) { + queryClient.setQueryData(queryKey, prevData) + } + } + if (context?.prevRequestsQueries) { + for (const [queryKey, prevData] of context.prevRequestsQueries) { + queryClient.setQueryData(queryKey, prevData) + } + } void queryClient.invalidateQueries({queryKey: [CONVO_LIST_KEY]}) + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) onError?.(error) }, }) } - -/** - * Gets currently pending and successful leave convo mutations - * - * @returns Array of `convoId` - */ -export function useLeftConvos() { - const pending = useMutationState({ - filters: {mutationKey: [RQKEY_ROOT], status: 'pending'}, - select: mutation => mutation.options.mutationKey?.[1] as string | undefined, - }) - const success = useMutationState({ - filters: {mutationKey: [RQKEY_ROOT], status: 'success'}, - select: mutation => mutation.options.mutationKey?.[1] as string | undefined, - }) - return useMemo( - () => [...pending, ...success].filter(id => id !== undefined), - [pending, success], - ) -} diff --git a/src/state/queries/messages/list-conversation-requests.tsx b/src/state/queries/messages/list-conversation-requests.tsx new file mode 100644 index 0000000000..10023db4eb --- /dev/null +++ b/src/state/queries/messages/list-conversation-requests.tsx @@ -0,0 +1,165 @@ +import { + ChatBskyConvoDefs, + type ChatBskyConvoListConvoRequests, + ChatBskyGroupDefs, +} from '@atproto/api' +import { + type InfiniteData, + type QueryClient, + useInfiniteQuery, +} from '@tanstack/react-query' + +import {DM_SERVICE_HEADERS} from '#/lib/constants' +import {useAgent} from '#/state/session' + +const DEFAULT_LIMIT = 10 + +export const RQKEY_ROOT = 'convo-request-list' +export const RQKEY = (limit: number = DEFAULT_LIMIT) => [RQKEY_ROOT, limit] + +type RQPageParam = string | undefined + +export function useListConvoRequests({ + enabled = true, + limit = DEFAULT_LIMIT, +}: { + enabled?: boolean + limit?: number +} = {}) { + const agent = useAgent() + + return useInfiniteQuery({ + enabled, + queryKey: RQKEY(limit), + queryFn: async ({pageParam}) => { + const {data} = await agent.chat.bsky.convo.listConvoRequests( + {limit, cursor: pageParam}, + {headers: DM_SERVICE_HEADERS}, + ) + return data + }, + initialPageParam: undefined as RQPageParam, + getNextPageParam: lastPage => lastPage.cursor, + }) +} + +export type ConvoRequestListQueryData = { + pageParams: Array + pages: Array +} + +export type ConvoRequestItem = + ChatBskyConvoListConvoRequests.OutputSchema['requests'][number] + +export function optimisticUpdate( + chatId: string, + old: ConvoRequestListQueryData | undefined, + updateFn: (convo: ChatBskyConvoDefs.ConvoView) => ChatBskyConvoDefs.ConvoView, +): ConvoRequestListQueryData | undefined { + if (!old) return old + + return { + ...old, + pages: old.pages.map(page => ({ + ...page, + requests: page.requests.map((item): ConvoRequestItem => { + if (ChatBskyConvoDefs.isConvoView(item) && item.id === chatId) { + return { + ...updateFn(item), + $type: 'chat.bsky.convo.defs#convoView', + } + } + return item + }), + })), + } +} + +export function optimisticDelete( + chatId: string, + old: ConvoRequestListQueryData | undefined, +) { + if (!old) return old + + return { + ...old, + pages: old.pages.map(page => ({ + ...page, + requests: page.requests.filter( + item => !ChatBskyConvoDefs.isConvoView(item) || item.id !== chatId, + ), + })), + } +} + +export function markAllRead( + old: ConvoRequestListQueryData | undefined, +): ConvoRequestListQueryData | undefined { + if (!old) return old + + return { + ...old, + pages: old.pages.map(page => ({ + ...page, + requests: page.requests.map((item): ConvoRequestItem => { + if (ChatBskyConvoDefs.isConvoView(item)) { + return { + ...item, + $type: 'chat.bsky.convo.defs#convoView', + unreadCount: 0, + } + } + return item + }), + })), + } +} + +export function optimisticDeleteJoinRequest( + convoId: string, + old: ConvoRequestListQueryData | undefined, +) { + if (!old) return old + + return { + ...old, + pages: old.pages.map(page => ({ + ...page, + requests: page.requests.filter( + item => + !ChatBskyGroupDefs.isJoinRequestConvoView(item) || + item.convoId !== convoId, + ), + })), + } +} + +export function* findAllProfilesInQueryData( + queryClient: QueryClient, + did: string, +) { + const queryDatas = queryClient.getQueriesData< + InfiniteData + >({ + queryKey: [RQKEY_ROOT], + }) + for (const [_queryKey, queryData] of queryDatas) { + if (!queryData?.pages) continue + + for (const page of queryData.pages) { + for (const item of page.requests) { + if (ChatBskyConvoDefs.isConvoView(item)) { + for (const member of item.members) { + if (member.did === did) { + yield member + } + } + } else if (ChatBskyGroupDefs.isJoinRequestConvoView(item)) { + if (item.owner.did === did) { + yield item.owner + } + } + } + } + } +} diff --git a/src/state/queries/messages/list-conversations.tsx b/src/state/queries/messages/list-conversations.tsx index f026e57d33..3ba857e155 100644 --- a/src/state/queries/messages/list-conversations.tsx +++ b/src/state/queries/messages/list-conversations.tsx @@ -8,7 +8,9 @@ import { } from '@atproto/api' import { type InfiniteData, + type Query, type QueryClient, + type QueryKey, useInfiniteQuery, useQueryClient, } from '@tanstack/react-query' @@ -18,11 +20,20 @@ import {DM_SERVICE_HEADERS} from '#/lib/constants' import {useCurrentConvoId} from '#/state/messages/current-convo-id' import {useMessagesEventBus} from '#/state/messages/events' import {useModerationOpts} from '#/state/preferences/moderation-opts' +import {invalidateJoinLinkPreviewsForConvo} from '#/state/queries/join-links' import {useAgent, useSession} from '#/state/session' import {parseConvoView} from '#/components/dms/util' +import {useAgeAssurance} from '#/ageAssurance' +import {type AgeAssuranceFlags} from '#/ageAssurance/types' import * as bsky from '#/types/bsky' import {RQKEY as CONVO_KEY} from './conversation' -import {useLeftConvos} from './leave-conversation' +import { + type ConvoRequestListQueryData, + optimisticDelete as optimisticDeleteRequest, + optimisticDeleteJoinRequest, + optimisticUpdate as optimisticUpdateRequest, + RQKEY_ROOT as REQUESTS_RQKEY_ROOT, +} from './list-conversation-requests' import {listConvoMembersQueryKey} from './list-convo-members' const DEFAULT_LIMIT = 10 @@ -39,7 +50,60 @@ export const RQKEY = ( | 'locked-permanently' | undefined = undefined, limit?: number, -) => [RQKEY_ROOT, status, readState, kind, lockStatus, limit] +) => [RQKEY_ROOT, status, readState, kind, lockStatus, limit] as const + +/** + * Prefix key matching every convo-list query with the given status (and + * optionally readState), regardless of the remaining params (kind, + * lockStatus, limit). Only valid with prefix-matching APIs (setQueriesData, + * getQueriesData, invalidateQueries) - exact-match APIs (getQueryData, + * setQueryData) hash the full key and will never match a prefix. + */ +export const RQKEY_PARTIAL = ( + status: 'accepted' | 'request' | 'all', + readState?: 'all' | 'unread', +) => (readState ? [RQKEY_ROOT, status, readState] : [RQKEY_ROOT, status]) + +/** + * Whether a convo satisfies the filters encoded in a convo-list query key. + * Caches are server-filtered, so optimistic inserts must apply the same + * filters client-side or convos leak into lists that should exclude them. + */ +export function convoMatchesQueryKey( + convo: ChatBskyConvoDefs.ConvoView, + queryKey: QueryKey, +): boolean { + const [, status, readState, kind, lockStatus] = queryKey as ReturnType< + typeof RQKEY + > + if (status !== 'all' && status !== convo.status) return false + if (readState === 'unread' && convo.unreadCount === 0) return false + if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) { + if (kind === 'direct') return false + if (lockStatus && convo.kind.lockStatus !== lockStatus) return false + } else { + if (kind === 'group') return false + // direct convos are never locked + if (lockStatus && lockStatus !== 'unlocked') return false + } + return true +} + +/** + * Query predicate for optimistically upserting a convo into convo-list + * caches. Targets caches whose filters the convo satisfies, plus caches the + * convo is already in - those get updated in place even if the convo no + * longer matches (e.g. unreadCount dropped to 0), mirroring how read/mute + * log events update convos in place everywhere. + */ +export function convoListQueryPredicate(convo: ChatBskyConvoDefs.ConvoView) { + return (query: Query): boolean => { + const data = query.state.data as ConvoListQueryData | undefined + if (data && getConvoFromQueryData(convo.id, data)) return true + return convoMatchesQueryKey(convo, query.queryKey) + } +} + type RQPageParam = string | undefined export function useListConvosQuery({ @@ -115,21 +179,23 @@ export function ListConvosProviderInner({ }: { children: React.ReactNode }) { + const aa = useAgeAssurance() const {refetch, data} = useListConvosQuery({ readState: 'unread', limit: UNREAD_LIMIT, lockStatus: 'unlocked', + kind: aa.flags.groupChatDisabled ? 'direct' : 'all', }) const messagesBus = useMessagesEventBus() const queryClient = useQueryClient() const {currentConvoId} = useCurrentConvoId() const {currentAccount} = useSession() - const leftConvos = useLeftConvos() const debouncedRefetch = useMemo(() => { const refetchAndInvalidate = () => { void refetch() void queryClient.invalidateQueries({queryKey: [RQKEY_ROOT]}) + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) } return throttle(refetchAndInvalidate, 500, { leading: true, @@ -157,6 +223,22 @@ export function ListConvosProviderInner({ ) } + function updateConvoInAllLists( + convoId: string, + fn: ( + convo: ChatBskyConvoDefs.ConvoView, + ) => ChatBskyConvoDefs.ConvoView, + ) { + queryClient.setQueriesData( + {queryKey: [RQKEY_ROOT]}, + old => optimisticUpdate(convoId, old, fn), + ) + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => optimisticUpdateRequest(convoId, old, fn), + ) + } + function mutateConvoView( convoId: string, fn: ( @@ -167,9 +249,17 @@ export function ListConvosProviderInner({ CONVO_KEY(convoId), old => (old ? fn(old) : old), ) + updateConvoInAllLists(convoId, fn) + } + + function deleteConvoFromAllLists(convoId: string) { queryClient.setQueriesData( {queryKey: [RQKEY_ROOT]}, - old => optimisticUpdate(convoId, old, fn), + old => optimisticDelete(convoId, old), + ) + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => optimisticDeleteRequest(convoId, old), ) } @@ -192,8 +282,11 @@ export function ListConvosProviderInner({ mutateMembers(convoId, list => list.some(m => m.did === did) ? list : list.concat(newMember), ) - mutateConvoView(convoId, convo => - addMemberToConvoView(convo, newMember, rev, alreadyKnownMember), + mutateConvoView( + convoId, + withRevGuard(rev, convo => + addMemberToConvoView(convo, newMember, rev, alreadyKnownMember), + ), ) } @@ -211,8 +304,11 @@ export function ListConvosProviderInner({ >(listConvoMembersQueryKey(convoId)) ?.some(m => m.did === did) === false mutateMembers(convoId, list => list.filter(m => m.did !== did)) - mutateConvoView(convoId, convo => - removeMemberFromConvoView(convo, did, rev, alreadyRemovedMember), + mutateConvoView( + convoId, + withRevGuard(rev, convo => + removeMemberFromConvoView(convo, did, rev, alreadyRemovedMember), + ), ) } @@ -220,34 +316,33 @@ export function ListConvosProviderInner({ if (ChatBskyConvoDefs.isLogBeginConvo(log)) { debouncedRefetch() } else if (ChatBskyConvoDefs.isLogLeaveConvo(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => optimisticDelete(log.convoId, old), - ) + deleteConvoFromAllLists(log.convoId) + // The viewer is no longer in this convo (they left on another + // device, or were removed - removed members receive a + // logLeaveConvo, not a logRemoveMember). Refetch any cached join + // link preview so its viewer state reflects the lost membership. + void invalidateJoinLinkPreviewsForConvo(queryClient, log.convoId) } else if (ChatBskyConvoDefs.isLogDeleteMessage(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => { - if ( - (ChatBskyConvoDefs.isDeletedMessageView(log.message) || - ChatBskyConvoDefs.isMessageView(log.message)) && - (ChatBskyConvoDefs.isDeletedMessageView( - convo.lastMessage, - ) || - ChatBskyConvoDefs.isMessageView(convo.lastMessage)) - ) { - return log.message.id === convo.lastMessage.id - ? { - ...convo, - rev: log.rev, - lastMessage: log.message, - } - : convo - } else { - return convo - } - }), + updateConvoInAllLists( + log.convoId, + withRevGuard(log.rev, convo => { + if ( + (ChatBskyConvoDefs.isDeletedMessageView(log.message) || + ChatBskyConvoDefs.isMessageView(log.message)) && + (ChatBskyConvoDefs.isDeletedMessageView(convo.lastMessage) || + ChatBskyConvoDefs.isMessageView(convo.lastMessage)) + ) { + return log.message.id === convo.lastMessage.id + ? { + ...convo, + rev: log.rev, + lastMessage: log.message, + } + : convo + } else { + return convo + } + }), ) } else if (ChatBskyConvoDefs.isLogCreateMessage(log)) { // Store in a new var to avoid TS errors due to closures. @@ -270,14 +365,34 @@ export function ListConvosProviderInner({ } if (!foundConvo) { - // Convo not found, trigger refetch + // Convo not found, trigger refetch. Use continue (not return) so + // the remaining logs in this batch still apply - the bus advances + // its cursor past this batch, so a dropped log is never + // redelivered. debouncedRefetch() - return + continue } + // Rev guard. updatedConvo is built once from foundConvo and applied + // across caches, so guarding here (rather than per-cache) is both + // simplest and correct - skip if the log isn't newer than the + // cached convo. + if (logRef.rev <= foundConvo.rev) { + continue + } + + // add relatedProfiles to members list, but making sure to dedupe + const relatedProfilesSansMembers = ( + logRef.relatedProfiles ?? [] + ).filter( + profile => + !foundConvo.members.some(member => member.did === profile.did), + ) + // Update the convo const updatedConvo = { ...foundConvo, + members: [...foundConvo.members, ...relatedProfilesSansMembers], rev: logRef.rev, lastMessage: logRef.message, unreadCount: @@ -316,9 +431,12 @@ export function ListConvosProviderInner({ }), } } - // always update the unread one + // always update the unread ones, where the convo qualifies queryClient.setQueriesData( - {queryKey: RQKEY('all', 'unread')}, + { + queryKey: RQKEY_PARTIAL('all', 'unread'), + predicate: convoListQueryPredicate(updatedConvo), + }, (old?: ConvoListQueryData) => old ? updateFn(old) @@ -330,51 +448,101 @@ export function ListConvosProviderInner({ // update the other ones based on status of the incoming message if (updatedConvo.status === 'accepted') { queryClient.setQueriesData( - {queryKey: RQKEY('accepted')}, + { + queryKey: RQKEY_PARTIAL('accepted'), + predicate: convoListQueryPredicate(updatedConvo), + }, updateFn, ) } else if (updatedConvo.status === 'request') { - queryClient.setQueriesData({queryKey: RQKEY('request')}, updateFn) + queryClient.setQueriesData( + { + queryKey: RQKEY_PARTIAL('request'), + predicate: convoListQueryPredicate(updatedConvo), + }, + updateFn, + ) + // also move-to-top in the new requests cache + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => moveConvoToTopInRequests(updatedConvo, old), + ) } } else if (ChatBskyConvoDefs.isLogReadMessage(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => ({ - ...convo, - unreadCount: 0, - rev: log.rev, - })), + updateConvoInAllLists( + log.convoId, + withRevGuard(log.rev, convo => ({ + ...convo, + unreadCount: 0, + rev: log.rev, + })), ) } else if (ChatBskyConvoDefs.isLogReadConvo(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => ({ - ...convo, - unreadCount: 0, - rev: log.rev, - })), + updateConvoInAllLists( + log.convoId, + withRevGuard(log.rev, convo => ({ + ...convo, + unreadCount: 0, + rev: log.rev, + })), ) } else if (ChatBskyConvoDefs.isLogAcceptConvo(log)) { - const requests = queryClient.getQueryData( - RQKEY('request'), - ) - if (!requests) { - debouncedRefetch() - return + const requestQueries = + queryClient.getQueriesData({ + queryKey: RQKEY_PARTIAL('request'), + }) + let foundConvo: ChatBskyConvoDefs.ConvoView | null = null + for (const [_key, data] of requestQueries) { + if (!data) continue + foundConvo = getConvoFromQueryData(log.convoId, data) + if (foundConvo) break } - const acceptedConvo = getConvoFromQueryData(log.convoId, requests) - if (!acceptedConvo) { + if (!foundConvo) { + // Use continue (not return) so the remaining logs in this batch + // still apply - the bus advances its cursor past this batch, so a + // dropped log is never redelivered. debouncedRefetch() - return + continue } - queryClient.setQueryData( - RQKEY('request'), - (old?: ConvoListQueryData) => optimisticDelete(log.convoId, old), + if (log.rev <= foundConvo.rev) { + continue + } + const acceptedConvo: ChatBskyConvoDefs.ConvoView = { + ...foundConvo, + status: 'accepted', + rev: log.rev, + } + // Flip status to 'accepted' in every cache that already holds this + // convo - including 'all'-status caches like the provider's + // always-mounted unread query, which the request->accepted move + // below otherwise never touches. Without this the stale 'all' copy + // keeps status: 'request', and the next isLogCreateMessage can seed + // foundConvo from it and resurrect the convo in the requests inbox. + // Runs before the delete-from-request below: it updates in place + // (never inserts), so the 'request' caches get the accepted copy and + // are then cleared by the delete, leaving no stale request entries. + updateConvoInAllLists( + log.convoId, + withRevGuard(log.rev, convo => ({ + ...convo, + status: 'accepted', + rev: log.rev, + })), ) queryClient.setQueriesData( - {queryKey: RQKEY('accepted')}, + {queryKey: RQKEY_PARTIAL('request')}, + (old?: ConvoListQueryData) => optimisticDelete(log.convoId, old), + ) + // also remove from the new requests cache + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => optimisticDeleteRequest(log.convoId, old), + ) + queryClient.setQueriesData( + { + queryKey: RQKEY_PARTIAL('accepted'), + predicate: convoListQueryPredicate(acceptedConvo), + }, (old?: ConvoListQueryData) => { if (!old) { debouncedRefetch() @@ -387,98 +555,88 @@ export function ListConvosProviderInner({ return { ...page, convos: [ - {...acceptedConvo, status: 'accepted'}, - ...page.convos, + acceptedConvo, + ...page.convos.filter(c => c.id !== log.convoId), ], } } - return page + return { + ...page, + convos: page.convos.filter(c => c.id !== log.convoId), + } }), } }, ) } else if (ChatBskyConvoDefs.isLogMuteConvo(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => ({ - ...convo, - muted: true, - rev: log.rev, - })), + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => ({ + ...convo, + muted: true, + rev: log.rev, + })), ) } else if (ChatBskyConvoDefs.isLogUnmuteConvo(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => ({ - ...convo, - muted: false, - rev: log.rev, - })), + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => ({ + ...convo, + muted: false, + rev: log.rev, + })), ) } else if (ChatBskyConvoDefs.isLogLockConvo(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => { - if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) { - return { - ...convo, - kind: { - ...convo.kind, - lockStatus: 'locked', - }, - rev: log.rev, - } - } + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => { + if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) { return { ...convo, + kind: {...convo.kind, lockStatus: 'locked'}, rev: log.rev, } - }), + } + return {...convo, rev: log.rev} + }), ) + // The log event doesn't say whether the lock is forced by a + // moderation override, so refetch to pick up the flag. + void queryClient.invalidateQueries({ + queryKey: CONVO_KEY(log.convoId), + }) } else if (ChatBskyConvoDefs.isLogUnlockConvo(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => { - if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) { - return { - ...convo, - kind: { - ...convo.kind, - lockStatus: 'unlocked', - }, - rev: log.rev, - } - } + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => { + if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) { return { ...convo, + kind: { + ...convo.kind, + lockStatus: 'unlocked', + // An unlocked convo cannot be moderation-locked. + lockStatusModerationOverride: false, + }, rev: log.rev, } - }), + } + return {...convo, rev: log.rev} + }), ) } else if (ChatBskyConvoDefs.isLogLockConvoPermanently(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => { - if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) { - return { - ...convo, - kind: { - ...convo.kind, - lockStatus: 'locked-permanently', - }, - rev: log.rev, - } - } + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => { + if (ChatBskyConvoDefs.isGroupConvo(convo.kind)) { return { ...convo, + kind: {...convo.kind, lockStatus: 'locked-permanently'}, rev: log.rev, } - }), + } + return {...convo, rev: log.rev} + }), ) } else if ( ChatBskyConvoDefs.isLogCreateJoinLink(log) || @@ -488,36 +646,92 @@ export function ListConvosProviderInner({ ) { // Join link data not included in the log event, trigger refetch to get it debouncedRefetch() + } else if (ChatBskyConvoDefs.isLogEditGroup(log)) { + // Updated group details (name etc.) aren't included in the log + // event, so refetch to pick them up. + debouncedRefetch() } else if ( ChatBskyConvoDefs.isLogApproveJoinRequest(log) || ChatBskyConvoDefs.isLogRejectJoinRequest(log) ) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - updateGroupConvoJoinRequestCount(log, old, -1), + // Route through mutateConvoView (not updateConvoInAllLists) so the + // single-convo cache updates too, keeping the in-convo requests + // banner in sync. + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => + applyJoinRequestCountDelta(convo, log.rev, -1), + ), ) } else if (ChatBskyConvoDefs.isLogIncomingJoinRequest(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - updateGroupConvoJoinRequestCount(log, old, 1), + // Route through mutateConvoView (not updateConvoInAllLists) so the + // single-convo cache updates too, letting the in-convo requests + // banner appear live. + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => + applyJoinRequestCountDelta(convo, log.rev, 1), + ), + ) + } else if (ChatBskyConvoDefs.isLogReadJoinRequests(log)) { + // The owner marked join requests as read (possibly on another + // device). Zero the unread count but keep the total, mirroring the + // useMarkJoinRequestsRead mutation. + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => { + if (!ChatBskyConvoDefs.isGroupConvo(convo.kind)) { + return {...convo, rev: log.rev} + } + return { + ...convo, + kind: {...convo.kind, unreadJoinRequestCount: 0}, + rev: log.rev, + } + }), ) } else if (ChatBskyConvoDefs.isLogOutgoingJoinRequest(log)) { - // Viewer isn't in the chat yet, no need to do anything + // Viewer isn't in the chat yet, but the inbox surfaces outgoing + // requests, so refetch to pick up the new entry. + debouncedRefetch() + } else if (ChatBskyConvoDefs.isLogWithdrawIncomingJoinRequest(log)) { + // A requester rescinded their request to a group the viewer owns. + // Mirror of isLogIncomingJoinRequest: decrement the counts. + mutateConvoView( + log.convoId, + withRevGuard(log.rev, convo => + applyJoinRequestCountDelta(convo, log.rev, -1), + ), + ) + } else if (ChatBskyConvoDefs.isLogWithdrawOutgoingJoinRequest(log)) { + // The viewer rescinded their own outgoing join request (possibly on + // another device). Remove it from the requests inbox cache. + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => optimisticDeleteJoinRequest(log.convoId, old), + ) } else if (ChatBskyConvoDefs.isLogAddReaction(log)) { - queryClient.setQueriesData( - {queryKey: [RQKEY_ROOT]}, - (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => ({ + updateConvoInAllLists( + log.convoId, + withRevGuard(log.rev, convo => { + // add relatedProfiles to members list, but making sure to dedupe + const relatedProfilesSansMembers = ( + log.relatedProfiles ?? [] + ).filter( + profile => + !convo.members.some(member => member.did === profile.did), + ) + return { ...convo, + members: [...convo.members, ...relatedProfilesSansMembers], lastReaction: { $type: 'chat.bsky.convo.defs#messageAndReactionView', reaction: log.reaction, message: log.message, }, rev: log.rev, - })), + } + }), ) } else if (ChatBskyConvoDefs.isLogAddMember(log)) { const data = log.message.data @@ -591,31 +805,35 @@ export function ListConvosProviderInner({ queryClient.setQueriesData( {queryKey: [RQKEY_ROOT]}, (old?: ConvoListQueryData) => - optimisticUpdate(log.convoId, old, convo => { - if ( - // if the convo is the same - log.convoId === convo.id && - ChatBskyConvoDefs.isMessageAndReactionView( - convo.lastReaction, - ) && - ChatBskyConvoDefs.isMessageView(log.message) && - // ...and the message is the same - convo.lastReaction.message.id === log.message.id && - // ...and the reaction is the same - convo.lastReaction.reaction.sender.did === - log.reaction.sender.did && - convo.lastReaction.reaction.value === log.reaction.value - ) { - return { - ...convo, - // ...remove the reaction. hopefully they didn't react twice in a row! - lastReaction: undefined, - rev: log.rev, + optimisticUpdate( + log.convoId, + old, + withRevGuard(log.rev, convo => { + if ( + // if the convo is the same + log.convoId === convo.id && + ChatBskyConvoDefs.isMessageAndReactionView( + convo.lastReaction, + ) && + ChatBskyConvoDefs.isMessageView(log.message) && + // ...and the message is the same + convo.lastReaction.message.id === log.message.id && + // ...and the reaction is the same + convo.lastReaction.reaction.sender.did === + log.reaction.sender.did && + convo.lastReaction.reaction.value === log.reaction.value + ) { + return { + ...convo, + // ...remove the reaction. hopefully they didn't react twice in a row! + lastReaction: undefined, + rev: log.rev, + } + } else { + return convo } - } else { - return convo - } - }), + }), + ), ) } } @@ -636,15 +854,12 @@ export function ListConvosProviderInner({ ]) const ctx = useMemo(() => { - const convos = - data?.pages - .flatMap(page => page.convos) - .filter(convo => !leftConvos.includes(convo.id)) ?? [] + const convos = data?.pages.flatMap(page => page.convos) ?? [] return { accepted: convos.filter(conv => conv.status === 'accepted'), request: convos.filter(conv => conv.status === 'request'), } - }, [data, leftConvos]) + }, [data]) return ( @@ -658,6 +873,7 @@ export function useUnreadMessageCount() { const {currentAccount} = useSession() const {accepted, request} = useListConvos() const moderationOpts = useModerationOpts() + const aa = useAgeAssurance() return useMemo<{ count: number @@ -669,12 +885,14 @@ export function useUnreadMessageCount() { currentAccount?.did, currentConvoId, moderationOpts, + aa.flags, ) const requestCount = calculateCount( request, currentAccount?.did, currentConvoId, moderationOpts, + aa.flags, ) if (acceptedCount > 0) { const total = acceptedCount + Math.min(requestCount, 1) @@ -697,7 +915,14 @@ export function useUnreadMessageCount() { hasNew: false, } } - }, [accepted, request, currentAccount?.did, currentConvoId, moderationOpts]) + }, [ + accepted, + request, + currentAccount?.did, + currentConvoId, + moderationOpts, + aa.flags, + ]) } function calculateCount( @@ -705,6 +930,7 @@ function calculateCount( currentAccountDid: string | undefined, currentConvoId: string | undefined, moderationOpts: ModerationOpts | undefined, + flags: AgeAssuranceFlags, ) { return ( convos @@ -714,13 +940,24 @@ function calculateCount( if (!convo || !moderationOpts) return acc + if (convo.kind === 'group' && flags.groupChatDisabled) return acc + const shouldIgnore = convo.view.muted || !convo.primaryMember || moderateProfile(convo.primaryMember, moderationOpts).blocked || convo.primaryMember.handle === 'missing.invalid' || (convo.kind === 'group' && convo.details.lockStatus !== 'unlocked') - const unreadCount = !shouldIgnore && convo.view.unreadCount > 0 ? 1 : 0 + const unreadJoinRequestCount = + convo.kind === 'group' + ? (convo.details.unreadJoinRequestCount ?? 0) + : 0 + + const unreadCount = + !shouldIgnore && + (convo.view.unreadCount > 0 || unreadJoinRequestCount > 0) + ? 1 + : 0 return acc + unreadCount }, 0) ?? 0 @@ -752,6 +989,25 @@ export function useOnMarkAsRead() { ) } +/** + * Wraps a log-driven convo update so it's skipped when the log is not newer + * than the cached convo. Lists are fed by two unsynchronized channels (full + * listConvos refetches and the log stream), so a stale refetch snapshot can be + * written after a log already applied, or a refetch can already include a + * message whose log then arrives and double-counts. Rev comparison as plain + * string comparison is safe here - revs are fixed-width. ConvoView.rev is a + * required field per the lexicon, so convo.rev always exists. + * + * Only used in the log-event paths (which have a log.rev), never in the generic + * optimisticUpdate helper, which mutations without a rev also call. + */ +function withRevGuard( + rev: string, + fn: (convo: ChatBskyConvoDefs.ConvoView) => ChatBskyConvoDefs.ConvoView, +): (convo: ChatBskyConvoDefs.ConvoView) => ChatBskyConvoDefs.ConvoView { + return convo => (rev <= convo.rev ? convo : fn(convo)) +} + function optimisticUpdate( chatId: string, old?: ConvoListQueryData, @@ -772,27 +1028,58 @@ function optimisticUpdate( } } -function updateGroupConvoJoinRequestCount( - log: {convoId: string; rev: string}, - old: ConvoListQueryData | undefined, +function applyJoinRequestCountDelta( + convo: ChatBskyConvoDefs.ConvoView, + rev: string, delta: 1 | -1, -) { - return optimisticUpdate(log.convoId, old, convo => { - // Join requests are only meaningful for group convos. - if (!ChatBskyConvoDefs.isGroupConvo(convo.kind)) { - return {...convo, rev: log.rev} +): ChatBskyConvoDefs.ConvoView { + // Join requests are only meaningful for group convos. + if (!ChatBskyConvoDefs.isGroupConvo(convo.kind)) { + return {...convo, rev} + } + // Bump the total and unread counts together. Both are clamped at 0 and + // collapse to undefined when empty, matching the server's shape. + const bump = (current: number | undefined) => { + const next = Math.max(0, (current ?? 0) + delta) + return next === 0 ? undefined : next + } + return { + ...convo, + kind: { + ...convo.kind, + joinRequestCount: bump(convo.kind.joinRequestCount), + unreadJoinRequestCount: bump(convo.kind.unreadJoinRequestCount), + }, + rev, + } +} + +function moveConvoToTopInRequests( + updatedConvo: ChatBskyConvoDefs.ConvoView, + old: ConvoRequestListQueryData | undefined, +): ConvoRequestListQueryData | undefined { + if (!old) return old + const typedConvo: ConvoRequestListQueryData['pages'][number]['requests'][number] = + { + $type: 'chat.bsky.convo.defs#convoView', + ...updatedConvo, } - const current = convo.kind.joinRequestCount ?? 0 - const next = Math.max(0, current + delta) - return { - ...convo, - kind: { - ...convo.kind, - joinRequestCount: next === 0 ? undefined : next, - }, - rev: log.rev, - } - }) + return { + ...old, + pages: old.pages.map((page, i) => { + const filtered = page.requests.filter( + item => + !ChatBskyConvoDefs.isConvoView(item) || item.id !== updatedConvo.id, + ) + if (i === 0) { + return { + ...page, + requests: [typedConvo, ...filtered], + } + } + return {...page, requests: filtered} + }), + } } function removeMemberFromConvoView( @@ -842,7 +1129,7 @@ function addMemberToConvoView( } } -function optimisticDelete(chatId: string, old?: ConvoListQueryData) { +export function optimisticDelete(chatId: string, old?: ConvoListQueryData) { if (!old) return old return { diff --git a/src/state/queries/messages/list-join-requests.ts b/src/state/queries/messages/list-join-requests.ts index 9f0860c20d..64a999c118 100644 --- a/src/state/queries/messages/list-join-requests.ts +++ b/src/state/queries/messages/list-join-requests.ts @@ -8,6 +8,8 @@ import {createQueryKey} from '#/state/queries/util' import {useAgent} from '#/state/session' import {STALE} from '..' +export const JOIN_REQUESTS_THRESHOLD = 20 + const listJoinRequestsQueryKeyRoot = 'list-join-requests' export const createListJoinRequestsQueryKey = (args: {convoId: string}) => @@ -53,7 +55,7 @@ export function useListJoinRequestsQuery({ queryKey: createListJoinRequestsQueryKey({convoId: convoId ?? ''}), queryFn: async ({pageParam}) => { const {data} = await agent.chat.bsky.group.listJoinRequests( - {convoId: convoId!, cursor: pageParam, limit: 20}, + {convoId: convoId!, cursor: pageParam, limit: JOIN_REQUESTS_THRESHOLD}, {headers: DM_SERVICE_HEADERS}, ) return data diff --git a/src/state/queries/messages/list-mutual-groups.ts b/src/state/queries/messages/list-mutual-groups.ts new file mode 100644 index 0000000000..9ff4a1da09 --- /dev/null +++ b/src/state/queries/messages/list-mutual-groups.ts @@ -0,0 +1,39 @@ +import {useInfiniteQuery} from '@tanstack/react-query' + +import {DM_SERVICE_HEADERS} from '#/lib/constants' +import {createQueryKey} from '#/state/queries/util' +import {useAgent} from '#/state/session' + +const listMutualGroupsQueryKeyRoot = 'list-mutual-groups' + +export const createListMutualGroupsQueryKey = (args: {subject: string}) => + createQueryKey(listMutualGroupsQueryKeyRoot, args) + +export function useListMutualGroupsQuery({ + subject, + enabled, + limit = 20, +}: { + subject: string | undefined + enabled?: boolean + limit?: number +}) { + const agent = useAgent() + const isEnabled = enabled !== false && !!subject + + return useInfiniteQuery({ + gcTime: 0, + staleTime: 0, + enabled: isEnabled, + queryKey: createListMutualGroupsQueryKey({subject: subject ?? ''}), + queryFn: async ({pageParam}) => { + const {data} = await agent.chat.bsky.group.listMutualGroups( + {subject: subject!, cursor: pageParam, limit}, + {headers: DM_SERVICE_HEADERS}, + ) + return data + }, + initialPageParam: undefined as string | undefined, + getNextPageParam: page => page.cursor, + }) +} diff --git a/src/state/queries/messages/lock-conversation.ts b/src/state/queries/messages/lock-conversation.ts index b10db13462..122c0633b4 100644 --- a/src/state/queries/messages/lock-conversation.ts +++ b/src/state/queries/messages/lock-conversation.ts @@ -14,15 +14,21 @@ export function useLockConvo( onSuccess, onError, }: { - onSuccess?: (data: ChatBskyConvoLockConvo.OutputSchema) => void - onError?: (error: Error, variables: {lock: boolean}) => void + onSuccess?: ( + data: ChatBskyConvoLockConvo.OutputSchema, + variables: {lock: boolean; silent?: boolean}, + ) => void + onError?: ( + error: Error, + variables: {lock: boolean; silent?: boolean}, + ) => void }, ) { const queryClient = useQueryClient() const agent = useAgent() return useMutation({ - mutationFn: async ({lock}: {lock: boolean}) => { + mutationFn: async ({lock}: {lock: boolean; silent?: boolean}) => { if (!convoId) throw new Error('No convoId provided') if (lock) { const {data} = await agent.chat.bsky.convo.lockConvo( @@ -51,8 +57,8 @@ export function useLockConvo( } }) }, - onSuccess: data => { - onSuccess?.(data) + onSuccess: (data, variables) => { + onSuccess?.(data, variables) }, onError: (e, variables, context) => { if (convoId && context) { diff --git a/src/state/queries/messages/mark-join-request-read.ts b/src/state/queries/messages/mark-join-request-read.ts new file mode 100644 index 0000000000..ae6d7e88a7 --- /dev/null +++ b/src/state/queries/messages/mark-join-request-read.ts @@ -0,0 +1,85 @@ +import {ChatBskyConvoDefs} from '@atproto/api' +import {useMutation, useQueryClient} from '@tanstack/react-query' + +import {DM_SERVICE_HEADERS} from '#/lib/constants' +import {logger} from '#/logger' +import {useAgent} from '#/state/session' +import {RQKEY as CONVO_KEY} from './conversation' +import { + type ConvoListQueryData, + RQKEY_ROOT as CONVO_LIST_ROOT_KEY, +} from './list-conversations' + +export function useMarkJoinRequestsRead(convoId: string | undefined) { + const queryClient = useQueryClient() + const agent = useAgent() + + return useMutation({ + mutationFn: async () => { + if (!convoId) throw new Error('No convoId provided') + await agent.chat.bsky.group.updateJoinRequestsRead( + {convoId}, + {headers: DM_SERVICE_HEADERS, encoding: 'application/json'}, + ) + }, + onMutate: () => { + if (!convoId) return + + const prevConvo = queryClient.getQueryData( + CONVO_KEY(convoId), + ) + queryClient.setQueryData( + CONVO_KEY(convoId), + old => { + if (!old || !ChatBskyConvoDefs.isGroupConvo(old.kind)) return old + return { + ...old, + kind: {...old.kind, unreadJoinRequestCount: 0}, + } + }, + ) + + const prevListEntries = queryClient.getQueriesData({ + queryKey: [CONVO_LIST_ROOT_KEY], + }) + queryClient.setQueriesData( + {queryKey: [CONVO_LIST_ROOT_KEY]}, + old => { + if (!old) return old + return { + ...old, + pages: old.pages.map(page => ({ + ...page, + convos: page.convos.map(convo => { + if ( + convo.id !== convoId || + !ChatBskyConvoDefs.isGroupConvo(convo.kind) + ) { + return convo + } + return { + ...convo, + kind: {...convo.kind, unreadJoinRequestCount: 0}, + } + }), + })), + } + }, + ) + + return {prevConvo, prevListEntries} + }, + onError: (error, _, context) => { + logger.error('Failed to mark join requests as read', {safeMessage: error}) + if (!convoId) return + if (context?.prevConvo) { + queryClient.setQueryData(CONVO_KEY(convoId), context.prevConvo) + } + for (const [key, data] of context?.prevListEntries ?? []) { + queryClient.setQueryData(key, data) + } + void queryClient.invalidateQueries({queryKey: CONVO_KEY(convoId)}) + void queryClient.invalidateQueries({queryKey: [CONVO_LIST_ROOT_KEY]}) + }, + }) +} diff --git a/src/state/queries/messages/request-join-group-chat.ts b/src/state/queries/messages/request-join-group-chat.ts index 04e63395f7..f4d5650346 100644 --- a/src/state/queries/messages/request-join-group-chat.ts +++ b/src/state/queries/messages/request-join-group-chat.ts @@ -1,9 +1,10 @@ import {type ChatBskyGroupRequestJoin} from '@atproto/api' -import {useMutation} from '@tanstack/react-query' +import {useMutation, useQueryClient} from '@tanstack/react-query' import {DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' import {useAgent, useSession} from '#/state/session' +import {RQKEY_ROOT as REQUESTS_RQKEY_ROOT} from './list-conversation-requests' export function useRequestJoinGroupChat({ onSuccess, @@ -13,6 +14,7 @@ export function useRequestJoinGroupChat({ onError?: (error: Error) => void } = {}) { const agent = useAgent() + const queryClient = useQueryClient() const {hasSession} = useSession() return useMutation({ @@ -27,6 +29,7 @@ export function useRequestJoinGroupChat({ return res.data }, onSuccess: data => { + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) onSuccess?.(data) }, onError: error => { diff --git a/src/state/queries/messages/restrictChatSettings.ts b/src/state/queries/messages/restrictChatSettings.ts index 3a1e64eff1..ad33385dc8 100644 --- a/src/state/queries/messages/restrictChatSettings.ts +++ b/src/state/queries/messages/restrictChatSettings.ts @@ -3,23 +3,71 @@ import {type ChatBskyActorDeclaration} from '@atproto/api' import {networkRetry} from '#/lib/async/retry' import {logger} from '#/logger' -import {setOtherRequiredDataActorDeclarationCache} from '#/ageAssurance/data' +import { + getDidFromAgentSession, + getOtherRequiredDataFromCache, + setOtherRequiredDataActorDeclarationCache, +} from '#/ageAssurance/data' /** - * Helper to update the chat settings record. + * Updates the chat actor declaration record to restrict who can contact the + * user. Both restrictions write to the same record (`rkey: 'self'`), so this + * is a single helper to avoid two concurrent `putRecord` calls racing each + * other and clobbering one another's changes. + * + * - `restrictIncoming`: sets `allowIncoming: 'none'` (used when a user isn't + * age-assured). + * - `restrictGroupInvites`: sets `allowGroupInvites: 'none'` (used for under-18 + * users, who per spec cannot participate in group chats). + * + * Dimensions that aren't being restricted preserve their cached value, falling + * back to the lexicon defaults when the cache is empty. */ export async function restrictChatSettings({ agent, - did, + restrictIncoming = false, + restrictGroupInvites = false, }: { agent: AtpAgent - did: string + restrictIncoming?: boolean + restrictGroupInvites?: boolean }): Promise { + const did = getDidFromAgentSession(agent) + if (!did) return + + const cached = getOtherRequiredDataFromCache({did})?.actorDeclaration + + // When the cache is empty we fall back to defaults for any dimension we're + // not explicitly restricting, which could drop/downgrade a value the user + // has actually set server-side. The cache should be hydrated by + // prefetchOtherRequiredData before any of these paths fire, so log if that + // assumption ever breaks. (Restricting both dimensions is unaffected, so + // don't warn for the common signup/birthdate-change case.) + if (!cached && (!restrictIncoming || !restrictGroupInvites)) { + logger.warn( + `restrictChatSettings: cache miss, falling back to defaults for unrestricted dimensions`, + ) + } + + const record: ChatBskyActorDeclaration.Main = { + $type: 'chat.bsky.actor.declaration', + allowIncoming: restrictIncoming + ? 'none' + : (cached?.allowIncoming ?? 'following'), + allowGroupInvites: restrictGroupInvites + ? 'none' + : cached?.allowGroupInvites, + } + + // Nothing to do if the record already reflects the desired restrictions. + if ( + cached?.allowIncoming === record.allowIncoming && + cached?.allowGroupInvites === record.allowGroupInvites + ) { + return + } + try { - const record: ChatBskyActorDeclaration.Main = { - $type: 'chat.bsky.actor.declaration', - allowIncoming: 'none', - } await networkRetry(3, () => agent.com.atproto.repo.putRecord({ repo: did, diff --git a/src/state/queries/messages/update-all-read.ts b/src/state/queries/messages/update-all-read.ts index 3d0fd3a45e..a6a7f45741 100644 --- a/src/state/queries/messages/update-all-read.ts +++ b/src/state/queries/messages/update-all-read.ts @@ -1,10 +1,18 @@ -import {type ChatBskyConvoListConvos} from '@atproto/api' import {useMutation, useQueryClient} from '@tanstack/react-query' import {DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' import {useAgent} from '#/state/session' -import {RQKEY as CONVO_LIST_KEY} from './list-conversations' +import { + type ConvoRequestListQueryData, + markAllRead as markAllRequestsRead, + RQKEY_ROOT as REQUESTS_RQKEY_ROOT, +} from './list-conversation-requests' +import { + type ConvoListQueryData, + RQKEY_PARTIAL as CONVO_LIST_PARTIAL_KEY, + RQKEY_ROOT as CONVO_LIST_ROOT_KEY, +} from './list-conversations' export function useUpdateAllRead( status: 'accepted' | 'request', @@ -31,15 +39,19 @@ export function useUpdateAllRead( return data }, onMutate: () => { - let prevPages: ChatBskyConvoListConvos.OutputSchema[] = [] - queryClient.setQueryData( - CONVO_LIST_KEY(status), - (old?: { - pageParams: Array - pages: Array - }) => { + // snapshot every convo-list cache up front so onError can restore them + // all by their exact keys + const prevConvoListQueries = + queryClient.getQueriesData({ + queryKey: [CONVO_LIST_ROOT_KEY], + }) + let prevRequestsQueries: Array< + [readonly unknown[], ConvoRequestListQueryData | undefined] + > = [] + queryClient.setQueriesData( + {queryKey: CONVO_LIST_PARTIAL_KEY(status)}, + (old?: ConvoListQueryData) => { if (!old) return old - prevPages = old.pages return { ...old, pages: old.pages.map(page => { @@ -56,13 +68,10 @@ export function useUpdateAllRead( } }, ) - // remove unread convos from the badge query - queryClient.setQueryData( - CONVO_LIST_KEY('all', 'unread'), - (old?: { - pageParams: Array - pages: Array - }) => { + // remove unread convos from the badge queries + queryClient.setQueriesData( + {queryKey: CONVO_LIST_PARTIAL_KEY('all', 'unread')}, + (old?: ConvoListQueryData) => { if (!old) return old return { ...old, @@ -75,30 +84,47 @@ export function useUpdateAllRead( } }, ) + if (status === 'request') { + prevRequestsQueries = + queryClient.getQueriesData({ + queryKey: [REQUESTS_RQKEY_ROOT], + }) + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + markAllRequestsRead, + ) + } onMutate?.() - return {prevPages} + return {prevConvoListQueries, prevRequestsQueries} }, onSuccess: () => { - queryClient.invalidateQueries({queryKey: CONVO_LIST_KEY(status)}) + void queryClient.invalidateQueries({ + queryKey: CONVO_LIST_PARTIAL_KEY(status), + }) + void queryClient.invalidateQueries({ + queryKey: CONVO_LIST_PARTIAL_KEY('all', 'unread'), + }) + if (status === 'request') { + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) + } onSuccess?.() }, onError: (error, _, context) => { logger.error(error) - queryClient.setQueryData( - CONVO_LIST_KEY(status), - (old?: { - pageParams: Array - pages: Array - }) => { - if (!old) return old - return { - ...old, - pages: context?.prevPages || old.pages, - } - }, - ) - queryClient.invalidateQueries({queryKey: CONVO_LIST_KEY(status)}) - queryClient.invalidateQueries({queryKey: CONVO_LIST_KEY('all', 'unread')}) + if (context?.prevConvoListQueries) { + for (const [queryKey, prevData] of context.prevConvoListQueries) { + queryClient.setQueryData(queryKey, prevData) + } + } + if (context?.prevRequestsQueries) { + for (const [queryKey, prevData] of context.prevRequestsQueries) { + queryClient.setQueryData(queryKey, prevData) + } + } + void queryClient.invalidateQueries({queryKey: [CONVO_LIST_ROOT_KEY]}) + if (status === 'request') { + void queryClient.invalidateQueries({queryKey: [REQUESTS_RQKEY_ROOT]}) + } onError?.(error) }, }) diff --git a/src/state/queries/messages/withdraw-join-group-chat.ts b/src/state/queries/messages/withdraw-join-group-chat.ts index 92025cc2be..2ede8c941d 100644 --- a/src/state/queries/messages/withdraw-join-group-chat.ts +++ b/src/state/queries/messages/withdraw-join-group-chat.ts @@ -1,9 +1,14 @@ import {type ChatBskyGroupWithdrawJoinRequest} from '@atproto/api' -import {useMutation} from '@tanstack/react-query' +import {useMutation, useQueryClient} from '@tanstack/react-query' import {DM_SERVICE_HEADERS} from '#/lib/constants' import {logger} from '#/logger' import {useAgent, useSession} from '#/state/session' +import { + type ConvoRequestListQueryData, + optimisticDeleteJoinRequest, + RQKEY_ROOT as REQUESTS_RQKEY_ROOT, +} from './list-conversation-requests' export function useWithdrawJoinGroupChatRequest({ onSuccess, @@ -13,6 +18,7 @@ export function useWithdrawJoinGroupChatRequest({ onError?: (error: Error) => void } = {}) { const agent = useAgent() + const queryClient = useQueryClient() const {hasSession} = useSession() return useMutation({ @@ -27,7 +33,11 @@ export function useWithdrawJoinGroupChatRequest({ ) return res.data }, - onSuccess: data => { + onSuccess: (data, {convoId}) => { + queryClient.setQueriesData( + {queryKey: [REQUESTS_RQKEY_ROOT]}, + old => optimisticDeleteJoinRequest(convoId, old), + ) onSuccess?.(data) }, onError: error => { diff --git a/src/state/queries/notifications/feed.ts b/src/state/queries/notifications/feed.ts index ca885107d8..cc24d3d0fc 100644 --- a/src/state/queries/notifications/feed.ts +++ b/src/state/queries/notifications/feed.ts @@ -319,12 +319,15 @@ export function* findAllProfilesInQueryData( } for (const page of queryData?.pages) { for (const item of page.items) { - if ( - (item.type === 'follow' || item.type === 'contact-match') && - item.notification.author.did === did - ) { + if (item.notification.author.did === did) { yield item.notification.author - } else if ( + } + for (const notification of item.additional ?? []) { + if (notification.author.did === did) { + yield notification.author + } + } + if ( item.type !== 'starterpack-joined' && item.subject?.author.did === did ) { diff --git a/src/state/queries/notifications/util.ts b/src/state/queries/notifications/util.ts index a8c15e82c0..ded66fb62e 100644 --- a/src/state/queries/notifications/util.ts +++ b/src/state/queries/notifications/util.ts @@ -6,7 +6,7 @@ import { type AppBskyGraphDefs, AppBskyGraphStarterpack, type AppBskyNotificationListNotifications, - type BskyAgent, + type AtpAgent, hasMutedWord, moderateNotification, type ModerationOpts, @@ -46,7 +46,7 @@ export async function fetchPage({ fetchAdditionalData, reasons, }: { - agent: BskyAgent + agent: AtpAgent cursor: string | undefined limit: number queryClient: QueryClient @@ -204,7 +204,7 @@ export function groupNotifications( } async function fetchSubjects( - agent: BskyAgent, + agent: AtpAgent, groupedNotifs: FeedNotification[], ): Promise<{ posts: Map diff --git a/src/state/queries/nuxs/definitions.ts b/src/state/queries/nuxs/definitions.ts index 25f975db26..d9323acf87 100644 --- a/src/state/queries/nuxs/definitions.ts +++ b/src/state/queries/nuxs/definitions.ts @@ -15,6 +15,8 @@ export enum Nux { LiveNowBetaDialog = 'LiveNowBetaDialog', LiveNowBetaNudge = 'LiveNowBetaNudge', DraftsAnnouncement = 'DraftsAnnouncement', + GroupChatsAnnouncement = 'GroupChatsAnnouncement', + InviteFriendsAnnouncement = 'InviteFriendsAnnouncement', /* * Blocking announcements. New IDs are required for each new announcement. @@ -77,6 +79,14 @@ export type AppNux = BaseNux< id: Nux.DraftsAnnouncement data: undefined } + | { + id: Nux.GroupChatsAnnouncement + data: undefined + } + | { + id: Nux.InviteFriendsAnnouncement + data: undefined + } > export const NuxSchemas: Record | undefined> = { @@ -93,4 +103,6 @@ export const NuxSchemas: Record | undefined> = { [Nux.LiveNowBetaDialog]: undefined, [Nux.LiveNowBetaNudge]: undefined, [Nux.DraftsAnnouncement]: undefined, + [Nux.GroupChatsAnnouncement]: undefined, + [Nux.InviteFriendsAnnouncement]: undefined, } diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 2fbb9e7cbe..959ed81c28 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -4,8 +4,8 @@ import { type AppBskyActorDefs, AppBskyFeedDefs, type AppBskyFeedPost, + type AtpAgent, AtUri, - type BskyAgent, moderatePost, type ModerationDecision, type ModerationPrefs, @@ -450,7 +450,7 @@ function createApi({ feedParams: FeedParams feedTuners: FeedTunerFn[] userInterests?: string - agent: BskyAgent + agent: AtpAgent enableFollowingToDiscoverFallback: boolean }) { if (feedDesc === 'following') { diff --git a/src/state/queries/postgate/index.ts b/src/state/queries/postgate/index.ts index 926bb0ba0c..82a52730bc 100644 --- a/src/state/queries/postgate/index.ts +++ b/src/state/queries/postgate/index.ts @@ -4,8 +4,8 @@ import { AppBskyEmbedRecordWithMedia, type AppBskyFeedDefs, AppBskyFeedPostgate, + type AtpAgent, AtUri, - type BskyAgent, } from '@atproto/api' import {useMutation, useQuery, useQueryClient} from '@tanstack/react-query' @@ -27,7 +27,7 @@ export async function getPostgateRecord({ agent, postUri, }: { - agent: BskyAgent + agent: AtpAgent postUri: string }): Promise { const urip = new AtUri(postUri) @@ -89,7 +89,7 @@ export async function writePostgateRecord({ postUri, postgate, }: { - agent: BskyAgent + agent: AtpAgent postUri: string postgate: AppBskyFeedPostgate.Record }) { @@ -110,7 +110,7 @@ export async function upsertPostgate( agent, postUri, }: { - agent: BskyAgent + agent: AtpAgent postUri: string }, callback: ( diff --git a/src/state/queries/preferences/const.ts b/src/state/queries/preferences/const.ts index 7508fa4f6d..02f7d62a87 100644 --- a/src/state/queries/preferences/const.ts +++ b/src/state/queries/preferences/const.ts @@ -1,9 +1,22 @@ -import {DEFAULT_LOGGED_OUT_LABEL_PREFERENCES} from '#/state/queries/preferences/moderation' +import {DEFAULT_LABEL_SETTINGS} from '@atproto/api' + import { type ThreadViewPreferences, type UsePreferencesQueryResponse, } from '#/state/queries/preferences/types' +/** + * More strict than our default settings for logged in users. + * + * Defined here rather than in `./moderation` to avoid a module-init cycle: + * `moderation` imports `./index`, which re-exports this file, so reading the + * value from `moderation` at init time lands in its temporal dead zone. + */ +export const DEFAULT_LOGGED_OUT_LABEL_PREFERENCES: typeof DEFAULT_LABEL_SETTINGS = + Object.fromEntries( + Object.entries(DEFAULT_LABEL_SETTINGS).map(([key, _pref]) => [key, 'hide']), + ) + export const DEFAULT_HOME_FEED_PREFS: UsePreferencesQueryResponse['feedViewPrefs'] = { hideReplies: false, diff --git a/src/state/queries/preferences/moderation.ts b/src/state/queries/preferences/moderation.ts index 1c0f5a3fe5..55c155dc5b 100644 --- a/src/state/queries/preferences/moderation.ts +++ b/src/state/queries/preferences/moderation.ts @@ -1,22 +1,10 @@ import {useMemo} from 'react' -import { - BskyAgent, - DEFAULT_LABEL_SETTINGS, - interpretLabelValueDefinitions, -} from '@atproto/api' +import {AtpAgent, interpretLabelValueDefinitions} from '@atproto/api' import {isNonConfigurableModerationAuthority} from '#/state/session/additional-moderation-authorities' import {useLabelersDetailedInfoQuery} from '../labeler' import {usePreferencesQuery} from './index' -/** - * More strict than our default settings for logged in users. - */ -export const DEFAULT_LOGGED_OUT_LABEL_PREFERENCES: typeof DEFAULT_LABEL_SETTINGS = - Object.fromEntries( - Object.entries(DEFAULT_LABEL_SETTINGS).map(([key, _pref]) => [key, 'hide']), - ) - export function useMyLabelersQuery({ excludeNonConfigurableLabelers = false, }: { @@ -25,7 +13,7 @@ export function useMyLabelersQuery({ const prefs = usePreferencesQuery() let dids = Array.from( new Set( - BskyAgent.appLabelers.concat( + AtpAgent.appLabelers.concat( prefs.data?.moderationPrefs.labelers.map(l => l.did) || [], ), ), diff --git a/src/state/queries/profile.ts b/src/state/queries/profile.ts index 7db15d0bc3..526a9df8f3 100644 --- a/src/state/queries/profile.ts +++ b/src/state/queries/profile.ts @@ -528,6 +528,10 @@ export function useProfileBlockMutationQueue( updateProfileShadow(queryClient, did, { blockingUri: finalBlockingUri, }) + // The shadow only reaches components that read profiles through shadow + // hooks. The convo list is also read raw (e.g. the unread badge's + // calculateCount, getMessageInfo), and blocks emit no chat log event, + // so without a refetch that data stays stale indefinitely. void queryClient.invalidateQueries({queryKey: [RQKEY_LIST_CONVOS]}) }, }) diff --git a/src/state/queries/resolve-link.ts b/src/state/queries/resolve-link.ts index a6b21e0bcc..2ccd0af863 100644 --- a/src/state/queries/resolve-link.ts +++ b/src/state/queries/resolve-link.ts @@ -1,5 +1,5 @@ -import {type BskyAgent} from '@atproto/api' -import {type QueryClient, useQuery} from '@tanstack/react-query' +import {type AtpAgent} from '@atproto/api' +import {type QueryClient, queryOptions, useQuery} from '@tanstack/react-query' import {type ResolvedLink, resolveGif, resolveLink} from '#/lib/api/resolve' import {STALE} from '#/state/queries/index' @@ -12,29 +12,24 @@ export const RQKEY_LINK = (url: string) => [RQKEY_LINK_ROOT, url] export const RQKEY_GIF_ROOT = 'resolve-gif' export const RQKEY_GIF = (url: string) => [RQKEY_GIF_ROOT, url] -export function useResolveLinkQuery(url: string) { - const agent = useAgent() - - return useQuery({ +export function resolveLinkQueryOptions(agent: AtpAgent, url: string) { + return queryOptions({ staleTime: STALE.HOURS.ONE, queryKey: RQKEY_LINK(url), - queryFn: async () => { - return await resolveLink(agent, url) - }, + queryFn: () => resolveLink(agent, url), }) } + +export function useResolveLinkQuery(url: string) { + const agent = useAgent() + return useQuery(resolveLinkQueryOptions(agent, url)) +} export function fetchResolveLinkQuery( queryClient: QueryClient, - agent: BskyAgent, + agent: AtpAgent, url: string, ) { - return queryClient.fetchQuery({ - staleTime: STALE.HOURS.ONE, - queryKey: RQKEY_LINK(url), - queryFn: async () => { - return await resolveLink(agent, url) - }, - }) + return queryClient.fetchQuery(resolveLinkQueryOptions(agent, url)) } export function precacheResolveLinkQuery( queryClient: QueryClient, @@ -56,7 +51,7 @@ export function useResolveGifQuery(gif: Gif) { } export function fetchResolveGifQuery( queryClient: QueryClient, - agent: BskyAgent, + agent: AtpAgent, gif: Gif, ) { return queryClient.fetchQuery({ diff --git a/src/state/queries/resolve-uri.ts b/src/state/queries/resolve-uri.ts index a6ca192be3..45ef4e2288 100644 --- a/src/state/queries/resolve-uri.ts +++ b/src/state/queries/resolve-uri.ts @@ -1,4 +1,4 @@ -import {AtUri, type BskyAgent} from '@atproto/api' +import {type AtpAgent, AtUri} from '@atproto/api' import {type QueryClient, queryOptions, useQuery} from '@tanstack/react-query' import {STALE} from '#/state/queries' @@ -9,7 +9,7 @@ const RQKEY_ROOT = 'resolved-did' export const RQKEY = (didOrHandle: string) => [RQKEY_ROOT, didOrHandle] const resolvedDidQueryOptions = ( - agent: BskyAgent, + agent: AtpAgent, getUnstableProfile: (did: string) => {did: string} | undefined, didOrHandle: string | undefined, ) => diff --git a/src/state/queries/starter-packs.ts b/src/state/queries/starter-packs.ts index 53d668d89a..ddf8365dda 100644 --- a/src/state/queries/starter-packs.ts +++ b/src/state/queries/starter-packs.ts @@ -4,8 +4,8 @@ import { type AppBskyGraphGetStarterPack, AppBskyGraphStarterpack, type AppBskyRichtextFacet, + type AtpAgent, AtUri, - type BskyAgent, RichText, } from '@atproto/api' import { @@ -340,7 +340,7 @@ export function useDeleteStarterPackMutation({ } async function whenAppViewReady( - agent: BskyAgent, + agent: AtpAgent, uri: string, fn: (res?: AppBskyGraphGetStarterPack.Response) => boolean, ) { diff --git a/src/state/queries/threadgate/index.ts b/src/state/queries/threadgate/index.ts index e760873fb2..561275ca66 100644 --- a/src/state/queries/threadgate/index.ts +++ b/src/state/queries/threadgate/index.ts @@ -1,8 +1,8 @@ import { type AppBskyFeedDefs, AppBskyFeedThreadgate, + type AtpAgent, AtUri, - type BskyAgent, } from '@atproto/api' import {useMutation, useQuery, useQueryClient} from '@tanstack/react-query' @@ -88,7 +88,7 @@ export async function getThreadgateRecord({ agent, postUri, }: { - agent: BskyAgent + agent: AtpAgent postUri: string }): Promise { const urip = new AtUri(postUri) @@ -150,7 +150,7 @@ export async function writeThreadgateRecord({ postUri, threadgate, }: { - agent: BskyAgent + agent: AtpAgent postUri: string threadgate: AppBskyFeedThreadgate.Record }) { @@ -176,7 +176,7 @@ export async function upsertThreadgate( agent, postUri, }: { - agent: BskyAgent + agent: AtpAgent postUri: string }, callback: ( @@ -205,7 +205,7 @@ export async function updateThreadgateAllow({ postUri, allow, }: { - agent: BskyAgent + agent: AtpAgent postUri: string allow: ThreadgateAllowUISetting[] }) { diff --git a/src/state/session/__tests__/session-test.ts b/src/state/session/__tests__/session-test.ts index 4b014d6448..eebcfcf8d2 100644 --- a/src/state/session/__tests__/session-test.ts +++ b/src/state/session/__tests__/session-test.ts @@ -1,4 +1,4 @@ -import {BskyAgent} from '@atproto/api' +import {AtpAgent} from '@atproto/api' import {describe, expect, it, jest} from '@jest/globals' import {agentToSessionAccountOrThrow} from '../agent' @@ -13,10 +13,10 @@ jest.mock('jwt-decode', () => ({ jest.mock('../../birthdate') jest.mock('../../../ageAssurance/data') jest.mock('../../../ageAssurance/state', () => ({ - getAndComputeAgeAssuranceState: () => ({}), + unsafeGetAndComputeAgeAssurance: () => ({state: {}}), })) jest.mock('#/lib/notifications/notifications', () => ({ - unregisterPushToken(_agents: BskyAgent[]) { + unregisterPushToken(_agents: AtpAgent[]) { return Promise.resolve() }, })) @@ -37,7 +37,7 @@ describe('session', () => { } `) - const agent = new BskyAgent({service: 'https://alice.com'}) + const agent = new AtpAgent({service: 'https://alice.com'}) agent.sessionManager.session = { active: true, did: 'alice-did', @@ -130,7 +130,7 @@ describe('session', () => { it('switches to the latest account, stores all of them', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -179,7 +179,7 @@ describe('session', () => { } `) - const agent2 = new BskyAgent({service: 'https://bob.com'}) + const agent2 = new AtpAgent({service: 'https://bob.com'}) agent2.sessionManager.session = { active: true, did: 'bob-did', @@ -245,7 +245,7 @@ describe('session', () => { } `) - const agent3 = new BskyAgent({service: 'https://alice.com'}) + const agent3 = new AtpAgent({service: 'https://alice.com'}) agent3.sessionManager.session = { active: true, did: 'alice-did', @@ -311,7 +311,7 @@ describe('session', () => { } `) - const agent4 = new BskyAgent({service: 'https://jay.com'}) + const agent4 = new AtpAgent({service: 'https://jay.com'}) agent4.sessionManager.session = { active: true, did: 'jay-did', @@ -468,7 +468,7 @@ describe('session', () => { it('can log back in after logging out', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -526,7 +526,7 @@ describe('session', () => { } `) - const agent2 = new BskyAgent({service: 'https://alice.com'}) + const agent2 = new AtpAgent({service: 'https://alice.com'}) agent2.sessionManager.session = { active: true, did: 'alice-did', @@ -578,7 +578,7 @@ describe('session', () => { it('can remove active account', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -623,7 +623,7 @@ describe('session', () => { it('can remove inactive account', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -631,7 +631,7 @@ describe('session', () => { accessJwt: 'alice-access-jwt-1', refreshJwt: 'alice-refresh-jwt-1', } - const agent2 = new BskyAgent({service: 'https://bob.com'}) + const agent2 = new AtpAgent({service: 'https://bob.com'}) agent2.sessionManager.session = { active: true, did: 'bob-did', @@ -704,7 +704,7 @@ describe('session', () => { it('can log out of the current account', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -724,7 +724,7 @@ describe('session', () => { expect(state.accounts[0].refreshJwt).toBe('alice-refresh-jwt-1') expect(state.currentAgentState.did).toBe('alice-did') - const agent2 = new BskyAgent({service: 'https://bob.com'}) + const agent2 = new AtpAgent({service: 'https://bob.com'}) agent2.sessionManager.session = { active: true, did: 'bob-did', @@ -803,7 +803,7 @@ describe('session', () => { it('updates stored account with refreshed tokens', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -987,7 +987,7 @@ describe('session', () => { it('bails out of update on identical objects', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -1059,7 +1059,7 @@ describe('session', () => { it('accepts updates from a stale agent', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -1068,7 +1068,7 @@ describe('session', () => { refreshJwt: 'alice-refresh-jwt-1', } - const agent2 = new BskyAgent({service: 'https://bob.com'}) + const agent2 = new AtpAgent({service: 'https://bob.com'}) agent2.sessionManager.session = { active: true, did: 'bob-did', @@ -1258,7 +1258,7 @@ describe('session', () => { it('ignores updates from a removed agent', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -1267,7 +1267,7 @@ describe('session', () => { refreshJwt: 'alice-refresh-jwt-1', } - const agent2 = new BskyAgent({service: 'https://bob.com'}) + const agent2 = new AtpAgent({service: 'https://bob.com'}) agent2.sessionManager.session = { active: true, did: 'bob-did', @@ -1320,7 +1320,7 @@ describe('session', () => { it('ignores network errors', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -1386,7 +1386,7 @@ describe('session', () => { it('resets tokens on expired event', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -1452,7 +1452,7 @@ describe('session', () => { it('resets tokens on created-failed event', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -1518,7 +1518,7 @@ describe('session', () => { it('replaces local accounts with synced accounts', () => { let state = getInitialState([]) - const agent1 = new BskyAgent({service: 'https://alice.com'}) + const agent1 = new AtpAgent({service: 'https://alice.com'}) agent1.sessionManager.session = { active: true, did: 'alice-did', @@ -1526,7 +1526,7 @@ describe('session', () => { accessJwt: 'alice-access-jwt-1', refreshJwt: 'alice-refresh-jwt-1', } - const agent2 = new BskyAgent({service: 'https://bob.com'}) + const agent2 = new AtpAgent({service: 'https://bob.com'}) agent2.sessionManager.session = { active: true, did: 'bob-did', @@ -1549,7 +1549,7 @@ describe('session', () => { expect(state.accounts.length).toBe(2) expect(state.currentAgentState.did).toBe('bob-did') - const anotherTabAgent1 = new BskyAgent({service: 'https://jay.com'}) + const anotherTabAgent1 = new AtpAgent({service: 'https://jay.com'}) anotherTabAgent1.sessionManager.session = { active: true, did: 'jay-did', @@ -1557,7 +1557,7 @@ describe('session', () => { accessJwt: 'jay-access-jwt-1', refreshJwt: 'jay-refresh-jwt-1', } - const anotherTabAgent2 = new BskyAgent({service: 'https://alice.com'}) + const anotherTabAgent2 = new AtpAgent({service: 'https://alice.com'}) anotherTabAgent2.sessionManager.session = { active: true, did: 'bob-did', @@ -1627,7 +1627,7 @@ describe('session', () => { } `) - const anotherTabAgent3 = new BskyAgent({service: 'https://clarence.com'}) + const anotherTabAgent3 = new AtpAgent({service: 'https://clarence.com'}) anotherTabAgent3.sessionManager.session = { active: true, did: 'clarence-did', diff --git a/src/state/session/additional-moderation-authorities.ts b/src/state/session/additional-moderation-authorities.ts index 8c2511b8e8..63ada2cdd8 100644 --- a/src/state/session/additional-moderation-authorities.ts +++ b/src/state/session/additional-moderation-authorities.ts @@ -1,6 +1,5 @@ -import {BskyAgent} from '@atproto/api' +import {AtpAgent} from '@atproto/api' -import {logger} from '#/logger' import {device} from '#/storage' export const BR_LABELER = 'did:plc:ekitcvx7uwnauoqy5oest3hm' // Brazil @@ -77,8 +76,6 @@ export function configureAdditionalModerationAuthorities() { if (geolocation?.countryCode) { // overwrite with only those necessary additionalLabelers = MODERATION_AUTHORITIES[geolocation.countryCode] ?? [] - } else { - logger.info(`no geolocation, cannot apply mod authorities`) } if (__DEV__) { @@ -86,13 +83,8 @@ export function configureAdditionalModerationAuthorities() { } const appLabelers = Array.from( - new Set([...BskyAgent.appLabelers, ...additionalLabelers]), + new Set([...AtpAgent.appLabelers, ...additionalLabelers]), ) - logger.info(`applying mod authorities`, { - additionalLabelers, - appLabelers, - }) - - BskyAgent.configure({appLabelers}) + AtpAgent.configure({appLabelers}) } diff --git a/src/state/session/agent.ts b/src/state/session/agent.ts index 9f2d70927b..78e9f79610 100644 --- a/src/state/session/agent.ts +++ b/src/state/session/agent.ts @@ -1,10 +1,10 @@ import { Agent as BaseAgent, type AppBskyActorProfile, + AtpAgent, type AtprotoServiceType, type AtpSessionData, type AtpSessionEvent, - BskyAgent, type Did, type Un$Typed, } from '@atproto/api' @@ -24,12 +24,11 @@ import {snoozeBirthdateUpdateAllowedForDid} from '#/state/birthdate' import {restrictChatSettings} from '#/state/queries/messages/restrictChatSettings' import {snoozeEmailConfirmationPrompt} from '#/state/shell/reminders' import { - prefetchAgeAssuranceData, + prefetchAgeAssuranceServerData, setBirthdateForDid, setCreatedAtForDid, } from '#/ageAssurance/data' -import {getAndComputeAgeAssuranceState} from '#/ageAssurance/state' -import {AgeAssuranceAccess} from '#/ageAssurance/types' +import {unsafeGetAndComputeAgeAssurance} from '#/ageAssurance/state' import {features} from '#/analytics' import {emitNetworkConfirmed, emitNetworkLost} from '../events' import {addSessionErrorLog} from './logging' @@ -53,7 +52,7 @@ export function createPublicAgent() { export async function createAgentAndResume( storedAccount: SessionAccount, onSessionChange: ( - agent: BskyAgent, + agent: AtpAgent, did: string, event: AtpSessionEvent, ) => void, @@ -74,7 +73,7 @@ export async function createAgentAndResume( } // after session is attached - const aa = prefetchAgeAssuranceData({agent}) + const aa = prefetchAgeAssuranceServerData({agent}) agent.configureProxy(BLUESKY_PROXY_HEADER.get()) @@ -97,7 +96,7 @@ export async function createAgentAndLogin( authFactorToken?: string }, onSessionChange: ( - agent: BskyAgent, + agent: AtpAgent, did: string, event: AtpSessionEvent, ) => void, @@ -113,7 +112,7 @@ export async function createAgentAndLogin( const account = agentToSessionAccountOrThrow(agent) const gates = features.refresh({strategy: 'prefer-fresh-gates'}) const moderation = configureModerationForAccount(agent, account) - const aa = prefetchAgeAssuranceData({agent}) + const aa = prefetchAgeAssuranceServerData({agent}) agent.configureProxy(BLUESKY_PROXY_HEADER.get()) @@ -144,7 +143,7 @@ export async function createAgentAndCreateAccount( verificationCode?: string }, onSessionChange: ( - agent: BskyAgent, + agent: AtpAgent, did: string, event: AtpSessionEvent, ) => void, @@ -175,7 +174,7 @@ export async function createAgentAndCreateAccount( setBirthdateForDid({did: account.did, birthdate}) snoozeBirthdateUpdateAllowedForDid(account.did) // do this last - const aa = prefetchAgeAssuranceData({agent}) + const aa = prefetchAgeAssuranceServerData({agent}) // Not awaited so that we can still get into onboarding. // This is OK because we won't let you toggle adult stuff until you set the date. @@ -218,10 +217,14 @@ export async function createAgentAndCreateAccount( throw e }), // wait for AA data to load first, then check state - aa.then(async () => { - const state = getAndComputeAgeAssuranceState({did: account.did}) - if (state.access !== AgeAssuranceAccess.Full) { - restrictChatSettings({agent, did: account.did}) + aa.then(() => { + const {flags} = unsafeGetAndComputeAgeAssurance({did: account.did}) + if (flags?.chatDisabled || flags?.groupChatDisabled) { + void restrictChatSettings({ + agent, + restrictIncoming: flags.chatDisabled, + restrictGroupInvites: flags.groupChatDisabled, + }) } }), ]).then(promises => { @@ -279,7 +282,7 @@ export async function createAgentAndCreateAccount( }) } -export function agentToSessionAccountOrThrow(agent: BskyAgent): SessionAccount { +export function agentToSessionAccountOrThrow(agent: AtpAgent): SessionAccount { const account = agentToSessionAccount(agent) if (!account) { throw Error('Expected an active session') @@ -288,7 +291,7 @@ export function agentToSessionAccountOrThrow(agent: BskyAgent): SessionAccount { } export function agentToSessionAccount( - agent: BskyAgent, + agent: AtpAgent, ): SessionAccount | undefined { if (!agent.session) { return undefined @@ -347,7 +350,7 @@ export class Agent extends BaseAgent { // Ideally, we wouldn't be doing this. However, since there is so much logic that requires making calls to the PDS right now, it // feels safer to just let those run as-is and set the header afterward. let realFetch = globalThis.fetch -class BskyAppAgent extends BskyAgent { +class BskyAppAgent extends AtpAgent { persistSessionHandler: ((event: AtpSessionEvent) => void) | undefined = undefined @@ -386,7 +389,7 @@ class BskyAppAgent extends BskyAgent { // Not awaited in the calling code so we can delay blocking on them. resolvers: Promise[] onSessionChange: ( - agent: BskyAgent, + agent: AtpAgent, did: string, event: AtpSessionEvent, ) => void diff --git a/src/state/session/index.tsx b/src/state/session/index.tsx index 09e7bd0db0..fd31261a9d 100644 --- a/src/state/session/index.tsx +++ b/src/state/session/index.tsx @@ -36,8 +36,8 @@ import { } from '#/state/session/types' import {useOnboardingDispatch} from '#/state/shell/onboarding' import { - clearAgeAssuranceData, - clearAgeAssuranceDataForDid, + clearAgeAssuranceServerDataForAll, + clearAgeAssuranceServerDataForDid, } from '#/ageAssurance/data' const StateContext = createContext({ @@ -203,7 +203,9 @@ export function Provider({children}: React.PropsWithChildren<{}>) { ) addSessionDebugLog({type: 'method:end', method: 'logout'}) if (prevState.currentAgentState.did) { - clearAgeAssuranceDataForDid({did: prevState.currentAgentState.did}) + clearAgeAssuranceServerDataForDid({ + did: prevState.currentAgentState.did, + }) void clearPersistedQueryStorage(prevState.currentAgentState.did) } // reset onboarding flow on logout @@ -234,7 +236,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { }, ) addSessionDebugLog({type: 'method:end', method: 'logout'}) - clearAgeAssuranceData() + clearAgeAssuranceServerDataForAll() for (const account of prevState.accounts) { void clearPersistedQueryStorage(account.did) } @@ -304,7 +306,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { accountDid: account.did, }) addSessionDebugLog({type: 'method:end', method: 'removeAccount', account}) - clearAgeAssuranceDataForDid({did: account.did}) + clearAgeAssuranceServerDataForDid({did: account.did}) }, [store, cancelPendingTask], ) diff --git a/src/state/session/moderation.ts b/src/state/session/moderation.ts index 64e36da9d4..8fc234d732 100644 --- a/src/state/session/moderation.ts +++ b/src/state/session/moderation.ts @@ -1,4 +1,4 @@ -import {BSKY_LABELER_DID, BskyAgent} from '@atproto/api' +import {AtpAgent, BSKY_LABELER_DID} from '@atproto/api' import {IS_TEST_USER} from '#/lib/constants' import {configureAdditionalModerationAuthorities} from './additional-moderation-authorities' @@ -13,7 +13,7 @@ export function configureModerationForGuest() { } export async function configureModerationForAccount( - agent: BskyAgent, + agent: AtpAgent, account: SessionAccount, ) { // This global mutation is *only* OK because this code is only relevant for testing. @@ -38,10 +38,10 @@ export async function configureModerationForAccount( } function switchToBskyAppLabeler() { - BskyAgent.configure({appLabelers: [BSKY_LABELER_DID]}) + AtpAgent.configure({appLabelers: [BSKY_LABELER_DID]}) } -async function trySwitchToTestAppLabeler(agent: BskyAgent) { +async function trySwitchToTestAppLabeler(agent: AtpAgent) { const did = ( await agent .resolveHandle({handle: 'mod-authority.test'}) @@ -49,6 +49,6 @@ async function trySwitchToTestAppLabeler(agent: BskyAgent) { )?.data.did if (did) { console.warn('USING TEST ENV MODERATION') - BskyAgent.configure({appLabelers: [did]}) + AtpAgent.configure({appLabelers: [did]}) } } diff --git a/src/storage/schema.ts b/src/storage/schema.ts index e6dc865450..6303600343 100644 --- a/src/storage/schema.ts +++ b/src/storage/schema.ts @@ -61,6 +61,7 @@ export type Device = { demoMode: boolean activitySubscriptionsNudged?: boolean threadgateNudged?: boolean + inviteFriendsFollowersPromoDismissed?: boolean /** * Policy update overlays. New IDs are required for each new announcement. diff --git a/src/types/bsky/post.ts b/src/types/bsky/post.ts index fada39da81..43621ef63b 100644 --- a/src/types/bsky/post.ts +++ b/src/types/bsky/post.ts @@ -1,6 +1,7 @@ import { type $Typed, AppBskyEmbedExternal, + AppBskyEmbedGallery, AppBskyEmbedImages, AppBskyEmbedRecord, AppBskyEmbedRecordWithMedia, @@ -47,6 +48,10 @@ export type Embed = type: 'images' view: $Typed } + | { + type: 'gallery' + view: $Typed + } | { type: 'link' view: $Typed @@ -122,6 +127,11 @@ export function parseEmbed(embed: AppBskyFeedDefs.PostView['embed']): Embed { type: 'images', view: embed, } + } else if (AppBskyEmbedGallery.isView(embed)) { + return { + type: 'gallery', + view: embed, + } } else if (AppBskyEmbedExternal.isView(embed)) { return { type: 'link', diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 5c9f1a05fe..3ddaf41ed7 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -50,14 +50,15 @@ import { AppBskyDraftCreateDraft, AppBskyUnspeccedDefs, type AppBskyUnspeccedGetPostThreadV2, + type AtpAgent, AtUri, - type BskyAgent, + ChatBskyGroupDefs, type RichText, } from '@atproto/api' import {plural} from '@lingui/core/macro' import {Trans, useLingui} from '@lingui/react/macro' import {useNavigation} from '@react-navigation/native' -import {useQueryClient} from '@tanstack/react-query' +import {useQueries, useQueryClient} from '@tanstack/react-query' import * as apilib from '#/lib/api/index' import {EmbeddingDisabledError} from '#/lib/api/resolve' @@ -95,6 +96,7 @@ import { } from '#/state/preferences/languages' import {usePreferencesQuery} from '#/state/queries/preferences' import {useProfileQuery} from '#/state/queries/profile' +import {resolveLinkQueryOptions} from '#/state/queries/resolve-link' import {useAgent, useSession} from '#/state/session' import {useComposerControls} from '#/state/shell/composer' import {type ComposerOpts, type OnPostSuccessData} from '#/state/shell/composer' @@ -133,7 +135,14 @@ import * as Prompt from '#/components/Prompt' import * as Toast from '#/components/Toast' import {Text} from '#/components/Typography' import {useAnalytics} from '#/analytics' -import {IS_ANDROID, IS_IOS, IS_LIQUID_GLASS, IS_NATIVE, IS_WEB} from '#/env' +import { + IS_ANDROID, + IS_IOS, + IS_LIQUID_GLASS, + IS_NATIVE, + IS_WEB, + IS_WEB_SAFARI, +} from '#/env' import {type Gif} from '#/features/gifPicker/types' import {BottomSheetPortalProvider} from '../../../../modules/bottom-sheet' import { @@ -159,7 +168,7 @@ import { composerReducer, createComposerState, type EmbedDraft, - MAX_IMAGES, + MAX_GALLERY_IMAGES, type PostAction, type PostDraft, type ThreadDraft, @@ -178,6 +187,67 @@ type CancelRef = { onPressCancel: () => void } +function applyGalleryCap( + currentCount: number, + incoming: ComposerImage[], +): + | {status: 'full'} + | {status: 'partial'; accepted: ComposerImage[]; dropped: number} + | {status: 'ok'; accepted: ComposerImage[]} { + const remaining = MAX_GALLERY_IMAGES - currentCount + if (remaining <= 0) { + return {status: 'full'} + } + if (incoming.length > remaining) { + return { + status: 'partial', + accepted: incoming.slice(0, remaining), + dropped: incoming.length - remaining, + } + } + return {status: 'ok', accepted: incoming} +} + +function useAddImagesWithCap( + currentCount: number, + dispatchPostAction: (action: PostAction) => void, +) { + const {t: l} = useLingui() + return useCallback( + (next: ComposerImage[]) => { + const result = applyGalleryCap(currentCount, next) + if (result.status === 'full') { + Toast.show( + l({ + message: `You can only add up to ${plural(MAX_GALLERY_IMAGES, { + other: '# images', + })} per post`, + comment: + 'Toast shown when the user tries to add more images but the post gallery is already at the cap', + }), + {type: 'warning'}, + ) + return + } + if (result.status === 'partial') { + Toast.show( + l({ + message: `Only ${result.accepted.length} of ${next.length} ${plural(next.length, {one: 'image', other: 'images'})} added; limit is ${MAX_GALLERY_IMAGES}`, + comment: + 'Toast shown when adding images would exceed the post gallery cap; only the first N are kept', + }), + {type: 'warning'}, + ) + } + dispatchPostAction({ + type: 'embed_add_images', + images: result.accepted, + }) + }, + [currentCount, dispatchPostAction, l], + ) +} + type Props = ComposerOpts export const ComposePost = ({ replyTo, @@ -611,7 +681,11 @@ export const ComposePost = ({ ax.metric('draft:save', { isNewDraft, hasText: posts.some(p => p.richtext.text.trim().length > 0), - hasImages: posts.some(p => p.embed.media?.type === 'images'), + hasImages: posts.some( + p => + p.embed.media?.type === 'images' || + p.embed.media?.type === 'gallery', + ), hasVideo: posts.some(p => p.embed.media?.type === 'video'), hasGif: posts.some(p => p.embed.media?.type === 'gif'), hasQuote: posts.some(p => !!p.embed.quote), @@ -780,7 +854,10 @@ export const ComposePost = ({ for (let i = 0; i < thread.posts.length; i++) { const media = thread.posts[i].embed.media if (media) { - if (media.type === 'images' && media.images.some(img => !img.alt)) { + if ( + (media.type === 'images' || media.type === 'gallery') && + media.images.some(img => !img.alt) + ) { return l`One or more images is missing alt text.` } if (media.type === 'gif' && !media.alt) { @@ -797,8 +874,27 @@ export const ComposePost = ({ } }, [thread, requireAltTextEnabled, l]) + // Subscribe to the resolve-link cache for any link URIs in the thread so we + // can detect chat invites that resolved to no preview (revoked/expired) and + // block publishing - otherwise the post would go out without the embed. + const linkUris = thread.posts + .filter(post => post.embed.link) + .map(post => post.embed.link!.uri) + const linkQueries = useQueries({ + queries: linkUris.map(uri => ({ + ...resolveLinkQueryOptions(agent, uri), + enabled: false, + })), + }) + const hasUnavailableChatInvite = linkQueries.some( + q => + q.data?.type === 'chat-invite' && + !ChatBskyGroupDefs.isJoinLinkPreviewView(q.data.view), + ) + const canPost = !missingAltError && + !hasUnavailableChatInvite && thread.posts.some(post => !isEmptyPost(post)) && thread.posts.every( post => @@ -931,7 +1027,9 @@ export const ComposePost = ({ logger.error(e, { message: `Composer: create post failed`, hasImages: filteredThread.posts.some( - p => p.embed.media?.type === 'images', + p => + p.embed.media?.type === 'images' || + p.embed.media?.type === 'gallery', ), }) @@ -953,7 +1051,8 @@ export const ComposePost = ({ for (let post of filteredThread.posts) { ax.metric('post:create', { imageCount: - post.embed.media?.type === 'images' + post.embed.media?.type === 'images' || + post.embed.media?.type === 'gallery' ? post.embed.media.images.length : 0, isReply: index > 0 || !!replyTo, @@ -972,6 +1071,20 @@ export const ComposePost = ({ isReply: !!replyTo, }) } + if (postUri) { + for (const q of linkQueries) { + const resolved = q.data + if ( + resolved?.type === 'chat-invite' && + ChatBskyGroupDefs.isJoinLinkPreviewView(resolved.view) + ) { + ax.metric('groupchat:inviteLink:shared', { + convoId: resolved.view.convoId, + method: 'post', + }) + } + } + } } if (postUri && !replyTo) { emitPostCreated() @@ -1065,6 +1178,7 @@ export const ComposePost = ({ loadedDraftCreatedAt, emptyPostsPromptControl, getFilteredThread, + linkQueries, ]) const handleConfirmSkipEmpty = () => { @@ -1130,6 +1244,24 @@ export const ComposePost = ({ } }, [composerState]) + useEffect(() => { + // Safari ignores `overscroll-behavior`, so horizontal trackpad swipes over + // the composer (e.g. on a quote post) can still trigger the browser's + // back/forward navigation gesture. Suppress predominantly-horizontal wheel + // events so the history-nav gesture never fires. Chrome and Firefox are + // covered by the `overscrollBehaviorX: 'contain'` style on the ScrollView. + if (!IS_WEB_SAFARI) return + const el = + scrollViewRef.current?.getScrollableNode() as unknown as HTMLElement | null + if (!el) return + const onWheel = (e: WheelEvent) => { + if (Math.abs(e.deltaX) <= Math.abs(e.deltaY)) return + e.preventDefault() + } + el.addEventListener('wheel', onWheel, {passive: false}) + return () => el.removeEventListener('wheel', onWheel) + }, [scrollViewRef]) + const isLastThreadedPost = thread.posts.length > 1 && nextPost === undefined const { scrollHandler, @@ -1235,6 +1367,11 @@ export const ComposePost = ({ web({ scrollbarGutter: 'stable', scrollbarColor: `${t.palette.contrast_200} transparent`, + // Prevent horizontal trackpad swipes from triggering the + // browser's back/forward overscroll-navigation gesture. + // Handles Chrome and Firefox; Safari is handled separately + // via a wheel listener since it ignores overscroll-behavior. + overscrollBehaviorX: 'contain', }), ]} keyboardShouldPersistTaps="always" @@ -1395,15 +1532,11 @@ let ComposerPost = memo(function ComposerPost({ [dispatch, post.id], ) - const onImageAdd = useCallback( - (next: ComposerImage[]) => { - dispatchPost({ - type: 'embed_add_images', - images: next, - }) - }, - [dispatchPost], - ) + const postImagesCount = + post.embed.media?.type === 'images' || post.embed.media?.type === 'gallery' + ? post.embed.media.images.length + : 0 + const onImageAdd = useAddImagesWithCap(postImagesCount, dispatchPost) const onNewLink = useCallback( (uri: string) => { @@ -1708,7 +1841,7 @@ function ComposerEmbeds({ const video = embed.media?.type === 'video' ? embed.media.video : null return ( <> - {embed.media?.type === 'images' && ( + {(embed.media?.type === 'images' || embed.media?.type === 'gallery') && ( )} @@ -1819,7 +1952,11 @@ function ComposerPills({ }) { const t = useTheme() const media = post.embed.media - const hasMedia = media?.type === 'images' || media?.type === 'video' + const hasMedia = + media?.type === 'images' || + media?.type === 'gallery' || + media?.type === 'gif' || + media?.type === 'video' const hasLink = !!post.embed.link // Don't render anything if no pills are going to be displayed @@ -1908,15 +2045,16 @@ function ComposerFooter({ >(undefined) const media = post.embed.media - const images = media?.type === 'images' ? media.images : [] + const images = + media?.type === 'images' || media?.type === 'gallery' ? media.images : [] const video = media?.type === 'video' ? media.video : null - const isMaxImages = images.length >= MAX_IMAGES + const isMaxImages = images.length >= MAX_GALLERY_IMAGES const isMaxVideos = !!video let selectedAssetsCount = 0 let isMediaSelectionDisabled = false - if (media?.type === 'images') { + if (media?.type === 'images' || media?.type === 'gallery') { isMediaSelectionDisabled = isMaxImages selectedAssetsCount = images.length } else if (media?.type === 'video') { @@ -1926,15 +2064,7 @@ function ComposerFooter({ isMediaSelectionDisabled = !!media } - const onImageAdd = useCallback( - (next: ComposerImage[]) => { - dispatch({ - type: 'embed_add_images', - images: next, - }) - }, - [dispatch], - ) + const onImageAdd = useAddImagesWithCap(images.length, dispatch) const onSelectGif = useCallback( (gif: Gif) => { @@ -2017,7 +2147,11 @@ function ComposerFooter({ autoOpen={openGallery} /> @@ -2224,7 +2358,7 @@ function useKeyboardVerticalOffset() { } async function whenAppViewReady( - agent: BskyAgent, + agent: AtpAgent, uri: string, fn: (res: AppBskyUnspeccedGetPostThreadV2.Response) => boolean, ) { diff --git a/src/view/com/composer/ComposerReplyTo.tsx b/src/view/com/composer/ComposerReplyTo.tsx index bac3e74d31..00a108bb54 100644 --- a/src/view/com/composer/ComposerReplyTo.tsx +++ b/src/view/com/composer/ComposerReplyTo.tsx @@ -2,6 +2,7 @@ import {useCallback, useMemo, useState} from 'react' import {LayoutAnimation, Pressable, View} from 'react-native' import {Image} from 'expo-image' import { + AppBskyEmbedGallery, AppBskyEmbedImages, AppBskyEmbedRecord, AppBskyEmbedRecordWithMedia, @@ -9,12 +10,13 @@ import { } from '@atproto/api' import {msg} from '@lingui/core/macro' import {useLingui} from '@lingui/react' +import {Trans} from '@lingui/react/macro' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {sanitizeHandle} from '#/lib/strings/handles' import {type ComposerOptsPostRef} from '#/state/shell/composer' import {PreviewableUserAvatar} from '#/view/com/util/UserAvatar' -import {atoms as a, useTheme, web} from '#/alf' +import {atoms as a, useTheme, utils, web} from '#/alf' import {QuoteEmbed} from '#/components/Post/Embed' import {ProfileBadges} from '#/components/ProfileBadges' import {Text} from '#/components/Typography' @@ -58,15 +60,28 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) { }) : null - const images = useMemo(() => { + const {images, totalNumber} = useMemo(() => { if (AppBskyEmbedImages.isView(embed)) { - return embed.images - } else if ( - AppBskyEmbedRecordWithMedia.isView(embed) && - AppBskyEmbedImages.isView(embed.media) - ) { - return embed.media.images + return {images: embed.images, totalNumber: embed.images.length} + } else if (AppBskyEmbedGallery.isView(embed)) { + return { + images: galleryItemsToImages(embed.items), + totalNumber: embed.items.length, + } + } else if (AppBskyEmbedRecordWithMedia.isView(embed)) { + if (AppBskyEmbedImages.isView(embed.media)) { + return { + images: embed.media.images, + totalNumber: embed.media.images.length, + } + } else if (AppBskyEmbedGallery.isView(embed.media)) { + return { + images: galleryItemsToImages(embed.media.items), + totalNumber: embed.media.items.length, + } + } } + return {images: [], totalNumber: 0} }, [embed]) return ( @@ -118,7 +133,7 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) { {images && !replyTo.moderation?.ui('contentMedia').blur && ( - + )} {showFull && parsedQuoteEmbed && parsedQuoteEmbed.type === 'post' && ( @@ -129,12 +144,31 @@ export function ComposerReplyTo({replyTo}: {replyTo: ComposerOptsPostRef}) { ) } +function galleryItemsToImages( + items: AppBskyEmbedGallery.View['items'], +): AppBskyEmbedImages.ViewImage[] { + // The reply-to thumbnail only renders up to 4 tiles; slicing here keeps + // the existing layout switch valid for galleries up to 10 items. + return items + .filter(AppBskyEmbedGallery.isViewImage) + .slice(0, 4) + .map(item => ({ + thumb: item.thumbnail, + fullsize: item.fullsize, + alt: item.alt, + aspectRatio: item.aspectRatio, + })) +} + function ComposerReplyToImages({ images, + totalNumber, }: { images: AppBskyEmbedImages.ViewImage[] - showFull: boolean + totalNumber: number }) { + const t = useTheme() + return ( - + + + {totalNumber > 4 && ( + + + + +{totalNumber - 3} + + + + )} + ))} diff --git a/src/view/com/composer/ExternalEmbed.tsx b/src/view/com/composer/ExternalEmbed.tsx index ecd22d7c39..0b14f16ed3 100644 --- a/src/view/com/composer/ExternalEmbed.tsx +++ b/src/view/com/composer/ExternalEmbed.tsx @@ -11,6 +11,7 @@ import {atoms as a, useTheme} from '#/alf' import {Loader} from '#/components/Loader' import {ExternalEmbed} from '#/components/Post/Embed/ExternalEmbed' import {ModeratedFeedEmbed} from '#/components/Post/Embed/FeedEmbed' +import {JoinRequestEmbed} from '#/components/Post/Embed/JoinRequestEmbed' import {ModeratedListEmbed} from '#/components/Post/Embed/ListEmbed' import {StandardSiteEmbed} from '#/components/Post/Embed/StandardSiteEmbed' import {isStandardSiteEmbed} from '#/components/Post/Embed/StandardSiteEmbed/utils' @@ -115,6 +116,8 @@ export const ExternalEmbedLink = ({ hideAlt /> ) + } else if (data.type === 'chat-invite') { + return } else if (data.kind === 'feed') { return ( void} & ViewStyleProp) { const t = useTheme() - const {_} = useLingui() + const {t: l} = useLingui() return ( - {statusNudgeActive && } ) @@ -271,9 +277,7 @@ let ProfileMenu = ({ { if (showLoggedOutWarning) { loggedOutWarningPromptControl.open() @@ -294,7 +298,7 @@ let ProfileMenu = ({ Search posts @@ -313,14 +317,12 @@ let ProfileMenu = ({ void onPressUnfollowAccount() + : () => void onPressFollowAccount() }> {isFollowing ? ( @@ -336,7 +338,7 @@ let ProfileMenu = ({ )} Add to starter packs @@ -345,7 +347,7 @@ let ProfileMenu = ({ Add to lists @@ -357,10 +359,10 @@ let ProfileMenu = ({ testID="profileHeaderDropdownListAddRemoveBtn" label={ status.isDisabled - ? _(msg`Go live (disabled)`) + ? l`Go live (disabled)` : status.isActive - ? _(msg`Edit live status`) - : _(msg`Go live`) + ? l`Edit live status` + : l`Go live` } onPress={() => { if (status.isDisabled) { @@ -411,7 +413,7 @@ let ProfileMenu = ({ (verification.viewer.hasIssuedVerification ? ( verificationRemovePromptControl.open()}> Remove verification @@ -421,7 +423,7 @@ let ProfileMenu = ({ ) : ( verificationCreatePromptControl.open()}> Verify account @@ -437,10 +439,10 @@ let ProfileMenu = ({ testID="profileHeaderDropdownMuteBtn" label={ profile.viewer?.muted - ? _(msg`Unmute account`) - : _(msg`Mute account`) + ? l`Unmute account` + : l`Mute account` } - onPress={onPressMuteAccount}> + onPress={() => void onPressMuteAccount()}> {profile.viewer?.muted ? ( Unmute account @@ -457,9 +459,9 @@ let ProfileMenu = ({ blockPromptControl.open()}> @@ -478,7 +480,7 @@ let ProfileMenu = ({ )} Report account @@ -496,7 +498,7 @@ let ProfileMenu = ({ Copy at:// URI @@ -505,7 +507,7 @@ let ProfileMenu = ({ Copy DID @@ -517,19 +519,16 @@ let ProfileMenu = ({ ) : null} - - - - - - - - {status.isDisabled ? ( ( ) } - let contentOffset if (headerOffset != null) { style = addStyle(style, { paddingTop: headerOffset, }) - contentOffset = {x: 0, y: headerOffset * -1} } return ( @@ -170,7 +168,6 @@ let List = forwardRef( ...props.scrollIndicatorInsets, }} indicatorStyle={t.scheme === 'dark' ? 'white' : 'black'} - contentOffset={contentOffset} refreshControl={refreshControl} onScroll={scrollHandler} scrollsToTop={scrollsToTop} diff --git a/src/view/com/util/UserAvatar.tsx b/src/view/com/util/UserAvatar.tsx index 9db4914b21..f139542857 100644 --- a/src/view/com/util/UserAvatar.tsx +++ b/src/view/com/util/UserAvatar.tsx @@ -17,6 +17,7 @@ import {useLingui} from '@lingui/react' import {Trans} from '@lingui/react/macro' import {useQueryClient} from '@tanstack/react-query' +import {IMAGE_SIZE_CONFIG_2K_1MB} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' import { useCameraPermission, @@ -395,6 +396,7 @@ let EditableUserAvatar = ({ await openCamera({ aspect: [1, 1], }), + IMAGE_SIZE_CONFIG_2K_1MB, ), ) }, [onSelectNewAvatar, requestCameraAccessIfNeeded]) @@ -423,6 +425,7 @@ let EditableUserAvatar = ({ shape: circular ? 'circle' : 'rectangle', aspectRatio: 1, }), + IMAGE_SIZE_CONFIG_2K_1MB, ), ) } else { @@ -449,7 +452,7 @@ let EditableUserAvatar = ({ const onChangeEditImage = useCallback( async (image: ComposerImage) => { - const compressed = await compressImage(image) + const compressed = await compressImage(image, IMAGE_SIZE_CONFIG_2K_1MB) onSelectNewAvatar(compressed) }, [onSelectNewAvatar], diff --git a/src/view/com/util/UserBanner.tsx b/src/view/com/util/UserBanner.tsx index 033e8c14fe..ff4b6631bd 100644 --- a/src/view/com/util/UserBanner.tsx +++ b/src/view/com/util/UserBanner.tsx @@ -6,6 +6,7 @@ import {msg} from '@lingui/core/macro' import {useLingui} from '@lingui/react' import {Trans} from '@lingui/react/macro' +import {IMAGE_SIZE_CONFIG_2K_1MB} from '#/lib/constants' import { useCameraPermission, usePhotoLibraryPermission, @@ -62,6 +63,7 @@ export function UserBanner({ await openCamera({ aspect: [3, 1], }), + IMAGE_SIZE_CONFIG_2K_1MB, ), ) }, [onSelectNewBanner, requestCameraAccessIfNeeded]) @@ -83,6 +85,7 @@ export function UserBanner({ imageUri: items[0].path, aspectRatio: 3 / 1, }), + IMAGE_SIZE_CONFIG_2K_1MB, ), ) } else { @@ -108,7 +111,7 @@ export function UserBanner({ const onChangeEditImage = useCallback( async (image: ComposerImage) => { - const compressed = await compressImage(image) + const compressed = await compressImage(image, IMAGE_SIZE_CONFIG_2K_1MB) onSelectNewBanner?.(compressed) }, [onSelectNewBanner], diff --git a/src/view/screens/Storybook/GalleryFallback.tsx b/src/view/screens/Storybook/GalleryFallback.tsx new file mode 100644 index 0000000000..7cca087dba --- /dev/null +++ b/src/view/screens/Storybook/GalleryFallback.tsx @@ -0,0 +1,25 @@ +import {View} from 'react-native' + +import {atoms as a} from '#/alf' +import {GalleryFallbackEmbed} from '#/components/Post/Embed/GalleryFallbackEmbed' +import {H1, H3} from '#/components/Typography' + +export function GalleryFallback() { + return ( + +

Gallery fallback (APP-2308)

+ +

No count

+ + +

1 photo

+ + +

5 photos

+ + +

10 photos

+ +
+ ) +} diff --git a/src/view/screens/Storybook/Storybook.tsx b/src/view/screens/Storybook/Storybook.tsx index 8fb85e8e0a..84e8cb4397 100644 --- a/src/view/screens/Storybook/Storybook.tsx +++ b/src/view/screens/Storybook/Storybook.tsx @@ -7,6 +7,8 @@ import {useSetThemePrefs} from '#/state/shell' import {ListContained} from '#/view/screens/Storybook/ListContained' import {atoms as a, ThemeProvider} from '#/alf' import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {InviteFriendsDialog} from '#/features/inviteFriends' import { useDeviceGeolocationApi, useRequestDeviceGeolocation, @@ -16,6 +18,7 @@ import {Breakpoints} from './Breakpoints' import {Buttons} from './Buttons' import {Dialogs} from './Dialogs' import {Forms} from './Forms' +import {GalleryFallback} from './GalleryFallback' import {Icons} from './Icons' import {Links} from './Links' import {Menus} from './Menus' @@ -32,6 +35,7 @@ export default function Storybook() { const navigation = useNavigation() const requestDeviceGeolocation = useRequestDeviceGeolocation() const {setDeviceGeolocation} = useDeviceGeolocationApi() + const inviteFriendsControl = Dialog.useDialogControl() return ( <> @@ -97,6 +101,15 @@ export default function Storybook() { Get GPS Location + + + @@ -120,6 +133,7 @@ export default function Storybook() { +